/* Education Industry Landing Page — Leadnest.ai */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ══════════════════════════════════════
   DESIGN TOKENS — EDUCATION THEME (Deep Indigo Blue)
══════════════════════════════════════ */
:root {
    --ed-primary:       #1a56db;
    --ed-primary-dark:  #1648c8;
    --ed-primary-deep:  #1239a5;
    --ed-accent:        #3b82f6;
    --ed-accent-dark:   #2563eb;
    --ed-text:          #1f2937;
    --ed-text-muted:    #64748b;
    --ed-heading:       #0f172a;
    --ed-bg-light:      #f0f4ff;
    --ed-white:         #ffffff;
    --ed-border:        #dbeafe;
}

/* ══════════════════════════════════════
   BASE RESET
   overflow-x: clip — NOT hidden — keeps position:sticky working
══════════════════════════════════════ */
html { height: auto !important; overflow-x: clip !important; }
body { height: auto !important; overflow-x: clip !important; overflow-y: visible !important; position: relative; margin: 0; padding: 0; }
main { overflow: visible !important; }

/* ══════════════════════════════════════
   STICKY HEADER OVERRIDE
   LeadnestLanding.css sets position:fixed + slideDown animation.
   This loads after it, so !important wins.
══════════════════════════════════════ */
.leadNav-Main-Large {
    position: sticky !important;
    top: 0 !important;
    z-index: 9999 !important;
    background: #ffffff !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06) !important;
    width: 100% !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transition: box-shadow 0.3s ease !important;
    animation: none !important;
}
.leadNav-Main-Large.nav-hide,
.leadNav-Main-Large.nav-top,
.leadNav-Main-Large.nav-compact,
.leadNav-Main-Large.nav-show,
.leadNav-Main-Large.nav-slide-in {
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: sticky !important;
    animation: none !important;
}
.leadNav-Main-Large.nav-slide-in,
.leadNav-Main-Large.scrolled {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1) !important;
}

@media (min-width: 992px) {
    body { padding-top: 0 !important; }
    .ed-wrapper { padding-top: 0 !important; }
}
@media (max-width: 991px) {
    .leadNav-Main-Large {
        position: fixed !important;
        top: 0 !important; left: 0 !important; right: 0 !important;
    }
    body { padding-top: 0px !important; }
    .ed-wrapper { padding-top: 0 !important; }
}

/* ══════════════════════════════════════
   WRAPPER & BACKGROUND UTILITIES
══════════════════════════════════════ */
.ed-wrapper {
    font-family: 'Poppins', sans-serif;
    color: var(--ed-text);
    padding-top: 0;
    position: relative;
    width: 100%;
    max-width: 100vw;
}
.ed-bg-light { background: var(--ed-bg-light); }
.ed-bg-white { background: var(--ed-white); }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.ed-hero {
    height: calc(100vh - 90px);
    min-height: 620px;
    background: var(--ed-white);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.ed-hero-bg-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(to right,  rgba(26,86,219,0.10) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(26,86,219,0.10) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at 50% 40%, black 50%, transparent 90%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 40%, black 50%, transparent 90%);
    pointer-events: none; z-index: 1;
}
.ed-hero::after {
    content: '';
    position: absolute; top: -10%; right: -5%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(59,130,246,0.05) 0%, transparent 70%);
    z-index: 1;
}

.ed-hero-content {
    max-width: 1240px; margin: 0 auto;
    display: flex; align-items: center; gap: 60px;
    padding: 0 24px; position: relative; z-index: 2; width: 100%;
}

.ed-hero-text  { flex: 1.15; }
.ed-hero-visual {
    flex: 0.95; position: relative; z-index: 2;
    display: flex; align-items: center; justify-content: center;
    animation: edHeroFloat 6s infinite ease-in-out;
}

.ed-hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 18px;
    background: rgba(26,86,219,0.07);
    color: var(--ed-primary);
    border: 1px solid rgba(26,86,219,0.2);
    border-radius: 100px; font-size: 13px; font-weight: 600;
    margin-bottom: 28px; letter-spacing: 0.3px;
}
.ed-hero-badge i { font-size: 14px; }

.ed-hero-text h1 {
    font-size: 52px; font-weight: 600; line-height: 1.12;
    margin-bottom: 24px; color: var(--ed-heading); letter-spacing: -0.03em;
}
.ed-accent-blue { color: var(--ed-primary); }

.ed-hero-text p {
    font-size: 18px; line-height: 1.6; color: #4b5563;
    margin-bottom: 36px; max-width: 95%; font-weight: 400;
}

.ed-hero-image {
    width: 100%; height: auto; border-radius: 24px;
    box-shadow: 0 24px 64px rgba(26,86,219,0.12), 0 4px 16px rgba(0,0,0,0.08);
    display: block;
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s ease;
}
.ed-hero-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 80px rgba(26,86,219,0.16), 0 8px 24px rgba(0,0,0,0.1);
}

.ed-hero-cta { display: flex; gap: 16px; margin-bottom: 44px; flex-wrap: wrap; }

.ed-btn {
    padding: 14px 32px; border-radius: 12px; font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: all 0.2s cubic-bezier(0.4,0,0.2,1);
    cursor: pointer; border: none; font-size: 15px;
    display: inline-flex; align-items: center; justify-content: center;
    gap: 10px; text-decoration: none !important;
}
.ed-btn-lg { padding: 16px 36px; font-size: 16px; }

.ed-btn-primary {
    background: var(--ed-primary); color: white !important;
    box-shadow: 0 4px 14px rgba(26,86,219,0.25);
}
.ed-btn-primary:hover {
    background: var(--ed-primary-dark); transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26,86,219,0.3);
}
.ed-btn-primary i { transition: transform 0.2s ease; }
.ed-btn-primary:hover i { transform: translateX(4px); }

.ed-btn-secondary { background: #f3f4f6; color: #111827 !important; border: 1px solid transparent; }
.ed-btn-secondary:hover { background: #e5e7eb; transform: translateY(-2px); }

.ed-btn-white { background: white; color: var(--ed-primary) !important; padding: 18px 40px; font-size: 16px; font-weight: 600; }
.ed-btn-white:hover { background: #f0f4ff; transform: translateY(-3px) scale(1.02); box-shadow: 0 15px 30px rgba(0,0,0,0.2); }

.ed-btn-outline {
    background: rgba(255,255,255,0.05); color: white !important;
    border: 2px solid rgba(255,255,255,0.3);
    padding: 18px 40px; font-size: 16px; font-weight: 600;
    backdrop-filter: blur(10px);
}
.ed-btn-outline:hover { background: rgba(255,255,255,0.15); border-color: white; transform: translateY(-3px) scale(1.02); }

.ed-hero-trust { display: flex; align-items: center; gap: 28px; padding-top: 28px; border-top: 1px solid var(--ed-border); }
.ed-trust-divider { width: 1px; height: 24px; background: #bfdbfe; flex-shrink: 0; }
.ed-trust-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #374151; font-weight: 500; }
.ed-trust-item i { color: var(--ed-primary); font-size: 18px; }

/* ══════════════════════════════════════
   STICKY MOBILE CTA — desktop always hidden
══════════════════════════════════════ */
.ed-sticky-cta {
    display: none;
    position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
    z-index: 9999; width: calc(100% - 48px); max-width: 400px;
}
.ed-sticky-cta-btn {
    width: 100%; padding: 16px 24px;
    background: var(--ed-primary); color: white; border: none;
    border-radius: 16px; font-family: 'Poppins', sans-serif;
    font-size: 16px; font-weight: 600; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    gap: 10px; box-shadow: 0 8px 24px rgba(26,86,219,0.35);
    transition: all 0.2s ease;
}
.ed-sticky-cta-btn:hover { background: var(--ed-primary-dark); transform: translateY(-2px); }

@media (max-width: 768px) { .ed-sticky-cta.ed-sticky-visible { display: block; } }
@media (min-width: 769px) { .ed-sticky-cta, .ed-sticky-cta.ed-sticky-visible { display: none !important; } }

/* ══════════════════════════════════════
   PARTNER SLIDER
══════════════════════════════════════ */
.ed-partner-section {
    padding: 70px 0;
    background: linear-gradient(to bottom, #ffffff, #f0f4ff);
    border-bottom: 1px solid var(--ed-border);
}
.ed-trusted-heading {
    text-align: center; font-family: 'Poppins', sans-serif;
    font-size: 14px; font-weight: 600; color: var(--ed-primary);
    margin-bottom: 50px; text-transform: uppercase; letter-spacing: 2px;
    display: flex; align-items: center; justify-content: center; gap: 20px;
}
.ed-trusted-heading::before,
.ed-trusted-heading::after { content: ''; height: 1px; width: 60px; background: rgba(26,86,219,0.2); }
.ed-partner-img {
    opacity: 0.85; transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    max-height: 40px; width: auto !important; margin: 0 auto;
}
.ed-partner-img:hover { transform: scale(1.08); opacity: 1; }

/* ══════════════════════════════════════
   STATS BAND
══════════════════════════════════════ */
.ed-stats-band { background: #0f172a; padding: 70px 0; color: white; position: relative; z-index: 10; }
.ed-stats-container {
    max-width: 1100px; margin: 0 auto; padding: 0 24px;
    display: flex; justify-content: space-between; text-align: center; flex-wrap: wrap; gap: 32px;
}
.ed-stat-item { flex: 1; min-width: 140px; }
.ed-stat-value { font-size: 36px; font-weight: 600; margin-bottom: 8px; color: var(--ed-accent); font-family: 'Poppins', sans-serif; }
.ed-stat-label { font-size: 11px; font-weight: 500; letter-spacing: 1.5px; opacity: 0.55; text-transform: uppercase; }

/* ══════════════════════════════════════
   FEATURE SECTIONS
══════════════════════════════════════ */
.ed-feature-section { padding: 100px 0; }
.ed-feature-container {
    max-width: 1240px; margin: 0 auto;
    display: flex; align-items: center; gap: 80px; padding: 0 24px;
}
.ed-feature-reverse { flex-direction: row-reverse; }
.ed-feature-content { flex: 1; }
.ed-feature-image   { flex: 1; }

.ed-feature-badge {
    display: inline-block; padding: 6px 14px;
    background: rgba(26,86,219,0.07); color: var(--ed-primary);
    border: 1px solid rgba(26,86,219,0.2);
    border-radius: 6px; font-size: 11px; font-weight: 600;
    margin-bottom: 20px; letter-spacing: 1px; text-transform: uppercase;
}
.ed-feature-content h2 { font-size: 36px; font-weight: 600; line-height: 1.25; margin-bottom: 20px; color: var(--ed-heading); letter-spacing: -0.02em; }
.ed-feature-desc { font-size: 17px; line-height: 1.7; color: var(--ed-text-muted); margin-bottom: 32px; font-weight: 400; }
.ed-feature-highlights { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ed-feature-highlights li { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 500; color: var(--ed-heading); }
.ed-feature-highlights li i { color: var(--ed-primary); font-size: 18px; }
.ed-feature-img {
    width: 100%; height: auto; border-radius: 16px;
    box-shadow: 0 20px 50px rgba(26,86,219,0.08), 0 4px 16px rgba(0,0,0,0.06);
    display: block;
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s ease;
}
.ed-feature-img:hover { transform: translateY(-4px); box-shadow: 0 28px 64px rgba(26,86,219,0.12), 0 8px 24px rgba(0,0,0,0.08); }

/* ══════════════════════════════════════
   SECTION HEADER
══════════════════════════════════════ */
.ed-section-header { text-align: center; margin-bottom: 60px; }
.ed-section-header-sm { margin-bottom: 40px; }
.ed-section-eyebrow { font-size: 13px; font-weight: 600; color: var(--ed-primary); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; }
.ed-section-header h2 { font-size: 42px; font-weight: 600; color: var(--ed-heading); margin-bottom: 20px; }
.ed-section-header p { font-size: 17px; color: var(--ed-text-muted); font-weight: 400; }

/* ══════════════════════════════════════
   CAPABILITIES GRID
══════════════════════════════════════ */
.ed-capabilities-section { padding: 100px 0; }
.ed-capabilities-container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.ed-capabilities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.ed-cap-card {
    background: white; padding: 32px 24px; border-radius: 20px;
    border: 1px solid var(--ed-border);
    transition: all 0.3s ease; position: relative;
}
.ed-cap-card:hover { transform: translateY(-8px); box-shadow: 0 15px 30px rgba(0,0,0,0.04); border-color: rgba(26,86,219,0.2); }
.ed-cap-icon {
    width: 50px; height: 50px; background: rgba(26,86,219,0.07);
    color: var(--ed-primary); border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; margin-bottom: 20px;
}
.ed-cap-card h3 { font-size: 17px; font-weight: 600; color: var(--ed-heading); margin-bottom: 16px; }
.ed-cap-list { list-style: none; padding: 0; margin: 0; }
.ed-cap-list li { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--ed-text-muted); margin-bottom: 10px; font-weight: 400; }
.ed-cap-list li i { color: var(--ed-primary); font-size: 14px; }
.ed-cap-featured { background: #f0f4ff; border: 1.5px solid rgba(26,86,219,0.3); }
.ed-cap-badge {
    position: absolute; top: -12px; right: 24px;
    background: var(--ed-primary); color: white; padding: 4px 12px;
    border-radius: 100px; font-size: 9px; font-weight: 600; letter-spacing: 0.5px;
}
.ed-cap-featured .ed-cap-icon { background: rgba(26,86,219,0.1); color: var(--ed-primary); }
.ed-cap-note { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--ed-border); font-size: 12px; color: var(--ed-primary); font-weight: 500; }

/* ══════════════════════════════════════
   USE CASES
══════════════════════════════════════ */
.ed-use-cases-section { padding: 100px 0; }
.ed-use-cases-container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.ed-use-cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ed-use-case-card {
    background: var(--ed-bg-light); padding: 36px 28px;
    border-radius: 20px; text-align: center;
    border: 1px solid transparent; transition: all 0.3s ease;
}
.ed-use-case-card:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(26,86,219,0.08); border-color: rgba(26,86,219,0.2); background: white; }
.ed-use-case-icon {
    width: 64px; height: 64px; background: rgba(26,86,219,0.08);
    color: var(--ed-primary); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; margin: 0 auto 20px;
    transition: background 0.3s ease;
}
.ed-use-case-card:hover .ed-use-case-icon { background: rgba(26,86,219,0.14); }
.ed-use-case-card h3 { font-size: 19px; font-weight: 600; color: var(--ed-heading); margin-bottom: 10px; }
.ed-use-case-card p  { color: var(--ed-text-muted); font-size: 14px; line-height: 1.6; font-weight: 400; }

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.ed-faq-section { padding: 100px 0; }
.ed-faq-container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.ed-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.ed-faq-col { display: flex; flex-direction: column; gap: 16px; }
.ed-faq-item { background: var(--ed-white); border-radius: 16px; border: 1px solid var(--ed-border); overflow: hidden; transition: border-color 0.25s ease, box-shadow 0.25s ease; }
.ed-faq-item:hover { border-color: rgba(26,86,219,0.25); box-shadow: 0 4px 20px rgba(26,86,219,0.06); }
.ed-faq-item.ed-faq-open { border-color: rgba(26,86,219,0.3); box-shadow: 0 8px 30px rgba(26,86,219,0.08); }
.ed-faq-question {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    gap: 16px; padding: 22px 24px;
    background: transparent; border: none; cursor: pointer; text-align: left;
    font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 600;
    color: var(--ed-heading); line-height: 1.4; transition: color 0.2s ease;
}
.ed-faq-question:hover { color: var(--ed-primary); }
.ed-faq-item.ed-faq-open .ed-faq-question { color: var(--ed-primary); }
.ed-faq-icon {
    flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
    background: rgba(26,86,219,0.07); color: var(--ed-primary);
    display: flex; align-items: center; justify-content: center; font-size: 14px;
    transition: background 0.25s ease, transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.ed-faq-item.ed-faq-open .ed-faq-icon { background: var(--ed-primary); color: white; transform: rotate(45deg); }
.ed-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s ease; padding: 0 24px; }
.ed-faq-item.ed-faq-open .ed-faq-answer { max-height: 300px; padding: 0 24px 22px; }
.ed-faq-answer p { font-size: 14.5px; line-height: 1.75; color: var(--ed-text-muted); font-weight: 400; border-top: 1px solid var(--ed-border); padding-top: 16px; margin: 0; }

/* ══════════════════════════════════════
   CTA SECTION
══════════════════════════════════════ */
.ed-cta-section { padding: 100px 24px; position: relative; }
.ed-cta-container {
    max-width: 1200px; margin: 0 auto;
    background: linear-gradient(135deg, #1a56db 0%, #1239a5 50%, #0c2d8a 100%);
    border-radius: 40px; padding: 80px 40px; text-align: center; color: white;
    position: relative; overflow: hidden;
    box-shadow: 0 30px 60px rgba(26,86,219,0.3);
}
.ed-cta-container::before { content: ''; position: absolute; top: -50%; left: -10%; width: 50%; height: 200%; background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%); transform: rotate(30deg); pointer-events: none; }
.ed-cta-container::after  { content: ''; position: absolute; bottom: -50%; right: -10%; width: 50%; height: 200%; background: radial-gradient(circle, rgba(59,130,246,0.1) 0%, transparent 60%); transform: rotate(-30deg); pointer-events: none; }
.ed-cta-shape { position: absolute; background: rgba(255,255,255,0.04); border-radius: 50%; pointer-events: none; }
.ed-cta-shape-1 { width: 300px; height: 300px; top: -150px; right: -50px; }
.ed-cta-shape-2 { width: 200px; height: 200px; bottom: -100px; left: -50px; }
.ed-cta-content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.ed-cta-content h2 { font-size: 46px; font-weight: 600; margin-bottom: 20px; line-height: 1.2; letter-spacing: -0.02em; }
.ed-cta-content p  { font-size: 19px; opacity: 0.9; margin-bottom: 44px; line-height: 1.6; font-weight: 400; }
.ed-cta-buttons { display: flex; gap: 20px; justify-content: center; margin-bottom: 36px; flex-wrap: wrap; }
.ed-cta-note { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; padding: 12px 24px; background: rgba(0,0,0,0.2); border-radius: 100px; backdrop-filter: blur(5px); font-weight: 500; }
.ed-cta-note i { color: #93c5fd; }

/* ══════════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════════ */
.ed-reveal       { opacity: 0; transform: translateY(30px);  transition: all 0.8s cubic-bezier(0.2,0.8,0.2,1); }
.ed-reveal-left  { opacity: 0; transform: translateX(-50px); transition: all 0.8s cubic-bezier(0.2,0.8,0.2,1); }
.ed-reveal-right { opacity: 0; transform: translateX(50px);  transition: all 0.8s cubic-bezier(0.2,0.8,0.2,1); }

.ed-animate-in .ed-reveal,    .ed-animate-in.ed-reveal,
.ed-animate-in .ed-reveal-left,  .ed-animate-in.ed-reveal-left,
.ed-animate-in .ed-reveal-right, .ed-animate-in.ed-reveal-right {
    opacity: 1 !important; transform: translate(0,0) scale(1) !important;
}

.ed-delay-1 { transition-delay: 0.1s; }
.ed-delay-2 { transition-delay: 0.2s; }
.ed-delay-3 { transition-delay: 0.3s; }
.ed-delay-4 { transition-delay: 0.4s; }

@keyframes edHeroFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
.ed-parallax-layer { transition: transform 0.1s ease-out; will-change: transform; }

@media (prefers-reduced-motion: reduce) {
    .ed-reveal, .ed-reveal-left, .ed-reveal-right, .ed-hero-visual {
        animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important;
    }
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1100px) { .ed-capabilities-grid { grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 991px) {
    .ed-hero { height: auto !important; min-height: auto !important; padding: 60px 0 80px !important; }
    .ed-hero-content { flex-direction: column; text-align: center; gap: 40px; padding: 0 20px !important; }
    .ed-hero-text h1 { font-size: 38px !important; }
    .ed-hero-text p  { margin-left: auto; margin-right: auto; }
    .ed-hero-cta     { justify-content: center; }
    .ed-hero-trust   { justify-content: center; flex-wrap: wrap; gap: 12px; }
    .ed-trust-divider { display: none; }
    .ed-hero-visual  { width: 100%; max-width: 580px; margin: 0 auto; animation: none; }

    .ed-feature-container { flex-direction: column !important; gap: 40px; padding: 0 20px !important; }
    .ed-feature-reverse   { flex-direction: column !important; }
    .ed-feature-content, .ed-feature-image { flex: none !important; width: 100%; }
    .ed-feature-highlights { grid-template-columns: 1fr; }
    .ed-feature-section { padding: 70px 0 !important; }

    .ed-capabilities-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .ed-capabilities-section { padding: 70px 0 !important; }
    .ed-use-cases-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .ed-use-cases-section { padding: 70px 0 !important; }
    .ed-faq-grid { grid-template-columns: 1fr !important; }
    .ed-faq-section { padding: 70px 0 !important; }
    .ed-faq-container { padding: 0 20px; }

    .ed-cta-container { padding: 60px 24px !important; border-radius: 28px !important; }
    .ed-cta-content h2 { font-size: 32px !important; }
    .ed-cta-content p  { font-size: 16px !important; }
    .ed-cta-buttons { flex-direction: column; align-items: center; }
    .ed-btn-lg { width: 100%; max-width: 320px; justify-content: center; }
    .ed-cta-section { padding: 60px 16px !important; }

    .ed-stats-band { padding: 50px 20px; }
    .ed-stats-container { justify-content: center; gap: 24px; }
    .ed-stat-value { font-size: 30px; }
    .ed-section-header { padding: 0 20px; }
    .ed-section-header h2 { font-size: 30px !important; }
}

@media (max-width: 576px) {
    .ed-hero-text h1 { font-size: 28px !important; }
    .ed-use-cases-grid { grid-template-columns: 1fr !important; }
    .ed-capabilities-grid { grid-template-columns: 1fr !important; }
    .ed-cta-content h2 { font-size: 24px !important; }
    .ed-cta-content p  { font-size: 15px !important; }
    .ed-stat-value { font-size: 26px; }
    .ed-cap-card { padding: 24px 18px !important; }
}
