/* ============================================================
   Elev8d — SEO Melbourne service page
   Design tokens + base + components
   ============================================================ */

:root {
  /* Brand */
  --black: #000000;
  --off-black: #0A0A0A;
  --black-2: #111111;
  --black-3: #1A1A1A;
  --white: #FFFFFF;
  --grey-light: #F5F5F5;
  --grey-light-2: #EEEEEE;
  --grey-mid: #888888;
  --grey-mid-2: #AAAAAA;

  /* Accent (gold) — hue can be tweaked at runtime via --accent-h */
  --accent: #F4A000;
  --accent-text: #815503;
  --accent-light: #FFB038;
  --accent-dark: #D08801;

  /* Semantic */
  --bg: var(--black);
  --line-dark: #1E1E1E;
  --line-light: #E6E6E6;

  /* Type */
  --font-head: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "Space Mono", ui-monospace, monospace;

  /* Layout */
  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --section-y: clamp(72px, 9vw, 130px);
  --radius: 14px;
  --radius-sm: 10px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
::selection { background: var(--accent); color: #000; }

/* ---------- Layout primitives ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); position: relative; }
.section--dark { background: var(--black); color: var(--white); }
.section--darker { background: var(--off-black); color: var(--white); }
.section--light { background: var(--white); color: var(--black); }
.section--grey { background: var(--grey-light); color: var(--black); }

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: var(--font-head); font-weight: 700; line-height: 1.04; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.6rem, 6.2vw, 4.9rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.15rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); letter-spacing: -0.015em; }
p { text-wrap: pretty; }

.eyebrow {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--accent);
  display: inline-block;
}
.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.65;
  max-width: 60ch;
}
.muted { color: var(--grey-mid); }
.muted-dark { color: var(--grey-mid-2); }
.gold { color: var(--accent); }

/* Section header block */
.sec-head { max-width: 760px; margin-bottom: clamp(44px, 5vw, 72px); }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head.center .eyebrow { justify-content: center; }
.sec-head p { margin-top: 22px; font-size: 1.08rem; }
.section--dark .sec-head p, .section--darker .sec-head p { color: var(--grey-mid-2); }
.section--light .sec-head p, .section--grey .sec-head p { color: #555; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  padding: 16px 28px; border-radius: var(--radius-sm);
  transition: transform .25s var(--ease), background .2s, color .2s, border-color .2s, box-shadow .25s;
  white-space: nowrap; letter-spacing: -0.01em;
}
.btn--primary { background: var(--accent); color: #000; box-shadow: 0 0 0 0 rgba(244,160,0,.5); }
.btn--primary:hover { background: var(--accent-light); transform: translateY(-2px); box-shadow: 0 14px 34px -10px rgba(244,160,0,.6); }
.btn--primary:active { background: var(--accent-dark); transform: translateY(0); }
.btn--ghost { border: 1px solid currentColor; color: inherit; }
.section--dark .btn--ghost, .section--darker .btn--ghost { border-color: #333; color: #fff; }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn--lg { padding: 19px 38px; font-size: 1.08rem; }
.btn .arr { transition: transform .25s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

.txtlink {
  font-family: var(--font-head); font-weight: 600; color: var(--accent);
  display: inline-flex; align-items: center; gap: 8px;
}
.txtlink .arr { transition: transform .25s var(--ease); }
.txtlink:hover .arr { transform: translateX(4px); }

/* ---------- Figure-8 / analemma motif ---------- */
.fig8 { display: inline-block; vertical-align: middle; }
.fig8 path { fill: none; stroke: var(--accent); stroke-width: 2; }

/* ---------- Scroll reveal (content visible by default; JS arms below-fold) ---------- */
.reveal { transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.armed { opacity: 0; transform: translateY(26px); }
.reveal.armed.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.armed { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--gutter);
  background: rgba(0,0,0,0);
  transition: background .3s, border-color .3s, padding .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled { background: rgba(8,8,8,.82); backdrop-filter: blur(14px); border-bottom-color: var(--line-dark); padding-block: 13px; }
.nav__logo img { height: 45px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__link { font-size: .95rem; color: #cfcfcf; transition: color .2s; font-weight: 450; display: inline-flex; align-items: center; gap: 6px; }
.nav__link:hover { color: var(--white); }
.nav__caret { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .25s var(--ease); }
.nav__item--drop { position: relative; }
.nav__drop-toggle { cursor: pointer; }
.nav__drop {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(-6px);
  min-width: 200px; background: rgba(12,12,12,.97); backdrop-filter: blur(14px);
  border: 1px solid var(--line-dark); border-radius: var(--radius-sm); padding: 8px;
  display: flex; flex-direction: column; opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
  box-shadow: 0 24px 50px -18px rgba(0,0,0,.7); z-index: 10;
}
.nav__drop::before { content: ""; position: absolute; bottom: 100%; left: 0; right: 0; height: 18px; }
.nav__item--drop:hover .nav__drop,
.nav__item--drop.open .nav__drop { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%); }
.nav__item--drop:hover .nav__caret,
.nav__item--drop.open .nav__caret { transform: rotate(180deg); }
.nav__drop a { padding: 11px 14px; border-radius: 8px; font-size: .92rem; color: #cfcfcf; transition: background .2s, color .2s; }
.nav__drop a:hover { background: rgba(244,160,0,.1); color: var(--accent); }
.nav__cta { display: flex; align-items: center; gap: 18px; }
.nav .btn { padding: 11px 20px; font-size: .92rem; }
.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__burger span { width: 24px; height: 2px; background: #fff; transition: .3s; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding-top: clamp(150px, 20vh, 210px); padding-bottom: 0; overflow: hidden; background: var(--black); }
.hero__glow {
  position: absolute; top: -10%; right: -8%; width: 70vw; height: 70vw; max-width: 980px; max-height: 980px;
  background: radial-gradient(circle at 60% 40%, rgba(244,160,0,.34), rgba(244,160,0,.07) 38%, transparent 64%);
  pointer-events: none; z-index: 0; filter: blur(2px);
}
.hero__fig {
  position: absolute; top: 4%; right: -4%; width: min(54vw, 720px); z-index: 0; opacity: .22; pointer-events: none;
}
.hero__fig path { fill: none; stroke: var(--accent); stroke-width: 1; }
.hero__grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .5;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 30%, #000 10%, transparent 78%);
  -webkit-mask-image: radial-gradient(circle at 50% 30%, #000 10%, transparent 78%);
}
.hero__inner { position: relative; z-index: 2; max-width: 920px; padding-bottom: clamp(70px, 9vw, 120px); }
.hero h1 { margin-bottom: 26px; }
.hero h1 .nb { color: var(--accent); white-space: nowrap; }
.hero h1 { overflow-wrap: break-word; }
.hero__sub { font-size: clamp(1.1rem, 1.7vw, 1.32rem); color: var(--grey-mid-2); max-width: 56ch; line-height: 1.6; margin-bottom: 38px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero__badge {
  display: inline-flex; align-items: center; flex-wrap: wrap; gap: 0 10px; margin-bottom: 30px;
  font-family: var(--font-mono); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--grey-mid-2); border: 1px solid var(--line-dark); border-radius: 100px; padding: 8px 16px;
}
.hero__badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); }
/* On desktop the two parts read as one line, separated by a dot */
.hero__badge-rest::before { content: "·"; margin-right: 10px; color: var(--grey-mid-2); }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust { background: var(--off-black); border-block: 1px solid var(--line-dark); padding-block: clamp(40px, 5vw, 60px); position: relative; z-index: 3; }
.trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.trust__item { padding: 8px clamp(16px, 3vw, 40px); border-left: 1px solid var(--line-dark); }
.trust__item:first-child { border-left: none; padding-left: 0; }
.trust__num { font-family: var(--font-head); font-weight: 700; font-size: clamp(2.4rem, 4.5vw, 3.4rem); color: var(--accent); line-height: 1; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; white-space: nowrap; }
.trust__label { margin-top: 12px; color: var(--grey-mid-2); font-size: .95rem; line-height: 1.4; }

/* ============================================================
   FEATURE / VALUE CARDS
   ============================================================ */
.cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.fcard {
  background: var(--white); border: 1px solid var(--line-light); border-radius: var(--radius);
  padding: clamp(28px, 3vw, 40px); transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.fcard:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: 0 24px 50px -28px rgba(0,0,0,.28); }
.icon {
  width: 54px; height: 54px; border-radius: 12px; display: grid; place-items: center;
  background: #FFF7E8; border: 1px solid #FBE3B3; margin-bottom: 24px; transition: background .3s;
}
.fcard:hover .icon { background: var(--accent); }
.icon svg { width: 26px; height: 26px; stroke: var(--accent-dark); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: stroke .3s; }
.fcard:hover .icon svg { stroke: #000; }
.fcard h3 { margin-bottom: 12px; color: var(--black); }
.fcard p { color: #555; font-size: 1rem; }

/* ============================================================
   PROCESS TIMELINE
   ============================================================ */
.proc { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; }
.proc__line { position: absolute; top: 31px; left: 0; right: 0; height: 1px; background: var(--line-dark); z-index: 0; }
.proc__line span { position: absolute; left: 0; top: 0; height: 100%; background: var(--accent); width: 0; transition: width 1.4s var(--ease); }
.pstep { position: relative; z-index: 1; padding-right: 26px; }
.pstep__num {
  width: 62px; height: 62px; border-radius: 50%; background: var(--off-black); border: 1px solid var(--line-dark);
  display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: 1.5rem;
  color: var(--accent); margin-bottom: 26px; transition: border-color .3s, background .3s, color .3s;
}
.pstep:hover .pstep__num { background: var(--accent); color: #000; border-color: var(--accent); }
.pstep h3 { color: #fff; margin-bottom: 12px; font-size: 1.22rem; }
.pstep p { color: var(--grey-mid-2); font-size: .98rem; }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.scard {
  background: var(--white); border: 1px solid var(--line-light); border-radius: var(--radius);
  padding: clamp(26px, 2.6vw, 36px); transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
  display: flex; flex-direction: column;
}
.scard:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: 0 24px 50px -28px rgba(0,0,0,.25); }
.scard__top { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.scard .icon { margin-bottom: 0; width: 48px; height: 48px; }
.scard .icon svg { width: 23px; height: 23px; }
.scard h3 { color: var(--black); font-size: 1.3rem; }
.scard p { color: #555; font-size: .98rem; margin-bottom: 20px; }
.scard__list { margin-top: auto; display: flex; flex-direction: column; gap: 10px; padding-top: 20px; border-top: 1px solid var(--line-light); }
.scard__list li { display: flex; align-items: flex-start; gap: 10px; font-size: .92rem; color: #444; }
.scard__list svg { flex: 0 0 auto; width: 16px; height: 16px; margin-top: 3px; stroke: var(--accent-dark); fill: none; stroke-width: 2.4; }

/* ============================================================
   RESULTS / CASE STUDIES
   ============================================================ */
.rcard {
  background: linear-gradient(180deg, #101010, #0b0b0b); border: 1px solid var(--line-dark); border-radius: var(--radius);
  padding: clamp(28px, 3vw, 40px); transition: transform .3s var(--ease), border-color .3s;
  display: flex; flex-direction: column; position: relative; overflow: hidden;
}
.rcard:hover { transform: translateY(-4px); border-color: var(--accent-dark); }
.rcard__tag { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--grey-mid); margin-bottom: 22px; }
.rcard__big { font-family: var(--font-head); font-weight: 700; font-size: clamp(3rem, 5vw, 4.1rem); color: var(--accent); line-height: .95; letter-spacing: -.03em; }
.rcard__big sub { font-size: .34em; color: var(--grey-mid-2); vertical-align: baseline; margin-left: 4px; font-weight: 500; }
.rcard__metric-label { color: #fff; font-weight: 600; font-family: var(--font-head); margin-top: 8px; margin-bottom: 22px; font-size: 1.05rem; }
.rcard h3 { color: #fff; font-size: 1.18rem; margin-bottom: 10px; }
.rcard p { color: var(--grey-mid-2); font-size: .96rem; margin-bottom: 22px; }
.rcard__bar { height: 8px; border-radius: 4px; background: #1d1d1d; overflow: hidden; margin-bottom: 10px; }
.rcard__bar span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--accent-dark), var(--accent-light)); border-radius: 4px; transition: width 1.3s var(--ease); }
.rcard__foot { margin-top: auto; display: flex; justify-content: space-between; align-items: center; padding-top: 22px; border-top: 1px solid var(--line-dark); font-size: .85rem; color: var(--grey-mid); font-family: var(--font-mono); }
.placeholder-tag { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-dark); border: 1px dashed #3a3a3a; border-radius: 4px; padding: 3px 7px; }

/* --- Result card: problem/solution context + clickable CTA --- */
.rcard__tag::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); display: inline-block; margin-right: 9px; vertical-align: middle; }
.rcard__ps { display: flex; flex-direction: column; gap: 13px; margin-bottom: 4px; }
.rcard__row { display: flex; flex-direction: column; gap: 4px; }
.rcard__k { font-family: var(--font-mono); font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-dark); display: inline-flex; align-items: center; gap: 7px; }
.rcard__k svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.rcard__v { color: var(--grey-mid-2); font-size: .95rem; line-height: 1.5; }
.pf-body .rcard__foot { margin-top: auto; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; padding-top: 20px; margin-top: 22px; border-top: 1px solid var(--line-dark); }
.rcard__time { font-family: var(--font-mono); font-size: .72rem; color: var(--grey-mid); letter-spacing: .02em; line-height: 1.35; max-width: 56%; }
.rcard__cta { font-family: var(--font-head); font-weight: 600; font-size: .92rem; color: var(--accent); display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.rcard__cta .arr { transition: transform .25s var(--ease); }
.pf-card:hover .rcard__cta .arr { transform: translateX(4px); }

/* ============================================================
   GOOD FIT / NOT THE RIGHT FIT
   ============================================================ */
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.fit-col { border-radius: var(--radius); padding: clamp(26px, 3vw, 38px); border: 1px solid; }
.fit-col--yes { background: #FFFBF2; border-color: #FBE3B3; }
.fit-col--no { background: #F6F6F4; border-color: var(--line-light); }
.fit-col__head { display: flex; align-items: center; gap: 13px; margin-bottom: 24px; }
.fit-col__ic { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; flex: 0 0 auto; }
.fit-col--yes .fit-col__ic { background: var(--accent); }
.fit-col--no .fit-col__ic { background: #e6e6e2; }
.fit-col__ic svg { width: 21px; height: 21px; fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.fit-col--yes .fit-col__ic svg { stroke: #000; }
.fit-col--no .fit-col__ic svg { stroke: #9a9a96; }
.fit-col__head h3 { font-size: 1.22rem; color: var(--black); letter-spacing: -.01em; }
.fit-list { display: flex; flex-direction: column; gap: 15px; }
.fit-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 1.01rem; line-height: 1.5; }
.fit-list li svg { width: 19px; height: 19px; flex: 0 0 auto; margin-top: 2px; fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.fit-col--yes .fit-list li { color: #333; }
.fit-col--yes .fit-list li svg { stroke: var(--accent-dark); }
.fit-col--no .fit-list li { color: #8a8a86; }
.fit-col--no .fit-list li svg { stroke: #bdbdb8; }
@media (max-width: 760px) { .fit-grid { grid-template-columns: 1fr; } }

/* ============================================================
   WHY ELEV8D
   ============================================================ */
.why { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.wcard { display: flex; gap: 22px; padding: clamp(26px, 2.6vw, 34px); border: 1px solid var(--line-light); border-radius: var(--radius); background: var(--white); transition: border-color .3s, background .3s; }
.wcard:hover { border-color: var(--accent); }
.wcard__check { flex: 0 0 auto; width: 44px; height: 44px; border-radius: 50%; background: #FFF7E8; border: 1px solid #FBE3B3; display: grid; place-items: center; }
.wcard__check svg { width: 22px; height: 22px; stroke: var(--accent-dark); fill: none; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.wcard h3 { color: var(--black); font-size: 1.22rem; margin-bottom: 10px; }
.wcard p { color: #555; font-size: .98rem; }

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.cmp { border: 1px solid var(--line-dark); border-radius: var(--radius); overflow: hidden; background: var(--off-black); }
.cmp__row { display: grid; grid-template-columns: 1.1fr 1fr 1fr; align-items: stretch; border-bottom: 1px solid var(--line-dark); }
.cmp__row:last-child { border-bottom: none; }
.cmp__cell { padding: 20px clamp(18px, 2.4vw, 30px); display: flex; align-items: center; gap: 12px; font-size: .98rem; }
.cmp__dim { color: var(--grey-mid-2); font-family: var(--font-head); font-weight: 500; }
.cmp__head .cmp__cell { padding-block: 24px; font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; }
.cmp__us { background: rgba(244,160,0,.07); color: #fff; border-inline: 1px solid rgba(244,160,0,.22); position: relative; }
.cmp__head .cmp__us { background: var(--accent); color: #000; border-inline-color: var(--accent); }
.cmp__head .cmp__them { color: var(--grey-mid); }
.cmp__them { color: var(--grey-mid-2); }
.cmp__cell svg { flex: 0 0 auto; width: 18px; height: 18px; stroke-width: 2.6; fill: none; }
.cmp__us svg { stroke: var(--accent-light); }
.cmp__them svg { stroke: #555; }
.cmp__badge { font-family: var(--font-mono); font-size: .62rem; letter-spacing: .12em; background: #000; color: var(--accent); padding: 3px 8px; border-radius: 100px; margin-left: auto; }

/* ============================================================
   INDUSTRIES
   ============================================================ */
.ind-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.icell {
  border: 1px solid var(--line-dark); border-radius: var(--radius-sm); padding: 26px 24px;
  display: flex; align-items: center; gap: 16px; background: var(--off-black);
  transition: border-color .3s, transform .3s var(--ease), background .3s;
}
.icell:hover { border-color: var(--accent); transform: translateY(-3px); background: #0e0e0e; }
.icell svg { flex: 0 0 auto; width: 28px; height: 28px; stroke: var(--accent); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; transition: transform .3s; }
.icell:hover svg { transform: scale(1.08); }
.icell span { font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; color: #fff; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.rating-strip { display: flex; align-items: center; gap: 16px; margin-bottom: 44px; flex-wrap: wrap; }
.stars { display: inline-flex; gap: 3px; }
.stars svg { width: 22px; height: 22px; fill: var(--accent); }
.rating-strip b { font-family: var(--font-head); }
.rating-strip .sep { color: #333; }
.tcard {
  background: var(--off-black); border: 1px solid var(--line-dark); border-radius: var(--radius);
  padding: clamp(28px, 3vw, 38px); display: flex; flex-direction: column; position: relative;
  transition: border-color .3s, transform .3s var(--ease);
}
.tcard:hover { border-color: var(--accent-dark); transform: translateY(-4px); }
.tcard__q { font-family: var(--font-head); font-size: 5rem; line-height: .6; color: var(--accent); height: 38px; opacity: .85; }
.tcard__stars { display: inline-flex; gap: 3px; margin-bottom: 16px; }
.tcard__stars svg { width: 17px; height: 17px; fill: var(--accent); }
.tcard p { font-size: 1.12rem; line-height: 1.55; color: #f0f0f0; margin-bottom: 26px; font-family: var(--font-head); font-weight: 500; letter-spacing: -.01em; }
.tcard__who { margin-top: auto; display: flex; align-items: center; gap: 14px; }
.tcard__avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--accent); color: #000; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: 1rem; }
.tcard__name { font-weight: 600; font-family: var(--font-head); color: #fff; }
.tcard__biz { font-size: .88rem; color: var(--grey-mid); }

/* ============================================================
   PRICING
   ============================================================ */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.price-grid--4 { grid-template-columns: repeat(4, 1fr); }
.pcard {
  background: var(--white); border: 1px solid var(--line-light); border-radius: var(--radius);
  padding: clamp(28px, 3vw, 38px); display: flex; flex-direction: column; transition: border-color .3s, transform .3s var(--ease), box-shadow .3s;
}
.pcard:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: 0 24px 50px -28px rgba(0,0,0,.22); }
.pcard--feature { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.pcard__label { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-dark); margin-bottom: 16px; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.pcard__pill { background: var(--accent); color: #000; border-radius: 100px; padding: 5px 14px; font-size: .62rem; letter-spacing: .1em; white-space: nowrap; flex: 0 0 auto; }
.pcard h3 { color: var(--black); margin-bottom: 14px; }
.pcard__price { font-family: var(--font-head); font-weight: 700; font-size: clamp(2rem, 3.2vw, 2.7rem); color: var(--accent-dark); letter-spacing: -.03em; line-height: 1; }
.pcard__price small { font-size: .42em; color: var(--grey-mid); font-weight: 500; }
.pcard__price-sub { color: #777; font-size: .92rem; margin-top: 10px; margin-bottom: 24px; }
.pcard__inc { display: flex; flex-direction: column; gap: 11px; padding-top: 22px; border-top: 1px solid var(--line-light); margin-top: auto; }
.pcard__inc li { display: flex; gap: 11px; align-items: flex-start; font-size: .95rem; color: #444; }
.pcard__inc svg { flex: 0 0 auto; width: 17px; height: 17px; stroke: var(--accent-dark); fill: none; stroke-width: 2.6; margin-top: 3px; }
.price-note {
  margin-top: 28px; display: flex; flex-wrap: wrap; gap: 14px 28px; align-items: center; justify-content: space-between;
  padding: 22px 28px; border: 1px dashed var(--line-light); border-radius: var(--radius); background: #fafafa;
}
.price-note p { color: #555; font-size: .96rem; max-width: 56ch; }

/* ============================================================
   CTA BREAK + FINAL CTA
   ============================================================ */
.cta-break { position: relative; overflow: hidden; text-align: center; background: var(--off-black); }
.cta-break .hero__glow {
  top: 50%; bottom: auto; left: 50%; right: auto;
  transform: translate(-50%, -50%);
  width: 130%; height: 180%; max-width: none; max-height: none; filter: none;
  background: radial-gradient(ellipse at center, rgba(244,160,0,.30), rgba(244,160,0,.07) 38%, transparent 68%);
}
.cta-break__inner { position: relative; z-index: 2; max-width: 760px; margin-inline: auto; }
.cta-break h2 { margin-bottom: 20px; }
.cta-break p { color: var(--grey-mid-2); font-size: 1.15rem; margin-bottom: 36px; max-width: 54ch; margin-inline: auto; }

.final { position: relative; overflow: hidden; background: var(--black); }
.final__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: start; position: relative; z-index: 2; }
.final h2 { margin-bottom: 20px; }
.final__lead { color: var(--grey-mid-2); font-size: 1.12rem; margin-bottom: 38px; }
.contact-row { display: flex; align-items: center; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line-dark); }
.contact-row:first-of-type { border-top: 1px solid var(--line-dark); }
.contact-row svg { flex: 0 0 auto; width: 22px; height: 22px; stroke: var(--accent); fill: none; stroke-width: 1.7; }
.contact-row .lbl { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--grey-mid); }
.contact-row .val { font-family: var(--font-head); font-weight: 600; font-size: 1.08rem; color: #fff; }
.contact-row a.val:hover { color: var(--accent); }

/* Form */
.form { background: var(--off-black); border: 1px solid var(--line-dark); border-radius: var(--radius); padding: clamp(26px, 3vw, 38px); }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--grey-mid-2); margin-bottom: 9px; }
.field input, .field textarea {
  width: 100%; background: #050505; border: 1px solid var(--line-dark); border-radius: var(--radius-sm);
  padding: 14px 16px; color: #fff; font-family: var(--font-body); font-size: 1rem; transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder, .field textarea::placeholder { color: #555; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(244,160,0,.16); }
.field.invalid input, .field.invalid textarea { border-color: #c0392b; }
.field .err { color: #e07a6f; font-size: .82rem; margin-top: 7px; display: none; }
.field.invalid .err { display: block; }
.form .btn { width: 100%; margin-top: 6px; }
.form__ok { display: none; text-align: center; padding: 30px 10px; }
.form__ok svg { width: 54px; height: 54px; stroke: var(--accent); fill: none; stroke-width: 2; margin: 0 auto 18px; }
.form__ok h3 { color: #fff; margin-bottom: 10px; }
.form__ok p { color: var(--grey-mid-2); }
.form.sent .form__body { display: none; }
.form.sent .form__ok { display: block; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field .opt { color: var(--grey-mid); text-transform: none; letter-spacing: 0; }

/* ============================================================
   AUDIT MODAL
   ============================================================ */
body.modal-open { overflow: hidden; }
.modal {
  position: fixed; inset: 0; z-index: 200; display: none;
  align-items: center; justify-content: center; padding: 24px;
}
.modal.open { display: flex; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.74); backdrop-filter: blur(8px); opacity: 0; transition: opacity .3s var(--ease); }
.modal.open .modal__backdrop { opacity: 1; }
.modal__card {
  position: relative; width: 100%; max-width: 500px; max-height: 92vh; overflow-y: auto;
  background: var(--off-black); border: 1px solid var(--line-dark); border-radius: var(--radius);
  padding: clamp(28px, 4vw, 42px); box-shadow: 0 40px 110px -24px rgba(0,0,0,.8);
  transform: translateY(18px) scale(.97); opacity: 0;
  transition: transform .4s var(--ease), opacity .4s var(--ease);
}
.modal.open .modal__card { transform: none; opacity: 1; }
.modal__glow {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  width: 70%; height: 3px; border-radius: 0 0 4px 4px; pointer-events: none;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.modal__close {
  position: absolute; top: 16px; right: 16px; width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line-dark); display: grid; place-items: center; color: var(--grey-mid-2);
  transition: border-color .25s, color .25s, transform .25s var(--ease); z-index: 2;
}
.modal__close:hover { border-color: var(--accent); color: var(--accent); transform: rotate(90deg); }
.modal__close svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; fill: none; }
.modal__head { margin-bottom: 26px; padding-right: 44px; }
.modal__head .eyebrow { margin-bottom: 16px; }
.modal__head h3 { color: #fff; margin-bottom: 12px; }
.modal__head p { color: var(--grey-mid-2); font-size: .98rem; line-height: 1.55; }
.form--bare { background: none; border: none; padding: 0; border-radius: 0; }
.modal__fineprint { text-align: center; color: var(--grey-mid); font-size: .82rem; margin-top: 16px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 880px; }
.faq__item { border-bottom: 1px solid var(--line-light); }
.faq__q {
  width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 26px 0; font-family: var(--font-head); font-weight: 600; font-size: clamp(1.08rem, 1.6vw, 1.25rem); color: var(--black);
}
.faq__icon { flex: 0 0 auto; width: 30px; height: 30px; position: relative; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; background: var(--accent-dark); border-radius: 2px; transition: transform .3s var(--ease), background .3s; }
.faq__icon::before { top: 50%; left: 4px; right: 4px; height: 2px; transform: translateY(-50%); }
.faq__icon::after { left: 50%; top: 4px; bottom: 4px; width: 2px; transform: translateX(-50%); }
.faq__item.open .faq__icon::after { transform: translateX(-50%) scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq__a-inner { padding: 0 0 28px; color: #555; font-size: 1.02rem; max-width: 76ch; }
.faq__item.open { border-left: 0; }
.faq__item.open .faq__q { color: var(--accent-dark); }

/* ============================================================
   ARTICLES
   ============================================================ */
.art-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.acard { display: flex; flex-direction: column; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-light); background: var(--white); transition: transform .3s var(--ease), border-color .3s, box-shadow .3s; }
.acard:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: 0 24px 50px -28px rgba(0,0,0,.22); }
.acard__img { aspect-ratio: 16/9; width: 100%; overflow: hidden; background: var(--grey-light); }
.acard__img image-slot, .acard__img .slot-fallback { width: 100%; height: 100%; display: block; }
.acard:hover .acard__img image-slot { transform: scale(1.04); }
.acard__img image-slot { transition: transform .5s var(--ease); }
.acard__body { padding: 24px clamp(20px, 2vw, 26px) 28px; display: flex; flex-direction: column; flex: 1; }
.acard__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.pill { font-family: var(--font-mono); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; background: #FFF3DA; color: var(--accent-dark); padding: 5px 10px; border-radius: 100px; }
.acard__date { font-family: var(--font-mono); font-size: .78rem; color: var(--grey-mid); }
.acard h3 { color: var(--black); font-size: 1.18rem; line-height: 1.25; margin-bottom: 14px; }
.acard .txtlink { margin-top: auto; font-size: .92rem; color: var(--accent-dark); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--black); border-top: 1px solid var(--line-dark); padding-block: clamp(56px, 6vw, 84px) 36px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid var(--line-dark); }
.footer__brand img { height: 45px; margin-bottom: 20px; }
.footer__brand p { color: var(--grey-mid); font-size: .96rem; max-width: 34ch; }
.footer__social { display: flex; gap: 12px; margin-top: 24px; }
.footer__social a { width: 40px; height: 40px; border: 1px solid var(--line-dark); border-radius: 10px; display: grid; place-items: center; transition: border-color .3s, background .3s; }
.footer__social svg { width: 18px; height: 18px; fill: #fff; transition: fill .3s; }
.footer__social a:hover { border-color: var(--accent); }
.footer__social a:hover svg { fill: var(--accent); }
.footer__col h3 { font-size: .78rem; font-family: var(--font-mono); font-weight: 400; letter-spacing: .14em; text-transform: uppercase; color: var(--grey-mid); margin-bottom: 20px; }
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col a { color: #cfcfcf; font-size: .96rem; transition: color .2s; }
.footer__col a:hover { color: var(--accent); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-top: 30px; flex-wrap: wrap; }
.footer__bottom p { color: var(--grey-mid); font-size: .88rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .cards-3 { grid-template-columns: repeat(2, 1fr); }
  .proc { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .proc__line { display: none; }
  .ind-grid { grid-template-columns: repeat(3, 1fr); }
}
.nav__mobile { display: none; }
@media (max-width: 900px) {
  .nav__links { display: none; }
  /* With links hidden, push the CTA to the right so it sits beside the burger
     instead of being centered by the nav's space-between layout. */
  .nav__cta { margin-left: auto; gap: 12px; }
  /* Match the three header controls to one consistent height so the logo,
     CTA button and burger line up as a single bar. */
  .nav__logo img { height: 38px; }
  .nav .btn { height: 38px; padding-block: 0; padding-inline: 16px; font-size: .88rem; }
  .nav__burger { display: flex; height: 38px; width: 38px; box-sizing: border-box; align-items: center; justify-content: center; padding: 8px; }
  .nav__burger.menu-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__burger.menu-open span:nth-child(2) { opacity: 0; }
  .nav__burger.menu-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav__mobile { display: none; position: fixed; inset: 64px 0 auto 0; background: rgba(8,8,8,.97); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line-dark); flex-direction: column; padding: 16px var(--gutter) 28px; z-index: 99; max-height: calc(100vh - 64px); overflow-y: auto; }
  .nav__mobile.open { display: flex; }
  .nav__mobile > a { padding: 14px 0; border-bottom: 1px solid var(--line-dark); color: #ddd; }
  .nav__mobile .btn { margin-top: 18px; color: #000; border-bottom: none; }
  .nav__mdrop-toggle { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--line-dark); color: #ddd; font-family: var(--font-body); font-size: 1rem; cursor: pointer; }
  .nav__mdrop-panel { display: none; flex-direction: column; padding: 4px 0 4px 16px; }
  .nav__mdrop.open .nav__mdrop-panel { display: flex; }
  .nav__mdrop.open .nav__caret { transform: rotate(180deg); }
  .nav__mdrop-panel a { padding: 11px 0; color: #aaa; font-size: .95rem; }
  .final__grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .cmp__badge { display: none; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .cards-2, .cards-3, .why, .art-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr !important; }
  .trust__grid { grid-template-columns: repeat(2, 1fr); gap: 30px 0; }
  .trust__item { border-left: none; padding-left: 0; }
  .trust__item:nth-child(even) { border-left: 1px solid var(--line-dark); padding-left: clamp(16px,5vw,30px); }
  .ind-grid { grid-template-columns: repeat(2, 1fr); }
  .cmp__row { grid-template-columns: 1fr; }
  .cmp__head { display: none; }
  .cmp__cell { padding: 14px 18px; }
  .cmp__dim { font-weight: 700; padding-top: 18px; border-top: 1px solid var(--line-dark); }
  .cmp__row:first-child .cmp__dim { border-top: none; }
  .cmp__us::before { content: "Elev8d"; }
  .cmp__them::before { content: "Typical agency"; }
  .cmp__us::before, .cmp__them::before { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--grey-light-2); width: 92px; flex: 0 0 auto; }
  .field-row { grid-template-columns: 1fr; }
  .hero__sub { font-size: 1.08rem; }
  /* Badge: drop the part after the "·" onto its own line inside the pill. */
  .hero__badge { align-items: flex-start; }
  .hero__badge .dot { margin-top: 5px; }
  .hero__badge-rest { flex-basis: 100%; }
  .hero__badge-rest::before { display: none; }
  /* Release nowrap so the accent phrase wraps instead of overflowing the viewport. */
  .hero h1 .nb { white-space: normal; }
  /* Analemma motif: center behind hero text as a faint ambient watermark
     instead of bleeding off the top-left corner. */
  .hero__fig {
    top: 50%; right: auto; left: 50%;
    width: min(150vw, 760px);
    transform: translate(-50%, -50%);
    opacity: .08;
  }
}

/* ============================================================
   SEM-PAGE ADDITIONS (shared design system)
   ============================================================ */

/* Hero sub-tagline ("Click. Convert. Scale.") */
.hero__tagline {
  font-family: var(--font-mono); font-weight: 700; font-size: clamp(.95rem, 1.6vw, 1.15rem);
  letter-spacing: .04em; color: var(--accent); margin-bottom: 20px;
  display: inline-flex; gap: 12px; flex-wrap: wrap;
}
.hero__tagline span { color: var(--white); opacity: .35; }

/* 5-up trust bar variant */
.trust__grid--5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1080px) { .trust__grid--5 { grid-template-columns: repeat(5, 1fr); } }
@media (max-width: 900px) {
  .trust__grid--5 { grid-template-columns: repeat(2, 1fr); gap: 30px 0; }
  .trust__grid--5 .trust__item { border-left: none; padding-left: 0; }
  .trust__grid--5 .trust__item:nth-child(even) { border-left: 1px solid var(--line-dark); padding-left: clamp(16px,5vw,30px); }
  .trust__grid--5 .trust__item:last-child { grid-column: 1 / -1; border-left: none; padding-left: 0; text-align: center; }
}

/* 6-step process */
.proc--6 { grid-template-columns: repeat(6, 1fr); }
.proc--6 .proc__line { top: 31px; }
@media (max-width: 1080px) {
  .proc--6 { grid-template-columns: repeat(3, 1fr); gap: 44px 20px; }
  .proc--6 .proc__line { display: none; }
}
@media (max-width: 680px) { .proc--6 { grid-template-columns: repeat(2, 1fr); } }

/* SEM + SEO cross-sell "combo" */
.combo-row { display: grid; grid-template-columns: 1fr 64px 1fr; align-items: stretch; }
.combo-panel {
  border: 1px solid var(--line-light); border-radius: var(--radius); background: var(--white);
  padding: clamp(26px, 3vw, 38px); display: flex; flex-direction: column;
}
.combo-panel__tag { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-dark); margin-bottom: 10px; }
.combo-panel h3 { color: var(--black); margin-bottom: 8px; }
.combo-panel .sub { color: #777; font-size: .95rem; margin-bottom: 20px; }
.combo-panel ul { display: flex; flex-direction: column; gap: 12px; }
.combo-panel li { display: flex; gap: 11px; align-items: flex-start; font-size: .98rem; color: #444; }
.combo-panel svg { flex: 0 0 auto; width: 17px; height: 17px; stroke: var(--accent-dark); fill: none; stroke-width: 2.4; margin-top: 4px; }
.combo-plus { display: grid; place-items: center; }
.combo-plus span {
  width: 50px; height: 50px; border-radius: 50%; background: var(--accent); color: #000;
  display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: 1.7rem; line-height: 1;
}
.combo-result {
  margin-top: 18px; border: 1px solid var(--accent); border-radius: var(--radius);
  background: linear-gradient(180deg, #fffaf0, #fff6e3); padding: clamp(24px, 3vw, 34px);
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
}
.combo-result__icon { flex: 0 0 auto; width: 52px; height: 52px; border-radius: 12px; background: var(--accent); display: grid; place-items: center; }
.combo-result__icon svg { width: 26px; height: 26px; stroke: #000; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.combo-result__body { flex: 1; min-width: 240px; }
.combo-result h3 { color: var(--black); margin-bottom: 6px; font-size: 1.25rem; }
.combo-result p { color: #5a4a28; font-size: .98rem; }
.combo-result p a { color: var(--accent-dark); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 820px) {
  .combo-row { grid-template-columns: 1fr; gap: 18px; }
  .combo-plus { padding: 0; }
  .combo-plus span { width: 44px; height: 44px; font-size: 1.4rem; }
}

/* Pricing: management fee vs ad spend split */
.pcard__split { margin: 4px 0 22px; }
.pcard__fee { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.7rem, 2.8vw, 2.3rem); color: var(--accent-dark); letter-spacing: -.03em; line-height: 1.05; }
.pcard__fee small { font-size: .4em; color: var(--grey-mid); font-weight: 500; }
.pcard__fee-lbl { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: #999; margin-top: 6px; }
.pcard__spend { margin-top: 16px; padding-top: 16px; border-top: 1px dashed var(--line-light); }
.pcard__spend-amt { font-family: var(--font-head); font-weight: 600; font-size: 1.15rem; color: #333; }
.pcard__spend-lbl { font-size: .82rem; color: #888; margin-top: 4px; line-height: 1.4; }

/* "We don't take a cut" spend callout */
.spend-callout {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  background: var(--black); border: 1px solid var(--accent); border-radius: var(--radius);
  padding: clamp(22px, 3vw, 30px) clamp(24px, 3vw, 34px); margin-bottom: 30px;
}
.spend-callout__icon { flex: 0 0 auto; width: 52px; height: 52px; border-radius: 50%; background: rgba(244,160,0,.14); border: 1px solid var(--accent-dark); display: grid; place-items: center; }
.spend-callout__icon svg { width: 26px; height: 26px; stroke: var(--accent); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.spend-callout__body { flex: 1; min-width: 260px; }
.spend-callout h3 { color: #fff; font-size: 1.2rem; margin-bottom: 6px; }
.spend-callout p { color: var(--grey-mid-2); font-size: .96rem; }
.spend-callout .gold { color: var(--accent); }

/* ============================================================
   RESPONSIVE REFINEMENTS (tablet + phone)
   ============================================================ */

/* ---- Tablet (≤900px): footer 2x2, tighter trust bars ---- */
@media (max-width: 900px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px 30px; }
  .footer__brand { grid-column: 1 / -1; }
  /* 4-up trust bar collapses to 2x2 for iPad-portrait widths */
  .trust__grid:not(.trust__grid--5) { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
  .trust__grid:not(.trust__grid--5) .trust__item { border-left: none; padding-left: 0; }
  .trust__grid:not(.trust__grid--5) .trust__item:nth-child(even) { border-left: 1px solid var(--line-dark); padding-left: clamp(18px, 4vw, 34px); }
}

/* ---- Phone (≤640px): stack footer, collapse process to single column ---- */
@media (max-width: 640px) {
  .footer__top { grid-template-columns: 1fr; gap: 30px; }
  .footer__brand { grid-column: auto; }
  .proc, .proc--6 { grid-template-columns: 1fr; gap: 28px; }
  .pstep { padding-right: 0; }
  .pstep__num { margin-bottom: 16px; }
  /* horizontal process row no longer applies; tidy mobile cross-sell plus */
  .combo-result { gap: 16px; }
}

/* ---- Small phone (≤420px): tighten gutters + type ---- */
@media (max-width: 420px) {
  :root { --gutter: 18px; }
  .hero { padding-top: clamp(124px, 22vh, 170px); }
  .hero__cta { gap: 12px; }
  /* Keep CTAs side by side; allow wrapping only if they genuinely don't fit. */
  .hero__cta .btn { flex: 0 1 auto; }
  .btn--lg { padding: 16px 24px; font-size: 1rem; }
  .sec-head { margin-bottom: 40px; }
  .trust__num { font-size: clamp(2.1rem, 11vw, 2.8rem); }
  .modal { padding: 14px; }
  .modal__card { padding: 26px 20px; }
  .price-note { flex-direction: column; align-items: flex-start; }
  .price-note .btn { width: 100%; }
  .spend-callout { gap: 14px; }
  .spend-callout__body { min-width: 0; }
  .combo-result__body { min-width: 0; }
  .rating-strip { gap: 10px; }
}

/* ============================================================
   PLATFORM BREAKDOWN (Social Media page)
   ============================================================ */
.plat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.plat {
  background: var(--white); border: 1px solid var(--line-light); border-radius: var(--radius);
  padding: clamp(26px, 2.8vw, 38px); display: flex; flex-direction: column;
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.plat:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: 0 24px 50px -28px rgba(0,0,0,.25); }
.plat__top { display: flex; align-items: center; gap: 16px; margin-bottom: 8px; }
.plat__logo { flex: 0 0 auto; width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center; }
.plat__logo svg { width: 27px; height: 27px; }
.plat__logo--meta { background: #f0f4ff; } .plat__logo--meta svg { fill: #0866FF; }
.plat__logo--tiktok { background: #f1f1f1; } .plat__logo--tiktok svg { fill: #010101; }
.plat__logo--linkedin { background: #eaf3fb; } .plat__logo--linkedin svg { fill: #0A66C2; }
.plat h3 { color: var(--black); font-size: 1.32rem; }
.plat__rec { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-dark); background: #FFF3DA; border-radius: 100px; padding: 5px 11px; align-self: flex-start; margin-bottom: 18px; }
.plat p { color: #555; font-size: .98rem; margin-bottom: 20px; }
.plat__list { margin-top: auto; display: flex; flex-direction: column; gap: 11px; padding-top: 20px; border-top: 1px solid var(--line-light); }
.plat__list .lbl { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--grey-mid); margin-bottom: 2px; }
.plat__list li { display: flex; align-items: flex-start; gap: 10px; font-size: .92rem; color: #444; }
.plat__list li svg { flex: 0 0 auto; width: 16px; height: 16px; margin-top: 3px; stroke: var(--accent-dark); fill: none; stroke-width: 2.4; }
.plat-note { margin-top: 26px; text-align: center; color: var(--grey-mid); font-size: 1rem; }
.plat-note .gold { color: var(--accent-dark); font-weight: 600; }
@media (max-width: 900px) { .plat-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FULL FUNNEL (Social Media page)
   ============================================================ */
.funnel { display: grid; grid-template-columns: 1fr 44px 1fr 44px 1fr; align-items: stretch; }
.funnel__step {
  border: 1px solid var(--line-light); border-radius: var(--radius); background: var(--white);
  padding: clamp(24px, 2.6vw, 32px); text-align: center; display: flex; flex-direction: column; align-items: center;
}
.funnel__icon { width: 56px; height: 56px; border-radius: 14px; background: #FFF7E8; border: 1px solid #FBE3B3; display: grid; place-items: center; margin-bottom: 18px; }
.funnel__icon svg { width: 27px; height: 27px; stroke: var(--accent-dark); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.funnel__tag { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-dark); margin-bottom: 8px; }
.funnel__step h3 { color: var(--black); font-size: 1.2rem; margin-bottom: 8px; }
.funnel__step p { color: #555; font-size: .94rem; }
.funnel__plus { display: grid; place-items: center; }
.funnel__plus span { width: 44px; height: 44px; border-radius: 50%; background: var(--accent); color: #000; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; }
.funnel__plus--eq span { background: #000; color: var(--accent); }
.funnel-out {
  margin-top: 18px; border: 1px solid var(--accent); border-radius: var(--radius);
  background: linear-gradient(180deg, #fffaf0, #fff6e3); padding: clamp(24px, 3vw, 34px);
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
}
.funnel-out__icon { flex: 0 0 auto; width: 52px; height: 52px; border-radius: 12px; background: var(--accent); display: grid; place-items: center; }
.funnel-out__icon svg { width: 26px; height: 26px; stroke: #000; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.funnel-out__body { flex: 1; min-width: 240px; }
.funnel-out h3 { color: var(--black); margin-bottom: 6px; font-size: 1.25rem; }
.funnel-out p { color: #5a4a28; font-size: .98rem; }
.funnel-out p a { color: var(--accent-dark); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 820px) {
  .funnel { grid-template-columns: 1fr; gap: 14px; }
  .funnel__plus { transform: rotate(90deg); }
  .funnel-out__body { min-width: 0; }
}

/* ============================================================
   PORTFOLIO SHOWCASE (Web Design page)
   ============================================================ */
.pf-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.pf-card {
  background: linear-gradient(180deg, #101010, #0b0b0b); border: 1px solid var(--line-dark); border-radius: var(--radius);
  overflow: hidden; transition: transform .35s var(--ease), border-color .3s; display: flex; flex-direction: column;
}
.pf-card:hover { transform: translateY(-5px); border-color: var(--accent-dark); }
.browser-mock { background: #1a1a1a; border-bottom: 1px solid #262626; }
.browser-mock__bar { display: flex; align-items: center; gap: 7px; padding: 11px 14px; }
.browser-mock__bar i { width: 11px; height: 11px; border-radius: 50%; background: #3a3a3a; }
.browser-mock__bar i:nth-child(1) { background: #ff5f57; } .browser-mock__bar i:nth-child(2) { background: #febc2e; } .browser-mock__bar i:nth-child(3) { background: #28c840; }
.browser-mock__url { margin-left: 10px; flex: 1; background: #0c0c0c; border-radius: 6px; height: 22px; display: flex; align-items: center; padding: 0 12px; font-family: var(--font-mono); font-size: .68rem; color: #666; overflow: hidden; white-space: nowrap; }
.pf-shot { aspect-ratio: 16/10; overflow: hidden; background: #0c0c0c; }
.pf-shot img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.pf-shot image-slot { width: 100%; height: 100%; display: block; transition: transform .5s var(--ease); }
.pf-card:hover .pf-shot img,
.pf-card:hover .pf-shot image-slot { transform: scale(1.04); }
.pf-card { text-decoration: none; color: inherit; }
.pf-body { padding: 24px clamp(22px, 2.4vw, 30px) 28px; display: flex; flex-direction: column; flex: 1; }
.pf-meta { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 12px; }
.pf-tag { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--grey-mid); }
.pf-metric { font-family: var(--font-head); font-weight: 700; font-size: .92rem; color: var(--accent); background: rgba(244,160,0,.1); border-radius: 100px; padding: 5px 12px; }
.pf-card h3 { color: #fff; font-size: 1.25rem; margin-bottom: 8px; }
.pf-card p { color: var(--grey-mid-2); font-size: .96rem; }
@media (max-width: 760px) { .pf-grid { grid-template-columns: 1fr; } }

/* ============================================================
   TECH STACK (Web Design page)
   ============================================================ */
.tech-group { margin-bottom: 30px; }
.tech-group:last-child { margin-bottom: 0; }
.tech-group__label { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--grey-mid); margin-bottom: 16px; }
.tech-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.tech-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  padding: 24px 12px; border: 1px solid var(--line-light); border-radius: var(--radius-sm); background: var(--white);
  transition: border-color .3s, transform .3s var(--ease), background .3s; text-align: center;
}
.tech-item:hover { border-color: var(--accent); transform: translateY(-3px); }
.tech-item svg, .tech-item img { width: 34px; height: 34px; object-fit: contain; }
.tech-item span { font-family: var(--font-head); font-weight: 600; font-size: .85rem; color: #444; }
@media (max-width: 900px) { .tech-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 560px) { .tech-grid { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   3-COLUMN COMPARISON (Web Design page)
   ============================================================ */
.cmp3 { border: 1px solid var(--line-light); border-radius: var(--radius); background: var(--white); position: relative; }
.cmp3__row { display: grid; grid-template-columns: 1.05fr 1.3fr 1fr 1fr; }
.cmp3__cell { padding: 17px clamp(16px, 1.9vw, 26px); font-size: .96rem; display: flex; align-items: center; gap: 11px; color: #4a4a4a; }
.cmp3__row:not(:last-child) > .cmp3__cell:not(.cmp3__win) { border-bottom: 1px solid var(--line-light); }
.cmp3__dim { font-family: var(--font-head); font-weight: 600; color: var(--black); }
.cmp3__head .cmp3__cell { font-size: 1rem; padding-block: 24px; flex-direction: column; align-items: flex-start; gap: 5px; }
.cmp3__colname { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--black); }
.cmp3__sub { font-family: var(--font-body); font-weight: 400; font-size: .76rem; color: var(--grey-mid); letter-spacing: 0; }
/* qualitative icons */
.cmp3__ic { flex: 0 0 auto; width: 19px; height: 19px; fill: none; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.cmp3__ic--yes { stroke: var(--accent-light); }
.cmp3__ic--mid { stroke: #b58a3a; }
.cmp3__ic--no { stroke: #b0b0b0; }
/* featured Elev8d column */
.cmp3__win { background: #0c0c0c; color: #f1f1f1; border-inline: 1.5px solid var(--accent); position: relative; }
.cmp3__win.cmp3__cell { color: #f1f1f1; }
.cmp3__row:not(:last-child) .cmp3__win { border-bottom: 1px solid rgba(255,255,255,.07); }
.cmp3__head .cmp3__win { background: linear-gradient(180deg, var(--accent-light), var(--accent)); color: #000; border-top: 1.5px solid var(--accent); border-radius: 14px 14px 0 0; box-shadow: 0 -12px 40px -14px rgba(244,160,0,.5); }
.cmp3__row:last-child .cmp3__win { border-bottom: 1.5px solid var(--accent); border-radius: 0 0 14px 14px; box-shadow: 0 32px 50px -30px rgba(244,160,0,.6); }
.cmp3__crown { width: 32px; height: 32px; border-radius: 9px; background: rgba(0,0,0,.16); display: grid; place-items: center; }
.cmp3__crown svg { width: 18px; height: 18px; }
.cmp3__wintitle { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; color: #000; }
.cmp3__badge { font-family: var(--font-mono); font-size: .58rem; letter-spacing: .12em; background: #000; color: var(--accent); padding: 4px 9px; border-radius: 100px; }
.cmp3__price { font-family: var(--font-head); font-weight: 700; font-size: 1.18rem; color: var(--accent-light); letter-spacing: -.02em; }
@media (max-width: 820px) {
  .cmp3 { border: none; background: none; display: grid; grid-template-columns: 1fr; gap: 16px; box-shadow: none; }
  .cmp3__head { display: none; }
  .cmp3__row { grid-template-columns: 1fr; border: 1px solid var(--line-light); border-radius: var(--radius); overflow: hidden; }
  .cmp3__cell { border-bottom: 1px solid var(--line-light); }
  .cmp3__cell:last-child { border-bottom: none; }
  .cmp3__dim { background: var(--grey-light); font-size: 1rem; }
  /* Keep source order so each card reads: Design label -> Elev8d -> Template -> DIY.
     (Previously order:-1 pulled Elev8d above the dimension label.) */
  .cmp3__win { border-inline: none; border-radius: 0 !important; box-shadow: none !important; border-bottom: 1px solid rgba(255,255,255,.08); }
  .cmp3__cell::before { content: attr(data-col); font-family: var(--font-mono); font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--grey-mid); width: 96px; flex: 0 0 auto; }
  .cmp3__win.cmp3__cell::before { color: var(--accent); }
  .cmp3__dim::before { display: none; }
}

/* Hero split layout (Web Design flagship) */
.hero--split .hero__inner { max-width: var(--maxw); display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.hero--split .hero__copy { max-width: 600px; }
.hero__mock { position: relative; z-index: 2; }
.hero__mock .browser-mock { border-radius: 14px 14px 0 0; border: 1px solid #2a2a2a; box-shadow: 0 40px 90px -30px rgba(0,0,0,.8); }
.hero__mock .pf-shot { border: 1px solid #2a2a2a; border-top: none; border-radius: 0 0 14px 14px; aspect-ratio: 16/11; box-shadow: 0 40px 90px -30px rgba(0,0,0,.8); }
.hero__mock-badge { position: absolute; bottom: -18px; right: -10px; background: var(--accent); color: #000; font-family: var(--font-head); font-weight: 700; font-size: .9rem; padding: 12px 18px; border-radius: 12px; box-shadow: 0 16px 40px -12px rgba(244,160,0,.5); z-index: 3; }

/* Blueprint — abstract "anatomy of a converting page" */
.blueprint {
  position: relative; z-index: 1; border-radius: 16px; overflow: hidden; border: 1px solid #2a2a2a;
  background: linear-gradient(180deg, #fff, #f6f6f4);
  transform: perspective(2200px) rotateY(-9deg); transform-origin: 70% 50%;
  box-shadow: -34px 48px 90px -42px rgba(0,0,0,.92), 0 0 0 1px rgba(255,255,255,.04);
  transition: transform .65s var(--ease); will-change: transform;
}
.hero__mock:hover .blueprint { transform: perspective(2200px) rotateY(0deg); }
.blueprint__bar { display: flex; align-items: center; gap: 10px; padding: 12px 18px; background: #0d0d0d; border-bottom: 1px solid #232323; }
.blueprint__bar .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); flex: 0 0 auto; }
.blueprint__bar span { font-family: var(--font-mono); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: #8c8c8c; }
.blueprint__canvas { position: relative; padding: 18px; display: flex; flex-direction: column; gap: 14px; overflow: hidden; }
.blueprint__canvas::after { content: ""; position: absolute; inset: 0; background: linear-gradient(105deg, transparent 42%, rgba(244,160,0,.12) 50%, transparent 58%); transform: translateX(-110%); animation: bpScan 5.2s ease-in-out infinite; pointer-events: none; z-index: 5; }
@keyframes bpScan { 0% { transform: translateX(-110%); } 55%, 100% { transform: translateX(110%); } }
.bpn { display: flex; align-items: center; justify-content: space-between; padding-bottom: 13px; border-bottom: 1px solid #ececea; }
.bpn-logo { font-family: var(--font-head); font-weight: 700; font-size: .82rem; color: #141414; letter-spacing: -.02em; }
.bpn-logo i { color: var(--accent); font-style: normal; }
.bpn-links { display: flex; gap: 12px; } .bpn-links i { width: 24px; height: 6px; border-radius: 3px; background: #dcdcd8; }
.bpn-cta { font-family: var(--font-head); font-weight: 700; font-size: .56rem; color: #000; background: var(--accent); border-radius: 6px; padding: 5px 9px; letter-spacing: .01em; white-space: nowrap; }
.bp-sec { position: relative; display: flex; flex-direction: column; gap: 9px; }
.bp-tag { align-self: flex-start; font-family: var(--font-mono); font-size: .54rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-dark); background: #FFF3DA; border: 1px solid #FBE3B3; border-radius: 4px; padding: 3px 7px; }
.bp-hero { display: grid; grid-template-columns: 1.2fr 1fr; gap: 16px; align-items: center; }
.bp-hero__l { display: flex; flex-direction: column; gap: 8px; }
.bp-eyebrow { width: 54px; height: 11px; border-radius: 100px; background: #FFF3DA; border: 1px solid #FBE3B3; }
.bp-h { height: 12px; border-radius: 3px; background: #18181a; width: 88%; }
.bp-h.gold { width: 62%; background: var(--accent); }
.bp-sub { height: 6px; border-radius: 3px; background: #d9d9d4; width: 95%; }
.bp-sub.w70 { width: 66%; }
.bp-btn { align-self: flex-start; margin-top: 6px; font-family: var(--font-head); font-weight: 700; font-size: .58rem; color: #000; background: var(--accent); border-radius: 7px; padding: 7px 12px; box-shadow: 0 8px 18px -6px rgba(244,160,0,.6); white-space: nowrap; }
.bp-hero__r { aspect-ratio: 1/.92; border-radius: 10px; overflow: hidden; border: 1px solid #e7e7e4; }
.bp-img { width: 100%; height: 100%; display: grid; place-items: center; background: linear-gradient(150deg, #2b2b2b 0%, #121212 60%, #1c1407 100%); }
.bp-img svg { width: 56%; height: 56%; fill: none; stroke: rgba(244,160,0,.85); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.bp-img circle { fill: rgba(244,160,0,.85); stroke: none; }
.bp-sec--dark { background: #0d0d0d; border-radius: 11px; padding: 13px 14px 15px; }
.bp-metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.bp-metric { display: flex; flex-direction: column; gap: 6px; }
.bp-metric b { font-family: var(--font-head); font-weight: 700; font-size: 1.02rem; color: var(--accent); letter-spacing: -.03em; line-height: 1; }
.bp-metric i { width: 82%; height: 5px; border-radius: 3px; background: #2c2c2c; }
.bp-svcs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.bp-svc { display: flex; flex-direction: column; gap: 7px; padding: 11px 10px; border: 1px solid #ececea; border-radius: 9px; background: #fff; }
.bp-ic { width: 22px; height: 22px; border-radius: 6px; background: #FFF3DA; border: 1px solid #FBE3B3; }
.bp-svc i { height: 6px; border-radius: 3px; background: #e0e0dc; }
.bp-svc i.s { width: 62%; height: 5px; background: #ececea; }
.bp-quotes { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.bp-quote { display: flex; flex-direction: column; gap: 7px; padding: 11px; border: 1px solid #ececea; border-radius: 9px; background: #fff; }
.bp-stars { font-size: .62rem; letter-spacing: 1.5px; color: var(--accent); line-height: 1; }
.bp-quote i { height: 5px; border-radius: 3px; background: #e2e2de; }
.bp-quote i.s { width: 55%; }
.bp-qwho { display: flex; align-items: center; gap: 6px; margin-top: 3px; }
.bp-avatar { width: 16px; height: 16px; border-radius: 50%; background: var(--accent); flex: 0 0 auto; }
.bp-qwho .nm { width: 44px; height: 6px; border-radius: 3px; background: #d9d9d4; }
.bp-sec--cta .bp-ctaband { display: flex; align-items: center; gap: 10px; padding: 12px 13px; border-radius: 11px; background: #0d0d0d; }
.bp-form { display: flex; gap: 7px; flex: 1; }
.bp-input { flex: 1; height: 24px; border-radius: 6px; background: #1b1b1b; border: 1px solid #2c2c2c; }
.bp-sec--cta .bp-btn { margin-top: 0; white-space: nowrap; }
.hero__chip {
  position: absolute; z-index: 3; display: inline-flex; align-items: center; gap: 11px;
  background: rgba(18,18,18,.82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.1); border-radius: 13px; padding: 11px 16px 11px 12px;
  box-shadow: 0 18px 44px -16px rgba(0,0,0,.85);
}
.hero__chip-ic { flex: 0 0 auto; width: 32px; height: 32px; border-radius: 9px; background: var(--accent); display: grid; place-items: center; }
.hero__chip-ic svg { width: 17px; height: 17px; fill: none; stroke: #000; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.hero__chip--tl .hero__chip-ic svg { fill: #000; stroke: none; }
.hero__chip-txt { font-family: var(--font-head); font-size: .82rem; color: var(--grey-mid-2); line-height: 1.15; white-space: nowrap; }
.hero__chip-txt b { display: block; font-size: 1.18rem; font-weight: 700; color: #fff; letter-spacing: -.02em; }
.hero__chip--tl { top: 34px; left: -26px; animation: chipFloat 5s ease-in-out infinite; }
.hero__chip--br { bottom: -20px; right: -18px; animation: chipFloat 5s ease-in-out infinite .8s; }
@keyframes chipFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@media (prefers-reduced-motion: reduce) { .hero__chip { animation: none !important; } }
@media (max-width: 1100px) { .hero__chip--tl { left: -8px; } .hero__chip--br { right: -6px; } }
@media (max-width: 920px) {
  .hero--split .hero__inner { grid-template-columns: 1fr; }
  .hero__mock { display: none; }
}

/* 4-up pricing responsive (placed last so it wins over the 900px base rule) */
@media (max-width: 1080px) { .price-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .price-grid--4 { grid-template-columns: 1fr; } }
