/* ===========================================================================
   Stevie Coupon — main stylesheet
   Aesthetic: Gulf Coast sunset editorial. Warm sand, turquoise gulf,
   sunset coral, deep navy ink. Fraunces (display) + Manrope (body).
   =========================================================================== */

:root {
    /* Palette */
    --sand:        #fbf3e6;
    --sand-deep:   #f3e4cd;
    --ink:         #0e2a3d;
    --ink-soft:    #3a5568;
    --teal:        #12a5a0;
    --teal-deep:   #0b7c78;
    --coral:       #ff6a4d;
    --coral-deep:  #e94f31;
    --sun:         #ffcf4d;
    --sun-deep:    #f5b524;
    --sky-top:     #ffd18a;
    --sky-mid:     #ff9e6d;
    --white:       #ffffff;

    /* Type */
    --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
    --font-body:    'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Layout */
    --wrap: 1160px;
    --radius: 18px;
    --radius-lg: 28px;
    --shadow: 0 18px 50px -20px rgba(14, 42, 61, .35);
    --shadow-sm: 0 8px 24px -12px rgba(14, 42, 61, .3);
}

/* --------------------------------------------------------------- reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { overflow-x: hidden; }
body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--sand);
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: var(--font-display); font-weight: 900; line-height: 1.04; margin: 0; letter-spacing: -.01em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.sr-only, .skip-link {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link:focus {
    position: fixed; top: 12px; left: 12px; width: auto; height: auto; clip: auto;
    background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 10px; z-index: 200;
}
.eyebrow {
    font-family: var(--font-body); font-weight: 700; font-size: .8rem;
    letter-spacing: .16em; text-transform: uppercase; color: var(--teal-deep); margin-bottom: .6rem;
}

/* --------------------------------------------------------------- buttons -- */
.btn {
    display: inline-flex; align-items: center; gap: .5em;
    font-family: var(--font-body); font-weight: 700; font-size: 1rem;
    padding: .85em 1.5em; border-radius: 999px; border: 0; cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn-sun { background: var(--sun); color: var(--ink); box-shadow: 0 8px 18px -8px var(--sun-deep); }
.btn-sun:hover { transform: translateY(-2px); box-shadow: 0 12px 24px -8px var(--sun-deep); }
.btn-ink { background: var(--ink); color: var(--sand); }
.btn-ink:hover { transform: translateY(-2px); background: #143a52; }

/* ---------------------------------------------------------------- header -- */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(251, 243, 230, .82);
    backdrop-filter: saturate(140%) blur(12px);
    border-bottom: 1px solid rgba(14, 42, 61, .08);
    transition: box-shadow .2s ease;
}
.site-header.is-stuck { box-shadow: 0 6px 20px -14px rgba(14,42,61,.5); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 96px; }
.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 70px; width: auto; display: block; }

.nav { display: flex; align-items: center; }
.nav-menu { display: flex; align-items: center; gap: 1.6rem; font-weight: 600; }
.nav-menu a:not(.btn) { color: var(--ink-soft); transition: color .15s; }
.nav-menu a:not(.btn):hover { color: var(--ink); }
.nav-cta { padding: .6em 1.2em; font-size: .95rem; }
.nav-toggle { display: none; }

/* ------------------------------------------------------------------ hero -- */
.hero { position: relative; overflow: hidden; padding: clamp(2rem, 5vw, 4.5rem) 0 clamp(3rem, 6vw, 5.5rem); }
.hero-sky {
    position: absolute; inset: 0; z-index: 0;
    background:
        radial-gradient(120% 90% at 78% -10%, var(--sky-top) 0%, var(--sky-mid) 32%, transparent 62%),
        linear-gradient(180deg, #fff5e4 0%, var(--sand) 60%);
}
.hero-water {
    position: absolute; left: 0; right: 0; bottom: 0; height: 42%; z-index: 0;
    background: linear-gradient(180deg, transparent, rgba(18,165,160,.16) 40%, rgba(11,124,120,.24));
    -webkit-mask-image: radial-gradient(120% 120% at 50% 120%, #000 60%, transparent 72%);
            mask-image: radial-gradient(120% 120% at 50% 120%, #000 60%, transparent 72%);
}
.hero-grain {
    position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .5;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.4'/%3E%3C/svg%3E");
    mix-blend-mode: soft-light;
}
.hero-inner {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center;
}
.hero-copy h1 { font-size: clamp(2.7rem, 6.5vw, 4.6rem); margin: .3rem 0 1.1rem; }
.ink-underline { position: relative; color: var(--coral-deep); white-space: nowrap; }
.ink-underline::after {
    content: ""; position: absolute; left: -2%; right: -2%; bottom: .08em; height: .22em; z-index: -1;
    background: var(--sun); border-radius: 6px; transform: rotate(-1.2deg);
}
.hero-lede { font-size: 1.14rem; color: var(--ink-soft); max-width: 34ch; margin-bottom: 1.8rem; }
.hero-note { margin-top: 1rem; font-size: .92rem; color: var(--ink-soft); font-weight: 600; }

/* store badges */
.store-badges { display: flex; flex-wrap: wrap; gap: .8rem; }
.store-badges-center { justify-content: center; }
.store-badge {
    display: inline-flex; align-items: center; gap: .7rem;
    background: var(--ink); color: #fff; padding: .7rem 1.15rem; border-radius: 14px;
    transition: transform .18s ease, box-shadow .18s ease; box-shadow: var(--shadow-sm);
}
.store-badge:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -16px rgba(14,42,61,.6); }
.store-badge span span { display: block; }
.store-kicker { font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; opacity: .8; }
.store-name { font-size: 1.05rem; font-weight: 700; line-height: 1.1; }
.store-badge-light { background: var(--white); color: var(--ink); }
.store-badges-sm .store-badge { padding: .55rem .9rem; }

/* phone mockup */
.hero-phone { display: flex; justify-content: center; }
.phone {
    position: relative; width: min(300px, 78vw); aspect-ratio: 300 / 610;
    background: #0c2233; border-radius: 42px; padding: 12px;
    box-shadow: var(--shadow), inset 0 0 0 2px rgba(255,255,255,.06);
    transform: rotate(2.5deg);
}
.phone-notch { position: absolute; top: 16px; left: 50%; transform: translateX(-50%); width: 42%; height: 22px; background: #0c2233; border-radius: 0 0 14px 14px; z-index: 3; }
.phone-screen {
    height: 100%; border-radius: 32px; overflow: hidden; padding: 20px 16px;
    background: linear-gradient(180deg, #fff6e9, var(--sand-deep));
    display: flex; flex-direction: column; gap: 12px;
}
.app-topbar { display: flex; align-items: center; justify-content: space-between; margin-top: 6px; }
.app-loc { display: inline-flex; align-items: center; gap: 4px; font-weight: 700; font-size: .82rem; }
.app-pin { color: var(--coral-deep); flex: none; }
.app-dot { width: 26px; height: 26px; border-radius: 50%; background: var(--teal); }
.app-h { font-family: var(--font-display); font-weight: 900; font-size: 1rem; margin: 2px 0 -2px; }
/* Featured card — image-forward, like the app */
.app-card { position: relative; background: #fff; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm); flex: none; }
.app-card-img { width: 100%; height: 108px; object-fit: cover; display: block; }
.app-badge { position: absolute; top: 8px; left: 8px; background: var(--coral-deep); color: #fff; font-size: .58rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; padding: 3px 8px; border-radius: 999px; }
.app-card-body { padding: 9px 11px 11px; }
.app-card-body b { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; font-family: var(--font-display); font-size: .95rem; line-height: 1.12; }
.app-metaline { display: block; margin-top: 2px; font-size: .72rem; color: var(--ink-soft); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.app-row { display: flex; align-items: center; gap: 10px; background: #fff; border-radius: 14px; padding: 8px; box-shadow: var(--shadow-sm); overflow: hidden; flex: none; }
.app-thumb { width: 44px; height: 44px; border-radius: 10px; flex: none; object-fit: cover; }
.tt-coral { background: linear-gradient(135deg, var(--coral), var(--coral-deep)); }
.tt-teal  { background: linear-gradient(135deg, var(--teal), var(--teal-deep)); }
.tt-sun   { background: linear-gradient(135deg, var(--sun), var(--sun-deep)); }
.app-lines { min-width: 0; }
.app-lines b { display: block; font-size: .8rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.app-lines i { font-style: normal; font-size: .7rem; color: var(--ink-soft); display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ------------------------------------------------------------------ stats -- */
.stats { background: var(--ink); color: var(--sand); }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding: 1.6rem 24px; text-align: center; }
.stat { min-width: 0; }
.stat b { display: block; font-family: var(--font-display); font-size: 1.9rem; color: var(--sun); }
.stat span { font-size: .82rem; letter-spacing: .04em; color: rgba(251,243,230,.75); }

/* ---------------------------------------------------------------- sections -- */
.section { padding: clamp(3.2rem, 7vw, 6rem) 0; }
.section-head { max-width: 40ch; margin-bottom: 2.4rem; }
.section-head h2 { font-size: clamp(2rem, 4.5vw, 3rem); }
.section-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; max-width: none; }
.link-more { font-weight: 700; color: var(--teal-deep); white-space: nowrap; }
.link-more:hover { color: var(--teal); }

/* how it works */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.step { position: relative; background: var(--white); border-radius: var(--radius-lg); padding: 2rem 1.6rem 1.6rem; box-shadow: var(--shadow-sm); border: 1px solid rgba(14,42,61,.05); }
.step-num {
    display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px;
    border-radius: 14px; background: var(--sun); color: var(--ink);
    font-family: var(--font-display); font-weight: 900; font-size: 1.3rem; margin-bottom: 1rem;
}
.step h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.step p { color: var(--ink-soft); }

/* deals */
.deals { background: linear-gradient(180deg, var(--sand), var(--sand-deep)); }
.deal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.deal-card {
    position: relative; background: var(--white); border-radius: var(--radius-lg);
    padding: 1.6rem; box-shadow: var(--shadow-sm); overflow: hidden;
    border: 1px solid rgba(14,42,61,.05); transition: transform .2s ease, box-shadow .2s ease;
}
.deal-card::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 6px; }
.deal-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.accent-coral::before { background: var(--coral); }
.accent-teal::before  { background: var(--teal); }
.accent-sun::before   { background: var(--sun-deep); }
.deal-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.deal-cat { font-weight: 700; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; padding: .3em .7em; border-radius: 999px; background: var(--sand-deep); color: var(--ink-soft); }
.deal-area { font-size: .78rem; color: var(--ink-soft); }
.deal-offer { font-size: 1.45rem; margin-bottom: .5rem; }
.deal-detail { color: var(--ink-soft); font-size: .95rem; margin-bottom: 1.1rem; }
.deal-biz { font-weight: 700; color: var(--teal-deep); }

/* categories */
.cat-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; }
.cat-chip {
    display: flex; flex-direction: column; align-items: center; gap: .6rem; text-align: center;
    background: var(--white); border-radius: var(--radius); padding: 1.4rem 1rem;
    box-shadow: var(--shadow-sm); border: 1px solid rgba(14,42,61,.05);
    font-weight: 700; font-size: 1.08rem; transition: transform .18s ease, color .18s ease;
}
.cat-chip:hover { transform: translateY(-3px); color: var(--coral-deep); }
.cat-icon { width: 30px; height: 30px; color: var(--teal-deep); }

/* for businesses */
.business { background: linear-gradient(135deg, var(--teal-deep), #0a6461); color: var(--sand); }
.business-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(1.6rem, 4vw, 3.4rem); align-items: center; }
.business .eyebrow { color: var(--sun); }
.business h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin-bottom: 1rem; }
.business-copy p { color: rgba(251,243,230,.85); margin-bottom: 1.6rem; max-width: 40ch; }
.business-points { display: grid; gap: .9rem; }
.business-points li { background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); padding: 1rem 1.2rem; }
.business-points b { color: #fff; }

/* cta band */
.cta-band { background: var(--ink); color: var(--sand); text-align: center; }
.cta-inner { max-width: 620px; margin: 0 auto; }
.cta-band h2 { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: .8rem; }
.cta-band p { color: rgba(251,243,230,.8); margin-bottom: 2rem; }

/* ---------------------------------------------------------------- footer -- */
.site-footer { background: #0a2032; color: rgba(251,243,230,.72); padding: 3.5rem 0 2rem; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 2rem; }
.footer-logo { height: 52px; width: auto; display: block; }
.footer-brand p { margin-top: 1rem; max-width: 34ch; font-size: .92rem; }
.footer-col h3 { font-family: var(--font-body); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--sun); margin-bottom: 1rem; }
.footer-col ul { display: grid; gap: .6rem; }
.footer-col a:hover { color: var(--sand); }
.footer-legal { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(251,243,230,.12); font-size: .85rem; }
.footer-col [data-modal-open] { cursor: pointer; }

/* ---------------------------------------------------------------- legal -- */
.legal { padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 7vw, 5.5rem); }
.legal-inner { max-width: 760px; }
.legal h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); margin-bottom: .4rem; }
.legal-updated { color: var(--ink-soft); font-size: .9rem; margin-bottom: 2rem; }
.legal h2 { font-size: 1.4rem; margin: 2.2rem 0 .7rem; }
.legal p, .legal li { color: var(--ink-soft); line-height: 1.7; }
.legal p { margin-bottom: 1rem; }
.legal ul { list-style: disc; padding-left: 1.3rem; margin-bottom: 1rem; display: grid; gap: .5rem; }
.legal a { color: var(--teal-deep); font-weight: 600; text-decoration: underline; }
.legal-cross { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(14,42,61,.1); }

/* -------------------------------------------------------------- 404 ------ */
.notfound { padding: clamp(4rem, 10vw, 7rem) 0; text-align: center; }
.notfound-inner { max-width: 560px; margin: 0 auto; }
.notfound h1 { font-size: clamp(2rem, 5vw, 3rem); margin: .3rem 0 1rem; }
.notfound p { color: var(--ink-soft); margin-bottom: 1.8rem; }

/* ---------------------------------------------------------------- modal -- */
body.modal-open { overflow: hidden; }
.modal { position: fixed; inset: 0; z-index: 300; display: flex; align-items: center; justify-content: center; padding: 1.2rem; }
.modal[hidden] { display: none; }
.modal-overlay { position: absolute; inset: 0; background: rgba(10,26,47,.55); backdrop-filter: blur(3px); animation: fade .2s ease; }
.modal-dialog {
    position: relative; z-index: 1; width: 100%; max-width: 520px; max-height: 92vh; overflow-y: auto;
    background: var(--sand); border-radius: var(--radius-lg); padding: clamp(1.6rem, 4vw, 2.4rem);
    box-shadow: 0 30px 80px -20px rgba(10,26,47,.6); animation: pop .25s cubic-bezier(.2,.7,.2,1);
}
.modal-x { position: absolute; top: 12px; right: 14px; width: 38px; height: 38px; border: 0; background: none; font-size: 1.7rem; line-height: 1; color: var(--ink-soft); cursor: pointer; border-radius: 10px; }
.modal-x:hover { background: rgba(14,42,61,.07); color: var(--ink); }
.modal-body h2 { font-size: clamp(1.6rem, 3.5vw, 2rem); margin-bottom: .5rem; }
.modal-lede { color: var(--ink-soft); margin-bottom: 1.4rem; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes pop { from { opacity: 0; transform: translateY(16px) scale(.98); } to { opacity: 1; transform: none; } }

/* form */
.lb-form { display: grid; gap: 1rem; }
.field { display: grid; gap: .35rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { font-weight: 600; font-size: .9rem; }
.field .opt { color: var(--ink-soft); font-weight: 400; }
.field input, .field select, .field textarea {
    font: inherit; font-size: .98rem; color: var(--ink); background: #fff;
    border: 1.5px solid rgba(14,42,61,.16); border-radius: 12px; padding: .7rem .85rem; width: 100%;
    transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(18,165,160,.16);
}
.field textarea { resize: vertical; }
.lb-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.lb-error { background: rgba(233,79,49,.1); color: var(--coral-deep); border: 1px solid rgba(233,79,49,.25); border-radius: 10px; padding: .6rem .8rem; font-size: .9rem; font-weight: 600; margin: 0; }
.lb-submit { justify-content: center; margin-top: .3rem; }
.lb-submit:disabled { opacity: .7; cursor: default; }
.lb-fineprint { font-size: .8rem; color: var(--ink-soft); text-align: center; margin: 0; }
.lb-fineprint a { color: var(--teal-deep); font-weight: 600; }
.modal-success { text-align: center; padding: 1rem 0; }
.success-mark { width: 62px; height: 62px; margin: 0 auto 1rem; border-radius: 50%; background: var(--teal); color: #fff; font-size: 2rem; display: flex; align-items: center; justify-content: center; }
.modal-success .btn { margin-top: 1.4rem; }
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }

/* Keep the 4-city hero eyebrow on one line on phones. */
@media (max-width: 600px) {
    .hero-copy .eyebrow { white-space: nowrap; letter-spacing: .05em; font-size: clamp(.5rem, 2.7vw, .72rem); }
}

/* ------------------------------------------------------------- animation -- */
.reveal { opacity: 0; transform: translateY(18px); animation: reveal .7s cubic-bezier(.2,.7,.2,1) both; }
/* Staggered hero entrance (delays in CSS, not inline styles). */
.hero-copy .reveal:nth-child(1) { animation-delay: .05s; }
.hero-copy .reveal:nth-child(2) { animation-delay: .15s; }
.hero-copy .reveal:nth-child(3) { animation-delay: .27s; }
.hero-copy .reveal:nth-child(4) { animation-delay: .39s; }
.hero-copy .reveal:nth-child(5) { animation-delay: .50s; }
.hero-phone.reveal { animation-delay: .32s; }
@keyframes reveal { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.in-view { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.in-view.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
    .reveal, .in-view { opacity: 1; transform: none; }
    html { scroll-behavior: auto; }
}

/* ------------------------------------------------------------ responsive -- */
@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-phone { order: -1; }
    .phone { transform: none; }
    .business-inner { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .cat-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
    .nav-menu {
        position: fixed; inset: 96px 0 auto 0; flex-direction: column; gap: 0; align-items: stretch;
        background: var(--sand); border-bottom: 1px solid rgba(14,42,61,.1); padding: .5rem 0;
        transform: translateY(-140%); transition: transform .28s ease; box-shadow: var(--shadow);
    }
    .nav-menu.is-open { transform: none; }
    .nav-menu li { padding: 0 24px; }
    .nav-menu a:not(.btn) { display: block; padding: .9rem 0; border-bottom: 1px solid rgba(14,42,61,.06); }
    .nav-cta { margin: .8rem 0; justify-content: center; }
    .nav-toggle {
        display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px;
        background: none; border: 0; cursor: pointer; position: relative;
    }
    .nav-toggle-bar, .nav-toggle-bar::before, .nav-toggle-bar::after {
        content: ""; display: block; width: 24px; height: 2.5px; background: var(--ink); border-radius: 3px; transition: transform .25s ease, opacity .2s ease;
    }
    .nav-toggle-bar::before { position: absolute; transform: translateY(-8px); }
    .nav-toggle-bar::after { position: absolute; transform: translateY(8px); }
    .nav-toggle[aria-expanded="true"] .nav-toggle-bar { background: transparent; }
    .nav-toggle[aria-expanded="true"] .nav-toggle-bar::before { transform: rotate(45deg); }
    .nav-toggle[aria-expanded="true"] .nav-toggle-bar::after { transform: rotate(-45deg); }

    .steps, .deal-grid { grid-template-columns: 1fr; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
    .section-head-row { flex-direction: column; align-items: flex-start; }
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr; }
}
