/* --- ENHANCED STATS SECTION --- */
.stats-section.dark-gradient {
    padding: 100px 5%;
    background: radial-gradient(circle at center, #1e1b4b 0%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card.glass {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 45px 25px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.stat-card.glass:hover {
    transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.3);
    background: rgba(30, 41, 59, 0.6);
}

.stat-number {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem); 
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #ffffff 0%, #c7d2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: #94a3b8;
    font-size: 0.75rem; 
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

/* --- UPDATED DETAILED APPROACH SECTION --- */
.approach-detailed {
    padding: 120px 5%;
    background: white;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-intro .badge {
    display: inline-block;
    background: rgba(79, 70, 229, 0.1);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.section-intro h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--text-main);
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.approach-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.step-item {
    padding: 20px;
    border-left: 1px solid var(--border);
    transition: all 0.3s ease;
}

.step-item:hover {
    border-left-color: var(--accent);
    transform: translateX(5px);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.step-no {
    font-weight: 800;
    color: var(--accent);
    font-size: 0.9rem;
    opacity: 0.6;
}

.highlight-step {
    background: #f8fafc;
    border-radius: 0 16px 16px 0;
    border-left: 3px solid var(--accent);
}

/* --- HOW IT WORKS SECTION --- */
.how-it-works {
    padding: 100px 5%;
    background: #ffffff;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--border);
    z-index: 1;
}

.process-item {
    position: relative;
    z-index: 2;
    text-align: center;
}

.step-indicator {
    width: 60px;
    height: 60px;
    background: white;
    border: 2px solid var(--accent);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin: 0 auto 25px;
    box-shadow: 0 0 0 8px white;
    transition: all 0.3s ease;
}

/* --- FINAL CTA SECTION --- */
.final-cta {
    padding: 100px 5% 140px;
}

.cta-card {
    max-width: 1100px;
    margin: 0 auto;
    background: radial-gradient(circle at top right, #1e293b, #0f172a);
    border-radius: 40px;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-decoration {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

/* Responsive Logic */
@media (max-width: 1024px) {
    .approach-steps { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(2, 1fr); gap: 50px 30px; }
    .process-steps::before { display: none; }
}

@media (max-width: 768px) {
    .stats-container { grid-template-columns: repeat(2, 1fr); }
    .cta-button-group { flex-direction: column; }
}

@media (max-width: 550px) {
    .stats-container { grid-template-columns: 1fr; }
    .approach-steps { grid-template-columns: 1fr; }
}