/* ============================================================
   American Benefit Guide — Patriotic Elegant Theme
   Colors: Navy #1a2744 · Red #B22234 · Gold #C9A84C · Cream #f7f4ef
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,400;0,700;0,900;1,400&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --navy:        #1a2744;
    --navy-deep:   #0d1a35;
    --navy-mid:    #243560;
    --red:         #B22234;
    --red-dark:    #8b1a28;
    --red-soft:    #fdf2f3;
    --gold:        #C9A84C;
    --gold-dark:   #a07c2a;
    --gold-light:  #f5e9c8;
    --white:       #ffffff;
    --off-white:   #fafaf8;
    --cream:       #f7f4ef;
    --text-main:   #3d3d3d;
    --text-heading:#1a2744;
    --text-muted:  #6b7280;
    --border:      #e5e0d8;
    --border-soft: #ede9e2;
    --shadow-sm:   0 2px 8px rgba(26,39,68,0.07);
    --shadow-md:   0 6px 24px rgba(26,39,68,0.10);
    --shadow-lg:   0 16px 48px rgba(26,39,68,0.13);
}

/* ── Reset ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; -webkit-tap-highlight-color:transparent; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background: var(--off-white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ── */
h1, h2, h3 {
    font-family: 'Merriweather', serif;
    color: var(--text-heading);
    line-height: 1.2;
    font-weight: 900;
}
h1 { font-size: clamp(2.1rem, 5.5vw, 3.4rem); letter-spacing: -0.01em; margin-bottom: 18px; }
h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); letter-spacing: -0.01em; margin-bottom: 14px; }
h3 { font-size: 1.1rem; margin-bottom: 8px; font-weight: 700; }

.highlight { color: var(--gold); }

section { padding: 72px 0; }

/* ── Top Ribbon ── */
.top-ribbon {
    background: var(--navy-deep);
    padding: 7px 0;
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.top-ribbon .container { display: flex; justify-content: center; align-items: center; gap: 14px; flex-wrap: wrap; }
.ribbon-sep { color: var(--gold); font-size: 0.6rem; }

/* ── Navbar ── */
.navbar {
    background: var(--white);
    border-bottom: 3px solid var(--navy);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(26,39,68,0.10);
}
.navbar .container { display: flex; justify-content: space-between; align-items: center; padding-top: 12px; padding-bottom: 12px; }

/* Brand Logo */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.flag-icon { width: 44px; height: auto; border-radius: 3px; box-shadow: 0 1px 4px rgba(0,0,0,0.25); flex-shrink: 0; object-fit: cover; }
.brand-name {
    font-family: 'Merriweather', serif;
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--navy);
    letter-spacing: -0.01em;
    line-height: 1.1;
}
.brand-name em { font-style: normal; color: var(--red); }

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.85rem;
    font-weight: 600;
    transition: color 0.2s;
    letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--navy); }

.btn-nav {
    display: inline-flex;
    align-items: center;
    padding: 9px 20px;
    background: var(--red);
    color: var(--white) !important;
    border-radius: 5px;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 3px 0 var(--red-dark);
}
.btn-nav:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-nav:active { transform: translateY(1px); box-shadow: 0 1px 0 var(--red-dark); }

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: 0.3s; }

/* ── Hero ── */
.hero {
    background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-mid) 100%);
    padding: 80px 0 70px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Subtle star-field texture */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(201,168,76,0.12) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.hero-stars {
    position: absolute;
    top: 0; left: 0; right: 0;
    display: flex;
    justify-content: space-around;
    padding: 18px 40px;
    font-size: 0.7rem;
    color: rgba(201,168,76,0.25);
    letter-spacing: 8px;
    pointer-events: none;
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.35);
    color: var(--gold-light);
    padding: 6px 16px;
    border-radius: 99px;
    font-size: 0.72rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero h1 { color: var(--white); }
.hero h1 .highlight { color: var(--gold); }

.hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.72);
    margin-bottom: 36px;
    font-weight: 400;
    max-width: 500px;
    line-height: 1.7;
}

.hero-cta-group { display: flex; flex-direction: column; gap: 14px; max-width: 400px; }

/* Hero buttons */
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 32px;
    background: var(--red);
    color: var(--white);
    border-radius: 6px;
    font-weight: 800;
    font-size: 0.9rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    box-shadow: 0 5px 0 var(--red-dark), 0 8px 20px rgba(178,34,52,0.35);
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}
.btn-hero-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 7px 0 var(--red-dark), 0 12px 28px rgba(178,34,52,0.4); }
.btn-hero-primary:active { transform: translateY(2px); box-shadow: 0 2px 0 var(--red-dark); }

.btn-hero-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: transparent;
    color: var(--gold-light);
    border: 2px solid rgba(201,168,76,0.45);
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}
.btn-hero-ghost:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.08); }

.hero-trust {
    display: flex;
    gap: 22px;
    margin-top: 28px;
    flex-wrap: wrap;
}
.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.star-check { color: var(--gold); font-size: 0.7rem; }

/* Hero visual — flag + stats */
.hero-visual { display: flex; flex-direction: column; gap: 20px; }

.hero-flag-display {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 3px rgba(201,168,76,0.3);
}
.big-flag { width: 100%; height: auto; display: block; object-fit: cover; }

.flag-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(13,26,53,0.92) 0%, transparent 100%);
    padding: 28px 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.flag-caption-title {
    font-family: 'Merriweather', serif;
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.flag-caption-sub {
    font-size: 0.72rem;
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 2px;
}

.hero-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.hero-stat {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 10px;
    padding: 16px 12px;
    text-align: center;
    backdrop-filter: blur(8px);
}
.hero-stat-num {
    font-family: 'Merriweather', serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}
.hero-stat-label {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.5);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
}

/* ── Stripe Divider ── */
.stripe-divider { display: flex; height: 6px; }
.stripe { flex: 1; }
.stripe.red   { background: var(--red); }
.stripe.white { background: var(--white); }
.stripe.blue  { background: var(--navy); }

/* ── Category Pills ── */
.categories {
    background: var(--cream);
    padding: 44px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.categories-label {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--gold-dark);
    margin-bottom: 22px;
}
.categories-grid { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }

.category-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 99px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-heading);
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: var(--shadow-sm);
}
.category-pill:hover {
    border-color: var(--navy);
    color: var(--navy);
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(26,39,68,0.12);
}
.pill-icon { font-size: 1rem; }

/* ── Section Header ── */
.section-header { text-align: center; margin-bottom: 52px; }
.section-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--gold-dark);
    margin-bottom: 10px;
}
.section-sub {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
    max-width: 520px;
    margin: 10px auto 0;
    line-height: 1.7;
}

/* ── How It Works ── */
.how-it-works { background: var(--white); }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
}
.steps-grid::before {
    content: '';
    position: absolute;
    top: 32px;
    left: calc(16.66% + 20px);
    right: calc(16.66% + 20px);
    height: 2px;
    background: linear-gradient(90deg, var(--red) 0%, var(--gold) 50%, var(--navy) 100%);
    opacity: 0.25;
}

.step-card {
    text-align: center;
    padding: 36px 28px;
    border-radius: 14px;
    border: 1.5px solid var(--border);
    background: var(--white);
    position: relative;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}
.step-card:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 36px rgba(201,168,76,0.15);
    transform: translateY(-4px);
}
.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    color: var(--gold);
    font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    font-weight: 900;
    display: grid;
    place-items: center;
    margin: 0 auto 22px;
    box-shadow: 0 4px 12px rgba(26,39,68,0.25);
    position: relative;
    z-index: 1;
}
.step-card h3 { font-size: 1.05rem; margin-bottom: 10px; color: var(--navy); }
.step-card p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.7; }

/* ── Benefits ── */
.benefits { background: var(--cream); }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.benefit-card {
    background: var(--white);
    border-radius: 14px;
    padding: 30px 26px;
    border: 1.5px solid var(--border-soft);
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}
.benefit-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: var(--gold);
}
.benefit-icon { font-size: 2.2rem; margin-bottom: 16px; display: block; }
.benefit-card h3 { font-size: 1rem; margin-bottom: 8px; color: var(--navy); }
.benefit-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }

/* ── Offer Categories ── */
.offer-categories { background: var(--white); }

.offer-categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.offer-cat-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 26px;
    border-radius: 14px;
    border: 1.5px solid var(--border-soft);
    background: var(--white);
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow-sm);
}
.offer-cat-card:hover {
    border-color: var(--navy);
    box-shadow: 0 8px 28px rgba(26,39,68,0.10);
    transform: translateY(-3px);
}
.offer-cat-icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 1.6rem;
    flex-shrink: 0;
    border: 1px solid var(--border-soft);
}
.offer-cat-card h3 { font-size: 1rem; margin-bottom: 5px; color: var(--navy); }
.offer-cat-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }
.offer-cat-arrow {
    margin-left: auto;
    color: var(--border);
    font-size: 1.4rem;
    align-self: center;
    flex-shrink: 0;
    transition: color 0.2s, transform 0.2s;
    font-weight: 300;
}
.offer-cat-card:hover .offer-cat-arrow { color: var(--red); transform: translateX(4px); }

/* ── Testimonials ── */
.testimonials { background: var(--cream); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.testimonial-card {
    background: var(--white);
    border-radius: 14px;
    padding: 28px;
    border: 1.5px solid var(--border-soft);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s, transform 0.3s;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.testimonial-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-text {
    font-family: 'Merriweather', serif;
    font-size: 0.85rem;
    font-style: italic;
    color: var(--text-main);
    line-height: 1.75;
    margin-bottom: 18px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--navy);
    border: 2px solid var(--gold);
    display: grid;
    place-items: center;
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--gold);
    flex-shrink: 0;
}
.author-name { font-size: 0.84rem; font-weight: 800; color: var(--navy); }
.author-location { font-size: 0.72rem; color: var(--text-muted); font-weight: 600; margin-top: 1px; }

/* ── CTA Banner ── */
.cta-banner {
    background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-mid) 100%);
    padding: 80px 0 70px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.cta-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(201,168,76,0.08) 1px, transparent 1px);
    background-size: 36px 36px;
    pointer-events: none;
}
.cta-banner > * { position: relative; z-index: 1; }

.cta-banner-flag-strip {
    position: absolute;
    top: 0; left: 0; right: 0;
    display: flex;
    height: 5px;
    z-index: 2;
}
.fstrip { flex: 1; }
.fstrip.red   { background: var(--red); }
.fstrip.white { background: rgba(255,255,255,0.6); }
.fstrip.blue  { background: var(--navy-mid); }

.cta-stars {
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 12px;
    margin-bottom: 20px;
    opacity: 0.7;
}
.cta-banner h2 { color: var(--white); font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: 14px; }
.cta-highlight { color: var(--gold); }
.cta-banner p { color: rgba(255,255,255,0.68); font-size: 1rem; max-width: 500px; margin: 0 auto 36px; line-height: 1.7; }

.email-form { display: flex; gap: 10px; max-width: 480px; margin: 0 auto; }
.email-form input {
    flex: 1;
    padding: 16px 20px;
    border-radius: 7px;
    border: 1.5px solid rgba(201,168,76,0.3);
    background: rgba(255,255,255,0.08);
    color: var(--white);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}
.email-form input::placeholder { color: rgba(255,255,255,0.35); }
.email-form input:focus { border-color: var(--gold); background: rgba(255,255,255,0.12); }

.btn-cta-submit {
    display: inline-flex;
    align-items: center;
    padding: 16px 28px;
    background: var(--red);
    color: var(--white);
    border: none;
    border-radius: 7px;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 4px 0 var(--red-dark);
    transition: all 0.2s;
}
.btn-cta-submit:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-cta-submit:active { transform: translateY(2px); box-shadow: 0 1px 0 var(--red-dark); }

.cta-banner-trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 22px;
    flex-wrap: wrap;
}
.cta-banner-trust span {
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255,255,255,0.38);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: flex;
    align-items: center;
    gap: 5px;
}
.cta-banner-trust span::before { content: '★'; color: var(--gold); opacity: 0.7; }

/* ── Footer ── */
footer {
    background: var(--navy-deep);
    color: var(--white);
    padding: 0 0 32px;
}

.footer-flag-bar { display: flex; height: 5px; }
.ffbar { flex: 1; }
.ffbar.red   { background: var(--red); }
.ffbar.white { background: rgba(255,255,255,0.5); }
.ffbar.blue  { background: var(--navy-mid); }

footer .container { padding-top: 52px; }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 44px;
    margin-bottom: 44px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 14px;
}
.footer-logo span {
    font-family: 'Merriweather', serif;
    font-size: 1.15rem;
    font-weight: 900;
    color: var(--white);
}
.footer-logo span em { font-style: normal; color: var(--gold); }

.footer-brand p {
    font-size: 0.84rem;
    color: rgba(255,255,255,0.38);
    line-height: 1.75;
    max-width: 280px;
}

.footer-col h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold);
    margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a {
    text-decoration: none;
    color: rgba(255,255,255,0.45);
    font-size: 0.84rem;
    font-weight: 500;
    transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold-light); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 26px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.28); line-height: 1.6; }
.footer-legal {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.22);
    line-height: 1.65;
    max-width: 680px;
    text-align: right;
}

/* ── Animations ── */
@keyframes pulse {
    0%   { box-shadow: 0 5px 0 var(--red-dark), 0 0 0 0 rgba(178,34,52,0.45); }
    70%  { box-shadow: 0 5px 0 var(--red-dark), 0 0 0 18px rgba(178,34,52,0); }
    100% { box-shadow: 0 5px 0 var(--red-dark), 0 0 0 0 rgba(178,34,52,0); }
}
.pulse { animation: pulse 2.8s infinite; }

.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 44px; }
    .hero-visual { max-width: 520px; margin: 0 auto; width: 100%; }
    .hero-stats-row { grid-template-columns: repeat(3, 1fr); }
    .steps-grid { grid-template-columns: 1fr; gap: 16px; }
    .steps-grid::before { display: none; }
    .benefits-grid { grid-template-columns: 1fr 1fr; }
    .offer-categories-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 640px) {
    section { padding: 48px 0; }
    .hero { padding: 52px 0 44px; }
    .hero-stats-row { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .hero-stat-num { font-size: 1.2rem; }
    .benefits-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .categories-grid { gap: 8px; }
    .email-form { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; gap: 26px; }
    .footer-bottom { flex-direction: column; }
    .footer-legal { text-align: left; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .hero-grid { gap: 32px; }
    .hero-cta-group { max-width: 100%; }
}
