/* =========================================================
   Oakwell SMP Clinic — design system  v2 (dark · sharp · bold)
   Brand: gold #96885F · ink #252525 · white
   Display: Archivo (heavy) · Body: Inter
   ========================================================= */

:root {
  /* brand */
  --gold: #96885f;
  --gold-bright: #c7ad6d;   /* accent text/lines on dark */
  --gold-deep: #6f6443;
  --gold-line: rgba(199, 173, 109, 0.22);

  /* dark surfaces */
  --bg: #0d0d0b;
  --surface: #141310;
  --surface-2: #1a1814;
  --surface-3: #221f19;

  /* bone (rare light break / framing) */
  --bone: #ece6d8;
  --bone-ink: #1a1813;

  /* text on dark */
  --text: #efece3;
  --text-muted: #a39c8c;
  --text-dim: #726c5e;

  /* lines */
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);

  --radius: 4px;
  --radius-sm: 2px;
  --radius-lg: 6px;
  --maxw: 1220px;
  --nav-h: 80px;

  --ease: cubic-bezier(0.4, 0, 0.1, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --font-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@media (max-width: 720px) { :root { --nav-h: 62px; } }

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.62;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.005em;
  word-spacing: 0.02em;
  margin: 0;
  color: #fff;
  overflow-wrap: break-word;
}

p { margin: 0 0 1em; }
::selection { background: var(--gold); color: #0d0d0b; }

/* ---------- layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 48px);
  padding-left: max(clamp(20px, 5vw, 48px), env(safe-area-inset-left));
  padding-right: max(clamp(20px, 5vw, 48px), env(safe-area-inset-right));
}
.container--narrow { max-width: 900px; }

section { position: relative; }
.pad { padding: clamp(56px, 7vw, 100px) 0; }
.pad-sm { padding: clamp(44px, 5vw, 68px) 0; }

/* background tiers — all dark, varied elevation */
.bg-warm { background: var(--surface); }
.bg-alt { background: var(--surface-2); }
.bg-tint { background: var(--surface); }
.bg-dark { background: #0a0a09; }
.bg-bone { background: var(--bone); color: var(--bone-ink); }
.bg-bone h1, .bg-bone h2, .bg-bone h3 { color: #15130f; }
.bg-bone .lead, .bg-bone .muted, .bg-bone p { color: #4a4639; }
.bg-bone .eyebrow { color: var(--gold-deep); }

/* hairline separators between dark sections */
.pad + .pad, .pad + .pad-sm, .pad-sm + .pad, .pad-sm + .pad-sm,
section.bg-warm, section.bg-alt, section.bg-dark { border-top: 1px solid var(--line); }

/* ---------- type ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin: 0 0 22px;
}
.eyebrow::before { content: ""; width: 30px; height: 1px; background: var(--gold); }
.eyebrow.is-center { justify-content: center; }
.eyebrow.is-center::after { content: ""; width: 30px; height: 1px; background: var(--gold); }

.h-xl { font-size: clamp(2.7rem, 7.4vw, 5.8rem); line-height: 0.98; letter-spacing: -0.015em; }
.h-lg { font-size: clamp(2rem, 4.6vw, 3.4rem); line-height: 1.04; }
.h-md { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
.lead {
  font-size: clamp(1.06rem, 1.55vw, 1.26rem);
  color: var(--text-muted);
  line-height: 1.62;
  max-width: 56ch;
  font-weight: 400;
}
.muted { color: var(--text-muted); }
.gold-text { color: var(--gold-bright); }
.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.uc { text-transform: uppercase; }

.section-head { max-width: 720px; margin-bottom: clamp(44px, 5vw, 70px); }
.section-head.center { margin-left: auto; margin-right: auto; }
.section-head.center .lead { margin-left: auto; margin-right: auto; }

/* ---------- buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 30px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .25s var(--ease), color .25s, border-color .25s, transform .2s var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn svg { width: 17px; height: 17px; }
.btn--gold { background: var(--gold); color: #0d0d0b; }
.btn--dark { background: #fff; color: #0d0d0b; }
.btn--ghost { border-color: var(--line-strong); color: #fff; background: transparent; }
.btn--ghost-light { border-color: rgba(255,255,255,0.4); color: #fff; background: transparent; }
.btn--light { background: #fff; color: #0d0d0b; }
.btn--block { display: flex; width: 100%; }
.btn--lg { padding: 19px 38px; font-size: 14px; }
.bg-bone .btn--ghost { border-color: rgba(0,0,0,0.2); color: var(--bone-ink); }
@media (hover: hover) {
  .btn--gold:hover { background: var(--gold-bright); }
  .btn--dark:hover { background: var(--gold); color: #0d0d0b; }
  .btn--ghost:hover, .btn--ghost-light:hover { background: var(--gold); border-color: var(--gold); color: #0d0d0b; }
  .bg-bone .btn--ghost:hover { background: var(--bone-ink); border-color: var(--bone-ink); color: var(--bone); }
  .btn:hover { transform: translateY(-1px); }
}
.btn:active { transform: translateY(0); }

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.cta-row.center { justify-content: center; }
.cta-note { font-size: 13px; color: var(--text-dim); margin-top: 18px; letter-spacing: 0.03em; }
.cta-note b { color: var(--gold-bright); font-weight: 600; }
.cta-band .cta-note { text-align: center; }

/* ---------- stars / rating ---------- */
.stars { display: inline-flex; gap: 2px; color: var(--gold-bright); }
.stars svg { width: 16px; height: 16px; }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .35s var(--ease), border-color .35s;
  border-bottom: 1px solid transparent;
}
.nav .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav.scrolled {
  background: rgba(13,13,11,0.82);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  border-bottom-color: var(--line);
}
.brand { display: flex; align-items: center; gap: 13px; flex-shrink: 0; }
.brand img { height: 44px; width: auto; }
.brand-txt { display: flex; flex-direction: column; line-height: 1.06; }
.brand-txt b { font-family: var(--font-display); font-weight: 800; font-size: 19px; letter-spacing: 0.02em; color: #fff; text-transform: uppercase; }
.brand-txt span { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-bright); font-weight: 600; }
@media (max-width: 720px) { .brand img { height: 36px; } .brand-txt b { font-size: 16px; } .brand-txt span { font-size: 8.5px; } }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted);
  padding: 10px 15px; transition: color .2s;
}
@media (hover: hover) { .nav-links a:hover { color: #fff; } }
.nav-links a.active { color: var(--gold-bright); }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px; color: #fff; letter-spacing: 0.02em; }
.nav-phone svg { width: 15px; height: 15px; color: var(--gold-bright); }

.nav-toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line-strong);
  background: transparent; border-radius: var(--radius-sm); cursor: pointer; align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
}
.nav-toggle span { width: 20px; height: 2px; background: #fff; transition: transform .3s var(--ease), opacity .3s; }
body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta .btn { display: none; }
}

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--bg);
  padding: calc(var(--nav-h) + 28px) clamp(24px,7vw,40px) calc(40px + env(safe-area-inset-bottom));
  display: flex; flex-direction: column;
  transform: translateY(-100%); opacity: 0; pointer-events: none;
  transition: transform .5s var(--ease-out), opacity .4s; overflow-y: auto;
}
body.menu-open .mobile-menu { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu a.m-link {
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: clamp(1.7rem, 8vw, 2.4rem);
  padding: 16px 0; border-bottom: 1px solid var(--line); color: #fff;
  display: flex; justify-content: space-between; align-items: center; letter-spacing: -0.01em;
}
.mobile-menu a.m-link span { color: var(--gold-bright); font-size: 1rem; }
.mobile-menu .m-cta { margin-top: auto; padding-top: 30px; display: grid; gap: 12px; }
.mobile-menu .m-contact { margin-top: 22px; text-align: center; color: var(--text-dim); font-size: 13px; letter-spacing: 0.04em; }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + 40px) 0 50px;
  background: var(--bg);
  overflow: hidden;
}
/* micro-dot field — the SMP follicle motif, fading like a hairline */
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(var(--gold) 1.1px, transparent 1.3px);
  background-size: 22px 22px;
  opacity: 0.16;
  -webkit-mask-image: radial-gradient(120% 90% at 85% 0%, #000 0%, transparent 62%);
  mask-image: radial-gradient(120% 90% at 85% 0%, #000 0%, transparent 62%);
}
.hero::after {
  content: ""; position: absolute; right: -10%; top: -20%; width: 60%; height: 90%;
  background: radial-gradient(closest-side, rgba(150,136,95,0.16), transparent 70%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.12fr 0.88fr; gap: clamp(36px, 5vw, 70px); align-items: center; width: 100%; }
.hero h1 { margin-bottom: 24px; text-transform: uppercase; }
.hero h1 em { font-style: normal; color: var(--gold-bright); display: block; }
.hero .lead { margin-bottom: 36px; }
.hero-trust { display: flex; align-items: stretch; gap: 0; margin-top: 40px; border-top: 1px solid var(--line); padding-top: 26px; }
.hero-trust .t-item { display: flex; flex-direction: column; gap: 4px; padding-right: 30px; margin-right: 30px; border-right: 1px solid var(--line); }
.hero-trust .t-item:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
.hero-trust .t-item b { font-family: var(--font-display); font-size: 1.7rem; color: #fff; font-weight: 800; letter-spacing: -0.02em; }
.hero-trust .t-item span { font-size: 11px; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; }
.hero-trust .stars { margin-bottom: 2px; }

/* hero visual */
.hero-visual { position: relative; }
.hero-photo { position: relative; aspect-ratio: 4/4.7; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--gold-line); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.08) contrast(1.03); }
.hero-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 42%, rgba(13,13,11,0.55) 72%, rgba(13,13,11,0.92)); }
.hero-photo-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 24px; z-index: 2; }
.hero-photo-cap b { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; color: #fff; display: block; font-size: 1.02rem; letter-spacing: 0.01em; }
.hero-photo-cap span { font-size: 12px; color: var(--text-muted); letter-spacing: 0.05em; text-transform: uppercase; }
.density-panel {
  position: relative; aspect-ratio: 4/4.6; border: 1px solid var(--gold-line);
  border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(180deg, var(--surface-2), var(--bg));
}
.density-panel .dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(#d8c489 1.5px, transparent 1.8px);
  background-size: 13px 13px;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 32%, transparent 86%);
  mask-image: linear-gradient(180deg, #000 0%, #000 32%, transparent 86%);
  opacity: 0.9;
}
.density-panel .glow { position: absolute; inset: 0; background: radial-gradient(80% 50% at 50% 8%, rgba(199,173,109,0.22), transparent 60%); }
.density-panel .cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px; border-top: 1px solid var(--line); background: linear-gradient(0deg, rgba(13,13,11,0.92), transparent); }
.density-panel .cap b { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 1.05rem; color: #fff; display: block; letter-spacing: 0.02em; }
.density-panel .cap span { font-size: 12px; color: var(--text-muted); letter-spacing: 0.06em; }
.hero-badge {
  position: absolute; left: -18px; top: 28px;
  background: var(--surface-2); border: 1px solid var(--gold-line); border-radius: var(--radius);
  padding: 13px 18px; display: flex; align-items: center; gap: 12px;
}
.hero-badge .num { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--gold-bright); }
.hero-badge .stars svg { width: 13px; height: 13px; }
.hero-badge span { font-size: 11px; color: var(--text-muted); letter-spacing: 0.06em; text-transform: uppercase; }
.hero-float {
  position: absolute; right: 18px; bottom: 26px; background: var(--gold); color: #0d0d0b;
  border-radius: var(--radius-sm); padding: 9px 16px; font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
}
.hero-float .dot { width: 7px; height: 7px; border-radius: 50%; background: #0d0d0b; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 380px; margin: 0 auto; width: 100%; }
  .hero { min-height: auto; text-align: center; }
  .hero .lead { margin-left: auto; margin-right: auto; }
  .hero .cta-row, .hero-trust { justify-content: center; }
  .hero-trust { display: inline-flex; }
  .density-panel { aspect-ratio: 4/3.4; }
}

/* ---------- trust band ---------- */
.trust-band { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg); }
.trust-band .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px 30px; padding-top: 22px; padding-bottom: 22px; }
.trust-pill { display: flex; align-items: center; gap: 9px; font-size: 11px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--text-muted); white-space: nowrap; }
.trust-pill svg { width: 16px; height: 16px; color: var(--gold-bright); flex-shrink: 0; }

/* ---------- grids / cards ---------- */
.grid { display: grid; gap: clamp(14px, 2vw, 20px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px; transition: border-color .3s, background .3s, transform .3s var(--ease);
}
@media (hover: hover) { .card:hover { border-color: var(--gold-line); background: var(--surface-2); transform: translateY(-3px); } }
.card .ic {
  width: 50px; height: 50px; border-radius: var(--radius-sm); display: grid; place-items: center;
  background: rgba(199,173,109,0.08); border: 1px solid var(--gold-line); color: var(--gold-bright); margin-bottom: 22px;
}
.card .ic svg { width: 24px; height: 24px; }
.card h3 { font-size: 1.3rem; margin-bottom: 10px; text-transform: uppercase; letter-spacing: -0.01em; }
.card p { color: var(--text-muted); font-size: 15.5px; margin-bottom: 0; }
.card .more { margin-top: 18px; font-weight: 700; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-bright); display: inline-flex; align-items: center; gap: 8px; }
.card .more svg { width: 14px; height: 14px; transition: transform .3s; }
@media (hover: hover) { .card:hover .more svg { transform: translateX(4px); } }

/* service card with image */
.svc-card { padding: 0; overflow: hidden; }
.svc-card .svc-img { aspect-ratio: 16/11; background: var(--surface-2); position: relative; overflow: hidden; }
.svc-card .svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); filter: grayscale(0.15); }
@media (hover: hover) { .svc-card:hover .svc-img img { transform: scale(1.04); filter: none; } }
.svc-card .svc-body { padding: 26px 30px 32px; }
.svc-tag { position: absolute; top: 14px; left: 14px; background: var(--gold); color: #0d0d0b; font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 6px 12px; border-radius: var(--radius-sm); }

/* ---------- stats ---------- */
.stat { text-align: center; padding: 10px; }
.stat b { font-family: var(--font-display); font-size: clamp(2.8rem, 6vw, 4.4rem); font-weight: 800; display: block; line-height: 0.9; color: #fff; letter-spacing: -0.04em; }
.stat .lab { font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-top: 14px; }
.stat b .gold { color: var(--gold-bright); }

/* ---------- split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 90px); align-items: center; }
.split.flip .split-media { order: 2; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 38px; } .split.flip .split-media { order: 0; } }
.split-media { position: relative; }
.split-media img { width: 100%; display: block; border-radius: var(--radius); border: 1px solid var(--line); filter: grayscale(0.15) contrast(1.04); }
.split-media img[src*="simon"] { aspect-ratio: 4/5; object-fit: cover; object-position: 50% 28%; }
.split-media::after { content: ""; position: absolute; inset: 0; border-radius: var(--radius); box-shadow: inset 0 0 0 1px var(--gold-line); pointer-events: none; }
.tick-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 14px; }
.tick-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 16px; color: var(--text-muted); }
.tick-list li svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--gold-bright); margin-top: 3px; }
.tick-list li b { font-weight: 700; color: var(--text); }
.bg-bone .tick-list li { color: #4a4639; } .bg-bone .tick-list li b { color: var(--bone-ink); }

/* ---------- before/after slider ---------- */
.ba {
  position: relative; aspect-ratio: 3/2; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--gold-line); user-select: none; touch-action: pan-y; cursor: ew-resize; background:#111;
}
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba .ba-after { clip-path: inset(0 0 0 var(--pos, 50%)); }
.ba .ba-label { position: absolute; bottom: 16px; padding: 6px 13px; border-radius: var(--radius-sm); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #fff; background: rgba(13,13,11,0.7); border: 1px solid var(--line-strong); }
.ba .ba-label.before { left: 16px; } .ba .ba-label.after { right: 16px; background: var(--gold); color: #0d0d0b; border-color: var(--gold); }
.ba .ba-handle { position: absolute; top: 0; bottom: 0; left: var(--pos, 50%); width: 2px; background: var(--gold); transform: translateX(-50%); }
.ba .ba-knob { position: absolute; top: 50%; left: var(--pos, 50%); transform: translate(-50%,-50%); width: 44px; height: 44px; border-radius: 50%; background: var(--gold); display: grid; place-items: center; color: #0d0d0b; }
.ba .ba-knob svg { width: 20px; height: 20px; }

/* ---------- gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
@media (max-width: 760px) { .gallery-grid { grid-template-columns: repeat(2,1fr); gap: 10px; } }
.gallery-grid .g-item { position: relative; aspect-ratio: 1; border-radius: var(--radius-sm); overflow: hidden; background: var(--surface-2); border: 1px solid var(--line); }
.gallery-grid .g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); filter: grayscale(0.2); }
@media (hover: hover) { .gallery-grid .g-item:hover img { transform: scale(1.05); filter: none; } }
.gallery-grid .g-item .g-tag { position: absolute; bottom: 10px; left: 10px; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color:#fff; background: rgba(13,13,11,0.7); padding: 4px 9px; border-radius: var(--radius-sm); }

/* ---------- reviews ---------- */
.rev-head { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px; margin-bottom: 40px; }
.g-badge { display: inline-flex; align-items: center; gap: 13px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 11px 22px; }
.g-badge .g-logo { font-family: var(--font-display); font-weight: 800; font-size: 17px; }
.g-badge .g-logo b:nth-child(1){color:#4285F4}.g-badge .g-logo b:nth-child(2){color:#EA4335}.g-badge .g-logo b:nth-child(3){color:#FBBC05}.g-badge .g-logo b:nth-child(4){color:#4285F4}.g-badge .g-logo b:nth-child(5){color:#34A853}.g-badge .g-logo b:nth-child(6){color:#EA4335}
.g-badge .g-score { font-weight: 800; font-size: 16px; color: #fff; font-family: var(--font-display); }
.g-badge .g-count { font-size: 12px; color: var(--text-muted); letter-spacing: 0.04em; text-transform: uppercase; }

.featured-quote { max-width: 900px; margin: 0 auto 50px; text-align: center; }
.featured-quote p { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.6rem, 3.6vw, 2.6rem); line-height: 1.18; color: #fff; margin-bottom: 18px; letter-spacing: -0.005em; text-transform: uppercase; }
.featured-quote cite { font-style: normal; font-size: 12px; color: var(--gold-bright); letter-spacing: .12em; text-transform: uppercase; }

.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 900px) { .rev-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .rev-grid { grid-template-columns: 1fr; } }
.rev { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; gap: 14px; }
.rev-top { display: flex; align-items: center; justify-content: space-between; }
.rev .av { width: 42px; height: 42px; border-radius: var(--radius-sm); background: var(--gold); color: #0d0d0b; display: grid; place-items: center; font-weight: 800; font-family: var(--font-display); }
.rev .who { display: flex; align-items: center; gap: 13px; }
.rev .who b { font-size: 14px; display: block; text-transform: uppercase; letter-spacing: 0.02em; } .rev .who span { font-size: 11px; color: var(--gold-bright); letter-spacing: 0.06em; text-transform: uppercase; }
.rev p { font-size: 15px; color: var(--text-muted); margin: 0; line-height: 1.6; }
.rev .gmark { width: 19px; height: 19px; }
@media (max-width: 600px) { .rev-grid .rev:nth-child(n+5) { display: none; } }

/* ---------- FAQ ---------- */
.faq-list { max-width: 860px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; background: none; border: 0; text-align: left; cursor: pointer; padding: 28px 50px 28px 0; position: relative; font-family: var(--font-display); font-weight: 700; font-size: clamp(1.1rem,2vw,1.35rem); color: #fff; line-height: 1.25; text-transform: uppercase; letter-spacing: -0.01em; }
.faq-q::after { content: ""; position: absolute; right: 4px; top: 32px; width: 14px; height: 14px; background: no-repeat center/contain; transition: transform .35s var(--ease); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c7ad6d' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E"); }
.faq-item.open .faq-q::after { transform: rotate(135deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.faq-a-inner { padding: 0 50px 28px 0; color: var(--text-muted); font-size: 16px; }
.faq-a-inner p { margin-bottom: 0.7em; } .faq-a-inner p:last-child { margin-bottom: 0; }

/* ---------- process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2,1fr); gap: 14px; } }
@media (max-width: 540px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding: 30px 24px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.step .num { font-family: var(--font-display); font-weight: 800; font-size: 1rem; color: #0d0d0b; background: var(--gold-bright); width: 34px; height: 34px; border-radius: var(--radius-sm); display: grid; place-items: center; margin-bottom: 18px; }
.step h4 { font-size: 1.05rem; margin-bottom: 9px; text-transform: uppercase; letter-spacing: -0.01em; }
.step p { font-size: 14px; color: var(--text-muted); margin: 0; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--surface); border: 1px solid var(--gold-line); border-radius: var(--radius-lg); padding: clamp(46px, 6vw, 84px); text-align: center; }
.cta-band::before { content:""; position:absolute; inset:0; background-image: radial-gradient(var(--gold) 1px, transparent 1.2px); background-size: 20px 20px; opacity: 0.1; -webkit-mask-image: radial-gradient(100% 100% at 50% 0%, #000, transparent 70%); mask-image: radial-gradient(100% 100% at 50% 0%, #000, transparent 70%); }
.cta-band > * { position: relative; }
.cta-band h2 { margin-bottom: 18px; text-transform: uppercase; }
.cta-band p { color: var(--text-muted); max-width: 56ch; margin: 0 auto 32px; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px,5vw,64px); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.info-row { display: flex; gap: 16px; align-items: flex-start; padding: 22px 0; border-bottom: 1px solid var(--line); }
.info-row:last-child { border-bottom: 0; }
.info-row .ic { width: 46px; height: 46px; border-radius: var(--radius-sm); background: rgba(199,173,109,0.08); border: 1px solid var(--gold-line); color: var(--gold-bright); display: grid; place-items: center; flex-shrink: 0; }
.info-row .ic svg { width: 21px; height: 21px; }
.info-row b { display: block; font-size: 12px; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold-bright); }
.info-row a, .info-row span { color: var(--text); font-size: 16px; }
@media (hover: hover) { .info-row a:hover { color: var(--gold-bright); } }
.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); margin-top: 18px; }
.map-wrap iframe { width: 100%; height: 300px; border: 0; display: block; filter: grayscale(1) invert(0.9) contrast(0.85); }

/* ---------- forms ---------- */
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(26px, 4vw, 42px); }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 11.5px; font-weight: 700; margin-bottom: 8px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }
.field label .req { color: var(--gold-bright); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 16px; color: var(--text); background: var(--bg);
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-dim); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(150,136,95,0.16);
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a39c8c' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; background-size: 16px; padding-right: 44px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.form-note { font-size: 12px; color: var(--text-dim); margin-top: 16px; text-align: center; letter-spacing: 0.02em; }
.form-success { text-align: center; padding: 30px 10px; display: none; }
.form-success.show { display: block; }
.form-success .check { width: 62px; height: 62px; border-radius: var(--radius-sm); background: var(--gold); color: #0d0d0b; display: grid; place-items: center; margin: 0 auto 20px; }
.form-success .check svg { width: 30px; height: 30px; }

/* ---------- footer ---------- */
.footer { background: #0a0a09; border-top: 1px solid var(--line); padding: clamp(60px,7vw,90px) 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 44px; padding-bottom: 54px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h4 { font-family: var(--font-body); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-bright); margin-bottom: 20px; font-weight: 700; }
.footer a { color: var(--text-muted); font-size: 14.5px; display: block; padding: 6px 0; transition: color .2s; }
@media (hover: hover) { .footer a:hover { color: #fff; } }
.footer .f-brand img { height: 52px; margin-bottom: 18px; }
.footer .f-brand p { color: var(--text-muted); font-size: 14.5px; max-width: 32ch; }
.footer .f-social { display: flex; gap: 10px; margin-top: 20px; }
.footer .f-social a { width: 40px; height: 40px; border: 1px solid var(--line-strong); border-radius: var(--radius-sm); display: grid; place-items: center; padding: 0; }
.footer .f-social a svg { width: 18px; height: 18px; }
@media (hover: hover) { .footer .f-social a:hover { background: var(--gold); border-color: var(--gold); color: #0d0d0b; } }
.footer-bottom { border-top: 1px solid var(--line); padding: 24px 0; display: flex; flex-wrap: wrap; gap: 12px 28px; align-items: center; justify-content: space-between; }
.footer-bottom p { margin: 0; font-size: 12px; color: var(--text-dim); letter-spacing: 0.03em; }
.foot-legal { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 22px; }
.foot-legal a, .foot-legal .cred { font-size: 12px; color: var(--text-dim); letter-spacing: 0.03em; padding: 0; }
.foot-legal .cred a { color: var(--text-muted); text-decoration: underline; text-underline-offset: 2px; display: inline; }
@media (hover: hover) { .foot-legal a:hover { color: var(--gold-bright); } }
@media (max-width: 540px) { .footer-bottom { flex-direction: column; align-items: flex-start; } }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .07s; } .reveal.d2 { transition-delay: .14s; } .reveal.d3 { transition-delay: .21s; } .reveal.d4 { transition-delay: .28s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } * { scroll-behavior: auto; } }

/* ---------- interior page hero ---------- */
.page-hero { padding: calc(var(--nav-h) + 72px) 0 clamp(50px,6vw,84px); position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.page-hero::before { content:""; position:absolute; inset:0; background-image: radial-gradient(var(--gold) 1px, transparent 1.2px); background-size: 22px 22px; opacity: 0.12; -webkit-mask-image: radial-gradient(110% 90% at 90% 0%, #000, transparent 60%); mask-image: radial-gradient(110% 90% at 90% 0%, #000, transparent 60%); }
.page-hero .container { position: relative; }
.page-hero .crumb { font-size: 11px; color: var(--text-dim); margin-bottom: 18px; letter-spacing: .12em; text-transform: uppercase; }
.page-hero .crumb a { color: var(--gold-bright); }
.page-hero h1 { margin-bottom: 20px; text-transform: uppercase; }

/* prose */
.prose { max-width: 780px; }
.prose h2 { font-size: clamp(1.4rem,2.6vw,1.9rem); margin: 1.6em 0 .5em; text-transform: uppercase; }
.prose h3 { font-size: 1.2rem; margin: 1.4em 0 .4em; }
.prose p, .prose ul { color: var(--text-muted); }
.prose ul { padding-left: 1.2em; } .prose li { margin-bottom: .5em; }
.prose a { color: var(--gold-bright); text-decoration: underline; text-underline-offset: 2px; }

/* pricing */
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
@media (max-width: 900px){ .price-grid{ grid-template-columns:1fr; } }
.price-card { background: var(--surface); border:1px solid var(--line); border-radius: var(--radius); padding: 38px 32px; position: relative; }
.price-card.feat { border-color: var(--gold); }
.price-card .badge { position:absolute; top:-11px; left:32px; background:var(--gold); color:#0d0d0b; font-size:10.5px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; padding:5px 13px; border-radius: var(--radius-sm); }
.price-card h3 { font-size:1.05rem; text-transform:uppercase; letter-spacing:0.04em; color: var(--gold-bright); }
.price-card .price { font-family:var(--font-display); font-size:3rem; color:#fff; font-weight:800; margin:14px 0 4px; letter-spacing:-0.03em; }
.price-card .price small { font-size:1.1rem; color:var(--text-muted); font-weight:600; }
.price-card .price-sub { font-size:13px; color:var(--text-dim); margin-bottom:24px; text-transform:uppercase; letter-spacing:0.06em; }

/* utility */
@media (max-width:720px){ .hide-mobile{ display:none!important; } }
.mt-0{margin-top:0}.mb-0{margin-bottom:0}

/* =========================================================
   AI assistant chat widget + modal  (v2 dark/sharp)
   ========================================================= */
.chat-fab {
  position: fixed; right: max(20px, env(safe-area-inset-right)); bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 95; display: inline-flex; align-items: center; gap: 11px;
  background: var(--gold); color: #0d0d0b; border: 0; cursor: pointer;
  padding: 13px 20px 13px 14px; border-radius: var(--radius-sm);
  font-family: var(--font-body); font-weight: 700; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  transition: transform .35s var(--ease), opacity .3s, background .25s;
}
.chat-fab .av { width: 32px; height: 32px; border-radius: var(--radius-sm); background: #0d0d0b; display: grid; place-items: center; }
.chat-fab .av svg { width: 18px; height: 18px; color: var(--gold-bright); }
.chat-fab .fab-dot { position: absolute; top: 7px; left: 34px; width: 10px; height: 10px; background: #0d0d0b; border-radius: 50%; }
@media (hover: hover) { .chat-fab:hover { background: var(--gold-bright); transform: translateY(-2px); } }
body.chat-open .chat-fab { transform: scale(0.6); opacity: 0; pointer-events: none; }
@media (max-width: 520px) { .chat-fab span.label { display: none; } .chat-fab { padding: 12px; } .chat-fab .fab-dot { left: 30px; } }

.chat-panel {
  position: fixed; right: max(20px, env(safe-area-inset-right)); bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 96; width: min(400px, calc(100vw - 32px)); height: min(620px, calc(100svh - 110px));
  background: var(--surface); border-radius: var(--radius-lg); border: 1px solid var(--line-strong);
  display: flex; flex-direction: column; overflow: hidden;
  transform: translateY(24px) scale(.96); opacity: 0; pointer-events: none; transform-origin: bottom right;
  transition: transform .4s var(--ease-out), opacity .3s;
}
body.chat-open .chat-panel { transform: none; opacity: 1; pointer-events: auto; }
@media (max-width: 520px) { .chat-panel { right: 0; bottom: 0; width: 100vw; height: 100svh; height: 100dvh; border-radius: 0; border: 0; } }
.chat-head { background: var(--bg); border-bottom: 1px solid var(--line); padding: 16px 18px; display: flex; align-items: center; gap: 12px; }
.chat-head .av { width: 40px; height: 40px; border-radius: var(--radius-sm); background: var(--gold); display: grid; place-items: center; flex-shrink: 0; }
.chat-head .av svg { width: 21px; height: 21px; color: #0d0d0b; }
.chat-head .ch-meta { flex: 1; line-height: 1.25; }
.chat-head .ch-meta b { font-family: var(--font-display); font-weight: 800; font-size: 15px; text-transform: uppercase; letter-spacing: 0.02em; color: #fff; }
.chat-head .ch-meta span { font-size: 11px; color: var(--text-muted); display: flex; align-items: center; gap: 6px; letter-spacing: 0.04em; }
.chat-head .ch-meta span::before { content:""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-bright); }
.chat-close { background: transparent; border: 1px solid var(--line-strong); color: #fff; width: 34px; height: 34px; border-radius: var(--radius-sm); cursor: pointer; display: grid; place-items: center; transition: background .2s; }
.chat-close:hover { background: var(--surface-2); }
.chat-close svg { width: 17px; height: 17px; }

.chat-body { flex: 1; overflow-y: auto; padding: 20px 16px; display: flex; flex-direction: column; gap: 11px; -webkit-overflow-scrolling: touch; }
.msg { max-width: 84%; font-size: 14.5px; line-height: 1.5; padding: 12px 15px; border-radius: var(--radius); animation: msgIn .3s var(--ease-out); }
@keyframes msgIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.msg.bot { background: var(--surface-2); border: 1px solid var(--line); border-bottom-left-radius: 2px; color: var(--text); align-self: flex-start; }
.msg.user { background: var(--gold); color: #0d0d0b; font-weight: 500; border-bottom-right-radius: 2px; align-self: flex-end; }
.msg.bot a { color: var(--gold-bright); font-weight: 600; text-decoration: underline; }
.msg.bot b { color: #fff; }
.typing { display: inline-flex; gap: 4px; padding: 14px 16px; }
.typing i { width: 6px; height: 6px; border-radius: 50%; background: var(--text-dim); animation: blink 1.3s infinite both; }
.typing i:nth-child(2){ animation-delay: .2s; } .typing i:nth-child(3){ animation-delay: .4s; }
@keyframes blink { 0%,60%,100%{ opacity:.2; } 30%{ opacity:1; } }

.chat-quick { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 16px 12px; }
.chat-quick button { background: transparent; border: 1px solid var(--gold-line); color: var(--gold-bright); font-family: var(--font-body); font-weight: 600; font-size: 12.5px; padding: 9px 14px; border-radius: var(--radius-sm); cursor: pointer; transition: background .2s, color .2s; }
@media (hover: hover) { .chat-quick button:hover { background: var(--gold); color: #0d0d0b; border-color: var(--gold); } }

.chat-foot { padding: 12px 14px calc(14px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); background: var(--bg); }
.chat-input-row { display: flex; gap: 8px; align-items: flex-end; }
.chat-input-row textarea { flex: 1; resize: none; border: 1px solid var(--line-strong); border-radius: var(--radius-sm); padding: 11px 14px; font-family: var(--font-body); font-size: 15px; max-height: 96px; background: var(--surface); color: var(--text); }
.chat-input-row textarea::placeholder { color: var(--text-dim); }
.chat-input-row textarea:focus { outline: none; border-color: var(--gold); }
.chat-send { width: 44px; height: 44px; border-radius: var(--radius-sm); background: var(--gold); border: 0; color: #0d0d0b; cursor: pointer; flex-shrink: 0; display: grid; place-items: center; transition: background .2s, transform .2s; }
.chat-send:hover { background: var(--gold-bright); } .chat-send:active { transform: scale(.93); }
.chat-send svg { width: 19px; height: 19px; }
.chat-disclaimer { font-size: 10px; color: var(--text-dim); text-align: center; margin-top: 9px; letter-spacing: 0.02em; }

.chat-leadform { background: var(--surface-2); border: 1px solid var(--gold-line); border-radius: var(--radius); padding: 16px; align-self: stretch; }
.chat-leadform h4 { font-size: 13px; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gold-bright); }
.chat-leadform input, .chat-leadform select { width: 100%; padding: 11px 13px; border: 1px solid var(--line-strong); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 15px; margin-bottom: 9px; background: var(--bg); color: var(--text); }
.chat-leadform input::placeholder { color: var(--text-dim); }
.chat-leadform input:focus, .chat-leadform select:focus { outline: none; border-color: var(--gold); }
.chat-leadform button { width: 100%; }

/* modal */
.modal-overlay {
  position: fixed; inset: 0; z-index: 120; background: rgba(8,8,7,.78);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--surface); border: 1px solid var(--line-strong); border-radius: var(--radius-lg); width: min(520px, 100%);
  max-height: calc(100svh - 40px); overflow-y: auto;
  transform: translateY(18px); transition: transform .35s var(--ease-out); position: relative;
}
.modal-overlay.open .modal { transform: none; }
.modal-head { padding: 32px 34px 6px; }
.modal-head h3 { font-size: 1.7rem; margin-bottom: 10px; text-transform: uppercase; }
.modal-head p { color: var(--text-muted); font-size: 15px; margin: 0; }
.modal-body { padding: 20px 34px 34px; }
.modal-x { position: absolute; top: 18px; right: 18px; width: 40px; height: 40px; border-radius: var(--radius-sm); border: 1px solid var(--line-strong); background: transparent; color: #fff; cursor: pointer; display: grid; place-items: center; z-index: 2; transition: background .2s; }
.modal-x:hover { background: var(--surface-2); }
.modal-x svg { width: 18px; height: 18px; }
@media (max-width: 520px) { .modal-overlay { padding: 0; align-items: flex-end; } .modal { width: 100%; max-height: 94svh; border-radius: var(--radius-lg) var(--radius-lg) 0 0; } }

/* mobile sticky bar */
.mobile-bar { display: none; }
@media (max-width: 720px) {
  .mobile-bar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    display: grid; grid-template-columns: 1fr 1.4fr; gap: 10px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(13,13,11,.94); backdrop-filter: blur(12px); border-top: 1px solid var(--line);
  }
  body.chat-open .mobile-bar { display: none; }
  .mobile-bar .btn { padding: 14px; font-size: 12.5px; }
  .footer { padding-bottom: 86px; }
  .chat-fab { bottom: calc(76px + env(safe-area-inset-bottom)); }
}

/* ---------- comparison (responsive: desktop table / mobile cards) ---------- */
.cmp { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.cmp-row { display: grid; grid-template-columns: 1.15fr 1.1fr 1fr 1fr; border-bottom: 1px solid var(--line); }
.cmp-row:last-child { border-bottom: 0; }
.cmp-feat, .cmp-cell, .cmp-opt { padding: 17px 22px; font-size: 14.5px; color: var(--text-muted); display: flex; align-items: center; min-width: 0; }
.cmp-feat { color: var(--text); font-weight: 600; font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.07em; }
.cmp-opt { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 14px; color: #fff; padding-top: 20px; padding-bottom: 20px; }
.cmp-cell.feat, .cmp-opt.feat { background: rgba(199,173,109,0.07); box-shadow: inset 0 0 0 1px var(--gold-line); color: var(--text); }
.cmp-opt.feat { color: var(--gold-bright); }
.cmp-cell.feat b { color: #fff; font-weight: 700; }
.cmp-cell .ic, .cmp-cell.yes::before, .cmp-cell.no::before { content: ""; width: 16px; height: 16px; margin-right: 9px; flex-shrink: 0; background: no-repeat center/contain; }
.cmp-cell.yes::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c7ad6d' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E"); }
.cmp-cell.no::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23726c5e' stroke-width='2.6' stroke-linecap='round'%3E%3Cpath d='M18 6L6 18M6 6l12 12'/%3E%3C/svg%3E"); }

@media (max-width: 720px) {
  .cmp { border: 0; display: grid; gap: 12px; }
  .cmp-row { display: block; border: 1px solid var(--line); border-radius: var(--radius); padding: 4px 16px 8px; background: var(--surface); }
  .cmp-row.cmp-head { display: none; }
  .cmp-feat { padding: 14px 0 10px; font-size: 12px; color: var(--gold-bright); border-bottom: 1px solid var(--line); }
  .cmp-cell { padding: 11px 0; justify-content: space-between; gap: 14px; font-size: 14.5px; border-bottom: 1px solid var(--line); }
  .cmp-row .cmp-cell:last-child { border-bottom: 0; }
  .cmp-cell::after { content: attr(data-opt); order: -1; color: var(--text-dim); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-right: auto; }
  .cmp-cell.yes::before, .cmp-cell.no::before { margin-right: 0; margin-left: 0; order: 2; }
  .cmp-cell.feat { box-shadow: none; background: transparent; color: var(--gold-bright); font-weight: 700; }
  .cmp-cell.feat::after { color: var(--gold-bright); }
  .cmp-cell.feat b { color: var(--gold-bright); }
}

/* =========================================================
   MOBILE OVERHAUL (<= 720px / 600px)
   ========================================================= */
@media (max-width: 720px) {
  /* hero: copy first, photo second, tighter */
  .hero { text-align: left; padding-top: calc(var(--nav-h) + 26px); }
  .hero-grid { gap: 26px; grid-template-columns: minmax(0, 1fr); }  /* minmax(0,..) lets the track shrink so nothing overflows */
  .hero-copy { order: 1; min-width: 0; max-width: 100%; }
  .hero-visual { order: 2; min-width: 0; max-width: 100%; margin: 0; }
  .hero .eyebrow { flex-wrap: wrap; letter-spacing: 0.13em; font-size: 10.5px; }
  .hero h1 { margin-bottom: 18px; }
  .hero .lead { margin: 0 0 24px; }
  .hero .cta-row { flex-direction: column; align-items: stretch; }
  .hero .cta-row .btn { width: 100%; }
  .hero-photo { aspect-ratio: 5/4; }
  .hero-badge { left: 12px; top: 12px; padding: 10px 14px; }
  .hero-badge .num { font-size: 1.25rem; }
  .hero-photo-cap { padding: 20px 18px; }

  /* hero trust: clean 3-up, no awkward wrap */
  .hero-trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; width: 100%; margin-top: 30px; padding-top: 22px; }
  .hero-trust .t-item { min-width: 0; padding: 0 8px; margin: 0; border-right: 1px solid var(--line); text-align: center; align-items: center; }
  .hero-trust .t-item:last-child { border-right: 0; }
  .hero-trust .t-item b { font-size: 1.2rem; }
  .hero-trust .t-item span { font-size: 9px; letter-spacing: 0.04em; line-height: 1.3; }
  .hero-trust .stars svg { width: 13px; height: 13px; }

  /* stats stay 2x2, never a lonely single column */
  .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 28px 12px; }
  .stat b { font-size: 2.6rem; }

  /* trust band: stack centred, breathable */
  .trust-band .container { gap: 14px; flex-direction: column; align-items: flex-start; }
  .trust-pill { font-size: 11.5px; }

  /* section heads / split rhythm */
  .section-head { margin-bottom: 30px; }
  .split { gap: 28px; }
  .split-media img[src*="simon"] { aspect-ratio: 4/3.4; }

  /* steps + cards a touch tighter */
  .card { padding: 26px; }
  .step { padding: 24px 22px; }
}

@media (max-width: 600px) {
  .h-xl { font-size: 2.05rem; line-height: 1.05; }
  .h-lg { font-size: 1.8rem; }
  .h-md { font-size: 1.55rem; }
  .featured-quote p { font-size: 1.45rem; }
  .pad { padding: 48px 0; }
  .pad-sm { padding: 40px 0; }
  .price-card { padding: 30px 24px; }
  .form-card { padding: 24px 20px; }
  .modal-head { padding: 26px 22px 4px; }
  .modal-body { padding: 16px 22px 26px; }
}
