
/* ═══════════════════════════════════════════
   WEBRYA — New Design System
   Typography: Playfair Display + DM Sans
   Palette:    Obsidian × Gold
═══════════════════════════════════════════ */
:root {
  --ink:        #09090b;
  --ink-2:      #111113;
  --ink-3:      #18181b;
  --ink-4:      #27272a;
  --gold:       #c9a96e;
  --gold-light: #e2c68a;
  --gold-dim:   rgba(201,169,110,.18);
  --gold-glow:  rgba(201,169,110,.08);
  --white:      #fafaf9;
  --off:        #a8a29e;
  --off-dim:    #57534e;
  --border:     rgba(201,169,110,.14);
  --border-sub: rgba(255,255,255,.06);
  --success:    #63cac3;
  --err:        #f87171;
  --serif:      'Playfair Display', Georgia, serif;
  --sans:       'DM Sans', system-ui, sans-serif;
  --r:          12px;
  --r-lg:       20px;
  --shadow:     0 24px 64px rgba(0,0,0,.55);
  --shadow-sm:  0 8px 28px rgba(0,0,0,.35);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--ink);
  color: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* Grain overlay */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
  opacity: .022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.ambient {
  position: fixed; top: -30vh; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(201,169,110,.09) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}

/* ── LAYOUT ── */
.wrap   { max-width: 1200px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 1; }
.wrap-s { max-width: 860px;  margin: 0 auto; padding: 0 32px; position: relative; z-index: 1; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── HEADER ── */
header {
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid var(--border-sub);
  background: rgba(9,9,11,.82);
  backdrop-filter: blur(20px) saturate(1.4);
  transition: border-color .3s;
}
header.scrolled { border-bottom-color: var(--border); }
.hdr {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
}

/* Brand */
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark {
  width: 32px; height: 32px; border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), rgba(201,169,110,.5));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 900; font-size: 16px;
  color: var(--ink); flex-shrink: 0;
}
.brand-name {
  font-family: var(--serif); font-weight: 800; font-size: 20px;
  background: linear-gradient(135deg, var(--white), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Nav */
nav { display: flex; align-items: center; gap: 4px; justify-self: center; }
nav a, .has-drop > button {
  font-size: 14px; font-weight: 500; color: var(--off);
  padding: 8px 14px; border-radius: var(--r);
  transition: color .15s, background .15s;
  border: none; background: none;
}
nav a:hover, .has-drop > button:hover,
nav a.active { color: var(--white); background: rgba(255,255,255,.06); }
nav a.active { color: var(--gold-light); }

/* Dropdown */
.has-drop { position: relative; }
/* 12px invisible bridge so mouse can travel from button → dropdown */
.has-drop::after {
  content: ''; position: absolute;
  top: 100%; left: 0; right: 0; height: 12px;
}
.drop {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%);
  background: var(--ink-2); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 8px; min-width: 520px;
  box-shadow: var(--shadow);
  display: none; grid-template-columns: 1fr 1fr; gap: 4px;
  /* keep visible when hovering the bridge */
}
.has-drop:hover .drop,
.has-drop:focus-within .drop { display: grid; }
.drop-col { display: flex; flex-direction: column; }
.drop-label {
  font-size: 10px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold); padding: 10px 12px 6px;
}
.drop a {
  display: flex; flex-direction: column; gap: 2px;
  padding: 10px 12px; border-radius: var(--r);
  color: var(--off); font-size: 14px; transition: all .15s;
}
.drop a:hover { background: rgba(255,255,255,.05); color: var(--white); }
.drop a strong { color: var(--white); font-size: 14px; font-weight: 600; }
.drop a span { color: var(--off-dim); font-size: 12px; }
.drop-footer {
  grid-column: 1/-1; border-top: 1px solid var(--border-sub);
  display: flex; gap: 8px; padding: 8px; margin-top: 4px;
}
.drop-footer a { font-size: 13px !important; flex: 1; text-align: center; justify-content: center; }

/* Header actions */
.hdr-actions { display: flex; align-items: center; gap: 8px; }
.pill-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 999px; font-size: 13px; font-weight: 600;
  border: 1px solid var(--border); color: var(--off);
  background: transparent; cursor: pointer; transition: all .15s;
}
.pill-btn:hover { color: var(--white); border-color: rgba(201,169,110,.35); }
.cta-btn-sm {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 18px; border-radius: 999px; font-size: 13px; font-weight: 700;
  background: var(--gold); color: var(--ink); border: none;
  transition: all .15s;
}
.cta-btn-sm:hover { background: var(--gold-light); transform: translateY(-1px); }
.ham { display: none; flex-direction: column; gap: 5px; padding: 8px; background: none; border: none; }
.ham span { display: block; width: 22px; height: 2px; background: var(--off); border-radius: 2px; transition: all .2s; }

/* ── BUTTONS ── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px; border-radius: 999px;
  background: var(--gold); color: var(--ink);
  font-weight: 700; font-size: 14px; border: none;
  transition: all .2s; white-space: nowrap;
  box-shadow: 0 8px 28px rgba(201,169,110,.25);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(201,169,110,.35); }
.btn-gold-lg { padding: 16px 32px; font-size: 15px; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 999px;
  background: transparent; color: var(--off);
  font-weight: 600; font-size: 14px;
  border: 1px solid var(--border-sub);
  transition: all .2s;
}
.btn-outline:hover { color: var(--white); border-color: rgba(255,255,255,.2); }

/* ── SCARCITY BANNER ── */
.scarcity-bar {
  background: linear-gradient(90deg, rgba(201,169,110,.1), rgba(201,169,110,.05), rgba(201,169,110,.1));
  border-top: 1px solid rgba(201,169,110,.25);
  border-bottom: 1px solid rgba(201,169,110,.25);
  padding: 10px 0; text-align: center;
}
.scarcity-inner {
  font-size: 13px; font-weight: 600; color: var(--off);
  display: inline-flex; align-items: center; gap: 10px;
}
.scarcity-inner strong { color: var(--gold); }
.scarcity-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:.5; transform:scale(1.4); }
}

/* ── HERO ── */
.hero {
  min-height: 88vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 0 60px;
  position: relative; overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 64px; align-items: center;
}
.hero-geo {
  position: absolute; right: -120px; top: -80px;
  width: 700px; height: 700px;
  border: 1px solid rgba(201,169,110,.07);
  border-radius: 50%; pointer-events: none;
}
.hero-geo::before {
  content: ''; position: absolute; inset: 60px;
  border: 1px solid rgba(201,169,110,.05); border-radius: 50%;
}
.hero-geo::after {
  content: ''; position: absolute; inset: 120px;
  border: 1px solid rgba(201,169,110,.04); border-radius: 50%;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
}
.hero-eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(38px, 5.5vw, 66px);
  line-height: 1.06; letter-spacing: -.02em; font-weight: 900;
  color: var(--white);
}
.hero h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  margin-top: 20px; font-size: 17px; color: var(--off); line-height: 1.75;
  max-width: 52ch; font-weight: 300;
}
.hero-actions {
  margin-top: 32px; display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
}

/* Hero trust chips */
.hero-trust {
  display: flex; gap: 8px; flex-wrap: wrap; margin-top: 20px;
}
.trust-chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; color: var(--off-dim);
  background: rgba(255,255,255,.04); border: 1px solid var(--border-sub);
  padding: 5px 12px; border-radius: 999px;
}
.trust-chip-live { border-color: rgba(201,169,110,.25); color: var(--off); }
.chip-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--success); animation: pulse 2s infinite;
}

/* Hero stats */
.hero-stats {
  display: flex; gap: 28px; margin-top: 40px;
  padding-top: 28px; border-top: 1px solid var(--border-sub);
}
.h-stat-num { font-family: var(--serif); font-size: 26px; font-weight: 700; color: var(--gold); }
.h-stat-label { font-size: 12px; color: var(--off-dim); margin-top: 2px; }
.h-stat-div { width: 1px; background: var(--border-sub); }

/* Hero panel */
.hero-panel {
  background: var(--ink-3); border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden; box-shadow: var(--shadow);
}
.panel-top {
  background: linear-gradient(135deg, rgba(201,169,110,.12), rgba(201,169,110,.04));
  border-bottom: 1px solid var(--border); padding: 24px;
}
.panel-top-label {
  font-size: 10px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
}
.panel-top-title { font-family: var(--serif); font-size: 20px; font-weight: 700; color: var(--white); }
.panel-top-sub { font-size: 13px; color: var(--off); margin-top: 4px; }
.panel-body { padding: 20px; }
.service-row {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 14px; border-radius: var(--r);
  border: 1px solid transparent; transition: all .2s; margin-bottom: 6px;
}
.service-row:hover { background: rgba(255,255,255,.04); border-color: var(--border-sub); }
.svc-icon {
  width: 36px; height: 36px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0;
}
.c1 { background: rgba(201,169,110,.12); }
.c2 { background: rgba(99,202,183,.10); }
.c3 { background: rgba(139,92,246,.10); }
.c4 { background: rgba(239,68,68,.10); }
.svc-row-text strong { display: block; font-size: 14px; font-weight: 600; color: var(--white); }
.svc-row-text span { font-size: 12px; color: var(--off-dim); }
.svc-badge {
  margin-left: auto; font-size: 11px; font-weight: 700;
  padding: 3px 8px; border-radius: 999px;
}
.badge-live { background: rgba(99,202,183,.12); color: #63cac3; }
.badge-new  { background: rgba(201,169,110,.12); color: var(--gold); }
.badge-road { background: rgba(255,255,255,.06); color: var(--off-dim); }

/* ── RESULTS BAR ── */
.results-bar {
  background: var(--ink-2);
  border-top: 1px solid var(--border-sub); border-bottom: 1px solid var(--border-sub);
  padding: 56px 0;
}
.results-bar-title {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700; color: var(--white); text-align: center;
  margin-bottom: 40px; letter-spacing: -.02em;
}
.results-bar-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.results-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1px; background: var(--border); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
}
.result-cell {
  background: var(--ink); padding: 28px 16px; text-align: center;
  transition: background .2s;
}
.result-cell:hover { background: var(--ink-3); }
.result-num {
  font-family: var(--serif); font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700; color: var(--gold); line-height: 1; display: block;
}
.result-lbl { font-size: 12px; color: var(--off-dim); margin-top: 8px; line-height: 1.4; }

/* ── TRUST STRIP ── */
.trust-strip {
  border-top: 1px solid var(--border-sub); border-bottom: 1px solid var(--border-sub);
  padding: 16px 0; background: rgba(255,255,255,.015);
}
.trust-inner {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 24px; font-size: 12px; font-weight: 600; color: var(--off-dim);
  letter-spacing: .03em;
}
.trust-item + .trust-item { border-left: 1px solid var(--border-sub); }

/* ── SECTIONS ── */
.section { padding: 96px 0; position: relative; }
.section-alt {
  background: var(--ink-2);
  border-top: 1px solid var(--border-sub); border-bottom: 1px solid var(--border-sub);
}
.sec-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.sec-eyebrow::before { content: ''; display: block; width: 20px; height: 1px; background: var(--gold); }
.sec-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800; line-height: 1.1; letter-spacing: -.02em; color: var(--white);
}
.sec-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sec-sub {
  margin-top: 12px; font-size: 16px; color: var(--off);
  max-width: 60ch; line-height: 1.8; font-weight: 300;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: clamp(60px, 10vw, 120px) 0 clamp(50px, 8vw, 80px);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 0%, rgba(201,169,110,.1), transparent 60%);
  pointer-events: none;
}
.page-hero-inner { max-width: 680px; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; color: var(--off-dim);
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--off-dim); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: var(--border); }
.page-h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900; line-height: 1.08; letter-spacing: -.02em; color: var(--white);
  margin: 12px 0;
}
.page-h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-sub { font-size: 17px; color: var(--off); line-height: 1.75; max-width: 52ch; font-weight: 300; }

/* ── SERVICE CARDS ── */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border-sub);
  border-radius: 16px; overflow: hidden;
  margin-top: 48px; border: 1px solid var(--border-sub);
}
.svc-card {
  background: var(--ink-2); padding: 32px 28px;
  position: relative; overflow: hidden; transition: background .2s;
}
.svc-card:hover { background: var(--ink-3); }
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: transparent; transition: background .2s;
}
.svc-card:hover::before { background: linear-gradient(90deg, var(--gold), transparent); }
.svc-num { font-family: var(--serif); font-size: 40px; font-weight: 800; color: rgba(201,169,110,.1); line-height: 1; margin-bottom: 16px; }
.svc-emo { font-size: 26px; margin-bottom: 14px; }
.svc-name { font-family: var(--serif); font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.svc-desc { font-size: 14px; color: var(--off); line-height: 1.75; font-weight: 300; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 18px; }
.svc-tag {
  font-size: 11px; font-weight: 600; letter-spacing: .04em;
  padding: 3px 9px; border-radius: 999px;
  background: rgba(255,255,255,.05); color: var(--off-dim);
  border: 1px solid var(--border-sub);
}
.svc-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 22px; font-size: 13px; font-weight: 700;
  color: var(--gold); transition: gap .15s;
}
.svc-link:hover { gap: 10px; }
.svc-card-wide {
  grid-column: 1/-1; background: var(--ink-2);
  padding: 32px 36px; display: flex; align-items: center; gap: 40px;
  border-top: 1px solid var(--border-sub); transition: background .2s;
}
.svc-card-wide:hover { background: var(--ink-3); }
.svc-wide-icon { font-size: 38px; flex-shrink: 0; }
.svc-wide-name { font-family: var(--serif); font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.svc-wide-desc { font-size: 14px; color: var(--off); line-height: 1.75; font-weight: 300; max-width: 58ch; }
.svc-wide-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; border-radius: 999px;
  background: rgba(201,169,110,.08); color: var(--gold);
  font-size: 11px; font-weight: 700; letter-spacing: .08em; margin-top: 10px;
}

/* ── PROCESS / STEPS ── */
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  margin-top: 48px; border: 1px solid var(--border-sub);
  border-radius: 16px; overflow: hidden; background: var(--border-sub);
}
.process-step {
  background: var(--ink-2); padding: 28px 24px;
  position: relative; transition: background .2s;
}
.process-step:hover { background: var(--ink-3); }
.process-step + .process-step { border-left: 1px solid var(--border-sub); }
.step-n { font-family: var(--serif); font-size: 48px; font-weight: 800; color: rgba(201,169,110,.08); line-height: 1; margin-bottom: 14px; }
.step-title { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.step-desc { font-size: 13px; color: var(--off-dim); line-height: 1.7; }
.step-arr {
  position: absolute; top: 48px; right: -14px;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--ink-4); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--gold); z-index: 2;
}

/* ── WHY / CARDS ── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.why-card {
  padding: 30px; border: 1px solid var(--border-sub); border-radius: 16px;
  background: transparent; transition: border-color .2s, background .2s;
}
.why-card:hover { border-color: var(--border); background: rgba(255,255,255,.02); }
.why-num { font-family: var(--serif); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.why-title { font-family: var(--serif); font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 10px; line-height: 1.3; }
.why-desc { font-size: 14px; color: var(--off); line-height: 1.8; font-weight: 300; }

/* ── TESTIMONIALS ── */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
.testi-card {
  background: var(--ink-2); border: 1px solid var(--border-sub);
  border-radius: 16px; padding: 28px; transition: all .3s;
}
.testi-card:hover { border-color: var(--border); transform: translateY(-3px); box-shadow: 0 20px 48px rgba(201,169,110,.12); }
.testi-quote { font-size: 3.5rem; color: var(--gold); opacity: .3; line-height: .6; margin-bottom: 14px; display: block; font-family: var(--serif); }
.testi-text { font-family: var(--serif); font-size: 1.05rem; font-style: italic; color: var(--white); line-height: 1.65; margin-bottom: 16px; }
.testi-stars { color: var(--gold); font-size: 13px; margin-bottom: 14px; }
.testi-author { display: flex; align-items: center; gap: 10px; border-top: 1px solid var(--border-sub); padding-top: 14px; }
.testi-av { width: 38px; height: 38px; border-radius: 50%; background: var(--gold-dim); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.testi-name { font-size: 14px; font-weight: 700; color: var(--white); }
.testi-role { font-size: 12px; color: var(--off-dim); }
.testi-plat {
  margin-left: auto; font-size: 11px; font-weight: 700;
  color: var(--gold); background: var(--gold-dim); border: 1px solid var(--border);
  padding: 3px 9px; border-radius: 999px;
}

/* ── CHANNEL MANAGER ── */
.platform-bar {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(16px, 3vw, 40px); flex-wrap: wrap;
  margin: 36px 0; padding: 24px 32px;
  background: var(--ink-3); border-radius: 16px; border: 1px solid var(--border);
}
.plat-item { text-align: center; }
.plat-icon { font-size: 1.8rem; }
.plat-name { font-size: 11px; font-weight: 700; color: var(--off-dim); margin-top: 6px; letter-spacing: .06em; text-transform: uppercase; }
.plat-sep { color: var(--border); font-size: 1.2rem; }
.plat-result { text-align: center; padding: 4px 16px; border-left: 1px solid var(--border); }
.plat-result-num { font-family: var(--serif); font-size: 1.6rem; font-weight: 700; color: var(--gold); line-height: 1; }
.plat-result-lbl { font-size: 11px; color: var(--off-dim); margin-top: 4px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.ch-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border-sub); border: 1px solid var(--border-sub);
  border-radius: 12px; overflow: hidden; margin-top: 40px;
}
.ch-stat { background: var(--ink-2); padding: 24px; text-align: center; }
.ch-stat-num { font-family: var(--serif); font-size: 2.4rem; font-weight: 700; color: var(--gold); line-height: 1; }
.ch-stat-lbl { font-size: 12px; color: var(--off-dim); margin-top: 6px; }

/* ── AREAS GRID ── */
.areas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; margin-top: 36px; }
.area-card {
  background: var(--ink-2); border: 1px solid var(--border-sub);
  border-radius: var(--r); padding: 14px 16px; text-align: center;
  transition: all .25s;
}
.area-card:hover { border-color: var(--border); transform: translateY(-2px); }
.area-card-icon { font-size: 1.3rem; margin-bottom: 7px; }
.area-card-name { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.area-card-note { font-size: 11px; color: var(--off-dim); }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 8px; margin-top: 48px; }
.faq-item { border: 1px solid var(--border-sub); border-radius: var(--r); overflow: hidden; background: var(--ink-2); }
.faq-q {
  width: 100%; text-align: left; background: transparent; border: 0;
  padding: 20px 24px; font-size: 15px; font-weight: 600;
  color: var(--white); display: flex; justify-content: space-between; align-items: center;
  transition: background .15s;
}
.faq-q:hover { background: rgba(255,255,255,.03); }
.faq-q.open { color: var(--gold); }
.faq-icon {
  width: 24px; height: 24px; border-radius: 50%; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--gold); flex-shrink: 0; transition: transform .2s;
}
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 24px 20px; color: var(--off); font-size: 14px; line-height: 1.8; border-top: 1px solid var(--border-sub); padding-top: 16px; }
.faq-a.open { display: block; }

/* ── PRICING CARDS ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
.price-card {
  background: var(--ink-2); border: 1px solid var(--border-sub);
  border-radius: 16px; padding: 32px 28px; transition: all .2s;
}
.price-card:hover { border-color: var(--border); transform: translateY(-2px); }
.price-card.featured { border-color: var(--gold); background: linear-gradient(135deg, var(--ink-3), rgba(201,169,110,.04)); }
.price-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.price-popular {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; color: var(--gold);
  background: var(--gold-dim); border: 1px solid var(--border);
  padding: 3px 9px; border-radius: 999px; margin-bottom: 12px;
}
.price-num { font-family: var(--serif); font-size: 3.2rem; font-weight: 700; color: var(--white); line-height: 1; margin: 16px 0 6px; }
.price-num.featured-price { color: var(--gold); }
.price-num-ask { font-family: var(--serif); font-size: 1.8rem; font-weight: 700; color: var(--off); line-height: 1.2; margin: 16px 0 6px; }
.price-desc { font-size: 13px; color: var(--off-dim); margin-bottom: 20px; line-height: 1.6; }
.price-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.price-feat { font-size: 13px; color: var(--off); display: flex; align-items: flex-start; gap: 8px; }
.price-feat.ok { color: var(--off); }
.price-feat.ok::before { content: '✓'; color: var(--success); font-weight: 700; flex-shrink: 0; }
.price-feat.no { color: var(--off-dim); }
.price-feat.no::before { content: '✗'; color: var(--off-dim); flex-shrink: 0; }
.price-del { font-size: 11px; text-align: center; color: var(--off-dim); margin-top: 8px; }

/* ── REA SECTION ── */
.rea-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-top: 48px; }
.rea-panel { background: var(--ink-3); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); }
.rea-panel-head { padding: 24px; border-bottom: 1px solid var(--border-sub); background: linear-gradient(180deg, rgba(201,169,110,.07), transparent); }
.rea-logo { display: inline-flex; align-items: center; gap: 10px; font-size: 18px; font-weight: 800; color: var(--white); font-family: var(--serif); }
.rea-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 12px rgba(201,169,110,.6); }
.rea-chat { padding: 16px 24px; display: flex; flex-direction: column; gap: 12px; }
.chat-msg { padding: 11px 14px; border-radius: 12px; font-size: 13px; line-height: 1.6; max-width: 85%; }
.msg-user { background: rgba(201,169,110,.12); border: 1px solid rgba(201,169,110,.2); color: var(--off); align-self: flex-end; border-bottom-right-radius: 4px; }
.msg-ai { background: rgba(255,255,255,.05); border: 1px solid var(--border-sub); color: var(--white); align-self: flex-start; border-bottom-left-radius: 4px; }
.rea-foot { padding: 14px 24px; border-top: 1px solid var(--border-sub); display: flex; gap: 10px; }
.rea-input { flex: 1; padding: 10px 14px; border-radius: 10px; background: rgba(255,255,255,.04); border: 1px solid var(--border-sub); font-size: 13px; color: var(--off-dim); }
.rea-features { display: flex; flex-direction: column; gap: 14px; }
.rea-feat { display: flex; align-items: flex-start; gap: 14px; padding: 14px; border-radius: var(--r); border: 1px solid var(--border-sub); transition: border-color .2s; }
.rea-feat:hover { border-color: var(--border); }
.rea-feat-icon { width: 34px; height: 34px; border-radius: 8px; background: var(--gold-dim); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }
.rea-feat-title { font-size: 14px; font-weight: 600; color: var(--white); }
.rea-feat-desc { font-size: 13px; color: var(--off-dim); margin-top: 2px; line-height: 1.5; }

/* ── CTA SECTION ── */
.cta-section { padding: 96px 0; position: relative; overflow: hidden; }
.cta-section::before {
  content: ''; position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(201,169,110,.07) 0%, transparent 65%);
  pointer-events: none;
}
.cta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

/* ── CONTACT FORM ── */
.contact-form {
  background: var(--ink-2); border: 1px solid var(--border);
  border-radius: 16px; padding: 32px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-grid .full { grid-column: 1/-1; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 11px; font-weight: 700; letter-spacing: .06em; color: var(--off-dim); text-transform: uppercase; }
.field input, .field select, .field textarea {
  padding: 11px 13px; border-radius: var(--r); border: 1px solid var(--border-sub);
  background: rgba(255,255,255,.04); color: var(--white);
  font-size: 14px; font-family: var(--sans); outline: none; transition: border-color .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); }
.field input::placeholder, .field textarea::placeholder { color: var(--off-dim); }
.field select option { background: var(--ink-3); }
.field textarea { min-height: 100px; resize: vertical; }
.form-status { margin-top: 12px; font-size: 13px; font-weight: 600; text-align: center; opacity: 0; transition: opacity .25s; }
.form-status.show { opacity: 1; }
.form-status.ok { color: #63cac3; }
.form-status.err { color: #f87171; }

/* ── GUARANTEE ROW ── */
.guarantee-row { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 16px; }
.guarantee-item { font-size: 12px; color: var(--off-dim); display: flex; align-items: center; gap: 6px; }
.guarantee-item::before { content: '✓'; color: var(--success); font-weight: 700; }

/* ── SOCIAL LINKS ── */
.social-link {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 999px;
  border: 1px solid var(--border-sub); color: var(--off);
  font-size: 13px; font-weight: 600; transition: all .2s;
}
.social-link:hover { border-color: var(--border); color: var(--white); background: rgba(255,255,255,.04); }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border-sub); padding: 56px 0 32px; color: var(--off-dim);
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 40px; align-items: start; margin-bottom: 36px;
}
.footer-brand p { font-size: 13px; line-height: 1.7; margin-top: 12px; max-width: 26ch; }
.footer-brand-loc { font-size: 11px; margin-top: 10px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.footer-col h5 { font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--white); margin-bottom: 14px; }
.footer-col a { display: block; font-size: 13px; color: var(--off-dim); padding: 4px 0; font-weight: 500; transition: color .15s; }
.footer-col a:hover { color: var(--white); }
.footer-col a.accent { color: var(--gold); font-weight: 700; }
.footer-bottom {
  border-top: 1px solid var(--border-sub); padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between; font-size: 12px; flex-wrap: wrap; gap: 12px;
}
.footer-socials { display: flex; gap: 8px; margin-top: 14px; }
.footer-soc {
  width: 32px; height: 32px; border-radius: 8px; border: 1px solid var(--border-sub);
  display: flex; align-items: center; justify-content: center;
  color: var(--off-dim); font-size: 14px; transition: all .15s;
}
.footer-soc:hover { border-color: var(--border); color: var(--white); background: rgba(255,255,255,.04); }

/* ── MOBILE NAV ── */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: var(--ink); flex-direction: column; padding: 24px; overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.mobile-close { background: none; border: 1px solid var(--border-sub); color: var(--white); border-radius: 8px; padding: 8px 12px; font-size: 18px; }
.mobile-nav a, .m-sect-title {
  display: block; padding: 13px 0; font-size: 18px; font-weight: 600; color: var(--off);
  border-bottom: 1px solid var(--border-sub);
}
.mobile-nav a:hover { color: var(--white); }
.m-sect-title { font-size: 11px !important; font-weight: 700 !important; letter-spacing: .1em; text-transform: uppercase; color: var(--gold) !important; padding-top: 22px !important; border-bottom: none !important; }

/* ── SKIP LINK ── */
.skip-link { position: absolute; left: -9999px; top: 4px; background: var(--gold); color: var(--ink); padding: 8px 16px; border-radius: 8px; font-weight: 700; z-index: 9999; }
.skip-link:focus { left: 4px; }

/* ── UTILITIES ── */
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 36px; }
.text-gold { color: var(--gold); }
.text-off  { color: var(--off); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow { animation: fadeUp .65s .05s ease both; }
.hero h1      { animation: fadeUp .65s .15s ease both; }
.hero-sub     { animation: fadeUp .65s .25s ease both; }
.hero-actions { animation: fadeUp .65s .35s ease both; }
.hero-trust   { animation: fadeUp .65s .42s ease both; }
.hero-stats   { animation: fadeUp .65s .45s ease both; }
.hero-panel   { animation: fadeUp .7s  .4s  ease both; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .svc-card-wide { grid-column: 1/-1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .testi-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 768px) {
  .wrap, .wrap-s { padding: 0 20px; }
  nav { display: none; }
  .ham { display: flex; }
  .hdr-actions .pill-btn { display: none; }
  .hero { min-height: auto; padding: 60px 0 40px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-geo, .hero-panel { display: none; }
  .hero-stats { gap: 20px; }
  .section { padding: 60px 0; }
  .rea-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .svc-card-wide { flex-direction: column; gap: 16px; }
  .why-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { grid-template-columns: 1fr; gap: 36px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: 1; }
  .results-grid { grid-template-columns: repeat(3, 1fr); }
  .ch-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; }
  .process-step + .process-step { border-left: none; border-top: 1px solid var(--border-sub); }
  .trust-item { padding: 6px 14px; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { flex-direction: column; gap: 12px; }
  .h-stat-div { display: none; }
}

/* ── Compatibility classes (old design system → new) ─────────────────────── */
.display-lg { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.1; letter-spacing: -.02em; color: var(--white); }
.display-md { font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 2.2rem); font-weight: 700; line-height: 1.2; letter-spacing: -.015em; color: var(--white); }
.display-sm { font-family: var(--font-display); font-size: clamp(1.1rem, 2vw, 1.6rem); font-weight: 700; line-height: 1.3; color: var(--white); }
.eyebrow    { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 12px; }
.italic-accent { font-style: italic; color: var(--gold); }
.tag        { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; padding: 4px 10px; border-radius: 20px; border: 1px solid rgba(201,169,110,.3); color: var(--gold); background: rgba(201,169,110,.06); }
.arrow      { display: inline-block; transition: transform .2s; }
a:hover .arrow, button:hover .arrow { transform: translateX(4px); }
.hero-stat-num   { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; color: var(--gold); display: block; line-height: 1; }
.hero-stat-label { font-size: 12px; color: var(--off-dim); text-transform: uppercase; letter-spacing: .06em; margin-top: 4px; display: block; }
/* mt-2 / mt-4 helpers */
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.text-muted { color: var(--off-dim); }
/* btn compat */
.btn.btn-primary  { background: var(--gold); color: #000; border: none; padding: 12px 24px; border-radius: var(--radius); font-weight: 700; font-size: 14px; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; text-decoration: none; transition: opacity .2s; }
.btn.btn-primary:hover { opacity: .88; }
.btn.btn-ghost    { background: transparent; color: var(--white); border: 1px solid var(--border); padding: 12px 24px; border-radius: var(--radius); font-weight: 600; font-size: 14px; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; text-decoration: none; transition: border-color .2s; }
.btn.btn-ghost:hover { border-color: var(--gold); }
.btn-lg { padding: 16px 32px !important; font-size: 16px !important; }

/* ── Local SEO page compat classes ───────────────────────────────────────── */
.container-md { max-width: 900px; margin: 0 auto; padding: 0 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media(max-width:768px){ .grid-3 { grid-template-columns: 1fr; } }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.card-icon { font-size: 2rem; margin-bottom: 12px; }
.hero-cta  { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.hero-media { display: flex; align-items: center; justify-content: center; }
.cta       { background: var(--surface); border-top: 1px solid var(--border); padding: 64px 0; text-align: center; }
.cta-btns  { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }
/* services page compat */
.svc-wide-body { max-width: 1100px; margin: 0 auto; }
