/* =====================================================================
   Covered By Greco — site stylesheet
   ===================================================================== */

:root {
  --bg: #0a0a0b;
  --bg-soft: #111113;
  --surface: #141416;
  --surface-2: #1b1b1f;
  --border: rgba(246, 170, 0, 0.14);
  --border-strong: rgba(246, 170, 0, 0.32);
  --border-cool: rgba(255, 255, 255, 0.06);
  --text: #f4f4f5;
  --text-muted: #a0a0a8;
  --text-dim: #66666e;
  --gold: #F6AA00;
  --gold-2: #ffc24a;
  --gold-soft: rgba(246, 170, 0, 0.10);
  --gold-glow: rgba(246, 170, 0, 0.18);
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --shadow-gold: 0 8px 40px -8px rgba(246, 170, 0, 0.35);
  --shadow-lift: 0 30px 80px -30px rgba(0, 0, 0, 0.8);
  --max-w: 1320px;
  --max-w-narrow: 980px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img, svg { display: block; max-width: 100%; }

.serif { font-family: 'Lora', Georgia, serif; font-weight: 600; letter-spacing: -0.01em; }

/* ============ background atmosphere ============ */
body::before {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(circle at 15% 5%, rgba(246, 170, 0, 0.10), transparent 35%),
    radial-gradient(circle at 85% 25%, rgba(246, 170, 0, 0.05), transparent 40%),
    radial-gradient(circle at 50% 100%, rgba(246, 170, 0, 0.04), transparent 50%);
}

/* ============ announcement bar ============ */
.announce {
  background: var(--gold);
  color: #0a0a0b;
  text-align: center;
  padding: 9px 20px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
  position: relative; z-index: 110;
}
.announce a { text-decoration: underline; margin-left: 4px; }

/* ============ nav ============ */
nav.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 10, 11, 0.78);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-cool);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 16px 32px;
  display: flex; align-items: center; gap: 36px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 17px;
  letter-spacing: -0.01em;
}
.logo-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  background: var(--gold); color: #0a0a0b;
  border-radius: 8px;
  font-weight: 900; font-size: 22px; line-height: 1;
}
.nav-links { display: flex; gap: 28px; flex: 1; justify-content: center; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-muted);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); border-color: var(--gold); }
.nav-actions { display: flex; align-items: center; gap: 12px; }

.btn-icon {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--border-cool);
  display: inline-flex; align-items: center; justify-content: center;
  transition: border-color 0.15s, background 0.15s;
}
.btn-icon:hover { border-color: var(--gold); background: var(--gold-soft); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 999px;
  font-weight: 600; font-size: 14px;
  transition: transform 0.12s, box-shadow 0.15s, background 0.15s;
}
.btn-gold { background: var(--gold); color: #0a0a0b; }
.btn-gold:hover { background: var(--gold-2); transform: translateY(-1px); box-shadow: var(--shadow-gold); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--border-strong); }
.btn-ghost:hover { background: var(--gold-soft); border-color: var(--gold); }
.btn-lg { padding: 16px 32px; font-size: 15px; }

/* ============ layout ============ */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; position: relative; z-index: 1; }
.container-narrow { max-width: var(--max-w-narrow); margin: 0 auto; padding: 0 32px; position: relative; z-index: 1; }
section { padding: 110px 0; position: relative; }
section.compact { padding: 70px 0; }
@media (max-width: 700px) {
  section { padding: 70px 0; }
  section.compact { padding: 50px 0; }
  .container, .container-narrow { padding: 0 22px; }
}

.section-head { text-align: center; margin-bottom: 64px; }
.section-head.left { text-align: left; }
.section-label {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.section-head h2 {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(32px, 4.6vw, 52px);
  line-height: 1.12;
  font-weight: 600;
  max-width: 760px;
  margin: 0 auto 18px;
  letter-spacing: -0.02em;
}
.section-head.left h2 { margin-left: 0; margin-right: 0; }
.section-head p {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 620px;
  margin: 0 auto;
}
.section-head.left p { margin: 0; }

/* sparkle divider */
.sparkle {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin: 0 auto 42px;
  max-width: 320px;
  color: var(--gold);
}
.sparkle::before, .sparkle::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
}
.sparkle svg { width: 18px; height: 18px; }

/* ============ HERO (split) ============ */
.hero {
  padding: 80px 0 100px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero { padding: 50px 0 70px; }
}
.hero-left .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px;
  background: var(--gold-soft);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero-left .eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 12px var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.hero-left h1 {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(40px, 5.6vw, 72px);
  line-height: 1.04;
  font-weight: 600;
  margin-bottom: 26px;
  letter-spacing: -0.025em;
}
.hero-left h1 .accent { color: var(--gold); font-style: italic; }
.hero-left .sub {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 560px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust-list {
  display: grid; grid-template-columns: 1fr; gap: 14px;
  padding-top: 32px;
  border-top: 1px solid var(--border-cool);
  max-width: 520px;
}
.hero-trust-list .item {
  display: flex; align-items: center; gap: 14px;
  font-size: 14.5px; color: var(--text);
}
.hero-trust-list .item .check {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--gold-soft); border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-weight: 800; font-size: 13px; flex-shrink: 0;
}
.hero-trust-list .item strong { color: var(--gold); font-weight: 600; }

/* ============ hero photo (right side of split hero) ============ */
.hero-photo-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 540px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: visible;
}
.hero-photo-wrap::before {
  content: ''; position: absolute;
  inset: -50px;
  background: radial-gradient(circle at 50% 35%, var(--gold-glow), transparent 65%);
  filter: blur(50px);
  z-index: -1;
  opacity: 1;
}
/* small "+" mark in the bottom-right corner — tucked, not competing */
.hero-photo-wrap::after {
  content: '+'; position: absolute;
  bottom: 18px; right: 18px;
  width: 46px; height: 46px;
  background: var(--gold); color: #0a0a0b;
  border-radius: 50%;
  font-family: 'Lora', serif; font-size: 30px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-gold);
  z-index: 3;
}
.hero-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 18%; /* keep head in frame, crop body */
  border-radius: 24px;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-lift);
  display: block;
  /* gentle bottom fade only — leaves the head clean, flows out at the bottom */
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 78%, transparent 100%);
          mask-image: linear-gradient(180deg, #000 0%, #000 78%, transparent 100%);
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg-soft) 100%);
}
.hero-photo-fallback {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
  color: var(--text-dim); font-family: 'Lora', serif;
  text-align: center; padding: 30px;
  z-index: 0;
}
.hero-photo-fallback .big {
  font-size: 140px; color: var(--gold); opacity: 0.5; line-height: 1;
}
.hero-photo-fallback .small {
  font-size: 14px; color: var(--text-muted); max-width: 240px;
}
.hero-badge {
  position: absolute;
  display: flex; align-items: center; gap: 8px;
  background: rgba(20, 20, 22, 0.85);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 12px; font-weight: 600;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 30px -10px rgba(0,0,0,0.6);
  z-index: 4;
}
.hero-badge.rating { bottom: 60px; left: -16px; }
.hero-badge.licensed { top: 28px; left: -16px; }
.hero-badge .stars { color: var(--gold); letter-spacing: 1px; font-size: 10px; }
.hero-badge .num-big { font-family: 'Lora', serif; font-size: 15px; font-weight: 700; color: var(--gold); line-height: 1; }
.hero-badge .label-tiny { font-size: 10px; color: var(--text-muted); line-height: 1.2; margin-top: 2px; }
@media (max-width: 1000px) {
  .hero-photo-wrap { max-width: 420px; }
  .hero-badge.rating { left: 8px; }
  .hero-badge.licensed { left: 8px; }
}

/* ============ US licensed states map ============ */
.map-wrap {
  display: grid; grid-template-columns: 1.6fr 1fr; gap: 50px; align-items: center;
}
@media (max-width: 1000px) { .map-wrap { grid-template-columns: 1fr; gap: 30px; } }
.map-frame {
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg-soft) 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: relative;
  box-shadow: var(--shadow-lift);
}
.us-map { width: 100%; min-height: 380px; display: flex; align-items: center; justify-content: center; color: var(--text-dim); font-size: 14px; }
.us-map svg { width: 100%; height: auto; display: block; }
/* Geographic map paths */
.us-map svg path {
  fill: var(--surface-2);
  stroke: rgba(255,255,255,0.10);
  stroke-width: 0.6;
  transition: fill 0.2s, stroke 0.2s, filter 0.15s;
  cursor: pointer;
}
.us-map svg path.licensed {
  fill: var(--gold);
  stroke: rgba(0,0,0,0.4);
}
.us-map svg path:hover {
  stroke: var(--gold-2);
  stroke-width: 1.5;
  filter: brightness(1.15);
}
.us-map svg path.licensed:hover {
  fill: var(--gold-2);
}
/* State abbreviation labels (size is in SVG user units, viewBox is 1028 wide) */
.us-map svg text.state-abbr {
  fill: rgba(255,255,255,0.55);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-anchor: middle;
  dominant-baseline: middle;
  pointer-events: none;
  text-transform: uppercase;
  paint-order: stroke;
  stroke: rgba(0,0,0,0.25);
  stroke-width: 0.5;
}
.us-map svg text.state-abbr.licensed {
  fill: #0a0a0b;
}
/* Small states get a smaller label to fit */
.us-map svg text.state-abbr.small {
  font-size: 9px;
}
.map-legend { display: flex; gap: 20px; margin-top: 18px; align-items: center; justify-content: center; font-size: 12px; color: var(--text-muted); flex-wrap: wrap; }
.map-legend-swatch { display: inline-block; width: 14px; height: 14px; border-radius: 3px; vertical-align: middle; margin-right: 6px; border: 1px solid var(--border-cool); }
.map-legend-swatch.licensed { background: var(--gold); border-color: var(--gold-2); }
.map-legend-swatch.not { background: var(--surface-2); }
.map-stats { display: flex; flex-direction: column; gap: 16px; }
.map-stat-card {
  background: var(--surface); border: 1px solid var(--border-cool); border-radius: var(--radius);
  padding: 22px 24px;
  display: flex; align-items: flex-start; gap: 16px;
  transition: border-color 0.2s;
}
.map-stat-card:hover { border-color: var(--border-strong); }
.map-stat-ico {
  width: 44px; height: 44px; border-radius: 11px;
  background: var(--gold-soft); border: 1px solid var(--border-strong);
  color: var(--gold); display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800; flex-shrink: 0;
}
.map-stat-card .big { font-family: 'Lora', serif; font-size: 30px; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 4px; letter-spacing: -0.02em; }
.map-stat-card .label-up { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; }
.map-stat-card .desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* tooltip for hover */
.state-tooltip {
  position: fixed; pointer-events: none; z-index: 50;
  background: rgba(20,20,22,0.96); border: 1px solid var(--border-strong);
  border-radius: 10px; padding: 10px 14px;
  font-size: 13px; font-weight: 600; color: var(--text);
  white-space: nowrap;
  transform: translate(-50%, 0);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  opacity: 0; transition: opacity 0.15s;
  box-shadow: 0 12px 40px -10px rgba(0,0,0,0.7);
  max-width: 340px;
}
.state-tooltip.visible { opacity: 1; }
.state-tooltip .small { font-weight: 500; color: var(--gold); font-size: 11px; margin-top: 2px; letter-spacing: 0.3px; }
.state-tooltip.with-image {
  padding: 14px;
  white-space: normal;
  width: 320px;
}
.state-tooltip.with-image .tip-head { display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: 10px; }
.state-tooltip.with-image img {
  width: 100%; height: auto; display: block;
  border-radius: 6px;
  border: 1px solid var(--border-cool);
  background: #fff;
}

/* ============ Calendly embed ============ */
.calendly-section { background: var(--bg-soft); }
.calendly-wrap {
  background: var(--surface); border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg); padding: 12px;
  box-shadow: var(--shadow-lift); overflow: hidden;
}
.calendly-inline-widget { min-width: 320px; height: 720px; }
@media (max-width: 700px) { .calendly-inline-widget { height: 1100px; } }

/* ============ about block on homepage ============ */
.about-block {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
@media (max-width: 900px) { .about-block { grid-template-columns: 1fr; gap: 40px; } }
.about-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 440px;
  margin: 0 auto;
}
.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(180deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.about-photo::before {
  content: ''; position: absolute; inset: -30px;
  background: radial-gradient(circle at 70% 30%, var(--gold-glow), transparent 60%);
  filter: blur(40px); z-index: -1;
}
.about-photo-fallback {
  position: absolute; inset: 0; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg-soft) 100%);
  border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
  color: var(--text-dim); font-family: 'Lora', serif;
  text-align: center; padding: 30px;
}
.about-photo-fallback .big {
  font-size: 140px; color: var(--gold); opacity: 0.5; line-height: 1;
}
.about-signature {
  font-family: 'Lora', serif;
  font-size: 24px;
  font-style: italic;
  color: var(--gold);
  margin-top: 24px;
}

/* ============ stats band (full-bleed) ============ */
.stats-band {
  background: linear-gradient(180deg, var(--bg-soft), var(--bg));
  border-top: 1px solid var(--border-cool);
  border-bottom: 1px solid var(--border-cool);
  padding: 50px 0;
}
.stats-band .container {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
@media (max-width: 800px) { .stats-band .container { grid-template-columns: repeat(2, 1fr); } }
.stat-cell {
  text-align: center;
  padding: 20px 16px;
  border-right: 1px solid var(--border-cool);
}
.stat-cell:last-child { border-right: none; }
@media (max-width: 800px) {
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(-n+2) { border-bottom: 1px solid var(--border-cool); padding-bottom: 30px; }
  .stat-cell:nth-child(n+3) { padding-top: 30px; }
}
.stat-cell .num {
  font-family: 'Lora', serif;
  font-size: 56px; font-weight: 700; color: var(--gold);
  line-height: 1; letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.stat-cell .label {
  margin-top: 12px;
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-muted);
}

/* ============ carrier wall ============ */
.carriers {
  padding: 70px 0;
  background: var(--bg-soft);
}
.carriers-label {
  text-align: center;
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 36px;
}
.carrier-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 0;
  border-top: 1px solid var(--border-cool);
  border-left: 1px solid var(--border-cool);
  max-width: var(--max-w); margin: 0 auto;
}
@media (max-width: 900px) { .carrier-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 500px) { .carrier-grid { grid-template-columns: repeat(2, 1fr); } }
.carrier {
  padding: 30px 16px; text-align: center;
  border-right: 1px solid var(--border-cool);
  border-bottom: 1px solid var(--border-cool);
  font-family: 'Lora', serif; font-size: 14px; font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s, background 0.2s;
}
.carrier:hover { color: var(--gold); background: var(--gold-soft); }

/* ============ how it works (timeline horizontal) ============ */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  position: relative;
}
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }
.steps::before {
  content: ''; position: absolute;
  top: 70px; left: 16.66%; right: 16.66%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), var(--gold), var(--gold-soft), transparent);
  z-index: 0;
}
@media (max-width: 900px) { .steps::before { display: none; } }
.step {
  padding: 30px 26px;
  position: relative; z-index: 1;
  text-align: center;
}
.step-circle {
  width: 96px; height: 96px; border-radius: 50%;
  margin: 0 auto 24px;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  box-shadow: 0 0 0 8px var(--bg), 0 12px 40px -8px rgba(246, 170, 0, 0.3);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative;
}
.step-circle .ico {
  font-size: 26px; color: var(--gold);
  font-weight: 700;
}
.step-circle .num {
  position: absolute; top: -6px; right: -6px;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gold); color: #0a0a0b;
  font-size: 12px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.step h3 { font-family: 'Lora', serif; font-size: 22px; font-weight: 600; margin-bottom: 10px; }
.step p { color: var(--text-muted); font-size: 15px; line-height: 1.7; max-width: 280px; margin: 0 auto; }

/* ============ coverage / split layouts ============ */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center;
  margin-bottom: 100px;
}
.split:last-child { margin-bottom: 0; }
.split.reverse > :first-child { order: 2; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 40px; margin-bottom: 70px; }
  .split.reverse > :first-child { order: 0; }
}
.split-text h3 {
  font-family: 'Lora', serif;
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.18; font-weight: 600; margin-bottom: 18px; letter-spacing: -0.015em;
}
.split-text .label {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.split-text p {
  color: var(--text-muted); font-size: 16px; line-height: 1.75; margin-bottom: 18px;
}
.feature-list { list-style: none; padding: 0; margin: 24px 0; }
.feature-list li {
  font-size: 15px; color: var(--text); padding: 9px 0 9px 32px;
  position: relative; line-height: 1.55;
}
.feature-list li::before {
  content: '+'; position: absolute; left: 0; top: 7px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold-soft); border: 1px solid var(--border-strong);
  color: var(--gold); font-weight: 800; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}

/* visual side of a split */
.split-visual {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg-soft) 100%);
  border: 1px solid var(--border-strong);
  padding: 40px;
  min-height: 360px;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
}
.split-visual::before {
  content: ''; position: absolute; top: -50%; right: -30%;
  width: 80%; height: 200%;
  background: radial-gradient(circle, var(--gold-glow), transparent 60%);
  pointer-events: none;
}
.split-visual-content { position: relative; z-index: 1; }
.split-visual-mark {
  font-family: 'Lora', serif; font-weight: 700; color: var(--gold);
  font-size: 140px; line-height: 1; margin-bottom: 10px; letter-spacing: -0.04em;
  opacity: 0.85;
}
.split-visual-headline {
  font-family: 'Lora', serif; font-size: 26px; font-weight: 600;
  margin-bottom: 8px;
}
.split-visual-sub { color: var(--text-muted); font-size: 14px; }

/* ============ value props ============ */
.values {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
@media (max-width: 1000px) { .values { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .values { grid-template-columns: 1fr; } }
.value {
  background: var(--surface);
  border: 1px solid var(--border-cool);
  border-radius: var(--radius);
  padding: 30px 26px;
}
.value-ico {
  width: 46px; height: 46px; border-radius: 12px;
  background: linear-gradient(135deg, var(--gold) 0%, #d99000 100%);
  color: #0a0a0b;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 800;
  margin-bottom: 22px;
}
.value h3 { font-family: 'Lora', serif; font-size: 19px; font-weight: 600; margin-bottom: 8px; }
.value p { color: var(--text-muted); font-size: 14.5px; line-height: 1.7; }

/* ============ comparison table ============ */
.compare-wrap {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
}
.compare {
  width: 100%;
  border-collapse: collapse;
}
.compare th, .compare td {
  padding: 22px 28px;
  text-align: left;
  border-bottom: 1px solid var(--border-cool);
  font-size: 15px;
}
.compare tr:last-child th, .compare tr:last-child td { border-bottom: none; }
.compare th {
  font-weight: 600; color: var(--text-muted);
  font-size: 13px; letter-spacing: 0.3px;
  background: var(--bg-soft);
}
.compare th.head-them, .compare th.head-us {
  text-align: center; font-family: 'Lora', serif; font-size: 18px;
  font-weight: 700; color: var(--text); padding: 28px 16px;
}
.compare th.head-us { color: var(--gold); background: var(--surface-2); border-bottom: 2px solid var(--gold); }
.compare td.cell-them, .compare td.cell-us { text-align: center; }
.compare td.cell-us { background: rgba(246, 170, 0, 0.04); color: var(--text); font-weight: 500; }
.compare td.cell-them { color: var(--text-dim); }
.compare .x { color: #ef4444; font-weight: 700; }
.compare .v { color: var(--gold); font-weight: 700; }
@media (max-width: 700px) {
  .compare th, .compare td { padding: 14px 12px; font-size: 13.5px; }
}

/* ============ calculator inline ============ */
.calc-section { background: var(--bg-soft); }
.calc {
  max-width: 760px; margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-lift), 0 0 0 1px var(--border) inset;
}
@media (max-width: 700px) { .calc { padding: 28px 22px; } }
.calc-title { text-align: center; font-family: 'Lora', serif; font-size: 28px; font-weight: 600; margin-bottom: 8px; }
.calc-sub { text-align: center; color: var(--text-muted); font-size: 14px; margin-bottom: 32px; }
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 22px; }
@media (max-width: 600px) { .calc-grid { grid-template-columns: 1fr; } }
.calc-field { display: flex; flex-direction: column; gap: 8px; }
.calc-field label {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-muted);
}
.calc-input {
  background: var(--bg);
  border: 1px solid var(--border-cool);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 16px; font-weight: 500; color: var(--text);
  font-family: inherit;
  transition: border-color 0.15s;
}
.calc-input:focus { outline: none; border-color: var(--gold); }
.calc-toggle {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  background: var(--bg); border: 1px solid var(--border-cool); border-radius: var(--radius-sm);
  padding: 4px;
}
.calc-toggle button {
  padding: 11px; border-radius: 7px; font-weight: 600; font-size: 14px;
  color: var(--text-muted); transition: background 0.15s, color 0.15s;
}
.calc-toggle button.active {
  background: var(--gold-soft); color: var(--gold);
  box-shadow: inset 0 0 0 1px var(--border-strong);
}
.counter {
  background: var(--bg); border: 1px solid var(--border-cool); border-radius: var(--radius-sm);
  padding: 6px; display: flex; align-items: center; justify-content: space-between;
}
.counter button {
  width: 38px; height: 38px; border-radius: 7px;
  background: var(--surface-2); color: var(--text);
  font-size: 18px; font-weight: 700;
  transition: background 0.15s;
}
.counter button:hover { background: var(--gold-soft); color: var(--gold); }
.counter .count { font-size: 18px; font-weight: 700; color: var(--text); }

.calc-btn {
  width: 100%; padding: 18px;
  background: var(--gold); color: #0a0a0b;
  border-radius: var(--radius-sm);
  font-size: 16px; font-weight: 700;
  transition: background 0.15s, transform 0.12s, box-shadow 0.15s;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 8px;
}
.calc-btn:hover { background: var(--gold-2); transform: translateY(-1px); box-shadow: var(--shadow-gold); }
.calc-disclaimer { text-align: center; font-size: 12px; color: var(--text-dim); margin-top: 14px; }

.calc-results { display: none; margin-top: 28px; }
.calc-results.active { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.result-card {
  background: var(--bg);
  border: 1px solid var(--border-cool);
  border-radius: var(--radius-sm);
  padding: 22px 24px;
  margin-bottom: 12px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  flex-wrap: wrap;
}
.result-card.gold { border-color: var(--border-strong); background: var(--gold-soft); }
.result-label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.result-name { font-family: 'Lora', serif; font-size: 18px; font-weight: 600; }
.result-range { font-family: 'Lora', serif; font-size: 26px; font-weight: 700; color: var(--gold); }
.result-cta {
  margin-top: 20px; text-align: center;
  padding: 22px; background: var(--bg); border-radius: var(--radius-sm); border: 1px dashed var(--border-strong);
}
.result-cta p { color: var(--text-muted); margin-bottom: 14px; font-size: 14px; }

/* ============ reviews ============ */
.rating-hero {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  margin-bottom: 36px;
  display: grid; grid-template-columns: auto 1fr auto; gap: 40px; align-items: center;
}
@media (max-width: 800px) {
  .rating-hero { grid-template-columns: 1fr; gap: 24px; padding: 28px 22px; text-align: center; }
}
.rating-big {
  font-family: 'Lora', serif; font-size: 88px; font-weight: 700;
  color: var(--gold); line-height: 1; letter-spacing: -0.03em;
}
.rating-big-stars { font-size: 18px; color: var(--gold); letter-spacing: 4px; margin-top: 8px; }
.rating-big-count {
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-muted); margin-top: 10px;
}
.rating-bars { display: flex; flex-direction: column; gap: 8px; min-width: 200px; }
.rating-bar-row { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--text-muted); }
.rating-bar-row .label { width: 12px; text-align: right; font-weight: 600; }
.rating-bar-track { flex: 1; height: 6px; background: var(--bg); border-radius: 999px; overflow: hidden; }
.rating-bar-fill { height: 100%; background: var(--gold); border-radius: 999px; }
.rating-cta { display: flex; flex-direction: column; gap: 10px; }
.rating-cta a { white-space: nowrap; }

.keyword-chips {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 48px; justify-content: center;
}
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  background: var(--surface); border: 1px solid var(--border-cool);
  border-radius: 999px;
  font-size: 13px; font-weight: 500; color: var(--text);
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.chip:hover { border-color: var(--border-strong); color: var(--gold); background: var(--gold-soft); }
.chip .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 999px;
  background: var(--gold); color: #0a0a0b;
  font-size: 11px; font-weight: 800;
}

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 1000px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { .reviews-grid { grid-template-columns: 1fr; } }
.review {
  background: var(--surface);
  border: 1px solid var(--border-cool);
  border-radius: var(--radius);
  padding: 26px;
  display: flex; flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.review:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; color: #0a0a0b;
  flex-shrink: 0;
}
.review-name-row { flex: 1; min-width: 0; }
.review-name { font-weight: 600; font-size: 14.5px; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.review-guide {
  display: inline-flex; align-items: center; gap: 3px;
  background: var(--gold-soft); color: var(--gold);
  font-size: 9px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
  padding: 2px 7px; border-radius: 999px;
}
.review-meta { font-size: 12px; color: var(--text-dim); }
.review-stars { color: var(--gold); font-size: 12px; letter-spacing: 2px; margin-bottom: 12px; }
.review-text { font-size: 14px; color: var(--text); line-height: 1.65; flex: 1; }
.review-footer {
  margin-top: 14px; padding-top: 14px;
  border-top: 1px solid var(--border-cool);
  font-size: 11px; color: var(--text-dim);
}
.review-footer .gicon { display: inline-flex; align-items: center; gap: 6px; color: var(--text-muted); font-weight: 600; }
.review-footer .gicon::before {
  content: 'G'; display: inline-flex; align-items: center; justify-content: center;
  width: 16px; height: 16px; border-radius: 50%; background: var(--gold); color: #0a0a0b;
  font-size: 10px; font-weight: 800; font-family: 'Lora', serif;
}
.reviews-more { margin-top: 36px; text-align: center; }

.av-1 { background: linear-gradient(135deg, #F6AA00, #d99000); }
.av-2 { background: linear-gradient(135deg, #ff7a3c, #d63b1f); }
.av-3 { background: linear-gradient(135deg, #6fc275, #2d8b4f); }
.av-4 { background: linear-gradient(135deg, #5da3f3, #2867c4); }
.av-5 { background: linear-gradient(135deg, #b885f3, #6a3bc4); }
.av-6 { background: linear-gradient(135deg, #f487b3, #c43b7a); }
.av-7 { background: linear-gradient(135deg, #f3c95d, #c48d2b); }
.av-8 { background: linear-gradient(135deg, #5dd3c3, #2b9388); }

/* ============ FAQ ============ */
.faq { max-width: 880px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-cool); padding: 6px 0; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-size: 17px; font-weight: 500; color: var(--text);
  transition: color 0.15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold); }
.faq-item summary::after {
  content: '+'; font-size: 28px; color: var(--gold); font-weight: 300;
  transition: transform 0.2s; flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 0 24px; color: var(--text-muted); font-size: 15px; line-height: 1.75; }

/* ============ final CTA ============ */
.final-cta {
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg-soft) 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 80px 60px;
  text-align: center;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, var(--gold-glow), transparent 60%);
  pointer-events: none;
}
.final-cta > * { position: relative; z-index: 1; }
.final-cta h2 {
  font-family: 'Lora', serif; font-size: clamp(30px, 4.6vw, 52px);
  font-weight: 600; line-height: 1.18; margin-bottom: 18px; letter-spacing: -0.02em;
}
.final-cta p { color: var(--text-muted); font-size: 17px; max-width: 580px; margin: 0 auto 32px; }

/* ============ footer ============ */
footer.site-footer {
  border-top: 1px solid var(--border-cool);
  padding: 70px 0 30px;
  background: var(--bg);
  position: relative; z-index: 1;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { font-size: 14px; color: var(--text-muted); line-height: 1.75; margin-top: 18px; max-width: 360px; }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col a, .footer-col p { display: block; font-size: 14px; color: var(--text-muted); padding: 5px 0; transition: color 0.15s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border-cool);
  padding-top: 24px;
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  font-size: 12px; color: var(--text-dim);
}
.footer-disclaimer {
  background: var(--surface); border: 1px solid var(--border-cool); border-radius: var(--radius-sm);
  padding: 22px; margin-bottom: 30px;
  font-size: 12px; color: var(--text-dim); line-height: 1.7;
}

/* ============ floating CTA ============ */
.float-cta {
  position: fixed; bottom: 28px; right: 28px;
  background: var(--gold); color: #0a0a0b;
  padding: 14px 24px; border-radius: 999px;
  font-weight: 700; font-size: 14px;
  box-shadow: var(--shadow-gold);
  z-index: 90;
  transition: transform 0.15s, box-shadow 0.15s;
  display: flex; align-items: center; gap: 8px;
}
.float-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 50px -10px rgba(246, 170, 0, 0.55); }
@media (max-width: 700px) { .float-cta { bottom: 18px; right: 18px; padding: 12px 18px; font-size: 13px; } }

/* ============ inner page banner (used on about/faq/contact) ============ */
.page-hero {
  padding: 80px 0 60px;
  text-align: center;
  border-bottom: 1px solid var(--border-cool);
  background: radial-gradient(circle at 50% 0%, var(--gold-glow), transparent 50%);
}
.page-hero .label {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.page-hero h1 {
  font-family: 'Lora', serif; font-size: clamp(36px, 5vw, 60px);
  font-weight: 600; line-height: 1.1; letter-spacing: -0.02em;
  max-width: 760px; margin: 0 auto 16px;
}
.page-hero p { color: var(--text-muted); font-size: 17px; max-width: 580px; margin: 0 auto; }

/* mobile nav hide */
@media (max-width: 900px) { .nav-links { display: none; } }
