/* ============================================================
   Ziatan — Home page (21st.dev-inspired)
   Scoped via body.ziatan-home so Divi's parent CSS doesn't bleed.
   Tokens come from base.css (loaded earlier in the cascade).
   ============================================================ */

body.ziatan-home {
    margin: 0;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
body.ziatan-home * { box-sizing: border-box; }
body.ziatan-home img, body.ziatan-home svg { max-width: 100%; display: block; }
body.ziatan-home a { color: inherit; text-decoration: none; }
body.ziatan-home p { margin: 0; }
body.ziatan-home h1, body.ziatan-home h2, body.ziatan-home h3, body.ziatan-home h4 {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.05;
    margin: 0;
    color: var(--text-primary);
}
body.ziatan-home [hidden] { display: none !important; }

.zh-container {
    max-width: 1180px;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 24px;
    width: 100%;
}

/* Defeat Divi's `*{margin:0}` reset on every centered home block. */
body.ziatan-home .zh-eyebrow,
body.ziatan-home .zh-headline,
body.ziatan-home .zh-subhead,
body.ziatan-home .zh-search,
body.ziatan-home .zh-search-meta,
body.ziatan-home .zh-scroll-cue,
body.ziatan-home .zh-section-head,
body.ziatan-home .zh-section-sub,
body.ziatan-home .zh-cities-grid,
body.ziatan-home .zh-faq,
body.ziatan-home .zh-cta-p,
body.ziatan-home .zh-tcpa,
body.ziatan-home .zh-cta .zh-search {
    margin-left: auto !important;
    margin-right: auto !important;
}
body.ziatan-home .zh-headline,
body.ziatan-home .zh-subhead,
body.ziatan-home .zh-section-title,
body.ziatan-home .zh-section-sub,
body.ziatan-home .zh-section-eyebrow,
body.ziatan-home .zh-cta-h,
body.ziatan-home .zh-cta-p,
body.ziatan-home .zh-tcpa {
    text-align: center !important;
}

/* Animated gradient text — slow flowing light across the orange highlight words.
   12s cycle is far below the threshold that reads as flicker, just a soft shimmer. */
.zh-grad {
    /* Solid fallback FIRST so the text is always readable, even when the
       gradient clip fails (iOS Safari + nested transformed spans). */
    color: #ff8c4d;
    background: linear-gradient(115deg, #ff8c4d 0%, #F36B1F 30%, #ffb98a 50%, #F36B1F 70%, #ff8c4d 100%);
    background-size: 220% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.zh-grad-orange {
    color: #ff8c4d;
    background: linear-gradient(115deg, #F36B1F 0%, #ff8c4d 50%, #F36B1F 100%);
    background-size: 200% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* When the headline is split into <span class="zh-word">…<span class="zh-word-i">,
   give the inner spans their own gradient backdrop or fall back to solid orange. */
.zh-grad .zh-word,
.zh-grad .zh-word .zh-word-i,
.zh-grad-orange .zh-word,
.zh-grad-orange .zh-word .zh-word-i {
    background: inherit;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #ff8c4d;  /* fallback if clip fails */
}
/* Mobile: skip the clip entirely, use solid orange — eliminates iOS Safari
   "invisible until selected" bug with nested transformed split-text spans. */
@media (max-width: 768px) {
    .zh-grad,
    .zh-grad-orange,
    .zh-grad .zh-word, .zh-grad .zh-word .zh-word-i,
    .zh-grad-orange .zh-word, .zh-grad-orange .zh-word .zh-word-i {
        background: none !important;
        -webkit-text-fill-color: currentColor !important;
        color: #ff8c4d !important;
    }
}
@keyframes zhGradFlow {
    0%, 100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
}

/* Nav + footer styling now lives in assets/css/site.css (shared across every page). */

/* ─────────────────────── Hero ─────────────────────── */
.zh-hero {
    position: relative;
    overflow: hidden;
    padding: 110px 0 140px;
    isolation: isolate;
    text-align: center;
}
.zh-hero-bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
/* "Living Signal Field" canvas — sits above the gradient/orbs. Visible by default
   (no JS-gated fade): if the script ever fails it's just a transparent layer over
   the animated gradient. hero3d.js draws the network + streaming pulses + cursor hub;
   under reduced-motion it paints a single static frame (no display:none). */
.zh-hero-3d { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; opacity: 1; }
.zh-bg-grad {
    position: absolute; inset: -20% -10%;
    background: var(--gradient-hero);
    opacity: 0.95;
    /* Very slow autonomous hue shift — 70s cycle is well below the threshold
       that reads as "blinking" and gives the hero a subtle living-light feel. */
    animation: zhHueDrift 70s ease-in-out infinite;
}
@keyframes zhHueDrift {
    0%, 100% { filter: hue-rotate(0deg); }
    50%      { filter: hue-rotate(-8deg); }
}
.zh-bg-grad::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(12,8,32,0) 0%, var(--bg-primary) 85%);
}
.zh-bg-noise {
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.14 0'/></filter><rect width='240' height='240' filter='url(%23n)'/></svg>");
    opacity: 0.35;
    mix-blend-mode: overlay;
}
/* Scroll progress bar */
.zh-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px; width: 0%;
    background: var(--gradient-cta);
    z-index: 9999;
    transition: width 0.05s linear;
    box-shadow: 0 0 14px rgba(243,107,31,0.55);
}


/* ─────────────────────── Icon hover animations ─────────────────────── */
.zh-step-icon svg { transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1); }
.zh-step:hover .zh-step-icon svg {
    transform: scale(1.18) rotate(-8deg);
    filter: drop-shadow(0 0 14px rgba(243,107,31,0.55));
}

/* Search-button icon transition (nav/footer phone-ring lives in site.css) */
.zh-search-btn svg { transition: transform 0.3s ease; }
@keyframes zhRing {
    0%, 100% { transform: rotate(0); }
    15%      { transform: rotate(-18deg); }
    30%      { transform: rotate(14deg); }
    45%      { transform: rotate(-10deg); }
    60%      { transform: rotate(6deg); }
    75%      { transform: rotate(-3deg); }
}

/* Eyebrow chip gets a subtle scale-in on first paint */
.zh-eyebrow { transition: transform 0.3s ease, background 0.3s ease; }

/* ─────────────────────── Section title underline (scroll-draw) ─────────────────────── */
.zh-section-title {
    position: relative;
    padding-bottom: 16px;
}
.zh-section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    border-radius: 4px;
    background: var(--gradient-cta);
    box-shadow: 0 0 14px rgba(243,107,31,0.6);
    transform-origin: center;
    transform: translateX(-50%) scaleX(0);
    transition: transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
.zh-section-title.is-in::after { transform: translateX(-50%) scaleX(1); }

/* ─────────────────────── Comparison table monogram pulse on row hover ─────────────────────── */
.zh-tcell-mono { transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s; }
.zh-table tbody tr:hover .zh-tcell-mono {
    transform: scale(1.18) rotate(-6deg);
    box-shadow: 0 8px 22px rgba(0,0,0,0.5), 0 0 18px var(--row-accent, var(--accent-primary));
}

/* ─────────────────────── FAQ icon morph (plus → cross) ─────────────────────── */
.zh-faq-icon {
    transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1),
                background 0.4s, color 0.4s, border-color 0.4s;
}

/* ─────────────────────── CTA hover refinements ─────────────────────── */
.zh-search-btn { will-change: transform; }
.zh-search-btn:hover svg.zt-arrow,
.zh-search-btn:hover svg:not(.zt-spinner) {
    transform: translateX(4px);
}
.zh-cities-grid a { will-change: transform; }
.zh-cities-grid a .zh-cities-zip { transition: color 0.25s, transform 0.25s; }
.zh-cities-grid a:hover .zh-cities-zip { transform: scale(1.06); color: var(--accent-primary); }

/* 3D perspective floor grid — receding into distance. */
.zh-bg-grid3d {
    position: absolute;
    inset: 28% -30% -25% -30%;
    perspective: 900px;
    perspective-origin: 50% 0%;
    pointer-events: none;
    z-index: 0;
    will-change: transform;
}
.zh-bg-grid3d-inner {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(to right, rgba(243,107,31,0.70) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,140,77,0.60) 1px, transparent 1px);
    background-size: 64px 64px;
    transform: rotateX(66deg) translateY(0) translateZ(0);
    transform-origin: center top;
    mask-image: linear-gradient(180deg, #000 0%, #000 55%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 55%, transparent 100%);
    opacity: 1;
    animation: zhGridFlow 24s linear infinite;
}
/* Slow forward-flow on the grid — gives "driving forward" feel.
   Slow enough (24s for one tile) that it does NOT read as blinking. */
@keyframes zhGridFlow {
    from { background-position: 0 0; }
    to   { background-position: 0 64px; }
}

/* Hero orbs — defaults; entry + drift animations are in the inline critical block. */
.zh-bg-orb {
    position: absolute; border-radius: 50%;
    filter: blur(80px);
    will-change: transform, opacity;
}
.zh-bg-orb-magenta { width: 620px; height: 620px; top: -180px; left: -160px; background: var(--gradient-glow-magenta); opacity: 0.55; }
.zh-bg-orb-blue    { width: 700px; height: 700px; top: -100px; right: -220px; background: var(--gradient-glow-blue);    opacity: 0.55; }
.zh-bg-orb-orange  { width: 480px; height: 480px; bottom: -200px; left: 38%;  background: var(--gradient-glow-orange);  opacity: 0.40; }

@media (max-width: 768px) {
    .zh-bg-grid3d { opacity: 0.6; inset: 35% -30% -25% -30%; }
}

.zh-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.20em; text-transform: uppercase;
    color: var(--text-secondary);
    margin: 0 auto 32px;
    width: fit-content;
}
.zh-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(243,107,31,0.16), 0 0 14px var(--accent-primary-glow);
    animation: zhDotPulse 3.4s ease-in-out infinite;
}
/* Gentle live-data pulse — slow (3.4s) so it reads as a "heartbeat", not a flicker. */
@keyframes zhDotPulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(243,107,31,0.16), 0 0 14px var(--accent-primary-glow); }
    50%      { box-shadow: 0 0 0 7px rgba(243,107,31,0.02), 0 0 22px rgba(243,107,31,0.85); }
}

.zh-headline {
    font-size: clamp(40px, 6.4vw, 80px);
    line-height: 1.04;
    letter-spacing: -0.025em;
    font-weight: 800;
    text-wrap: balance;
    color: var(--text-primary);
    text-align: center !important;
}
.zh-headline .zh-line { display: block; }
.zh-headline .word {
    display: inline-block;
    overflow: hidden;
    padding: 0 0.04em;
    will-change: transform;
}
.zh-headline .word .char-inner { display: inline-block; will-change: transform; }

.zh-subhead {
    color: var(--text-secondary);
    font-size: clamp(15px, 1.45vw, 18px);
    line-height: 1.6;
    margin: 28px auto 0 !important;
    max-width: 640px;
    font-weight: 500;
    text-align: center;
}
.zh-subhead strong { color: var(--text-primary); font-weight: 700; }

/* ZIP search */
.zh-search {
    margin: 44px auto 0 !important;
    max-width: 640px;
    display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.zh-search-wrap {
    position: relative;
    display: flex; align-items: center;
    width: 100%;
    background: rgba(8,4,24,0.42);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: var(--radius-pill);
    padding: 6px 6px 6px 22px;
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-smooth), transform var(--t-fast);
    box-shadow: 0 10px 40px rgba(0,0,0,0.36);
}
.zh-search-wrap:focus-within {
    border-color: rgba(243,107,31,0.55);
    background: rgba(8,4,24,0.62);
    box-shadow: 0 0 0 4px rgba(243,107,31,0.18), 0 14px 50px rgba(115,6,78,0.50);
    transform: translateY(-1px);
}
.zh-search-icon { display: flex; align-items: center; color: var(--text-muted); margin-right: 12px; transition: color var(--t-fast); }
.zh-search-wrap:focus-within .zh-search-icon { color: var(--accent-primary); }
.zh-search-input {
    flex: 1; min-width: 0;
    background: transparent !important;
    background-color: transparent !important;
    border: 0 !important; outline: 0 !important; box-shadow: none !important;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 18px; font-weight: 600; letter-spacing: 0.02em;
    padding: 14px 4px; height: auto;
    -webkit-appearance: none; appearance: none;
}
.zh-search-input::placeholder { color: var(--text-muted); font-weight: 500; }

.zh-search-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 24px;
    border: 0; border-radius: var(--radius-pill);
    background: var(--gradient-cta);
    color: #0c0820;
    font-family: var(--font-display);
    font-weight: 800; font-size: 15px; letter-spacing: 0.01em;
    cursor: pointer;
    box-shadow: var(--shadow-cta);
    transition: transform var(--t-fast), box-shadow var(--t-fast), filter var(--t-fast);
    position: relative; overflow: hidden;
    will-change: transform;
}
.zh-search-btn::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.30) 0%, transparent 60%);
    pointer-events: none; border-radius: inherit;
}
.zh-search-btn::after {
    content: ''; position: absolute; top: 0; left: -120%;
    width: 60%; height: 100%;
    background: linear-gradient(105deg, transparent 20%, rgba(255,255,255,0.55) 50%, transparent 80%);
    transform: skewX(-20deg);
    pointer-events: none;
    transition: left 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.zh-search-btn:hover::after { left: 130%; }
.zh-search-btn:hover { transform: translateY(-1px) scale(1.02); box-shadow: var(--shadow-cta-hover); filter: brightness(1.05); }
.zh-search-btn:active { transform: translateY(0) scale(0.99); }
.zh-search-btn svg { position: relative; z-index: 1; }
.zh-search-btn > span,
.zh-search-btn > * { position: relative; z-index: 1; }

@media (max-width: 540px) {
    .zh-search-wrap { flex-wrap: wrap; border-radius: var(--radius-lg); padding: 12px 14px; }
    .zh-search-input { width: 100%; padding: 10px 0; font-size: 16px; }
    .zh-search-btn { width: 100%; justify-content: center; }
    .zh-search-icon { display: none; }
}

.zh-search-meta { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 4px; }
/* Hero service links (replaced the old meta pills) */
.zh-hero-services { gap: 10px; margin-top: 22px; }
.zh-hero-svc {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 9px 16px; border-radius: var(--radius-pill);
    background: rgba(255,255,255,0.06); border: 1px solid var(--border-glass);
    color: var(--text-secondary); font-family: var(--font-display);
    font-weight: 700; font-size: 13.5px; letter-spacing: 0.01em;
    transition: color var(--t-fast), background var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}
.zh-hero-svc:hover { color: #fff; background: rgba(243,107,31,0.14); border-color: rgba(243,107,31,0.45); transform: translateY(-2px); }
.zh-hero-svc-ic { display: inline-flex; color: var(--accent-primary-hi); }
.zh-hero-svc-ic svg { width: 16px; height: 16px; }
/* TCPA / consent microcopy under the ZIP search forms */
.zh-tcpa { max-width: 540px; margin: 16px auto 0; text-align: center; font-size: 12px; line-height: 1.6; color: var(--text-faint); }
.zh-tcpa a { color: var(--accent-primary-hi); text-decoration: underline; }
.zh-meta-pill {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 7px 14px; border-radius: var(--radius-pill);
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-glass);
    color: var(--text-secondary);
    font-size: 12px; font-weight: 600; letter-spacing: 0.02em;
    transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast), transform var(--t-fast);
    will-change: transform;
}
.zh-meta-pill:hover {
    background: rgba(243,107,31,0.10);
    border-color: rgba(243,107,31,0.40);
    color: var(--text-primary);
    transform: translateY(-2px);
}
.zh-meta-pill svg { stroke: var(--accent-primary-hi); transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1); }
.zh-meta-pill:hover svg { transform: scale(1.25) rotate(8deg); }

/* Search input focus halo — pulsing orange ring while typing */
.zh-search-wrap { position: relative; }
.zh-search-wrap::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: var(--radius-pill);
    background: linear-gradient(120deg, rgba(243,107,31,0.55), rgba(115,6,78,0.0) 40%, rgba(0,4,170,0.55) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    filter: blur(14px);
}
.zh-search-wrap:focus-within::before { opacity: 0.9; }

/* Scroll-cue chevron — bobs ONCE on first scroll-into-view, then static */
.zh-scroll-cue svg {
    transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.zh-scroll-cue.is-bouncing svg { animation: zhCueBounce 1.2s cubic-bezier(0.34,1.56,0.64,1) 1; }
@keyframes zhCueBounce {
    0%   { transform: translateY(0); }
    30%  { transform: translateY(8px); }
    55%  { transform: translateY(-2px); }
    80%  { transform: translateY(4px); }
    100% { transform: translateY(0); }
}
.zh-scroll-cue:hover svg { transform: translateY(4px); }

.zh-scroll-cue {
    display: inline-flex; flex-direction: column; align-items: center; gap: 6px;
    margin-top: 64px;
    color: var(--text-muted);
    font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
    transition: color var(--t-fast);
}
.zh-scroll-cue:hover { color: var(--accent-primary-hi); }
.zh-scroll-cue svg { animation: none !important; transform: none !important; }
/* Zero motion on the discover cue — user reported it shaking. */

/* ─────────────────────── Marquee ─────────────────────── */
.zh-marquee {
    border-top: 1px solid var(--border-glass-soft);
    border-bottom: 1px solid var(--border-glass-soft);
    background: linear-gradient(180deg, rgba(12,8,32,0.6), rgba(12,8,32,0));
    padding: 22px 0;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.zh-marquee-track {
    display: inline-flex; gap: 40px;
    white-space: nowrap;
    animation: zhMarquee 50s linear infinite;
}
.zh-marquee-row {
    display: inline-flex; gap: 28px; align-items: center;
    color: var(--text-secondary);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.06em;
    white-space: nowrap;
}
.zh-dot-sep { color: var(--accent-primary); font-size: 22px; }
@keyframes zhMarquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) { .zh-marquee-track { animation: none; } }

/* ─────────────────────── Section common ─────────────────────── */
.zh-section { padding: 100px 0; position: relative; }
.zh-section-head {
    max-width: 820px;
    margin: 0 auto 60px;
    text-align: center;
}
.zh-section-eyebrow {
    font-size: 12px; font-weight: 700; letter-spacing: 0.20em;
    text-transform: uppercase; color: var(--accent-primary-hi);
    margin: 0 0 16px;
}
.zh-eyebrow-light { color: rgba(255,255,255,0.78); }
.zh-section-title {
    font-size: clamp(32px, 4.4vw, 56px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin: 0 0 18px;
    text-wrap: balance;
}
.zh-section-sub {
    color: var(--text-secondary);
    font-size: clamp(15px, 1.4vw, 17px);
    line-height: 1.65;
    margin: 0;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* ─────────────────────── Bento ─────────────────────── */
.zh-bento {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 18px;
}
.zh-bento-card {
    position: relative;
    padding: 28px;
    background: linear-gradient(160deg, rgba(31,14,74,0.55) 0%, rgba(12,8,32,0.92) 100%);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: transform var(--t-power), border-color var(--t-smooth), box-shadow var(--t-smooth);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 220px;
}
/* Large card — left column, spans both rows */
.zh-bento-card--lg {
    grid-column: 1;
    grid-row: 1 / span 2;
    padding: 32px;
}
/* Wide card — spans full width on a new row */
.zh-bento-card--wide {
    grid-column: 1 / -1;
    grid-row: 3;
    text-align: center;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}
.zh-bento-card--wide .zh-bento-num,
.zh-bento-card--wide .zh-bento-h,
.zh-bento-card--wide .zh-bento-p {
    text-align: center !important;
    max-width: 540px;
    margin-left: auto !important;
    margin-right: auto !important;
}
.zh-bento-card:hover {
    border-color: rgba(243,107,31,0.40);
    box-shadow: 0 18px 60px rgba(0,0,0,0.45), 0 0 80px -20px rgba(243,107,31,0.30);
    transform: translateY(-4px);
}
/* Cursor spotlight — radial highlight follows the mouse inside each card */
.zh-bento-card::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 50%), rgba(243,107,31,0.10), transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
    z-index: 0;
}
.zh-bento-card:hover::after { opacity: 1; }
.zh-bento-num, .zh-bento-h, .zh-bento-p { position: relative; z-index: 1; }
/* Bento card icon badge (imagery for the "why Ziatan" stats section) */
.zh-bento-ic {
    position: relative; z-index: 1;
    width: 48px; height: 48px; display: inline-grid; place-items: center;
    border-radius: 13px; margin-bottom: 18px;
    background: rgba(243,107,31,0.12); border: 1px solid rgba(243,107,31,0.3);
    color: var(--accent-primary-hi);
    transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1), background var(--t-smooth), box-shadow var(--t-smooth);
}
.zh-bento-ic svg { width: 25px; height: 25px; }
.zh-bento-card--lg .zh-bento-ic { width: 54px; height: 54px; border-radius: 15px; }
.zh-bento-card--lg .zh-bento-ic svg { width: 28px; height: 28px; }
html.zh-js .zh-bento-ic svg { animation: zhBentoFloat 5s ease-in-out infinite; }
@keyframes zhBentoFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
@media (hover: hover) {
    .zh-bento-card:hover .zh-bento-ic { transform: translateY(-3px) scale(1.1) rotate(-5deg); background: rgba(243,107,31,0.2); box-shadow: 0 0 22px rgba(243,107,31,0.45); }
}
@media (prefers-reduced-motion: reduce) { html.zh-js .zh-bento-ic svg { animation: none; } }
.zh-bento-glow {
    position: absolute; top: -30%; right: -15%;
    width: 200px; height: 200px;
    background: radial-gradient(ellipse at center, rgba(243,107,31,0.20) 0%, transparent 70%);
    filter: blur(34px);
    opacity: 0.6;
    pointer-events: none;
    transition: opacity var(--t-smooth);
}
.zh-bento-card:hover .zh-bento-glow { opacity: 1; }
.zh-bento-num {
    font-family: var(--font-display);
    font-size: clamp(32px, 3.6vw, 48px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin: 0 0 14px;
    font-variant-numeric: tabular-nums;
    background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.6) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* iOS Safari gradient-clip can fail → keep the stat numbers visible on mobile */
@media (max-width: 768px) { .zh-bento-num { background: none; -webkit-text-fill-color: currentColor; color: var(--text-primary); } }
.zh-bento-card--lg .zh-bento-num { font-size: clamp(44px, 5vw, 64px); margin-bottom: 18px; }
.zh-bento-num--small { font-size: clamp(24px, 2.6vw, 32px) !important; margin-bottom: 12px; }
.zh-bento-h {
    font-family: var(--font-display);
    font-size: 18px; font-weight: 700; letter-spacing: 0.01em;
    color: var(--text-primary);
    margin: 0 0 10px;
}
.zh-bento-p {
    color: var(--text-secondary);
    font-size: 14px; line-height: 1.6; font-weight: 500;
    margin: 0;
}
@media (max-width: 960px) {
    .zh-bento { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .zh-bento-card, .zh-bento-card--lg, .zh-bento-card--wide {
        grid-column: auto; grid-row: auto; min-height: 180px;
    }
    .zh-bento-card--wide { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
    .zh-bento { grid-template-columns: 1fr; }
}

/* ─────────────────────── Showcase (router + stats) ─────────────────────── */
.zh-showcase { position: relative; padding: 100px 0 120px; overflow: hidden; }
.zh-showcase-bg {
    position: absolute; inset: 0;
    background: var(--gradient-hero);
    z-index: -1;
}
.zh-showcase-bg::before {
    content: ''; position: absolute; inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.10 0'/></filter><rect width='240' height='240' filter='url(%23n)'/></svg>");
    mix-blend-mode: overlay; opacity: 0.4;
}
.zh-showcase-inner {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}
.zh-showcase-image { position: relative; text-align: center; }
.zh-showcase-image img {
    width: 100%; max-width: 480px; height: auto;
    filter: drop-shadow(0 36px 70px rgba(0,0,0,0.50)) drop-shadow(0 0 60px rgba(243,107,31,0.30));
    /* No float animation — it was reading as a jittery vibration. */
}
.zh-showcase-title {
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin: 0 0 56px;
}
.zh-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-top: 8px;
}
.zh-stat {
    padding: 22px 24px;
    background: rgba(12,8,32,0.36);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: var(--radius-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform var(--t-fast), border-color var(--t-fast), background var(--t-fast);
    will-change: transform;
}
.zh-stat:hover { transform: translateY(-3px); border-color: rgba(243,107,31,0.45); background: rgba(12,8,32,0.55); }
.zh-stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(28px, 3.4vw, 38px);
    font-weight: 800; line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-variant-numeric: tabular-nums;
}
.zh-stat-unit {
    background: linear-gradient(135deg, #F36B1F, #ff8c4d);
    background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    color: transparent;
}
.zh-stat-cap {
    display: block;
    color: rgba(255,255,255,0.78);
    font-size: 13px; font-weight: 600;
    letter-spacing: 0.04em; text-transform: uppercase;
}
@media (max-width: 880px) {
    .zh-showcase-inner { grid-template-columns: 1fr; gap: 36px; }
    .zh-showcase-image img { max-width: 320px; }
    .zh-showcase-grid { gap: 14px; }
}
@media (max-width: 480px) { .zh-showcase-grid { grid-template-columns: 1fr; } }

/* ─────────────────────── Steps ─────────────────────── */
.zh-steps {
    list-style: none;
    padding: 0; margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    counter-reset: zh-step;
}
.zh-step {
    position: relative;
    padding: 36px 28px 36px;
    background: linear-gradient(160deg, rgba(31,14,74,0.55) 0%, rgba(12,8,32,0.92) 100%);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-card);
    transition: transform var(--t-power), border-color var(--t-smooth), box-shadow var(--t-smooth);
    will-change: transform;
    overflow: hidden;
}
.zh-step::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at top right, rgba(243,107,31,0.10) 0%, transparent 60%);
    opacity: 0; transition: opacity var(--t-smooth); pointer-events: none;
}
.zh-step:hover {
    border-color: rgba(243,107,31,0.45);
    transform: translateY(-6px);
    box-shadow: 0 18px 60px rgba(0,0,0,0.45);
}
.zh-step:hover::before { opacity: 1; }
.zh-step-num {
    font-family: var(--font-display);
    font-size: 64px; font-weight: 800; line-height: 1;
    letter-spacing: -0.04em;
    background: linear-gradient(180deg, rgba(243,107,31,0.55) 0%, rgba(243,107,31,0.08) 100%);
    background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    color: transparent;
    margin-bottom: 18px;
}
.zh-step-h { font-size: 22px; font-weight: 800; margin: 0 0 12px; }
.zh-step-p { color: var(--text-secondary); font-size: 14px; line-height: 1.65; margin: 0; font-weight: 500; }
.zh-step-icon {
    position: absolute; top: 28px; right: 28px;
    color: rgba(243,107,31,0.45);
    transition: color var(--t-fast), transform var(--t-fast);
}
.zh-step:hover .zh-step-icon { color: var(--accent-primary-hi); transform: scale(1.08) rotate(-4deg); }
@media (max-width: 880px) { .zh-steps { grid-template-columns: 1fr; } }

/* ─────────────────────── Comparison (CSS Grid, no HTML table) ─────────────────────── */
.zh-compare-section { background: linear-gradient(180deg, var(--bg-primary), rgba(31,14,74,0.30)); }

.zh-compare {
    border-radius: var(--radius-card);
    border: 1px solid var(--border-glass);
    background: rgba(12,8,32,0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
    font-family: var(--font-display);
}

/* One shared column template across header + every row → perfect alignment.
   !important hardens against any Divi parent or plugin rule trying to set
   display:block or table-cell on [role="row"]/[role="cell"]. */
.zh-compare-head,
.zh-compare-row {
    display: grid !important;
    grid-template-columns: 1.6fr 1.1fr 0.9fr 1fr 1.4fr !important;
    align-items: center !important;
    column-gap: 0 !important;
    width: 100%;
    box-sizing: border-box;
}
.zh-compare > [role="row"] > [role="cell"],
.zh-compare > [role="row"] > [role="columnheader"] {
    display: block !important;
    min-width: 0;
    box-sizing: border-box;
}

.zh-compare-head {
    padding: 0;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid var(--border-glass);
}
.zh-compare-head > [role="columnheader"] {
    padding: 16px 22px;
    font-size: 12px; font-weight: 800;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--text-muted);
    text-align: left;
}
.zh-compare-head > [role="columnheader"]:first-child { padding-left: 24px; }
.zh-compare-head > [role="columnheader"]:last-child  { padding-right: 24px; }

.zh-compare-row {
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
    transition: background var(--t-fast);
}
.zh-compare-row:last-child { border-bottom: 0; }
.zh-compare-row > [role="cell"] {
    padding: 16px 22px;
    color: var(--text-secondary);
    font-size: 14px; font-weight: 600;
    line-height: 1.4;
    transition: color var(--t-fast);
}
.zh-compare-row > [role="cell"]:first-child { padding-left: 24px; }
.zh-compare-row > [role="cell"]:last-child  { padding-right: 24px; }

/* Accent stripe on hover — lives on the row (a div, no table-quirk). */
.zh-compare-row::before {
    content: '';
    position: absolute; left: 0; top: 0; bottom: 0;
    width: 3px; background: var(--row-accent, var(--accent-primary));
    opacity: 0;
    transition: opacity var(--t-fast);
}
.zh-compare-row:hover { background: rgba(243,107,31,0.06); }
.zh-compare-row:hover::before { opacity: 1; }
.zh-compare-row:hover > [role="cell"] { color: var(--text-primary); }

/* Brand cell */
.zh-cmp-brand {
    display: flex !important;
    align-items: center;
    gap: 12px;
    color: var(--text-primary) !important;
    font-weight: 800 !important;
    min-width: 0;
}
.zh-cmp-mono {
    display: inline-flex;
    flex: 0 0 28px;
    align-items: center; justify-content: center;
    width: 28px; height: 28px;
    border-radius: 8px;
    background: var(--row-accent, var(--accent-primary));
    color: #fff;
    font-weight: 800; font-size: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease;
}
.zh-compare-row:hover .zh-cmp-mono {
    transform: scale(1.12) rotate(-6deg);
    box-shadow: 0 8px 22px rgba(0,0,0,0.5), 0 0 18px var(--row-accent, var(--accent-primary));
}
.zh-cmp-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 760px) {
    .zh-compare-head { display: none; }
    .zh-compare-row {
        display: block;
        padding: 16px 22px 18px;
    }
    .zh-compare-row > [role="cell"] {
        display: block;
        padding: 4px 0;
        font-size: 13px;
    }
    .zh-compare-row > [role="cell"]:first-child { padding-top: 0; padding-bottom: 10px; font-size: 15px; }
    .zh-compare-row > [role="cell"][data-label]::before {
        content: attr(data-label) ': ';
        color: var(--text-muted);
        font-weight: 700;
        margin-right: 4px;
    }
}

/* ─────────────────────── Cities ─────────────────────── */
.zh-cities {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, #100631 100%);
}
.zh-cities-title { font-size: clamp(28px, 4vw, 44px); text-align: center; margin: 0 auto 12px; }
.zh-cities .zh-section-sub { margin-bottom: 44px; text-align: center; }
.zh-cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
    max-width: 1000px;
    margin: 0 auto;
}
.zh-cities-grid a {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px;
    padding: 16px 22px;
    border-radius: var(--radius-pill);
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    transition: background var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
    will-change: transform;
}
.zh-cities-grid a:hover {
    background: rgba(243,107,31,0.12);
    border-color: rgba(243,107,31,0.45);
    transform: translateY(-2px);
}
.zh-cities-city { font-family: var(--font-display); font-weight: 700; font-size: 15px; }
.zh-cities-zip {
    font-variant-numeric: tabular-nums;
    font-weight: 700; font-size: 14px;
    color: var(--accent-primary-hi);
    letter-spacing: 0.02em;
}
@media (max-width: 480px) { .zh-cities-grid { grid-template-columns: 1fr 1fr; gap: 10px; } .zh-cities-grid a { padding: 12px 14px; } }

/* ─────────────────────── FAQ ─────────────────────── */
.zh-faq-section { background: rgba(12,8,32,0.4); }
.zh-faq {
    max-width: 820px;
    margin: 0 auto;
    display: flex; flex-direction: column;
    gap: 14px;
}
.zh-faq-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: background var(--t-fast), border-color var(--t-fast);
}
.zh-faq-item[open] { border-color: rgba(243,107,31,0.40); background: rgba(255,255,255,0.05); }
.zh-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 26px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px;
    font-family: var(--font-display);
    font-size: 17px; font-weight: 700;
    color: var(--text-primary);
    transition: color var(--t-fast);
}
.zh-faq-item summary::-webkit-details-marker { display: none; }
.zh-faq-item:hover summary { color: var(--accent-primary-hi); }
.zh-faq-icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(243,107,31,0.12);
    border: 1px solid rgba(243,107,31,0.40);
    color: var(--accent-primary-hi);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 800;
    line-height: 1;
    transition: transform var(--t-smooth), background var(--t-smooth);
    flex-shrink: 0;
}
.zh-faq-item[open] .zh-faq-icon { transform: rotate(45deg); background: var(--gradient-cta); color: #0c0820; border-color: var(--accent-primary); }
.zh-faq-body {
    padding: 0 26px 24px;
    color: var(--text-secondary);
    font-size: 14px; line-height: 1.7;
}
.zh-faq-body p { margin: 0; }

/* ─────────────────────── CTA banner ─────────────────────── */
.zh-cta {
    position: relative;
    padding: 96px 0;
    overflow: hidden;
    isolation: isolate;
    text-align: center;
}
.zh-cta-bg {
    position: absolute; inset: 0; z-index: -1;
    background: var(--gradient-hero);
}
.zh-cta-bg::before {
    content: ''; position: absolute; inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.10 0'/></filter><rect width='240' height='240' filter='url(%23n)'/></svg>");
    mix-blend-mode: overlay; opacity: 0.4;
}
.zh-cta-bg::after {
    content: ''; position: absolute; inset: auto -10% -25% -10%;
    height: 45%;
    background: radial-gradient(ellipse at center bottom, rgba(243,107,31,0.45) 0%, transparent 70%);
    filter: blur(40px);
}
.zh-cta-h { font-size: clamp(30px, 4.2vw, 52px); margin: 0 0 16px; letter-spacing: -0.02em; }
.zh-cta-p { color: rgba(255,255,255,0.84); font-size: clamp(15px, 1.4vw, 18px); margin: 0 auto 36px; max-width: 600px; }

/* ---- Photographic backgrounds: bento "why Ziatan" cards + CTA banner ----
   Photo is set via the inline --zhimg custom property; a dark/brand gradient is
   layered on top so the stat numbers + copy stay readable. */
.zh-bento-photo {
    background-image: linear-gradient(158deg, rgba(20,10,46,0.60) 0%, rgba(12,8,32,0.90) 80%), var(--zhimg) !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}
.zh-cta-photo .zh-cta-bg {
    background-image: linear-gradient(170deg, rgba(12,8,32,0.80) 0%, rgba(115,6,78,0.60) 55%, rgba(0,4,170,0.55) 100%), var(--zhimg) !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

/* Footer styling now lives in assets/css/site.css (shared across every page). */

/* ═══════════════════════════════════════════════════════════════════
   Ziatan Home — Animation System v2 (active)
   IntersectionObserver-driven reveals + CSS transitions, gated under
   `html.zh-js` so the page is fully visible without JS. No looping motion.
   ═══════════════════════════════════════════════════════════════════ */

/* Keep the slow grid flow (24s loop) — it's the "driving forward" motion.
   Kill only the high-frequency loops the user previously called "blinking". */
body.ziatan-home .zh-hero .zh-bg-grad { filter: none !important; }
/* Stop the looping text shimmer on .zh-grad — was perceived as flicker. */
body.ziatan-home .zh-hero .zh-grad,
body.ziatan-home .zh-hero .zh-headline .zh-grad {
    animation: none !important;
    background-position: 0% 50% !important;
}
/* Stop the dot pulse — replaced by the one-shot zhDotPop. */
body.ziatan-home .zh-hero .zh-eyebrow .zh-dot { animation-iteration-count: 1 !important; }

/* ── Section title underline always drawn — no scroll dependency ── */
body.ziatan-home .zh-section-title::after {
    transform: translateX(-50%) scaleX(1);
}

/* ───────────────────────────────────────────────────────────────────
   Hero entry — pure CSS @keyframes (no JS dependency).
   `animation-fill-mode: both` holds the final state so elements stay
   visible after the animation completes.
   Orbs end at their natural opacity via --orb-opacity custom prop.
   ─────────────────────────────────────────────────────────────────── */
@keyframes zhHeroFadeUp {
    from { opacity: 0; transform: translateY(50px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes zhHeroFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes zhHeroOrbIn {
    from { opacity: 0; transform: scale(0.7); }
    to   { opacity: var(--orb-opacity, 0.55); transform: scale(1); }
}
@keyframes zhHeroGradIn {
    from { opacity: 0; }
    to   { opacity: 0.95; }
}
/* Subtle continuous drift on orbs — slow enough (14s) to read as "alive"
   not "blinking". Starts AFTER the entry settles to avoid double motion. */
@keyframes zhOrbDriftA {
    0%, 100% { transform: scale(1) translate3d(0, 0, 0); }
    50%      { transform: scale(1.03) translate3d(-12px, 8px, 0); }
}
@keyframes zhOrbDriftB {
    0%, 100% { transform: scale(1) translate3d(0, 0, 0); }
    50%      { transform: scale(1.04) translate3d(14px, -10px, 0); }
}
@keyframes zhOrbDriftC {
    0%, 100% { transform: scale(1) translate3d(0, 0, 0); }
    50%      { transform: scale(1.03) translate3d(-8px, -12px, 0); }
}
@keyframes zhDotPop {
    0%   { transform: scale(0); }
    65%  { transform: scale(1.35); }
    100% { transform: scale(1); }
}
@keyframes zhHeroBeam {
    0%   { left: -40%; opacity: 0; }
    15%  { opacity: 1; }
    85%  { opacity: 1; }
    100% { left: 130%; opacity: 0; }
}

/* Pure-CSS entry — fires on every page load. */
body.ziatan-home .zh-hero .zh-bg-grad   { animation: zhHeroGradIn 1.6s ease 0.00s 1 both; }
body.ziatan-home .zh-hero .zh-bg-grid3d { animation: zhHeroFadeIn 1.6s ease 0.05s 1 both; }
body.ziatan-home .zh-hero .zh-bg-noise  { animation: zhHeroFadeIn 1.2s ease 0.50s 1 both; opacity: 0.35; }

/* Orbs: entry scale-in to their own opacity, then SLOW continuous drift. */
body.ziatan-home .zh-hero .zh-bg-orb-magenta {
    --orb-opacity: 0.55;
    animation:
        zhHeroOrbIn  1.8s cubic-bezier(0.22, 1, 0.36, 1) 0.10s 1 both,
        zhOrbDriftA 14s ease-in-out 2.0s infinite;
}
body.ziatan-home .zh-hero .zh-bg-orb-blue {
    --orb-opacity: 0.55;
    animation:
        zhHeroOrbIn  1.8s cubic-bezier(0.22, 1, 0.36, 1) 0.22s 1 both,
        zhOrbDriftB 16s ease-in-out 2.2s infinite;
}
body.ziatan-home .zh-hero .zh-bg-orb-orange {
    --orb-opacity: 0.40;
    animation:
        zhHeroOrbIn  1.8s cubic-bezier(0.22, 1, 0.36, 1) 0.34s 1 both,
        zhOrbDriftC 18s ease-in-out 2.4s infinite;
}
body.ziatan-home .zh-hero .zh-eyebrow        { animation: zhHeroFadeUp 1.10s cubic-bezier(0.22, 1, 0.36, 1) 0.20s 1 both; }
body.ziatan-home .zh-hero .zh-headline       { animation: zhHeroFadeUp 1.20s cubic-bezier(0.22, 1, 0.36, 1) 0.35s 1 both; }
body.ziatan-home .zh-hero .zh-subhead        { animation: zhHeroFadeUp 1.10s cubic-bezier(0.22, 1, 0.36, 1) 0.65s 1 both; }
body.ziatan-home .zh-hero .zh-search-wrap    { animation: zhHeroFadeUp 1.10s cubic-bezier(0.22, 1, 0.36, 1) 0.85s 1 both; }
body.ziatan-home .zh-hero .zh-meta-pill      { animation: zhHeroFadeUp 0.95s cubic-bezier(0.22, 1, 0.36, 1) 1.05s 1 both; }
body.ziatan-home .zh-hero .zh-meta-pill:nth-child(2) { animation-delay: 1.13s; }
body.ziatan-home .zh-hero .zh-meta-pill:nth-child(3) { animation-delay: 1.21s; }
body.ziatan-home .zh-hero .zh-scroll-cue     { animation: zhHeroFadeUp 0.95s cubic-bezier(0.22, 1, 0.36, 1) 1.30s 1 both; }

/* Eyebrow dot pop */
body.ziatan-home .zh-hero .zh-eyebrow .zh-dot {
    animation: zhDotPop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.90s 1 both;
    transform-origin: center;
}

/* Beam-of-light sweep across hero on load */
body.ziatan-home .zh-hero { position: relative; overflow: hidden; }
body.ziatan-home .zh-hero::before {
    content: '';
    position: absolute;
    top: 0; left: -40%;
    width: 35%; height: 100%;
    background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.08) 50%, transparent 70%);
    transform: skewX(-18deg);
    pointer-events: none;
    z-index: 0;
    animation: zhHeroBeam 2.4s cubic-bezier(0.22, 1, 0.36, 1) 0.7s 1 forwards;
    opacity: 0;
}
body.ziatan-home .zh-hero > * { position: relative; z-index: 1; }

/* ───────────────────────────────────────────────────────────────────
   Headline word-by-word reveal (split done in JS)
   ─────────────────────────────────────────────────────────────────── */
html.zh-js .zh-headline .zh-word {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    line-height: inherit;
}
html.zh-js .zh-headline .zh-word .zh-word-i {
    display: inline-block;
    transform: translateY(110%);
    opacity: 0;
    transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
                opacity   0.6s ease-out;
    transition-delay: calc(var(--zh-word-i, 0) * 0.055s + 0.35s);
}
html.zh-js .zh-headline.is-revealed .zh-word .zh-word-i {
    transform: translateY(0);
    opacity: 1;
}

/* ───────────────────────────────────────────────────────────────────
   Generic reveal — IO adds .is-visible
   .zh-reveal uses CSS variables so transforms compose with 3D tilt.
   ─────────────────────────────────────────────────────────────────── */
html.zh-js .zh-reveal {
    --zh-ty: 28px;
    opacity: 0;
    transform: translate3d(0, var(--zh-ty), 0);
    transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(var(--zh-reveal-i, 0) * 0.07s);
    will-change: transform, opacity;
}
html.zh-js .zh-reveal.is-visible {
    --zh-ty: 0px;
    opacity: 1;
    transform: none;
    will-change: auto;
}
/* Marquee — fade-only, no translate (avoids cropping at the edge) */
html.zh-js .zh-marquee.zh-reveal { --zh-ty: 0px; }
/* Compare rows reveal with a smaller offset for tightness */
html.zh-js .zh-compare-row.zh-reveal { --zh-ty: 14px; }

/* ───────────────────────────────────────────────────────────────────
   Scroll cue — auto-hide once scrolled
   ─────────────────────────────────────────────────────────────────── */
.zh-scroll-cue { transition: opacity 0.4s ease, transform 0.4s ease; }
.zh-scroll-cue.is-hidden { opacity: 0 !important; transform: translateY(8px); pointer-events: none; }

/* ───────────────────────────────────────────────────────────────────
   Magnetic CTAs — JS sets --zh-mag-x/y from pointer position
   Composes with existing :hover transform via CSS var.
   ─────────────────────────────────────────────────────────────────── */
html.zh-js [data-magnetic] {
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, filter 0.3s ease;
    will-change: transform;
}
html.zh-js .zh-search-btn[data-magnetic] {
    transform: translate3d(var(--zh-mag-x, 0px), var(--zh-mag-y, 0px), 0);
}
html.zh-js .zh-search-btn[data-magnetic]:hover {
    transform: translate3d(var(--zh-mag-x, 0px), calc(var(--zh-mag-y, 0px) - 2px), 0) scale(1.025);
}
html.zh-js .zt-nav-phone[data-magnetic] {
    transform: translate3d(var(--zh-mag-x, 0px), var(--zh-mag-y, 0px), 0);
}

/* ───────────────────────────────────────────────────────────────────
   Bento spotlight — radial glow follows pointer
   ─────────────────────────────────────────────────────────────────── */
html.zh-js .zh-bento-card { position: relative; overflow: hidden; }
html.zh-js .zh-bento-card::after {
    content: '';
    position: absolute; inset: 0;
    pointer-events: none;
    border-radius: inherit;
    background: radial-gradient(
        420px circle at var(--zh-mx, 50%) var(--zh-my, 50%),
        rgba(243, 107, 31, 0.18),
        transparent 45%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}
html.zh-js .zh-bento-card:hover::after { opacity: 1; }
html.zh-js .zh-bento-card > * { position: relative; z-index: 1; }

/* ───────────────────────────────────────────────────────────────────
   3D tilt — JS sets --zh-rx/--zh-ry
   Composes into a single transform with reveal var --zh-ty.
   ─────────────────────────────────────────────────────────────────── */
html.zh-js .zh-bento-card,
html.zh-js .zh-step {
    transform-style: preserve-3d;
    transform: perspective(900px)
               translate3d(0, var(--zh-ty, 0px), 0)
               rotateX(var(--zh-rx, 0deg))
               rotateY(var(--zh-ry, 0deg));
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.4s ease,
                opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}
/* Override the .zh-reveal { transform: translate3d(...) } for these — the
   tilt rule above already includes the --zh-ty axis via CSS variable. */
html.zh-js .zh-bento-card.zh-reveal,
html.zh-js .zh-step.zh-reveal {
    --zh-ty: 28px;
    opacity: 0;
}
html.zh-js .zh-bento-card.zh-reveal.is-visible,
html.zh-js .zh-step.zh-reveal.is-visible {
    --zh-ty: 0px;
    opacity: 1;
}

/* Touch devices — disable hover tilt */
@media (hover: none) {
    html.zh-js .zh-bento-card,
    html.zh-js .zh-step {
        transform: translate3d(0, var(--zh-ty, 0px), 0);
    }
}

/* ───────────────────────────────────────────────────────────────────
   Focus halo on search input — pure CSS
   ─────────────────────────────────────────────────────────────────── */
.zh-search-wrap { transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease; }
.zh-search-wrap:focus-within {
    border-color: rgba(243, 107, 31, 0.65) !important;
    box-shadow: 0 0 0 4px rgba(243, 107, 31, 0.18), 0 10px 28px rgba(115, 6, 78, 0.30);
}

/* ───────────────────────────────────────────────────────────────────
   Reduced-motion override (last so it wins)
   ─────────────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    html.zh-js .zh-reveal,
    html.zh-js .zh-headline .zh-word .zh-word-i,
    html.zh-js body.ziatan-home .zh-hero .zh-eyebrow,
    html.zh-js body.ziatan-home .zh-hero .zh-subhead,
    html.zh-js body.ziatan-home .zh-hero .zh-search,
    html.zh-js body.ziatan-home .zh-hero .zh-search-meta,
    html.zh-js body.ziatan-home .zh-hero .zh-scroll-cue {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    body.ziatan-home *, body.ziatan-home *::before, body.ziatan-home *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   Premium polish — subtle, one-shot, no infinite motion
   ═══════════════════════════════════════════════════════════════════ */

/* ─── Bento card hover: gradient border + lift ─── */
.zh-bento-card {
    isolation: isolate;
    transition:
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}
.zh-bento-card::before {
    content: '';
    position: absolute; inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg,
        rgba(243,107,31,0) 0%,
        rgba(243,107,31,0.55) 35%,
        rgba(255,140,77,0.45) 55%,
        rgba(243,107,31,0) 100%);
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: -1;
}
.zh-bento-card:hover::before { opacity: 1; }
@media (hover: hover) {
    .zh-bento-card:hover { transform: translateY(-3px); }
}

/* ─── Search submit: aura on idle, magnetic pull on hover (vars set by JS) ─── */
.zh-search-btn {
    --zh-mag-x: 0px;
    --zh-mag-y: 0px;
}
html.zh-js .zh-search-btn[data-magnetic] {
    transform: translate3d(var(--zh-mag-x), var(--zh-mag-y), 0);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), filter 0.3s ease, box-shadow 0.3s ease;
}
.zh-search-btn:focus-visible {
    outline: 2px solid rgba(255,255,255,0.6);
    outline-offset: 3px;
}

/* ─── Cities pill: subtle hover lift + accent border ─── */
.zh-cities-grid a {
    transition:
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}
@media (hover: hover) {
    .zh-cities-grid a:hover {
        transform: translateY(-2px);
        border-color: rgba(243, 107, 31, 0.40);
        background: rgba(243, 107, 31, 0.06);
        box-shadow: 0 10px 28px rgba(0,0,0,0.32), 0 0 0 1px rgba(243,107,31,0.15);
    }
}

/* ─── Section title underline: keep visible by default (no scroll dependency) ─── */
body.ziatan-home .zh-section-title::after {
    transform: translateX(-50%) scaleX(1);
}

/* ─── Compare row monogram: tasteful pop on row hover ─── */
.zh-compare-row .zh-cmp-mono {
    transition:
        transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.4s ease;
}
@media (hover: hover) {
    .zh-compare-row:hover .zh-cmp-mono {
        transform: scale(1.10) rotate(-4deg);
        box-shadow:
            0 8px 22px rgba(0,0,0,0.5),
            0 0 18px var(--row-accent, var(--accent-primary));
    }
}

/* ─── FAQ summary marker: clean rotate on open ─── */
.zh-faq-item summary { list-style: none; cursor: pointer; }
.zh-faq-item summary::-webkit-details-marker { display: none; }
.zh-faq-icon {
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    display: inline-block;
}
.zh-faq-item[open] .zh-faq-icon { transform: rotate(45deg); }

/* ─── Reduced-motion: belt-and-suspenders ─── */
@media (prefers-reduced-motion: reduce) {
    .zh-bento-card::before,
    .zh-search-btn[data-magnetic],
    .zh-cities-grid a {
        transition: none !important;
        transform: none !important;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   Trigger / mouse polish — one-shot, no looping
   ═══════════════════════════════════════════════════════════════════ */

/* ── Hero mouse-follow spotlight ── */
html.zh-js .zh-hero { position: relative; }
html.zh-js .zh-hero::after {
    content: '';
    position: absolute; inset: 0;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(
        500px circle at var(--zh-hero-mx, 50%) var(--zh-hero-my, 50%),
        rgba(243, 107, 31, 0.10),
        transparent 55%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    mix-blend-mode: screen;
}
html.zh-js .zh-hero:hover::after { opacity: 1; }
html.zh-js .zh-hero > * { position: relative; z-index: 1; }

/* ── Section title underline: scaleX(0 → 1) on viewport entry ── */
html.zh-js .zh-section-title.zh-title-init::after {
    transform: translateX(-50%) scaleX(0);
    transform-origin: center center;
    transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}
html.zh-js .zh-section-title.zh-title-drawn::after {
    transform: translateX(-50%) scaleX(1);
}

/* ── Step icon SVG draw — JS sets stroke-dasharray/offset; CSS keeps the
   icon visible if JS hasn't run yet ── */
html.zh-js .zh-step-icon svg { stroke-linecap: round; stroke-linejoin: round; }

/* ── Step number: gradient text + subtle floating shadow ── */
.zh-step-num {
    background: linear-gradient(180deg, rgba(243,107,31,0.65) 0%, rgba(243,107,31,0.18) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #F36B1F;
    filter: drop-shadow(0 6px 16px rgba(243,107,31,0.18));
}

/* ── Marquee: smooth duration handoff on hover (JS sets style.animationDuration) ── */
html.zh-js .zh-marquee-track { transition: animation-duration 0.4s linear; }

/* ── FAQ item: hover background + smooth open ── */
.zh-faq-item {
    transition: background 0.25s ease, border-color 0.25s ease;
}
.zh-faq-item:hover {
    background: rgba(255, 255, 255, 0.025);
}
.zh-faq-item[open] {
    background: rgba(243, 107, 31, 0.04);
    border-color: rgba(243, 107, 31, 0.18);
}

/* ── Compare row monogram: already animated, ensure smoothness ── */
html.zh-js .zh-compare-row .zh-cmp-mono {
    transition:
        transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.4s ease;
}

/* ── ScrollTrigger parallax targets — provide will-change for GPU lift ── */
html.zh-js .zh-hero .zh-bg-grad,
html.zh-js .zh-hero .zh-bg-grid3d,
html.zh-js .zh-hero .zh-bg-orb {
    will-change: transform;
}

/* ── Reduced-motion overrides for the new polish ── */
@media (prefers-reduced-motion: reduce) {
    html.zh-js .zh-section-title.zh-title-init::after,
    html.zh-js .zh-section-title.zh-title-drawn::after {
        transform: translateX(-50%) scaleX(1) !important;
        transition: none !important;
    }
    html.zh-js .zh-step-icon svg path,
    html.zh-js .zh-step-icon svg circle,
    html.zh-js .zh-step-icon svg polyline,
    html.zh-js .zh-step-icon svg line {
        stroke-dashoffset: 0 !important;
        transition: none !important;
    }
    html.zh-js .zh-hero::after { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════
   Hero — extended choreography
   ═══════════════════════════════════════════════════════════════════ */

/* ── Layered parallax: each background layer is GPU-promoted ── */
html.zh-js .zh-hero .zh-bg-grad,
html.zh-js .zh-hero .zh-bg-noise,
html.zh-js .zh-hero .zh-bg-grid3d,
html.zh-js .zh-hero .zh-bg-orb {
    will-change: transform;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

/* (Background entry stagger + beam sweep moved to pure-CSS keyframes
   earlier in this file — they now run on every page load, independent
   of JS, so the cascade is visible under LiteSpeed JS Defer.) */

/* ── Eyebrow chip: one-shot soft glow + dot scale-pop on .is-popped ── */
.zh-hero .zh-eyebrow {
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.6s ease;
}
.zh-hero .zh-eyebrow.is-popped {
    box-shadow: 0 0 0 4px rgba(243, 107, 31, 0.06), 0 6px 20px rgba(243, 107, 31, 0.10);
}
.zh-hero .zh-eyebrow .zh-dot {
    transform-origin: center;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.zh-hero .zh-eyebrow.is-popped .zh-dot { transform: scale(1.25); }

/* ── Headline 3D tilt — JS sets transform; CSS preserves perspective context ── */
html.zh-js .zh-hero .zh-headline {
    transform-style: preserve-3d;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Search-wrap proximity glow — JS sets --zh-search-proximity (0..1) ── */
html.zh-js .zh-hero .zh-search-wrap {
    --zh-search-proximity: 0;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.36),
        0 0 0 calc(var(--zh-search-proximity) * 6px) rgba(243, 107, 31, calc(var(--zh-search-proximity) * 0.20)),
        0 calc(var(--zh-search-proximity) * 18px) 50px rgba(115, 6, 78, calc(var(--zh-search-proximity) * 0.30));
    border-color: rgba(255, 255, 255, calc(0.10 + var(--zh-search-proximity) * 0.40));
    transition: box-shadow 0.18s linear, border-color 0.18s linear, background var(--t-fast), transform var(--t-fast);
}
/* Focused state still wins over proximity */
html.zh-js .zh-hero .zh-search-wrap:focus-within {
    border-color: rgba(243, 107, 31, 0.65) !important;
    box-shadow:
        0 0 0 4px rgba(243, 107, 31, 0.22),
        0 14px 50px rgba(115, 6, 78, 0.55) !important;
}

/* ── Search button arrow translate on hover ── */
html.zh-js .zh-hero .zh-search-btn svg { transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1); }
html.zh-js .zh-hero .zh-search-btn:hover svg { transform: translateX(3px); }

/* ── Meta pills: hover lift + checkmark scale ── */
.zh-hero .zh-meta-pill {
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s ease, border-color 0.3s ease;
}
.zh-hero .zh-meta-pill svg {
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@media (hover: hover) {
    .zh-hero .zh-meta-pill:hover {
        transform: translateY(-2px);
        background: rgba(255, 255, 255, 0.07);
        border-color: rgba(243, 107, 31, 0.30);
    }
    .zh-hero .zh-meta-pill:hover svg { transform: scale(1.18); }
}

/* ── Scroll cue: subtle hover scale + arrow lift ── */
.zh-hero .zh-scroll-cue {
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), color 0.3s ease;
}
.zh-hero .zh-scroll-cue svg {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@media (hover: hover) {
    .zh-hero .zh-scroll-cue:hover { color: var(--accent-primary-hi, #ff8c4d); transform: translateY(-2px); }
    .zh-hero .zh-scroll-cue:hover svg { transform: translateY(3px); }
}

/* (scroll cue bounce moved earlier to pure-CSS keyframes, independent of JS) */

/* ── Headline gradient word: subtle hover shimmer per-word (one-shot) ── */
@media (hover: hover) {
    .zh-hero .zh-headline .zh-word { transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1); }
    .zh-hero .zh-headline .zh-word:hover { transform: translateY(-2px); }
}

/* ── Strong word inside subhead: subtle accent on entry ── */
.zh-hero .zh-subhead strong {
    color: var(--text-primary);
    background-image: linear-gradient(180deg, transparent 60%, rgba(243, 107, 31, 0.18) 60%);
    padding: 0 2px;
    transition: background-size 0.6s ease;
}

/* ── SVG draw initial state guard (in case JS hasn't run) ── */
html:not(.zh-js) .zh-hero svg path,
html:not(.zh-js) .zh-hero svg polyline,
html:not(.zh-js) .zh-hero svg line,
html:not(.zh-js) .zh-hero svg circle {
    stroke-dashoffset: 0 !important;
}

/* ── Reduced-motion: kill all the new hero polish ── */
@media (prefers-reduced-motion: reduce) {
    /* Only disable INFINITE looping motion — keep the <2s one-shot entries.
       This respects the spirit of the preference (no continuous distraction)
       while letting the layout settle in cleanly. */
    body.ziatan-home .zh-hero .zh-bg-orb,
    body.ziatan-home .zh-hero .zh-bg-grid3d-inner,
    body.ziatan-home .zh-marquee-track {
        animation-iteration-count: 1 !important;
        animation-duration: 0.01ms !important;
    }
    /* Disable mouse parallax transforms (keep static state). */
    html.zh-js .zh-hero .zh-bg-grad,
    html.zh-js .zh-hero .zh-bg-noise,
    html.zh-js .zh-hero .zh-bg-orb,
    html.zh-js .zh-hero .zh-bg-grid3d {
        transition: none !important;
    }
    html.zh-js .zh-hero svg path,
    html.zh-js .zh-hero svg polyline,
    html.zh-js .zh-hero svg line,
    html.zh-js .zh-hero svg circle {
        stroke-dashoffset: 0 !important;
        transition: none !important;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE — Tablet + Phone optimization
   Override desktop values. Inline grid styles on compare rows use
   !important so they hold through tablet → ≤760 then collapse to stack.
   ═══════════════════════════════════════════════════════════════════ */

/* ── Tablet ≤ 1024px ── */
@media (max-width: 1024px) {
    body.ziatan-home .zh-container { padding: 0 20px; }
    body.ziatan-home .zh-section { padding: 72px 0; }
    body.ziatan-home .zh-hero { padding: 90px 0 100px; }
    body.ziatan-home .zh-headline { font-size: clamp(36px, 5.6vw, 60px); letter-spacing: -0.02em; }
    body.ziatan-home .zh-subhead { font-size: 17px; margin-top: 22px !important; max-width: 580px; }
    body.ziatan-home .zh-search { margin-top: 36px !important; max-width: 560px; }
    body.ziatan-home .zh-eyebrow { font-size: 10.5px; padding: 7px 16px; margin-bottom: 24px; }
    body.ziatan-home .zh-section-title { font-size: clamp(28px, 4.4vw, 44px); }
    body.ziatan-home .zh-section-head { margin-bottom: 44px; }
    body.ziatan-home .zh-bento { gap: 16px; }
    body.ziatan-home .zh-showcase-inner { gap: 36px; }
    body.ziatan-home .zh-showcase-image img { max-width: 380px; }
    body.ziatan-home .zh-marquee-row { font-size: 14px; }
}

/* ── Phone ≤ 768px ── */
@media (max-width: 768px) {
    /* Container */
    body.ziatan-home .zh-container { padding: 0 16px; }
    body.ziatan-home .zh-section { padding: 56px 0; }

    /* Hero */
    body.ziatan-home .zh-hero { padding: 70px 0 80px; }
    body.ziatan-home .zh-eyebrow {
        font-size: 10px;
        padding: 6px 14px;
        letter-spacing: 0.16em;
        margin-bottom: 20px;
    }
    body.ziatan-home .zh-headline {
        font-size: clamp(30px, 8vw, 42px) !important;
        line-height: 1.08;
        letter-spacing: -0.018em;
    }
    body.ziatan-home .zh-subhead {
        font-size: 15px;
        line-height: 1.55;
        margin-top: 20px !important;
        max-width: 100%;
        padding: 0 4px;
    }
    body.ziatan-home .zh-search {
        margin-top: 28px !important;
        max-width: 100%;
    }
    /* Search bar — stack input + button vertically on phone */
    body.ziatan-home .zh-search-wrap {
        flex-direction: column;
        align-items: stretch;
        border-radius: 20px;
        padding: 14px;
        gap: 10px;
    }
    body.ziatan-home .zh-search-wrap .zh-search-icon { display: none; }
    body.ziatan-home .zh-search-input {
        width: 100%;
        padding: 10px 4px;
        font-size: 16px;  /* iOS — anything <16 triggers zoom on focus */
        text-align: center;
    }
    body.ziatan-home .zh-search-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 15px;
    }
    body.ziatan-home .zh-search-meta {
        gap: 6px;
        margin-top: 14px;
    }
    body.ziatan-home .zh-meta-pill {
        font-size: 11px;
        padding: 6px 12px;
        letter-spacing: 0.01em;
    }
    body.ziatan-home .zh-scroll-cue {
        margin-top: 36px;
        font-size: 11px;
    }
    /* Hero background on small screens — keep the 3D grid visible. */
    body.ziatan-home .zh-hero .zh-bg-orb { filter: blur(70px); }
    body.ziatan-home .zh-hero .zh-bg-grid3d {
        inset: 40% -40% -30% -40%;
        opacity: 0.8;
    }
    body.ziatan-home .zh-hero .zh-bg-noise { opacity: 0.25; }

    /* Section heads */
    body.ziatan-home .zh-section-head { margin-bottom: 36px; padding: 0 4px; }
    body.ziatan-home .zh-section-title { font-size: clamp(24px, 6.5vw, 34px); }
    body.ziatan-home .zh-section-eyebrow { font-size: 10px; letter-spacing: 0.20em; }
    body.ziatan-home .zh-section-sub { font-size: 14px; margin-top: 16px !important; }

    /* Marquee */
    body.ziatan-home .zh-marquee { padding: 24px 0; }
    body.ziatan-home .zh-marquee-row { font-size: 13px; gap: 18px; }
    body.ziatan-home .zh-marquee-track { gap: 28px; }

    /* Bento — single column on phone */
    body.ziatan-home .zh-bento {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
        gap: 14px;
    }
    body.ziatan-home .zh-bento-card,
    body.ziatan-home .zh-bento-card--lg,
    body.ziatan-home .zh-bento-card--wide {
        grid-column: 1 !important;
        grid-row: auto !important;
        padding: 22px !important;
        min-height: 160px !important;
    }
    body.ziatan-home .zh-bento-num { font-size: 38px !important; margin-bottom: 10px; }
    body.ziatan-home .zh-bento-card--lg .zh-bento-num { font-size: 46px !important; }
    body.ziatan-home .zh-bento-h { font-size: 17px; }
    body.ziatan-home .zh-bento-p { font-size: 13.5px; }

    /* Showcase */
    body.ziatan-home .zh-showcase { padding: 56px 0; }
    body.ziatan-home .zh-showcase-inner { grid-template-columns: 1fr !important; gap: 24px; }
    body.ziatan-home .zh-showcase-image img { max-width: 260px; }
    body.ziatan-home .zh-showcase-title { font-size: clamp(24px, 6.5vw, 34px); }
    body.ziatan-home .zh-showcase-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    body.ziatan-home .zh-stat { padding: 16px 14px; }
    body.ziatan-home .zh-stat-num { font-size: 22px; }
    body.ziatan-home .zh-stat-cap { font-size: 11.5px; }

    /* Steps — already 1 col below 880px */
    body.ziatan-home .zh-step { padding: 22px; }
    body.ziatan-home .zh-step-num { font-size: 38px; }
    body.ziatan-home .zh-step-h { font-size: 18px; }
    body.ziatan-home .zh-step-p { font-size: 13.5px; }

    /* Compare table — break the inline grid and stack as cards
       (inline styles need defeating with !important) */
    body.ziatan-home .zh-compare { border-radius: 16px; }
    body.ziatan-home .zh-compare-head { display: none !important; }
    body.ziatan-home .zh-compare-row {
        display: block !important;
        grid-template-columns: none !important;
        padding: 16px 18px 18px !important;
    }
    body.ziatan-home .zh-compare-row > [role="cell"] {
        display: block !important;
        padding: 4px 0 !important;
        font-size: 13.5px !important;
    }
    body.ziatan-home .zh-compare-row > [role="cell"]:first-child {
        padding: 0 0 10px !important;
        font-size: 16px !important;
    }
    body.ziatan-home .zh-compare-row > [role="cell"][data-label]::before {
        content: attr(data-label) ': ';
        color: #6b6480;
        font-weight: 700;
        margin-right: 4px;
        text-transform: uppercase;
        font-size: 10px;
        letter-spacing: 0.10em;
    }

    /* Cities */
    body.ziatan-home .zh-cities { padding: 56px 0; }
    body.ziatan-home .zh-cities-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important;
    }
    body.ziatan-home .zh-cities-grid a { padding: 12px 14px !important; }
    body.ziatan-home .zh-cities-city { font-size: 13px; }
    body.ziatan-home .zh-cities-zip { font-size: 11px; }

    /* FAQ */
    body.ziatan-home .zh-faq-item summary { padding: 18px 16px; font-size: 15px; }
    body.ziatan-home .zh-faq-body p { font-size: 14px; padding: 0 16px 18px; }

    /* CTA */
    body.ziatan-home .zh-cta { padding: 56px 16px; }
    body.ziatan-home .zh-cta-title { font-size: clamp(26px, 6.5vw, 36px); }
    body.ziatan-home .zh-cta-p { font-size: 14.5px; }
}

/* ── Small phone ≤ 480px ── */
@media (max-width: 480px) {
    body.ziatan-home .zh-container { padding: 0 14px; }
    body.ziatan-home .zh-hero { padding: 60px 0 70px; }
    body.ziatan-home .zh-headline { font-size: clamp(26px, 9vw, 36px) !important; }
    body.ziatan-home .zh-subhead { font-size: 14px; }
    body.ziatan-home .zh-section { padding: 48px 0; }
    body.ziatan-home .zh-section-title { font-size: clamp(22px, 7vw, 28px); }

    /* Showcase stats — single column on tiny phones */
    body.ziatan-home .zh-showcase-grid { grid-template-columns: 1fr !important; }

    /* Cities — single column */
    body.ziatan-home .zh-cities-grid { grid-template-columns: 1fr !important; }

    /* Smaller bento numbers */
    body.ziatan-home .zh-bento-num { font-size: 32px !important; }
    body.ziatan-home .zh-bento-card--lg .zh-bento-num { font-size: 38px !important; }

    /* Marquee — slow down on tiny phones */
    body.ziatan-home .zh-marquee-track { animation-duration: 40s; }
}
