/* ============================================================
   Zono Netwire, Hold your own.
   Fonts: Lato (H1), Poppins (everything else), TAN Nimbus (word "Zono" only)
   ============================================================ */

/* TAN Nimbus is a licensed display font. Drop TAN-Nimbus.woff2 into
   assets/fonts/ and it is used only for the word "Zono". A serif fallback
   renders until then. */
@font-face {
  font-family: "TAN Nimbus";
  src: url("assets/fonts/TAN-Nimbus.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

:root {
  --orange: #ff4f00;
  --orange-soft: #ff7a4d;
  --navy: #12355B;
  --red: #D72638;

  /* Light theme */
  --bg: #fffefb;
  --bg-alt: #f8f4f0;
  --bg-contrast: #201515;
  --ink: #201515;
  --ink-soft: #605d52;
  --line: #e9e2d5;
  --card: #fffefb;
  --card-shadow: 0 1px 2px rgba(32,21,21,.06), 0 12px 32px rgba(32,21,21,.07);
  --accent: #ff4f00;
  --accent-ink: #fffefb;
  --quote-ink: #36342e;

  --h1: "Lato", system-ui, sans-serif;
  --body: "Poppins", system-ui, sans-serif;
  --display: "TAN Nimbus", Georgia, "Times New Roman", serif;

  --maxw: 1280px;
  --radius: 12px;
  --radius-sm: 6px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* Softer, easier on the eyes dark theme (warm coffee-ink, cream text) */
[data-theme="dark"] {
  --bg: #201515;
  --bg-alt: #2a1f1c;
  --bg-contrast: #120c0b;
  --ink: #f8f4f0;
  --ink-soft: #c5c0b1;
  --line: #3a2f2a;
  --card: #2a1f1c;
  --card-shadow: 0 1px 2px rgba(0,0,0,.35), 0 16px 40px rgba(0,0,0,.45);
  --quote-ink: #d9d3c5;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background .4s var(--ease), color .4s var(--ease);
  overflow-x: hidden;
}

h1 { font-family: var(--h1); font-weight: 900; line-height: 1.06; margin: 0; letter-spacing: -.01em; }
h2, h3, h4, h5 { font-family: var(--body); font-weight: 700; line-height: 1.12; margin: 0; letter-spacing: -.01em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.zono { font-family: var(--body); }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.visually-hidden { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0 0 0 0); border:0; }
.skip-link { position:absolute; left:-999px; top:0; background:var(--accent); color:#fff; padding:10px 16px; border-radius:0 0 10px 0; z-index:200; }
.skip-link:focus { left:0; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--body); font-weight: 600; font-size: 15px;
  padding: 13px 24px; border-radius: var(--radius); border: 0; cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: var(--accent-ink); box-shadow: 0 8px 22px rgba(255,79,0,.28); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(255,79,0,.42); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn-lg { font-size: 17px; padding: 16px 32px; }
.btn-light { background: var(--accent-ink); color: var(--accent); box-shadow: 0 10px 30px rgba(0,0,0,.18); }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(0,0,0,.28); }

/* ---------- Nav (Perfect Moment style: numbered items, centred symbol) ---------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--bg) 85%, transparent);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 84px; padding: 12px 0; }

.brand { display: flex; align-items: center; gap: 13px; }
.brand img { width: 56px; height: 56px; transition: transform .3s var(--ease); }
.brand:hover img { transform: rotate(-6deg) scale(1.04); }
.brand-word { font-family: var(--body); font-weight: 700; font-size: 21px; letter-spacing: -.01em; color: var(--ink); }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-family: var(--body); font-weight: 600; font-size: 15px; color: var(--ink-soft);
  letter-spacing: .01em; transition: color .2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a[aria-current="page"] { color: var(--accent); }

/* Services dropdown */
.nav-item { position: relative; display: flex; align-items: center; gap: 2px; }
.nav-drop-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border: 0; background: transparent; color: var(--ink-soft);
  cursor: pointer; padding: 0; border-radius: 6px; transition: color .2s, background .2s;
}
.nav-drop-toggle:hover { color: var(--ink); background: var(--bg-alt); }
.nav-drop-toggle svg { width: 12px; height: 12px; transition: transform .2s var(--ease); pointer-events: none; }
.nav-item.open .nav-drop-toggle svg, .nav-item:hover .nav-drop-toggle svg { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(4px);
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm);
  box-shadow: var(--card-shadow); padding: 8px; min-width: 210px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
  z-index: 70;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown,
.nav-item.open .nav-dropdown {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block; padding: 10px 12px; border-radius: 8px; font-size: 14px;
  color: var(--ink-soft); font-family: var(--body); font-weight: 500; white-space: nowrap;
}
.nav-dropdown a:hover { background: var(--bg-alt); color: var(--ink); }

.nav-utils { display: flex; align-items: center; gap: 10px; }
.nav-cta { padding: 10px 18px; font-size: 14px; }

.icon-btn {
  width: 40px; height: 40px; border-radius: 999px; border: 1.5px solid var(--line);
  background: transparent; color: var(--ink); cursor: pointer; display: grid; place-items: center;
  transition: border-color .2s, transform .2s;
}
.icon-btn:hover { border-color: var(--accent); transform: rotate(-8deg); }
.icon-btn svg { width: 18px; height: 18px; }
.sun { display: none; } .moon { display: block; }
[data-theme="dark"] .sun { display: block; } [data-theme="dark"] .moon { display: none; }
.hamburger { display: none; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; padding: 78px 0 92px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--body); font-weight: 600; font-size: 13px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 22px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--accent); border-radius: 2px; }
.hero h1 { font-size: clamp(48px, 7.5vw, 88px); }
.hero h1 .accent { color: var(--accent); }
.hero-sub { font-size: clamp(17px, 2vw, 20px); color: var(--ink-soft); max-width: 32ch; margin: 24px 0 34px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-note { font-family: var(--h1); font-weight: 700; font-style: italic; font-size: 17px; color: var(--quote-ink); margin-top: 26px; }
.hero-art { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--card-shadow); }
.hero-art img { width: 100%; height: 100%; object-fit: cover; object-position: center; aspect-ratio: 4/3; }
.hero-art .badge {
  position: absolute; left: 20px; bottom: 20px; background: color-mix(in srgb, var(--bg) 90%, transparent);
  backdrop-filter: blur(8px); border-radius: 14px; padding: 12px 16px; display: flex; gap: 12px; align-items: center;
  box-shadow: var(--card-shadow);
}
.hero-art .badge b { font-family: var(--h1); font-weight: 900; font-size: 20px; color: var(--accent); }
.hero-art .badge span { font-size: 12px; color: var(--ink-soft); line-height: 1.25; }

/* ---------- Hero, video background ---------- */
.hero-video { position: relative; overflow: hidden; min-height: 620px; display: flex; align-items: center; }
.hero-video-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: 0; }
.hero-video-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(18,12,11,.5), rgba(18,12,11,.62) 55%, rgba(18,12,11,.72));
}
.hero-video-content { position: relative; z-index: 2; text-align: center; max-width: 760px; margin: 0 auto; padding: 90px 24px; }
.hero-video-content .eyebrow { color: #fff; justify-content: center; }
.hero-video-content .eyebrow::before { background: var(--accent); }
.hero-video-content h1 { font-size: clamp(40px, 6.5vw, 76px); color: #fff; }
.hero-video-content h1 .accent { color: var(--orange-soft); }
.hero-video-content .hero-sub { color: rgba(255,255,255,.86); max-width: 46ch; margin-left: auto; margin-right: auto; }
.hero-video-content .hero-cta { justify-content: center; }
.hero-video-content .hero-note { color: rgba(255,255,255,.75); }
.btn-xl { font-size: 19px; padding: 19px 42px; }
.btn-ghost-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.6); }
.btn-ghost-light:hover { border-color: #fff; transform: translateY(-2px); }
@media (max-width: 640px) { .hero-video { min-height: 520px; } .hero-video-content { padding: 64px 20px; } }

.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; z-index: -1; }
.blob-1 { width: 420px; height: 420px; background: radial-gradient(circle, rgba(255,79,0,.5), transparent 70%); top: -120px; right: -80px; animation: drift 16s var(--ease) infinite alternate; }
.blob-2 { width: 360px; height: 360px; background: radial-gradient(circle, rgba(18,53,91,.4), transparent 70%); bottom: -160px; left: -120px; animation: drift 20s var(--ease) infinite alternate-reverse; }
@keyframes drift { to { transform: translate3d(40px, 30px, 0) scale(1.08); } }

/* ---------- Sections ---------- */
.section-pad { padding: 88px 0; }
.section-head { max-width: 640px; margin-bottom: 50px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4.4vw, 46px); }
.section-head p { color: var(--ink-soft); font-size: 18px; margin-top: 16px; }
.kicker { font-family: var(--body); font-weight: 600; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.alt-bg { background: var(--bg-alt); }
.contrast-bg { background: var(--bg-contrast); color: var(--accent-ink); }
.contrast-bg .section-head p { color: rgba(255,255,255,.75); }
.contrast-bg .kicker { color: var(--orange-soft); }

/* stacked headline (home services) */
.stack-head h2 { font-size: clamp(34px, 5vw, 56px); line-height: 1.05; }
.stack-head h2 .line2 { display: block; color: var(--accent); }

/* ---------- Pillars ---------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pillar { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px; transition: transform .3s var(--ease), border-color .3s; }
.pillar:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--accent) 45%, var(--line)); }
.pillar .num { font-family: var(--h1); font-weight: 900; font-size: 15px; color: var(--accent); }
.pillar h3 { font-size: 22px; margin: 12px 0 10px; }
.pillar p { color: var(--ink-soft); font-size: 15.5px; }

/* ---------- Quote ---------- */
.quote-block { text-align: center; max-width: 900px; margin: 0 auto; }
.quote-block p { font-family: var(--h1); font-weight: 700; font-size: clamp(26px, 4vw, 42px); line-height: 1.3; color: var(--ink); }
.quote-block .mark { color: var(--accent); }
.quote-block cite { display: block; font-style: normal; font-family: var(--body); font-weight: 600; font-size: 15px; color: var(--ink-soft); margin-top: 26px; letter-spacing: .02em; }

/* ---------- Shared price band ---------- */
.price-band {
  display: flex; align-items: center; justify-content: center; gap: 22px; flex-wrap: wrap; text-align: center;
  background: var(--bg-contrast); color: var(--accent-ink); border-radius: var(--radius); padding: 26px 34px; margin-bottom: 30px;
}
.price-band .pb-label { font-family: var(--body); font-weight: 600; font-size: 14px; letter-spacing: .1em; text-transform: uppercase; opacity: .8; }
.price-band .pb-price { font-family: var(--h1); font-weight: 900; font-size: clamp(34px, 5vw, 48px); color: var(--orange-soft); line-height: 1; }
.price-band .pb-price small { font-family: var(--body); font-weight: 500; font-size: 14px; color: rgba(255,255,255,.8); letter-spacing: 0; text-transform: none; margin-left: 6px; }
.price-band .pb-div { width: 1px; height: 42px; background: rgba(255,255,255,.22); }

/* ad spend / fee separate callout */
.separate-note {
  display: flex; align-items: center; gap: 12px; justify-content: center; text-align: center;
  font-size: 14.5px; color: var(--ink-soft); background: var(--bg-alt); border: 1px solid var(--line);
  border-left: 3px solid var(--accent); border-radius: 10px; padding: 14px 20px; max-width: 720px; margin: 0 auto;
}
.separate-note b { color: var(--ink); }

/* ---------- Offers ---------- */
.offers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.offer { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s; }
.offer:hover { transform: translateY(-5px); box-shadow: var(--card-shadow); }
.offer .tag { font-family: var(--body); font-weight: 600; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }
.offer h3 { font-size: 24px; margin: 12px 0 8px; }
.offer .desc { color: var(--ink-soft); font-size: 15px; flex: 1; }
.offer ul { list-style: none; padding: 0; margin: 18px 0 0; }
.offer ul li { font-size: 14.5px; color: var(--ink-soft); padding: 6px 0 6px 24px; position: relative; }
.offer ul li::before { content: ""; position: absolute; left: 0; top: 12px; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.offer .btn { margin-top: 22px; }

/* ---------- Inner Circle duo cards (both purple) ---------- */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.duo-card { border-radius: var(--radius); padding: 40px; position: relative; overflow: hidden; background: var(--bg-contrast); color: var(--accent-ink); }
.duo-card .badge-lbl { font-family: var(--body); font-weight: 600; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; opacity: .82; }
.duo-card h3 { font-size: 28px; margin: 12px 0 12px; }
.duo-card p { font-size: 15.5px; opacity: .92; margin-bottom: 24px; }
.duo-card .link-arrow { font-family: var(--body); font-weight: 600; font-size: 15px; display: inline-flex; align-items: center; gap: 7px; color: var(--accent-ink); }
.duo-card .link-arrow:hover { color: var(--orange-soft); }

/* ---------- Founder ---------- */
.founder { display: grid; grid-template-columns: .85fr 1.15fr; gap: 52px; align-items: center; }
.founder-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--card-shadow); border: 1px solid var(--line); }
.founder-photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.stat-row { display: flex; gap: 40px; margin-top: 30px; flex-wrap: wrap; }
.stat b { font-family: var(--h1); font-weight: 900; font-size: clamp(30px, 4vw, 44px); color: var(--accent); display: block; line-height: 1; }
.stat span { font-size: 14px; color: var(--ink-soft); }
.founder-quote { font-family: var(--h1); font-weight: 700; font-style: italic; font-size: 20px; line-height: 1.4; margin: 28px 0 0; color: var(--ink); }

/* ---------- Brand carousel ---------- */
.brands { margin-top: 46px; }
.brands-lead { text-align: center; font-family: var(--body); font-weight: 600; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 22px; }
.marquee { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; width: max-content; gap: 18px; animation: marquee 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.brand-chip {
  flex: none; display: grid; place-items: center; height: 66px; padding: 0 30px; border-radius: 12px;
  background: var(--card); border: 1px solid var(--line);
  font-family: var(--h1); font-weight: 700; font-size: 17px; color: var(--ink-soft); letter-spacing: .01em; white-space: nowrap;
}
@keyframes marquee { to { transform: translateX(calc(-50% - 9px)); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; flex-wrap: wrap; justify-content: center; width: 100%; } }

/* ---------- Services detail ---------- */
.svc { padding: 60px 0; }
.svc-top { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.svc-title { font-size: clamp(30px, 4vw, 44px); }
.svc-lead { color: var(--ink-soft); font-size: 17px; margin: 16px 0 0; }
.goal-box { background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.goal-box .kicker { margin-bottom: 14px; }
.goal-box ul { list-style: none; margin: 0; padding: 0; }
.goal-box li { padding: 8px 0 8px 26px; position: relative; font-size: 15.5px; }
.goal-box li::before { content: "\2192"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.svc-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 34px; }
.svc-col h4 { font-size: 15px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px; color: var(--ink); }
.svc-col ul { list-style: none; margin: 0; padding: 0; }
.svc-col li { font-size: 14px; color: var(--ink-soft); padding: 5px 0 5px 18px; position: relative; }
.svc-col li::before { content: ""; position: absolute; left: 0; top: 11px; width: 6px; height: 6px; border-radius: 50%; background: color-mix(in srgb, var(--accent) 70%, transparent); }
.minbudget { font-size: 13.5px; color: var(--ink-soft); margin-top: 16px; padding: 12px 16px; border-left: 3px solid var(--accent); background: var(--bg-alt); border-radius: 0 8px 8px 0; }
.includes { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.include-chip { font-family: var(--body); font-weight: 500; font-size: 14.5px; padding: 10px 20px; border-radius: 999px; border: 1.5px solid var(--line); background: var(--card); }
.include-chip b { color: var(--accent); }
.svc-divider { border: 0; border-top: 1px solid var(--line); margin: 0; }

/* Limited space, emphasised urgency banner */
.limited-banner {
  display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; text-align: center;
  background: color-mix(in srgb, var(--accent) 8%, var(--bg)); border: 1.5px solid color-mix(in srgb, var(--accent) 35%, var(--line));
  border-radius: var(--radius); padding: 20px 28px; max-width: 780px; margin: 26px auto 0;
}
.limited-banner .dot-pulse { width: 11px; height: 11px; border-radius: 50%; background: var(--accent); flex: none; box-shadow: 0 0 0 0 rgba(255,79,0,.5); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255,79,0,.5); } 70% { box-shadow: 0 0 0 12px rgba(255,79,0,0); } 100% { box-shadow: 0 0 0 0 rgba(255,79,0,0); } }
@media (prefers-reduced-motion: reduce) { .dot-pulse { animation: none; } }
.limited-banner b { font-family: var(--body); font-weight: 700; color: var(--ink); font-size: 16px; }
.limited-banner span { color: var(--ink-soft); font-size: 15px; }

/* Limited space popup (services page only) */
.limited-popup-overlay {
  position: fixed; inset: 0; z-index: 89; background: rgba(8,10,14,.5); backdrop-filter: blur(3px);
  opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .35s var(--ease), visibility .35s;
}
.limited-popup-overlay.show { opacity: 1; visibility: visible; pointer-events: auto; }
.limited-popup {
  position: fixed; top: 50%; left: 50%; z-index: 90; width: min(420px, calc(100vw - 40px));
  background: var(--card); border: 1.5px solid color-mix(in srgb, var(--accent) 35%, var(--line));
  border-radius: var(--radius); box-shadow: 0 30px 80px rgba(0,0,0,.4); padding: 30px 30px 26px;
  text-align: center;
  transform: translate(-50%, -50%) scale(.94); opacity: 0; visibility: hidden; pointer-events: none;
  transition: transform .3s var(--ease), opacity .3s var(--ease), visibility .3s;
}
.limited-popup.show { transform: translate(-50%, -50%) scale(1); opacity: 1; visibility: visible; pointer-events: auto; }
.limited-popup-icon {
  width: 52px; height: 52px; margin: 0 auto 16px; border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 14%, transparent); color: var(--accent);
  display: grid; place-items: center; position: relative;
}
.limited-popup-icon svg { width: 26px; height: 26px; }
.limited-popup-icon .dot-pulse { position: absolute; top: -1px; right: -1px; width: 12px; height: 12px; }
.limited-popup-body b { display: block; font-family: var(--body); font-weight: 700; color: var(--ink); font-size: 17px; margin-bottom: 6px; }
.limited-popup-body span { color: var(--ink-soft); font-size: 14px; line-height: 1.55; }
.limited-popup-close {
  position: absolute; top: 12px; right: 12px; width: 28px; height: 28px; border: 0; background: transparent;
  color: var(--ink-soft); cursor: pointer; border-radius: 7px; display: grid; place-items: center; font-size: 18px; line-height: 1;
}
.limited-popup-close:hover { color: var(--ink); background: var(--bg-alt); }

/* Pricing cards */
.price-cards { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; align-items: stretch; }
.price-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 18px 20px; display: flex; flex-direction: column; position: relative;
}
.price-card.featured { background: color-mix(in srgb, var(--accent) 7%, var(--card)); border-color: var(--accent); }
.pc-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: var(--accent-ink); font-family: var(--body); font-weight: 700;
  font-size: 11px; letter-spacing: .03em; padding: 5px 12px; border-radius: 999px; white-space: nowrap;
}
.pc-icon {
  width: 40px; height: 40px; border-radius: 10px; margin-bottom: 14px;
  background: color-mix(in srgb, var(--accent) 14%, transparent); color: var(--accent);
  display: grid; place-items: center;
}
.pc-icon svg { width: 20px; height: 20px; }
.price-card h3 { font-size: 16.5px; line-height: 1.25; margin-bottom: 4px; min-height: 41px; display: flex; align-items: flex-start; }
.pc-sub { font-size: 12.5px; color: var(--ink-soft); margin-bottom: 16px; }
.pc-price-label { font-family: var(--body); font-weight: 600; font-size: 10.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); }
.pc-price { font-family: var(--h1); font-weight: 900; font-size: 25px; color: var(--ink); margin: 4px 0 2px; line-height: 1.1; }
.pc-price small { font-family: var(--body); font-weight: 500; font-size: 12.5px; color: var(--ink-soft); }
.pc-billed { font-size: 11.5px; line-height: 1.45; color: var(--ink-soft); margin-bottom: 16px; min-height: 32px; }
.price-card .btn { width: 100%; justify-content: center; font-size: 13px; padding: 10px 12px; margin-bottom: 18px; }
.pc-features { list-style: none; margin: 0; padding-top: 14px; border-top: 1px solid var(--line); flex: 1; }
.pc-features li { font-size: 12.5px; color: var(--ink-soft); padding: 6px 0; line-height: 1.4; }

/* Enhanced budget callout box with its own headline */
.budget-callout {
  max-width: 900px; margin: 0 auto; border-radius: var(--radius); padding: 36px 40px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 12%, var(--bg)), var(--bg));
  border: 1.5px solid color-mix(in srgb, var(--accent) 45%, var(--line));
  display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
}
.budget-callout .bc-text { flex: 1 1 380px; }
.budget-callout h3 { font-size: 24px; margin-bottom: 8px; }
.budget-callout p { color: var(--ink-soft); font-size: 15.5px; }
.budget-callout .btn { flex: none; }

/* small inline budget link inside a service block */
.budget-link { display: inline-flex; align-items: center; gap: 7px; font-family: var(--body); font-weight: 600; font-size: 14.5px; color: var(--accent); margin-top: 14px; }
.budget-link:hover { gap: 11px; }

/* Service detail pages */
.back-link { display: inline-flex; align-items: center; gap: 7px; font-family: var(--body); font-weight: 600; font-size: 14.5px; color: var(--ink-soft); }
.back-link:hover { color: var(--accent); gap: 11px; }
.svc-price { font-family: var(--h1); font-weight: 900; font-size: clamp(30px, 4vw, 40px); color: var(--accent); margin: 6px 0 4px; line-height: 1.1; }
.svc-price small { font-family: var(--body); font-weight: 500; font-size: 13px; color: var(--ink-soft); margin-left: 6px; }
.svc-price-note { font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; }
.who-list { list-style: none; margin: 0; padding: 0; max-width: 680px; }
.who-list li { font-size: 15.5px; color: var(--ink); padding: 13px 0 13px 30px; position: relative; border-bottom: 1px solid var(--line); }
.who-list li:last-child { border-bottom: 0; }
.who-list li::before { content: ""; position: absolute; left: 0; top: 21px; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.svc-crosslinks { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.svc-crosslinks a { font-family: var(--body); font-weight: 600; font-size: 13.5px; color: var(--ink-soft); background: var(--bg-alt); border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px; }
.svc-crosslinks a:hover { color: var(--accent); border-color: var(--accent); }

/* Pricing at a glance table */
.price-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); box-shadow: var(--card-shadow); }
.price-table { width: 100%; border-collapse: collapse; min-width: 560px; }
.price-table th, .price-table td { text-align: left; padding: 16px 20px; border-bottom: 1px solid var(--line); vertical-align: top; }
.price-table thead th { font-family: var(--body); font-weight: 600; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); background: var(--bg-alt); }
.price-table tbody tr:last-child td { border-bottom: 0; }
.price-table tbody tr:hover { background: color-mix(in srgb, var(--accent) 4%, transparent); }
.price-table td a { font-family: var(--body); font-weight: 700; color: var(--ink); }
.price-table td a:hover { color: var(--accent); }
.price-table .p-fee { font-family: var(--body); font-weight: 700; color: var(--accent); white-space: nowrap; }
.price-table .p-notes { color: var(--ink-soft); font-size: 14px; }

/* ---------- Calculator ---------- */
.calc-shell { display: grid; grid-template-columns: 1.05fr .95fr; gap: 24px; align-items: start; }
.dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; flex: none; }
.dot.meta { background: #1877F2; } .dot.google { background: #EA4335; }

/* Inputs card (left) */
.calc-main { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 28px 30px; box-shadow: var(--card-shadow); }

/* Meta / Google tabs */
.calc-tabs { display: flex; gap: 5px; background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 5px; margin-bottom: 26px; }
.calc-tab {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  border: 0; background: transparent; cursor: pointer; color: var(--ink-soft);
  font-family: var(--body); font-weight: 600; font-size: 15px;
  padding: 11px 14px; border-radius: 10px; transition: background .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease);
}
.calc-tab:hover { color: var(--ink); }
.calc-tab.sel { background: var(--card); color: var(--ink); box-shadow: 0 1px 2px rgba(32,21,21,.08), 0 4px 12px rgba(32,21,21,.06); }

.calc-panel[hidden] { display: none; }
.calc-label { font-family: var(--body); font-weight: 600; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); margin: 22px 0 10px; }
.calc-label:first-of-type { margin-top: 4px; }
.opt-grid { display: grid; gap: 8px; }
.opt {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: 12px 15px; cursor: pointer;
  transition: border-color .2s, background .2s; background: var(--bg);
}
.opt:hover { border-color: color-mix(in srgb, var(--accent) 50%, var(--line)); }
.opt.sel { border-color: var(--accent); background: color-mix(in srgb, var(--accent) 8%, var(--bg)); }
.opt .lbl { font-family: var(--body); font-weight: 600; font-size: 14.5px; }
.opt .sub { font-size: 12px; color: var(--ink-soft); }
.opt .val { font-size: 13.5px; color: var(--ink-soft); }
.opt .radio { width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--line); flex: none; position: relative; }
.opt.sel .radio { border-color: var(--accent); }
.opt.sel .radio::after { content: ""; position: absolute; inset: 3px; border-radius: 50%; background: var(--accent); }

/* Consolidated spend summary (right) */
.calc-summary { background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 30px 32px; position: sticky; top: 96px; box-shadow: var(--card-shadow); }
.cs-label { font-family: var(--body); font-weight: 600; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); }
.cs-big { font-family: var(--h1); font-weight: 900; font-size: clamp(40px, 6vw, 56px); line-height: 1; color: var(--accent); margin: 8px 0 14px; }
.cs-desc { font-size: 14px; line-height: 1.55; color: var(--ink-soft); }
.cs-divider { height: 1px; background: var(--line); margin: 22px 0; }
.cs-platform { border-left: 2px solid transparent; padding-left: 14px; margin-left: -2px; transition: border-color .2s var(--ease); }
.cs-platform + .cs-platform { margin-top: 18px; }
.cs-platform.active { border-left-color: var(--accent); }
.cs-plat-head { display: flex; align-items: center; gap: 9px; font-family: var(--body); font-weight: 700; font-size: 16px; }
.cs-plat-head .cs-plat-spend { margin-left: auto; font-weight: 700; }
.cs-platform.active .cs-plat-head .cs-plat-spend { color: var(--accent); }
.cs-plat-detail { display: flex; flex-wrap: wrap; gap: 5px 16px; margin-top: 7px; padding-left: 19px; font-size: 13px; color: var(--ink-soft); }
.cs-plat-detail b { color: var(--ink); font-weight: 600; }
.cs-cta h3 { font-family: var(--h1); font-weight: 900; font-size: 22px; letter-spacing: -.01em; margin-bottom: 8px; }
.cs-cta p { font-size: 14px; line-height: 1.55; color: var(--ink-soft); margin-bottom: 16px; }
.cs-cta .btn { width: 100%; justify-content: center; }
.calc-note { text-align: center; font-size: 13.5px; color: var(--ink-soft); margin-top: 24px; max-width: 760px; margin-left:auto; margin-right:auto; }
.calc-note b { color: var(--ink); }

/* explainer cards */
.explain { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.explain-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; }
.explain-card .e-icon { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: color-mix(in srgb, var(--accent) 12%, transparent); color: var(--accent); font-family: var(--h1); font-weight: 900; font-size: 20px; margin-bottom: 16px; }
.explain-card h3 { font-size: 19px; margin-bottom: 10px; }
.explain-card p { color: var(--ink-soft); font-size: 15px; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; font-family: var(--body); font-weight: 600; font-size: 18px; color: var(--ink); padding: 24px 44px 24px 0; position: relative; display: flex; justify-content: space-between; gap: 20px; }
.faq-q .plus { flex: none; width: 24px; height: 24px; position: relative; }
.faq-q .plus::before, .faq-q .plus::after { content: ""; position: absolute; background: var(--accent); border-radius: 2px; }
.faq-q .plus::before { left: 0; right: 0; top: 11px; height: 2px; }
.faq-q .plus::after { top: 0; bottom: 0; left: 11px; width: 2px; transition: transform .3s var(--ease); }
.faq-item.open .plus::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a p { color: var(--ink-soft); font-size: 15.5px; padding: 0 44px 26px 0; }

/* ---------- Value ladder (inner circle) ---------- */
.ladder { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.rung { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; position: relative; }
.rung.feature { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent) inset; }
.rung .step { font-family: var(--h1); font-weight: 900; font-size: 13px; color: var(--accent); }
.rung h3 { font-size: 20px; margin: 8px 0 6px; }
.rung .price { font-family: var(--body); font-weight: 700; font-size: 16px; color: var(--ink); margin-bottom: 12px; }
.rung .price small { font-weight: 400; color: var(--ink-soft); font-size: 13px; }
.rung ul { list-style: none; margin: 0; padding: 0; }
.rung li { font-size: 13.5px; color: var(--ink-soft); padding: 5px 0 5px 18px; position: relative; }
.rung li::before { content: ""; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

/* tickets */
.tickets { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.ticket { border-radius: var(--radius); padding: 34px; border: 1px solid var(--line); background: var(--card); }
.ticket.vip { background: var(--bg-contrast); color: var(--accent-ink); border-color: transparent; }
.ticket .t-tier { font-family: var(--body); font-weight: 600; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
.ticket.vip .t-tier { color: var(--orange-soft); }
.ticket .t-price { font-family: var(--h1); font-weight: 900; font-size: 34px; margin: 10px 0 4px; }
.ticket ul { list-style: none; margin: 16px 0 0; padding: 0; }
.ticket li { font-size: 14.5px; padding: 6px 0 6px 22px; position: relative; }
.ticket li::before { content: "\2713"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.ticket.vip li::before { color: var(--orange-soft); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--accent); color: var(--accent-ink); border-radius: var(--radius); padding: 66px 40px; text-align: center; position: relative; overflow: hidden; }
.cta-band h2 { font-size: clamp(30px, 5vw, 52px); color: var(--accent-ink); }
.cta-band p { max-width: 48ch; margin: 18px auto 32px; font-size: 18px; opacity: .95; }
.cta-band .z-ghost { position: absolute; right: -40px; bottom: -60px; width: 320px; opacity: .12; }

/* ---------- Footer ---------- */
footer { border-top: 1px solid var(--line); padding: 54px 0 40px; }
.foot-grid { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; }
.foot-brand { max-width: 320px; }
.foot-brand .brand-name { font-family: var(--body); font-weight: 700; font-size: 19px; }
.foot-brand p { color: var(--ink-soft); font-size: 14.5px; margin-top: 14px; }
.foot-contact { margin-top: 16px; font-size: 14.5px; }
.foot-contact a { color: var(--ink); font-weight: 600; }
.foot-contact a:hover { color: var(--accent); }
.foot-links { display: flex; gap: 60px; flex-wrap: wrap; }
.foot-col h5 { font-family: var(--body); font-size: 13px; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-soft); margin-bottom: 14px; }
.foot-col a { display: block; font-size: 15px; padding: 5px 0; color: var(--ink); }
.foot-col a:hover { color: var(--accent); }
.foot-bottom { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13.5px; color: var(--ink-soft); }

/* ---------- Modal ---------- */
.modal { position: fixed; inset: 0; z-index: 200; display: none; }
.modal.open { display: block; }
.modal-overlay { position: absolute; inset: 0; background: rgba(8,10,14,.55); backdrop-filter: blur(4px); opacity: 0; transition: opacity .3s; }
.modal.open .modal-overlay { opacity: 1; }
.modal-panel { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -46%); width: min(560px, calc(100vw - 32px)); height: min(88vh, 780px); background: var(--bg); border-radius: var(--radius); overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,.4); opacity: 0; transition: opacity .3s var(--ease), transform .3s var(--ease); }
.modal.open .modal-panel { opacity: 1; transform: translate(-50%, -50%); }
.modal-head { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; border-bottom: 1px solid var(--line); }
.modal-head b { font-family: var(--body); font-weight: 700; font-size: 16px; }
.modal-close { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line); background: var(--bg); cursor: pointer; font-size: 18px; color: var(--ink); }
.modal iframe { width: 100%; height: calc(100% - 59px); border: 0; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .blob { animation: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; padding: 52px 0 60px; }
  .founder { grid-template-columns: 1fr; gap: 30px; }
  .pillars, .offers, .svc-cols, .explain { grid-template-columns: 1fr; }
  .duo, .calc-shell, .svc-top, .tickets { grid-template-columns: 1fr; }
  .price-cards { grid-template-columns: repeat(2, 1fr); }
  .calc-summary { position: static; top: auto; }
  .ladder { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .hamburger { display: grid; }
  .nav-cta { display: none; }
  .brand-word { font-size: 19px; }
  .brand img { width: 48px; height: 48px; }
  .nav-links.open { display: flex; position: absolute; top: 84px; left: 0; right: 0; flex-direction: column; align-items: stretch; background: var(--bg); border-bottom: 1px solid var(--line); padding: 14px 24px 20px; gap: 4px; max-height: calc(100vh - 84px); overflow-y: auto; }
  .nav-links.open a { padding: 12px 8px; font-size: 16px; }
  .nav-item { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-drop-toggle { position: absolute; right: 0; top: 2px; width: 40px; height: 40px; }
  .nav-dropdown {
    position: static; opacity: 1; visibility: visible; pointer-events: auto; transform: none !important;
    left: auto; top: auto;
    box-shadow: none; border: 0; background: transparent; padding: 0 0 6px 14px;
    max-height: 0; overflow: hidden; transition: max-height .25s var(--ease);
  }
  .nav-item.open .nav-dropdown { max-height: 320px; }
  .nav-dropdown a { padding: 9px 8px; font-size: 14.5px; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 18px; }
  .section-pad { padding: 60px 0; }
  .ladder { grid-template-columns: 1fr; }
  .price-cards { grid-template-columns: 1fr; }
  .stat-row { gap: 26px; }
  .cta-band { padding: 48px 24px; }
  .price-band { flex-direction: column; gap: 12px; }
  .price-band .pb-div { display: none; }
}

/* ================================================================
   ZONO ACCESS landing page
   ================================================================ */
.za-nav-inner { justify-content: space-between; }

/* Hero */
.za-hero-chips { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 18px; }
.za-hero-chip {
  font-family: var(--body); font-weight: 600; font-size: 12.5px; color: #fff;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.32);
  border-radius: 999px; padding: 7px 15px; backdrop-filter: blur(4px);
}
.hero-video-content .hero-line { margin-top: 18px; font-size: 13.5px; color: rgba(255,255,255,.72); font-family: var(--body); font-weight: 500; }
.hero-floating-card {
  position: absolute; right: 28px; bottom: 28px; z-index: 3; max-width: 250px;
  background: color-mix(in srgb, var(--bg) 92%, transparent); backdrop-filter: blur(10px);
  border-radius: var(--radius); padding: 14px 16px; display: flex; align-items: center; gap: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
}
.hfc-dots { display: flex; flex: none; }
.hfc-dot {
  width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center;
  font-size: 10px; font-weight: 700; color: #fff; margin-left: -8px; border: 2px solid var(--card);
}
.hfc-dot:first-child { margin-left: 0; }
.hero-floating-card b { display: block; font-family: var(--body); font-weight: 700; font-size: 13px; color: var(--ink); }
.hero-floating-card span { font-size: 11px; color: var(--ink-soft); line-height: 1.4; }
@media (max-width: 700px) { .hero-floating-card { position: static; margin: 22px auto 0; max-width: 300px; } }

/* Problem, asymmetric collage */
.problem-head { max-width: 640px; }
.mark-hl { background: color-mix(in srgb, var(--accent) 16%, transparent); padding: 1px 10px; border-radius: 8px; }
.collage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 46px; }
.collage-col { display: flex; flex-direction: column; gap: 20px; }
.collage-col-b { margin-top: 64px; }
.collage-photo { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--card-shadow); }
.collage-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; }
.collage-tag {
  position: absolute; top: 16px; left: 16px; background: var(--card); border: 1px solid var(--line);
  border-radius: 999px; padding: 8px 15px; font-family: var(--body); font-weight: 600; font-size: 12.5px;
  box-shadow: var(--card-shadow); max-width: calc(100% - 32px);
}
.collage-caption {
  position: absolute; left: 16px; bottom: 16px; background: var(--bg-contrast); color: var(--accent-ink);
  border-radius: 999px 999px 999px 4px; padding: 9px 16px; font-family: var(--body); font-weight: 600;
  font-size: 12.5px; box-shadow: var(--card-shadow); max-width: calc(100% - 32px);
}
.collage-note {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 22px; box-shadow: var(--card-shadow); font-size: 14.5px; color: var(--ink-soft); line-height: 1.55;
}
.problem-ticker { margin-top: 50px; }
@media (max-width: 780px) {
  .collage-grid { grid-template-columns: 1fr; }
  .collage-col-b { margin-top: 0; }
}

/* Solution + How it works, step grid */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
.step-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.step-card .step-num { font-family: var(--body); font-weight: 600; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.step-card h4 { font-size: 18px; margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.55; }
.step-card.featured {
  grid-column: 1 / -1; display: grid; grid-template-columns: 1.1fr .9fr; gap: 30px; align-items: center;
  background: var(--bg-contrast); color: var(--accent-ink); border-color: transparent; padding: 34px;
}
.step-card.featured .step-num { color: var(--orange-soft); }
.step-card.featured p { color: rgba(255,255,255,.78); }
.step-card.featured .step-media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/11; }
.step-card.featured .step-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 780px) {
  .steps-grid { grid-template-columns: 1fr; }
  .step-card.featured { grid-template-columns: 1fr; }
}

/* What's included */
.included-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 36px; }
.included-card { background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.included-card h4 { font-family: var(--body); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 14px; color: var(--accent); }
.included-card ul { list-style: none; margin: 0; padding: 0; }
.included-card li { font-size: 14.5px; color: var(--ink); padding: 8px 0; border-bottom: 1px solid var(--line); }
.included-card li:last-child { border-bottom: 0; }
@media (max-width: 900px) { .included-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .included-grid { grid-template-columns: 1fr; } }

/* FAQ split */
.faq-split { display: grid; grid-template-columns: 300px 1fr; gap: 54px; align-items: start; }
.faq-aside img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; margin-bottom: 18px; box-shadow: var(--card-shadow); }
.faq-aside h3 { font-size: 23px; margin-bottom: 12px; }
.faq-aside h3 em { font-family: var(--h1); font-style: italic; font-weight: 700; color: var(--accent); }
.faq-aside p { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 22px; line-height: 1.6; }
@media (max-width: 860px) { .faq-split { grid-template-columns: 1fr; } }

/* Slim footer */
.za-footer { background: var(--bg-contrast); padding: 30px 0; text-align: center; }
.za-footer p { color: var(--accent-ink); font-size: 13.5px; opacity: .82; }
.za-footer a { color: var(--accent-ink); text-decoration: underline; text-underline-offset: 3px; }
