/* ============================================================
   ExpoLeads Public Marketing Site
   Aesthetic: deep indigo → teal gradient, glow orbs, glassy cards
   ============================================================ */

/* ── Reset & tokens ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --c-bg:        #0e1230;
    --c-bg2:       #1a1a55;
    --c-bg3:       #0e3f3c;
    --c-teal:      rgba(18, 184, 175, 0.45);
    --c-lime:      rgba(140, 214, 58,  0.28);
    --c-indigo:    rgba(99, 102, 241,  0.28);
    --c-text:      #f1f5f9;
    --c-muted:     #94a3b8;
    --c-border:    rgba(255,255,255,0.10);
    --c-card:      rgba(255,255,255,0.05);
    --c-card-brd:  rgba(255,255,255,0.12);
    --grad-cta:    linear-gradient(120deg,#2c2b90 0%,#0e3f3c 100%);
    --grad-hero:   linear-gradient(160deg,#0e1230 0%,#1a1a55 38%,#0e3f3c 100%);
    --font:        -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
    --radius-card: 20px;
    --radius-btn:  12px;
    --shadow-card: 0 20px 60px rgba(8,12,36,0.55), 0 4px 16px rgba(8,12,36,0.22);
}

html { scroll-behavior: smooth; }

body.site-body {
    font-family: var(--font);
    background: var(--grad-hero);
    color: var(--c-text);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    line-height: 1.65;
}

/* ── Backdrop ─────────────────────────────────────────────── */
.site-bg {
    position: fixed; inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}
.site-bg__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
    opacity: .75;
}
.site-bg__glow--teal   { top: -160px; left: -100px; width: 560px; height: 560px; background: var(--c-teal); }
.site-bg__glow--lime   { bottom: -180px; right: -120px; width: 600px; height: 600px; background: var(--c-lime); }
.site-bg__glow--indigo { top: 40%; left: 55%; width: 380px; height: 380px; background: var(--c-indigo); transform: translate(-50%,-50%); }
.site-bg__grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 46px 46px;
    -webkit-mask-image: radial-gradient(circle at 50% 35%, #000 0%, transparent 80%);
            mask-image: radial-gradient(circle at 50% 35%, #000 0%, transparent 80%);
}

/* ── Layout helpers ───────────────────────────────────────── */
.site-wrap {
    position: relative;
    z-index: 1;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.site-section {
    padding: 6rem 0;
}
.site-section + .site-section { padding-top: 0; }
.site-section + .feature-section { padding-top: 0 !important; }

.site-section__head {
    text-align: center;
    margin-bottom: 3.5rem;
}
.site-section__eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #12b8af;
    margin-bottom: 0.75rem;
}
.site-section__title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #fff;
}
.site-section__sub {
    margin-top: 0.75rem;
    font-size: 1.05rem;
    color: var(--c-muted);
    max-width: 56ch;
    margin-left: auto;
    margin-right: auto;
}

/* ── Glassy card ──────────────────────────────────────────── */
.site-card {
    background: var(--c-card);
    border: 1px solid var(--c-card-brd);
    border-radius: var(--radius-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-card);
    padding: 2rem;
    transition: transform .2s ease, box-shadow .2s ease;
    display: flex;
    flex-direction: column;
}
.site-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 28px 70px rgba(8,12,36,0.65), 0 6px 20px rgba(8,12,36,0.28);
}

/* ── Buttons ──────────────────────────────────────────────── */
.site-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-btn);
    font-size: 0.97rem;
    font-weight: 600;
    text-decoration: none;
    background: var(--grad-cta);
    color: #fff;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 28px rgba(44,43,144,0.3);
    transition: filter .16s ease, transform .16s ease, box-shadow .16s ease;
}
.site-cta:hover { filter: brightness(1.1); transform: translateY(-1px); box-shadow: 0 14px 34px rgba(44,43,144,0.38); }
.site-cta:active { transform: translateY(0); }
.site-cta--sm { padding: 0.65rem 1.3rem; font-size: 0.88rem; }
.site-cta--ghost {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.25);
    color: var(--c-text);
    box-shadow: none;
}
.site-cta--ghost:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.4); filter: none; }

.site-cta--lg { padding: 1.05rem 2.2rem; font-size: 1.05rem; }

/* ── Header ───────────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(14,18,48,0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--c-border);
}
.site-header__inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    flex-shrink: 0;
}
.site-logo__tile {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: var(--grad-cta);
    display: flex; align-items: center; justify-content: center;
}
.site-logo__tile img { max-height: 22px; max-width: 24px; filter: brightness(0) invert(1); object-fit: contain; }
.site-logo__tile--sm { width: 30px; height: 30px; border-radius: 8px; }
.site-logo__tile--sm img { max-height: 18px; max-width: 18px; }
.site-logo__name { font-size: 1.05rem; font-weight: 700; color: #fff; }

.site-nav { display: flex; align-items: center; }
.site-nav__links {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    list-style: none;
    flex-wrap: nowrap;
}
.site-nav__link {
    display: block;
    padding: 0.4rem 0.85rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--c-muted);
    text-decoration: none;
    border-radius: 8px;
    transition: color .15s, background .15s;
}
.site-nav__link:hover { color: #fff; background: rgba(255,255,255,0.06); }
.site-nav__link--ghost { color: rgba(255,255,255,0.7); }
.site-nav__sep { width: 1px; height: 20px; background: var(--c-border); margin: 0 0.5rem; }

.site-nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.site-nav__burger span { display: block; width: 22px; height: 2px; background: var(--c-text); border-radius: 2px; transition: transform .2s; }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--c-border);
    margin-top: 4rem;
}
.site-footer__inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 3.5rem 1.5rem 2.5rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}
.site-footer__brand {
    flex: 0 0 200px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.site-footer__name { font-size: 1rem; font-weight: 700; color: #fff; }
.site-footer__tagline { font-size: 0.85rem; color: var(--c-muted); margin-top: 0.25rem; }
.site-footer__nav { flex: 1; display: flex; gap: 2.5rem; flex-wrap: wrap; }
.site-footer__col { display: flex; flex-direction: column; gap: 0.6rem; min-width: 120px; }
.site-footer__col-head { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--c-muted); margin-bottom: 0.2rem; }
.site-footer__col a { font-size: 0.9rem; color: rgba(255,255,255,0.65); text-decoration: none; transition: color .15s; }
.site-footer__col a:hover { color: #fff; }
.site-footer__bottom {
    max-width: 1160px;
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
    border-top: 1px solid var(--c-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    color: var(--c-muted);
}
.site-footer__login { color: rgba(255,255,255,0.5); text-decoration: none; transition: color .15s; }
.site-footer__login:hover { color: #fff; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
    padding: 7rem 0 5rem;
    text-align: center;
}
.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(18,184,175,0.35);
    background: rgba(18,184,175,0.08);
    font-size: 0.82rem;
    font-weight: 600;
    color: #12b8af;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.75rem;
}
.hero__title {
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 1.25rem;
}
.hero__title em {
    font-style: normal;
    background: linear-gradient(120deg, #12b8af, #8cd63a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero__sub {
    font-size: 1.15rem;
    color: var(--c-muted);
    max-width: 52ch;
    margin: 0 auto 2.5rem;
}
.hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Feature grid ─────────────────────────────────────────── */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    gap: 1.5rem;
}
.feature-card {
    padding: 1.75rem;
}
.feature-card__icon {
    width: 46px; height: 46px;
    border-radius: 12px;
    background: rgba(18,184,175,0.12);
    border: 1px solid rgba(18,184,175,0.25);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.1rem;
}
.feature-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}
.feature-card__body {
    font-size: 0.9rem;
    color: var(--c-muted);
    line-height: 1.7;
}

/* ── Pricing ──────────────────────────────────────────────── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}
.pricing-card {
    padding: 2rem;
    position: relative;
}
.pricing-card--featured {
    border-color: rgba(18,184,175,0.45);
    background: rgba(18,184,175,0.06);
}
.pricing-card--featured:hover { transform: translateY(-3px); }
.pricing-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background: linear-gradient(120deg, #12b8af, #8cd63a);
    color: #0e1230;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
}
.pricing-card__name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}
.pricing-card__price {
    font-size: 2.4rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 0.25rem;
}
.pricing-card__price sup { font-size: 1.1rem; font-weight: 600; vertical-align: super; }
.pricing-card__cycle { font-size: 0.85rem; color: var(--c-muted); margin-bottom: 1.5rem; }
.pricing-card__features {
    list-style: none;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex: 1;
}
.pricing-card__features li {
    display: flex;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}
.pricing-card__features li::before { content: '✓'; color: #12b8af; font-weight: 700; flex-shrink: 0; }
.pricing-cta { width: 100%; justify-content: center; margin-top: auto; }

/* ── FAQs ─────────────────────────────────────────────────── */
.faq-group { margin-bottom: 3rem; }
.faq-group__title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #12b8af;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(18,184,175,0.2);
}
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.faq-item {
    border: 1px solid var(--c-card-brd);
    border-radius: 14px;
    overflow: hidden;
    background: var(--c-card);
    backdrop-filter: blur(10px);
    transition: border-color .2s, background .2s, box-shadow .2s;
}
.faq-item:hover {
    border-color: rgba(18,184,175,0.3);
    background: rgba(18,184,175,0.03);
}
.faq-item__q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    font-size: 0.98rem;
    font-weight: 600;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: color .2s;
}
.faq-item__q:hover { color: #12b8af; }
.faq-item.is-open .faq-item__q { color: #12b8af; }
.faq-item__chevron {
    flex-shrink: 0;
    width: 20px; height: 20px;
    color: var(--c-muted);
    transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1), color .2s;
}
.faq-item.is-open .faq-item__chevron {
    transform: rotate(180deg);
    color: #12b8af;
}
.faq-item__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s cubic-bezier(0.4, 0, 0.2, 1), padding .3s ease;
    border-top: 1px solid transparent;
}
.faq-item.is-open .faq-item__a {
    max-height: 500px;
    padding: 0 1.5rem 1.25rem;
    border-top-color: rgba(18,184,175,0.15);
}
.faq-item__a p { font-size: 0.9rem; color: var(--c-muted); line-height: 1.75; margin: 0; }
.faq-item__a ul { margin: 0; padding-left: 1.4rem; color: var(--c-muted); }
.faq-item__a li { font-size: 0.9rem; line-height: 1.75; margin-bottom: 0.3rem; }

/* ── Contact / CMS forms ──────────────────────────────────── */
.site-form { max-width: 600px; margin: 0 auto; }
.site-form-card { padding: 2.5rem; }
.site-field { margin-bottom: 1.25rem; }
.site-field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    margin-bottom: 0.45rem;
}
.site-field .form-ctrl {
    width: 100%;
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
    color: #fff;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    outline: none;
    transition: border-color .18s, background .18s, box-shadow .18s;
    font-family: var(--font);
}
.site-field .form-ctrl::placeholder { color: rgba(255,255,255,0.3); }
.site-field .form-ctrl:focus {
    background: rgba(255,255,255,0.09);
    border-color: rgba(18,184,175,0.6);
    box-shadow: 0 0 0 3px rgba(18,184,175,0.12);
}
.site-field textarea.form-ctrl { min-height: 120px; resize: vertical; }

.site-dropdown {
    position: relative;
}
.site-dropdown__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    width: 100%;
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
    color: #fff;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    cursor: pointer;
    text-align: left;
    transition: border-color .18s, background .18s, box-shadow .18s;
    font-family: var(--font);
}
.site-dropdown__trigger:hover {
    background: rgba(255,255,255,0.09);
    border-color: rgba(18,184,175,0.3);
}
.site-dropdown__trigger:focus {
    outline: none;
    background: rgba(255,255,255,0.09);
    border-color: rgba(18,184,175,0.6);
    box-shadow: 0 0 0 3px rgba(18,184,175,0.12);
}
.site-dropdown__trigger.is-open {
    border-color: rgba(18,184,175,0.6);
    background: rgba(255,255,255,0.09);
}
.site-dropdown__text {
    flex: 1;
}
.site-dropdown__icon {
    width: 18px;
    height: 18px;
    color: #12b8af;
    flex-shrink: 0;
    transition: transform .2s;
}
.site-dropdown__trigger.is-open .site-dropdown__icon {
    transform: rotate(180deg);
}
.site-dropdown__menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    background: rgba(26,26,85,0.95);
    border: 1px solid rgba(18,184,175,0.25);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 12px 32px rgba(8,12,36,0.45);
    max-height: 280px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
}
.site-dropdown__menu.is-open {
    display: flex;
    flex-direction: column;
}
.site-dropdown__item {
    padding: 0.85rem 1rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background .15s, color .15s;
    font-family: var(--font);
}
.site-dropdown__item:hover {
    background: rgba(18,184,175,0.1);
    color: #12b8af;
}
.site-dropdown__item.is-selected {
    background: rgba(18,184,175,0.15);
    color: #12b8af;
    font-weight: 600;
}
.site-dropdown__item:first-child {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.site-alert {
    padding: 0.9rem 1.2rem;
    border-radius: 10px;
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}
.site-alert--success { background: rgba(18,184,175,0.12); border: 1px solid rgba(18,184,175,0.3); color: #12b8af; }
.site-alert--error   { background: rgba(239,68,68,0.1);  border: 1px solid rgba(239,68,68,0.3);  color: #fca5a5; }

/* ── CMS content ──────────────────────────────────────────── */
.cms-card { padding: 2.5rem 3rem; max-width: 820px; margin: 0 auto; }
.cms-card h2 { font-size: 1.7rem; font-weight: 800; color: #fff; margin: 2rem 0 0.75rem; letter-spacing: -0.01em; }
.cms-card h3 { font-size: 1.35rem; font-weight: 700; color: rgba(255,255,255,0.95); margin: 1.5rem 0 0.6rem; }
.cms-card p  { font-size: 1.05rem; color: var(--c-muted); line-height: 1.85; margin-bottom: 1rem; }
.cms-card ul, .cms-card ol { color: var(--c-muted); font-size: 1.05rem; padding-left: 1.5rem; margin-bottom: 1rem; }
.cms-card li { margin-bottom: 0.5rem; line-height: 1.8; }
.cms-card a  { color: #12b8af; text-decoration: none; font-weight: 500; }
.cms-card a:hover { text-decoration: underline; }
.cms-empty { text-align: center; color: var(--c-muted); padding: 4rem 2rem; font-size: 1rem; }

/* ── CTA band ─────────────────────────────────────────────── */
.cta-band {
    background: rgba(18,184,175,0.06);
    border-top: 1px solid rgba(18,184,175,0.15);
    border-bottom: 1px solid rgba(18,184,175,0.15);
    text-align: center;
    padding: 4.5rem 1.5rem;
}
.cta-band__title { font-size: clamp(1.6rem,3.5vw,2.4rem); font-weight: 800; color: #fff; letter-spacing: -0.02em; margin-bottom: 0.75rem; }
.cta-band__sub   { font-size: 1rem; color: var(--c-muted); margin-bottom: 2rem; }
.cta-band__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Features page detail sections ───────────────────────── */
.feature-section { padding: 4rem 0; }
.feature-section + .feature-section { padding-top: 0; }
.feature-section__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.feature-section__inner.rev { direction: rtl; }
.feature-section__inner.rev > * { direction: ltr; }
.feature-section__copy h3 {
    font-size: 1.5rem; font-weight: 800; color: #fff; letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}
.feature-section__copy p { font-size: 0.95rem; color: var(--c-muted); line-height: 1.75; margin-bottom: 0.6rem; }
.feature-section__copy ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.feature-section__copy ul li { display: flex; gap: 0.6rem; font-size: 0.92rem; color: rgba(255,255,255,0.8); }
.feature-section__copy ul li::before { content: '→'; color: #12b8af; flex-shrink: 0; }
.feature-mock {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 1.5rem;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.feature-mock__row {
    height: 12px;
    border-radius: 6px;
    background: rgba(255,255,255,0.07);
}
.feature-mock__row:nth-child(1) { width: 60%; }
.feature-mock__row:nth-child(2) { width: 85%; }
.feature-mock__row:nth-child(3) { width: 45%; }
.feature-mock__row:nth-child(4) { width: 70%; }
.feature-mock__row:nth-child(5) { width: 55%; }
.feature-mock__pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    background: rgba(18,184,175,0.12);
    border: 1px solid rgba(18,184,175,0.25);
    font-size: 0.75rem;
    font-weight: 600;
    color: #12b8af;
}
.feature-mock__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.5rem;
    margin-top: 0.5rem;
}
.feature-mock__cell {
    background: rgba(255,255,255,0.06);
    border-radius: 8px;
    height: 60px;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
    .site-nav__links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0; right: 0;
        background: rgba(14,18,48,0.97);
        border-bottom: 1px solid var(--c-border);
        flex-direction: column;
        padding: 1rem;
        gap: 0.25rem;
    }
    .site-nav__links.is-open { display: flex; }
    .site-nav__sep { display: none; }
    .site-nav__burger { display: flex; }
    .site-header { position: relative; }

    .hero { padding: 4rem 0 3rem; }
    .feature-section__inner { grid-template-columns: 1fr; }
    .feature-section__inner.rev { direction: ltr; }
    .pricing-card--featured { transform: none; }
    .cms-card { padding: 1.75rem; }
    .site-footer__inner { flex-direction: column; gap: 2rem; }
    .site-footer__brand { flex: none; }
}

@media (max-width: 480px) {
    .hero__title { font-size: 2rem; }
    .site-section { padding: 4rem 0; }
    .hero__actions { flex-direction: column; align-items: stretch; }
    .hero__actions .site-cta { justify-content: center; }
}
