/* ============================================
DGROWW CONSULTATION & SERVICES PAGE - PREMIUM CSS
============================================ */

/* ---- CONSULTATION HERO SECTION ---- */
.consultation-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0f1419 0%, #1a2540 50%, #162e4d 100%);
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.consultation-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.consultation-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.consultation-hero .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.consultation-hero .hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--white) 0%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.consultation-hero .hero-subtitle {
    font-size: 1.8rem;
    color: var(--accent-green);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.consultation-hero .hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.consultation-hero .hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.consultation-hero .hero-buttons .btn {
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 700;
}

/* ---- WHAT WE OFFER SECTION ---- */
.offer-section { 
    padding: 100px 0; 
    background: var(--light-bg); 
    position: relative; 
}

.offer-section .section-header { 
    text-align: center;
    margin-bottom: 4rem; 
} 

.offer-section .section-title {
    font-size: clamp(2rem, 5vw, 3rem); 
    font-weight: 800; 
    color: var(--white); 
    margin-bottom: 1rem; 
    } 

.offer-section .section-subtitle { 
    font-size: 1.5rem; 
    color: var(--accent-cyan); 
    font-weight: 600; 
    margin-bottom: 1rem; 

} 
.offer-section .section-description {
    font-size: 1rem; 
    color: rgba(53, 52, 52, 0.85);
    max-width: 700px; 
    margin: 0 auto; 
    } 

.offer-section.services-grid .service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(6, 182, 212, 0.2); 
    border-radius: 16px; 
    padding: 40px 30px; 
    text-align: center; 
    transition: var(--transition);
    position: relative; 
    overflow: hidden;
    }

.offer-section.services-grid .service-card::after {
    content: ''; 
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05), rgba(37, 99, 235, 0.05));
    opacity: 0; 
    transition: opacity var(--transition);
    pointer-events: none;
    } 

.offer-section .services-grid .service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
}

.offer-section .services-grid .service-card:hover::after {
    opacity: 1;
}

.offer-section .services-grid .service-icon {
    font-size: 3rem; 
    margin-bottom: 20px; 
    display: inline-block; 
    
    } 

.offer-section .services-grid .service-card h3 { 
    font-size: 1.4rem; 
    color: #000000; 
    margin-bottom: 20px; 
    font-weight: 600; 
} 

.offer-section .services-grid .service-card .service-list {
    list-style: none; 
    color: rgba(42, 40, 40, 0.85); 
    position: relative;
    font-size: 1rem; 
    
}

.offer-section .services-grid .service-card .service-list li{
    margin-bottom: 10px; 
    position: relative; 
    padding-left: 1.8rem; 
    
    color: var(--text-dark); 

    
    }  
    
    .offer-section .services-grid .service-card .service-list li::before {
        content: '✓'; 
        position: absolute; 
        left: 0; 
        top: 0; 
        color: var(--accent-green);
        font-weight: 700;
        
        }




/* ---- HOW IT WORKS SECTION ---- */
.how-it-works {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--light-bg) 0%, rgba(15, 20, 25, 0.98) 100%);
    position: relative;
}

.how-it-works .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.how-it-works .section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.how-it-works .section-subtitle {
    font-size: 1.5rem;
    color: var(--accent-cyan);
    font-weight: 600;
}

.process-timeline {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.process-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
    align-items: flex-start;
    animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step:nth-child(1) {
    animation-delay: 0.1s;
}

.process-step:nth-child(2) {
    animation-delay: 0.2s;
}

.process-step:nth-child(3) {
    animation-delay: 0.3s;
}

.process-step:nth-child(4) {
    animation-delay: 0.4s;
}

.process-step:nth-child(5) {
    animation-delay: 0.5s;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

.step-content h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

/* ---- WHO THIS PROGRAM IS FOR SECTION ---- */
.ideal-clients {
    padding: 100px 0;
    background: var(--light-bg);
    position: relative;
}

.ideal-clients .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.ideal-clients .section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.ideal-clients .section-subtitle {
    font-size: 1.5rem;
    color: var(--accent-cyan);
    font-weight: 600;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.client-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(37, 99, 235, 0.25);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.client-card:hover {
    border-color: rgba(37, 99, 235, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 45px rgba(37, 99, 235, 0.15);
    transform: translateY(-8px);
}

.client-icon {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.client-card h3 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.client-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ---- WHY CHOOSE DGROWW SECTION ---- */
.differentiators {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--light-bg) 0%, rgba(15, 20, 25, 0.98) 100%);
    position: relative;
}

.differentiators .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.differentiators .section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.differentiators .section-subtitle {
    font-size: 1.5rem;
    color: var(--accent-cyan);
    font-weight: 600;
}

.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.differentiator-card {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(6, 182, 212, 0.08));
    border: 1px solid rgba(37, 99, 235, 0.25);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.differentiator-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.differentiator-card:hover::before {
    opacity: 1;
}

.differentiator-card:hover {
    border-color: rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(6, 182, 212, 0.12));
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.1);
    transform: translateY(-8px);
}

.card-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(37, 99, 235, 0.3);
    margin-bottom: 1rem;
}

.differentiator-card h3 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.differentiator-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ---- ENGAGEMENT MODELS SECTION ---- */
.engagement-models {
    padding: 100px 0;
    background: var(--light-bg);
    position: relative;
}

.engagement-models .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.engagement-models .section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.engagement-models .section-subtitle {
    font-size: 1.5rem;
    color: var(--accent-cyan);
    font-weight: 600;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.model-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(37, 99, 235, 0.25);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.model-card:hover {
    border-color: rgba(37, 99, 235, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.1);
    transform: translateY(-8px);
}

.model-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.model-card h3 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.model-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.models-note {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(6, 182, 212, 0.1));
    border-left: 4px solid var(--primary-blue);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
}

.models-note p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin: 0;
    font-weight: 600;
}

/* ---- FAQ SECTION ---- */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--light-bg) 0%, rgba(15, 20, 25, 0.98) 100%);
    position: relative;
}

.faq-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-section .section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.faq-section .section-subtitle {
    font-size: 1.5rem;
    color: var(--accent-cyan);
    font-weight: 600;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-card {
    background: rgba(255, 255, 255, 0.04);
    border-left: 4px solid var(--primary-blue);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-left-color: var(--accent-cyan);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
    transform: translateY(-6px);
}

.faq-card h3 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.faq-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ---- FINAL CTA SECTION ---- */
.final-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f1419 0%, #162e4d 50%, #1a2540 100%);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.15), transparent 70%);
    top: -100px;
    left: -100px;
}

.final-cta::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.1), transparent 70%);
    bottom: -50px;
    right: -100px;
}

.final-cta .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.cta-subtext {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.cta-actions .btn {
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 700;
}

/* ============================================
ANIMATIONS
============================================ */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ============================================
RESPONSIVE DESIGN
============================================ */
@media (max-width: 1024px) {
    .consultation-hero {
        padding: 100px 0 60px;
    }

    .offer-section,
    .how-it-works,
    .ideal-clients,
    .differentiators,
    .engagement-models,
    .faq-section {
        padding: 80px 0;
    }

    .services-grid,
    .clients-grid,
    .differentiators-grid,
    .models-grid,
    .faq-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .process-step {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .consultation-hero {
        padding: 80px 0 50px;
    }

    .consultation-hero .hero-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }

    .consultation-hero .hero-subtitle {
        font-size: 1.5rem;
    }

    .consultation-hero .hero-description {
        font-size: 1rem;
    }

    .consultation-hero .hero-buttons {
        gap: 1rem;
        margin-top: 2rem;
    }

    .offer-section,
    .how-it-works,
    .ideal-clients,
    .differentiators,
    .engagement-models,
    .faq-section,
    .final-cta {
        padding: 60px 0;
    }

    .offer-section .section-title,
    .how-it-works .section-title,
    .ideal-clients .section-title,
    .differentiators .section-title,
    .engagement-models .section-title,
    .faq-section .section-title {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
    }

    .service-card,
    .differentiator-card {
        padding: 2rem;
    }

    .process-step {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin: 0 auto;
    }

    .services-grid,
    .clients-grid,
    .differentiators-grid,
    .models-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .cta-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-actions .btn {
        width: 100%;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .consultation-hero {
        padding: 60px 0 40px;
    }

    .consultation-hero .hero-title {
        font-size: 1.8rem;
    }

    .consultation-hero .hero-subtitle {
        font-size: 1.2rem;
    }

    .consultation-hero .hero-description {
        font-size: 0.95rem;
    }

    .offer-section,
    .how-it-works,
    .ideal-clients,
    .differentiators,
    .engagement-models,
    .faq-section,
    .final-cta {
        padding: 40px 0;
    }

    .offer-section .section-title,
    .how-it-works .section-title,
    .ideal-clients .section-title,
    .differentiators .section-title,
    .engagement-models .section-title,
    .faq-section .section-title {
        font-size: 1.5rem;
    }

    .service-card,
    .client-card,
    .differentiator-card,
    .model-card,
    .faq-card {
        padding: 1.5rem;
    }

    .service-icon {
        font-size: 2.5rem;
    }

    .client-icon,
    .model-icon {
        font-size: 2rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .cta-content p {
        font-size: 0.95rem;
    }

    .cta-subtext {
        font-size: 0.9rem;
    }

    .models-note {
        padding: 1.5rem;
    }

    .models-note p {
        font-size: 0.95rem;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 60px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05), rgba(37, 99, 235, 0.05));
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.service-card:hover {
    border-color: rgba(37, 99, 235, 0.6);
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.15);
    transform: translateY(-8px);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    animation: bounce 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card h3 {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.service-list li {
    color: rgba(255, 255, 255, 0.8);
    padding: 10px 0;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li::before {
    content: '✓ ';
    color: #10b981;
    font-weight: 600;
    margin-right: 8px;
}

.service-card:hover .service-list li {
    color: rgba(255, 255, 255, 1);
}

/* ===========================
   HOW IT WORKS SECTION
   =========================== */
.how-it-works {
    padding: 100px 20px;
    background: linear-gradient(180deg, rgba(15, 20, 25, 0.98) 0%, #0f1419 100%);
}

.process-timeline {
    display: grid;
    gap: 30px;
    margin-top: 60px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.5), transparent);
    transform: translateX(-50%);
    display: none;
}

.process-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    align-items: center;
    animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 600;
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

/* ===========================
   IDEAL CLIENTS SECTION
   =========================== */
.ideal-clients {
    padding: 100px 20px;
    background: linear-gradient(180deg, #0f1419 0%, rgba(15, 20, 25, 0.95) 100%);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 60px;
}

.client-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(6, 182, 212, 0.15);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.client-card:hover {
    border-color: rgba(6, 182, 212, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 45px rgba(6, 182, 212, 0.15);
    transform: translateY(-6px);
}

.client-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: inline-block;
}

.client-card h3 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 600;
}

.client-card p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===========================
DIFFERENTIATORS SECTION
   =========================== */
.differentiators {
    padding: 100px 20px;
    background: linear-gradient(180deg, rgba(15, 20, 25, 0.98) 0%, #0f1419 100%);
}

.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 60px;
}

.differentiator-card {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(6, 182, 212, 0.08));
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 16px;
    padding: 35px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.differentiator-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #2563eb, transparent);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.differentiator-card:hover::before {
    opacity: 1;
}

.differentiator-card:hover {
    border-color: rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(6, 182, 212, 0.12));
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.1);
    transform: translateY(-6px);
}

.card-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(37, 99, 235, 0.3);
    margin-bottom: 15px;
}

.differentiator-card h3 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 600;
}

.differentiator-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===========================
   ENGAGEMENT MODELS SECTION
   =========================== */
.engagement-models {
    padding: 100px 20px;
    background: linear-gradient(180deg, #0f1419 0%, rgba(15, 20, 25, 0.95) 100%);
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 60px;
    margin-bottom: 40px;
}

.model-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(6, 182, 212, 0.15);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.model-card:hover {
    border-color: rgba(6, 182, 212, 0.4);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 40px rgba(6, 182, 212, 0.1);
    transform: translateY(-6px);
}

.model-icon {
    font-size: 2.2rem;
    margin-bottom: 15px;
    display: inline-block;
}

.model-card h3 {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 600;
}

.model-card p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    line-height: 1.5;
}

.models-note {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(6, 182, 212, 0.1));
    border-left: 4px solid #2563eb;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
}

.models-note p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin: 0;
}

/* ===========================
FAQ SECTION
   =========================== */
.faq-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, rgba(15, 20, 25, 0.98) 0%, #0f1419 100%);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    margin-top: 60px;
}

.faq-card {
    background: rgba(255, 255, 255, 0.04);
    border-left: 4px solid #2563eb;
    border-radius: 8px;
    padding: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-left-color: #06b6d4;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
    transform: translateY(-4px);
}

.faq-card h3 {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: 600;
}

.faq-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ===========================
FINAL CTA SECTION
   =========================== */
.final-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0f1419 0%, #162e4d 50%, #1a2540 100%);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.15), transparent 70%);
    top: -100px;
    left: -100px;
}

.final-cta::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.1), transparent 70%);
    bottom: -50px;
    right: -100px;
}

.final-cta .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    line-height: 1.6;
    animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.1s both;
}

.cta-subtext {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.cta-actions {
    display: flex;
    
    color: #1a2540;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
    animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

/* ---- FOOTER ---- */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-column h4 {
    color: var(--accent-green);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-tagline {
    color: var(--accent-green);
    font-size: 0.95rem;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--accent-green);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* ---- ANIMATIONS ---- */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---- RESPONSIVE DESIGN ---- */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .vision-mission-content {
        grid-template-columns: 1fr;
    }

    .gradient-box {
        width: 250px;
        height: 250px;
    }

    .ecosystem-layers {
        grid-template-columns: 1fr;
    }

    .layer-arrow {
        display: block;
        text-align: center;
        rotate: 90deg;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: var(--white);
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        border-bottom: 1px solid var(--border-light);
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .flow-diagram {
        gap: 0.5rem;
    }

    .step-circle {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .flow-arrow {
        font-size: 1.5rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-content {
        gap: 1rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .tagline {
        font-size: 0.65rem;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-text h1 {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-value {
        font-size: 0.9rem;
    }

    .problem-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .problem-card {
        padding: 1.5rem;
    }

    .problem-icon {
        font-size: 2.5rem;
    }

    .flow-diagram {
        flex-direction: column;
    }

    .step-circle {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .flow-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }

    .positioning-points {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-section {
        padding: 60px 0;
    }

    .impact-number {
        font-size: 2rem;
    }
}

/* ---- UTILITY CLASSES ---- */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 2rem;
}
/* ---- CONTACT SECTION ---- */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.contact-card {
    display: flex;
    flex-direction: column;
    padding: 40px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.contact-card .card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.contact-card h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.contact-card .card-label {
    font-size: 0.85rem;
    color: var(--primary-blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.contact-card .card-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.contact-card .card-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.contact-card .card-micro {
    font-size: 0.8rem;
    color: var(--accent-cyan);
    font-weight: 500;
    margin-bottom: 16px;
}

.contact-card .card-cta {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    margin-top: auto;
}

.contact-card .card-cta:hover {
    color: var(--accent-green);
    transform: translateX(4px);
}

.contact-card .card-btn {
    margin-top: auto;
    width: 100%;
}

/* ---- RESPONSIVE CONTACT SECTION ---- */
@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-card {
        padding: 30px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }
}