/* --- STATS BASE --- */
.starter-stats-container {
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    /* Elementor controls will override these defaults */
}

.starter-stat-value {
    font-weight: 800;
    line-height: 1;
    margin: 0;
    display: inline-block;
}

.starter-stat-label {
    margin: 0;
    font-weight: 500;
}

/* Icon Wrapper Defaults */
.starter-stat-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* --- STYLE 1: NEUMORPHIC CIRCLE --- */
.starter-stats--neumorphic {
    background: #e0e5ec;
    border-radius: 24px;
    padding: 32px;
    text-align: center;
    /* Default Neumorphic Shadow - overridden if user sets Box Shadow in Elementor */
    box-shadow: 9px 9px 16px rgb(163,177,198,0.6), -9px -9px 16px rgba(255,255,255, 0.5);
    align-items: center;
    justify-content: center;
}

.starter-stats--neumorphic .starter-stat-icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #e0e5ec; /* Should match container bg */
    box-shadow: inset 6px 6px 10px 0 rgba(163,177,198, 0.7), inset -6px -6px 10px 0 rgba(255,255,255, 0.8);
    margin-bottom: 24px;
    color: #4f46e5;
    font-size: 32px;
}

.starter-stats--neumorphic .starter-stat-value {
    font-size: 36px;
    color: #4b5563;
    margin-bottom: 8px;
}

.starter-stats--neumorphic .starter-stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6b7280;
}

/* --- STYLE 2: GLASS GRADIENT --- */
.starter-stats--glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    padding: 30px;
    flex-direction: row; /* Horizontal Layout */
    align-items: center;
    gap: 24px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
}

.starter-stats--glass .starter-stat-icon-wrap {
    width: 60px;
    height: 60px;
    /* Default Gradient - overridden by Elementor Background Control */
    background: linear-gradient(135deg, #4f46e5, #a855f7);
    border-radius: 14px;
    color: white;
    font-size: 24px;
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
    flex-shrink: 0;
}

.starter-stats--glass .starter-stat-content {
    flex: 1;
    text-align: left;
}

.starter-stats--glass .starter-stat-value {
    font-size: 42px;
    background: linear-gradient(to right, #111827, #4b5563);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Fallback color if background-clip isn't supported or overridden */
    color: #111827; 
    margin-bottom: 4px;
    display: block;
}

.starter-stats--glass .starter-stat-label {
    font-size: 15px;
    color: #6b7280;
    font-weight: 600;
}

/* --- STYLE 3: BENTO BOX --- */
.starter-stats--bento {
    background-color: #111827; /* Dark BG */
    color: white;
    border-radius: 20px;
    padding: 32px;
    overflow: hidden;
    height: 100%;
    min-height: 180px;
    justify-content: space-between;
    align-items: flex-start;
}

/* Background Icon (Decorative) */
.starter-stat-icon-bg {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 120px;
    opacity: 0.05;
    color: white;
    transform: rotate(-15deg);
    transition: all 0.5s ease;
    z-index: 0;
    pointer-events: none;
}

.starter-stats--bento:hover .starter-stat-icon-bg {
    opacity: 0.1;
    transform: rotate(0deg) scale(1.1);
}

.starter-stats--bento .starter-stat-value {
    font-size: 48px;
    z-index: 2;
    position: relative;
    color: white;
    margin-bottom: 8px;
}

.starter-stats--bento .starter-stat-label {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    z-index: 2;
    position: relative;
    margin-top: auto;
}

/* Accent Line (Pseudo-element) */
.starter-stats--bento::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4f46e5, #ec4899);
    z-index: 5;
}