/* ===========================
   Gold Buying Experts. Funnel
   =========================== */

:root {
  --ink: #0e121c;
  --ink-2: #141a28;
  --ink-3: #1c2335;
  --line: rgba(232, 201, 124, 0.16);
  --line-strong: rgba(232, 201, 124, 0.3);
  --cream: #f6f1e7;
  --cream-2: #ece4d2;
  --cream-3: #d9cdb2;
  --muted: #8d8a82;
  --muted-dark: #6b6b6b;
  --gold: #c9a24b;
  --gold-2: #e8c97c;
  --gold-3: #a4822f;
  --amber: #e6a23c;
  --green: #3f9d70;
  --red: #c2453a;
  --shadow-card: 0 30px 60px -20px rgba(0, 0, 0, 0.5), 0 8px 24px -8px rgba(0, 0, 0, 0.4);

  --serif: "Cormorant Garamond", "Cormorant", Georgia, serif;
  --sans: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  max-width: 100%;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

img { display: block; max-width: 100%; }

/* ---------- Typography ---------- */
.h-display {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.01em;
  font-feature-settings: "ss01";
}
.h-display em {
  font-style: italic;
  color: var(--gold-2);
  font-weight: 500;
}
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
}
.mono { font-family: var(--mono); font-variant-numeric: tabular-nums; }
.tabular { font-variant-numeric: tabular-nums; }

/* ---------- Layout ---------- */
.container {
  width: min(1240px, 100% - 48px);
  margin-inline: auto;
}
section { position: relative; }

/* ---------- Urgency / spot price bar ---------- */
.spot-bar {
  background: var(--ink);
  color: var(--cream);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.spot-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 0;
}
.spot-prices { display: flex; gap: 28px; align-items: center; flex-wrap: wrap; }
.spot-price { display: inline-flex; align-items: baseline; gap: 8px; }
.spot-price .label { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.spot-price .value { font-family: var(--mono); font-weight: 600; font-size: 13px; color: var(--cream); }
.spot-price .delta { font-family: var(--mono); font-size: 11px; padding: 1px 6px; border-radius: 3px; }
.spot-price .delta.up { color: var(--green); background: rgba(63,157,112,0.12); }
.spot-price .delta.down { color: #e8806e; background: rgba(194,69,58,0.16); }

.spot-pulse {
  width: 7px; height: 7px; border-radius: 999px; background: var(--green);
  box-shadow: 0 0 0 0 rgba(63,157,112,0.7);
  animation: pulse 1.8s infinite;
  margin-right: 8px;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(63,157,112,0.6); }
  70% { box-shadow: 0 0 0 8px rgba(63,157,112,0); }
  100% { box-shadow: 0 0 0 0 rgba(63,157,112,0); }
}
.spot-right { display: flex; gap: 18px; align-items: center; color: var(--cream-3); font-size: 12px; }
.spot-right .sep { opacity: 0.4; }

/* ---------- Nav ---------- */
.nav {
  background: var(--ink);
  color: var(--cream);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--gold-2), var(--gold-3));
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 22px; color: var(--ink); font-weight: 600;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.2);
}
.brand-text { font-family: var(--serif); font-size: 22px; letter-spacing: 0.01em; }
.brand-text strong { font-weight: 600; }
.nav-trust { display: flex; gap: 22px; align-items: center; font-size: 13px; color: var(--cream-3); }
.nav-trust .item { display: inline-flex; gap: 8px; align-items: center; }
.nav-trust .item svg { color: var(--gold-2); }
.nav-phone { font-family: var(--serif); font-size: 22px; color: var(--cream); letter-spacing: 0.02em; }
.nav-phone small { display:block; font-family: var(--sans); font-size: 10px; letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase; font-weight: 700; margin-bottom: 2px;}

/* ---------- Hero ---------- */
.hero {
  background: var(--ink);
  color: var(--cream);
  padding: 64px 0 96px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: start;
}
.hero-left .eyebrow { color: var(--gold-2); }
.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  margin: 18px 0 22px;
}
.hero h1 em { color: var(--gold-2); font-style: italic; }
.hero h1 .strike { color: var(--muted); text-decoration: line-through; font-style: normal; font-size: 0.7em; opacity: 0.6; margin-right: 8px;}
.hero .sub {
  font-size: 19px;
  color: var(--cream-3);
  max-width: 540px;
  line-height: 1.5;
}
.hero .sub strong { color: var(--cream); font-weight: 600; }

.hero-bullets {
  margin-top: 32px;
  display: grid; gap: 14px;
}
.hero-bullets li {
  display: flex; align-items: flex-start; gap: 12px;
  list-style: none;
  font-size: 16px; color: var(--cream-2);
}
.hero-bullets svg { flex-shrink: 0; color: var(--gold-2); margin-top: 2px; }
.hero-bullets b { color: var(--cream); font-weight: 600; }
.hero-bullets ul, .hero-bullets { padding: 0; margin-block: 32px 0; }

.hero-rating {
  display: flex; gap: 20px; align-items: center;
  margin-top: 40px; padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-rating .stars { color: var(--gold-2); font-size: 18px; letter-spacing: 2px; }
.hero-rating .copy { font-size: 13px; color: var(--cream-3); }
.hero-rating .copy strong { color: var(--cream); font-weight: 600; }
.hero-rating .avatars { display: flex; }
.hero-rating .avatars span {
  width: 30px; height: 30px; border-radius: 50%;
  border: 2px solid var(--ink);
  margin-left: -8px;
  background: linear-gradient(135deg, #d9cdb2, #8a7a52);
  font-size: 11px; display: grid; place-items: center; color: var(--ink); font-weight: 600;
}
.hero-rating .avatars span:first-child { margin-left: 0; }

/* ---------- Form card ---------- */
.form-card {
  background: var(--cream);
  color: var(--ink);
  border-radius: 6px;
  padding: 0;
  position: relative;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.form-card .ribbon {
  background: var(--ink);
  color: var(--gold-2);
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 9px 16px;
  font-weight: 700;
  border-bottom: 1px solid var(--gold-3);
}
.form-card .body { padding: 28px 30px 30px; }
.form-card h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 32px;
  line-height: 1.05;
  margin: 4px 0 6px;
  letter-spacing: -0.01em;
}
.form-card h2 em { font-style: italic; color: var(--gold-3); }
.form-card .form-sub { font-size: 14px; color: var(--muted-dark); margin: 0 0 18px; }

.form-card .scarcity-strip {
  background: rgba(230, 162, 60, 0.1);
  border: 1px solid rgba(230, 162, 60, 0.35);
  color: #8a5a14;
  border-radius: 4px;
  padding: 10px 12px;
  font-size: 13px;
  display: flex; gap: 10px; align-items: center;
  margin-bottom: 16px;
}
.form-card .scarcity-strip svg { color: var(--amber); flex-shrink: 0; }
.form-card .scarcity-strip strong { color: #6b3f00; }

.field { display: grid; gap: 5px; margin-bottom: 12px; }
.field label {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 700; color: var(--ink);
}
.field input {
  border: 1px solid #cfc4ab;
  background: #fffaf0;
  border-radius: 4px;
  padding: 13px 14px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,75,0.15);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.cta-btn {
  width: 100%;
  border: 0;
  background: linear-gradient(180deg, #f0d088, #c9a24b 60%, #a4822f);
  color: #2a1e05;
  font-family: var(--sans);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.02em;
  padding: 17px 16px;
  border-radius: 4px;
  box-shadow: 0 14px 28px -10px rgba(164, 130, 47, 0.55), inset 0 1px 0 rgba(255,255,255,0.45), inset 0 -1px 0 rgba(0,0,0,0.18);
  text-transform: uppercase;
  position: relative;
  transition: transform .08s ease, box-shadow .2s ease;
  margin-top: 6px;
}
.cta-btn:hover { transform: translateY(-1px); box-shadow: 0 18px 34px -10px rgba(164, 130, 47, 0.65), inset 0 1px 0 rgba(255,255,255,0.5), inset 0 -1px 0 rgba(0,0,0,0.2); }
.cta-btn:active { transform: translateY(0); }
.cta-btn .arrow { display: inline-block; margin-left: 6px; transition: transform .15s; }
.cta-btn:hover .arrow { transform: translateX(3px); }

.form-foot {
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted-dark);
  display: flex; gap: 14px; align-items: center; justify-content: center;
}
.form-foot .lock { display: inline-flex; gap: 5px; align-items: center; }
.form-foot svg { color: var(--green); }

.step-dots {
  display: flex; gap: 6px; justify-content: center; margin-top: 12px;
}
.step-dots span {
  width: 24px; height: 4px; border-radius: 2px; background: #d9cdb2;
}
.step-dots span.active { background: var(--gold); }
.step-dots span.done { background: var(--green); }

/* Step 2: photo upload */
.upload-area {
  border: 2px dashed #cfc4ab;
  border-radius: 6px;
  padding: 28px 18px;
  text-align: center;
  background: #fffaf0;
  transition: border-color .15s, background .15s;
  cursor: pointer;
}
.upload-area.drag { border-color: var(--gold); background: #fff5dc; }
.upload-area svg { color: var(--gold); margin: 0 auto 10px; }
.upload-area .big { font-family: var(--serif); font-size: 22px; font-weight: 500; }
.upload-area .small { font-size: 13px; color: var(--muted-dark); margin-top: 4px; }
.upload-area .btn-link { color: var(--gold-3); text-decoration: underline; font-weight: 600; }

.thumb-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 14px;
}
.thumb {
  position: relative; aspect-ratio: 1/1; background: #ece4d2; border-radius: 4px; overflow: hidden;
  border: 1px solid var(--line-strong);
}
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb .badge {
  position: absolute; left: 6px; bottom: 6px;
  background: rgba(14,18,28,0.85); color: var(--cream);
  font-size: 10px; padding: 3px 6px; border-radius: 3px;
  letter-spacing: 0.06em;
}
.thumb .badge.analyzing { background: var(--amber); color: var(--ink); }
.thumb .badge.done { background: var(--green); color: white; }
.thumb .x {
  position: absolute; top: 4px; right: 4px;
  width: 22px; height: 22px; background: rgba(14,18,28,0.7); color: white;
  border-radius: 999px; border: 0; display: grid; place-items: center; font-size: 12px;
}
.identified-list {
  margin-top: 14px;
  background: #fffaf0;
  border: 1px solid #cfc4ab;
  border-radius: 4px;
  padding: 12px 14px;
  font-size: 13px;
}
.identified-list .row {
  display: grid; grid-template-columns: 18px 1fr auto; gap: 10px; padding: 6px 0;
  border-bottom: 1px dashed #cfc4ab;
}
.identified-list .row:last-child { border-bottom: 0; }
.identified-list .row .est { font-family: var(--mono); font-weight: 600; color: var(--gold-3); }
.identified-list .row .check { color: var(--green); }
.identified-list .total {
  display: flex; justify-content: space-between; margin-top: 10px; padding-top: 10px;
  border-top: 2px solid var(--ink); font-weight: 700;
}
.identified-list .total .val { font-family: var(--mono); color: var(--gold-3); font-size: 15px; }

.skip-link {
  background: none; border: 0; color: var(--muted-dark); font-size: 12px;
  text-decoration: underline; text-underline-offset: 3px; padding: 8px; margin-top: 6px;
}

/* Success state */
.success-card { text-align: center; padding: 38px 24px; }
.success-card .icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(63,157,112,0.15); color: var(--green);
  display: grid; place-items: center; margin: 0 auto 16px;
}
.success-card h2 { font-family: var(--serif); font-size: 32px; font-weight: 500; margin: 0 0 6px; }
.success-card p { color: var(--muted-dark); font-size: 14px; margin: 0; }

/* ---------- Sections (cream) ---------- */
.section {
  padding: 96px 0;
  background: var(--cream);
}
.section.alt { background: #efe8d6; }
.section.dark { background: var(--ink); color: var(--cream); }
.section.dark .eyebrow { color: var(--gold-2); }

.section-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.section-head h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 14px 0 12px;
}
.section-head h2 em { font-style: italic; color: var(--gold-3); }
.section.dark .section-head h2 em { color: var(--gold-2); }
.section-head p { font-size: 17px; color: var(--muted-dark); margin: 0; }
.section.dark .section-head p { color: var(--cream-3); }

/* ---------- How it works ---------- */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  position: relative;
}
.step {
  background: var(--cream);
  border: 1px solid #d9cdb2;
  border-radius: 6px;
  padding: 36px 30px 32px;
  position: relative;
}
.section.alt .step { background: #fdfaf1; }
.step .num {
  position: absolute; top: -22px; left: 30px;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--ink); color: var(--gold-2);
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 22px; font-weight: 500;
  border: 4px solid var(--cream);
}
.section.alt .step .num { border-color: #efe8d6; }
.step h3 { font-family: var(--serif); font-weight: 500; font-size: 26px; margin: 10px 0 8px; letter-spacing: -0.01em; }
.step p { color: var(--muted-dark); font-size: 15px; line-height: 1.55; margin: 0; }
.step .step-icon {
  width: 56px; height: 56px; border-radius: 6px;
  background: rgba(201, 162, 75, 0.1);
  display: grid; place-items: center; color: var(--gold-3);
  margin-bottom: 14px;
}

/* ---------- Social proof ---------- */
.proof-grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: stretch;
}
.payout-counter {
  background: var(--ink);
  color: var(--cream);
  border-radius: 6px;
  padding: 44px 38px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
}
.payout-counter::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(900px 240px at 100% -10%, rgba(232,201,124,0.18), transparent 60%),
    radial-gradient(700px 200px at -10% 110%, rgba(201,162,75,0.18), transparent 60%);
  pointer-events: none;
}
.payout-counter .eyebrow { color: var(--gold-2); }
.payout-counter .big-num {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1; letter-spacing: -0.02em;
  color: var(--gold-2);
  margin: 18px 0 4px;
  font-variant-numeric: tabular-nums;
}
.payout-counter .big-label { color: var(--cream-3); font-size: 15px; }
.payout-counter .row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px;
  border-top: 1px solid var(--line); padding-top: 24px;
}
.payout-counter .row .k { font-family: var(--serif); font-size: 32px; color: var(--cream); font-weight: 500; font-variant-numeric: tabular-nums;}
.payout-counter .row .l { font-size: 12px; color: var(--muted); letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; }

.testimonials { display: grid; gap: 16px; }
.testimonial {
  background: var(--cream);
  border: 1px solid #d9cdb2;
  border-radius: 6px;
  padding: 24px 26px;
  position: relative;
}
.section.alt .testimonial { background: #fdfaf1; }
.testimonial .stars { color: var(--gold); font-size: 14px; letter-spacing: 1px; margin-bottom: 8px; }
.testimonial .quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.4;
  margin: 0 0 12px;
  color: var(--ink);
}
.testimonial .who {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px;
  color: var(--muted-dark);
}
.testimonial .who .avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-3));
  display: grid; place-items: center; color: var(--ink);
  font-size: 12px; font-weight: 700;
}
.testimonial .who strong { color: var(--ink); font-weight: 700; }
.testimonial .who .payout {
  margin-left: auto;
  font-family: var(--mono); font-size: 12px;
  color: var(--green);
  background: rgba(63,157,112,0.12);
  padding: 2px 8px; border-radius: 3px;
  font-weight: 600;
}
.testimonial .verified { display:inline-flex; gap: 4px; align-items: center; color: var(--green); font-size: 11px; font-weight: 600;}

/* ---------- Press strip ---------- */
.press-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  background: var(--ink);
}
.press-strip-inner {
  display: flex; justify-content: space-between; align-items: center; gap: 32px;
  flex-wrap: wrap;
  color: var(--cream-3);
}
.press-strip .label {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-2); font-weight: 600;
}
.press-logos { display: flex; gap: 40px; align-items: center; flex: 1; justify-content: space-around; }
.press-logo {
  font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--cream-2); opacity: 0.8;
  letter-spacing: 0.02em;
}
.press-logo.bold { font-family: var(--sans); font-weight: 900; font-style: normal; letter-spacing: 0.08em; }
.press-logo.condensed { font-family: var(--serif); font-weight: 600; font-style: normal; text-transform: uppercase; letter-spacing: 0.18em; font-size: 15px; }

/* ---------- Comparison table ---------- */
.compare {
  background: var(--cream);
  border-radius: 6px;
  border: 1px solid #d9cdb2;
  overflow: hidden;
}
.section.alt .compare { background: #fdfaf1; }
.compare-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  border-bottom: 1px solid #e6dcc1;
}
.compare-row:last-child { border-bottom: 0; }
.compare-row > div {
  padding: 18px 22px;
  font-size: 15px;
  display: flex; align-items: center;
}
.compare-row.head > div {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700;
  background: #ece4d2;
  color: var(--ink);
  padding-top: 22px; padding-bottom: 22px;
}
.compare-row.head > div:nth-child(2) {
  background: var(--ink); color: var(--gold-2);
  font-family: var(--serif); font-size: 19px; font-weight: 500;
  text-transform: none; letter-spacing: 0;
  position: relative;
}
.compare-row.head > div:nth-child(2)::before {
  content: "Best Value"; position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--ink); font-family: var(--sans);
  font-size: 9px; padding: 3px 10px; border-radius: 999px;
  letter-spacing: 0.22em; text-transform: uppercase; font-weight: 800;
}
.compare-row > div:first-child { font-weight: 600; color: var(--ink); }
.compare-row > div:nth-child(2) { background: rgba(201,162,75,0.06); color: var(--ink); font-weight: 600; }
.compare-cell .good { color: var(--green); font-weight: 700; }
.compare-cell .bad { color: var(--red); }
.compare-cell .meh { color: var(--muted-dark); }
.compare-row:hover > div { background: rgba(232,201,124,0.07); }
.compare-row:hover > div:nth-child(2) { background: rgba(201,162,75,0.12); }
.compare-row.head:hover > div { background: #ece4d2; }
.compare-row.head:hover > div:nth-child(2) { background: var(--ink); }

/* ---------- Calculator ---------- */
.calc-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  background: var(--cream);
  border-radius: 6px;
  border: 1px solid #d9cdb2;
  overflow: hidden;
}
.section.alt .calc-grid { background: #fdfaf1; }
.calc-left { padding: 38px 36px; }
.calc-left h3 { font-family: var(--serif); font-size: 30px; font-weight: 500; margin: 6px 0 6px; letter-spacing: -0.01em; }
.calc-left p.sub { color: var(--muted-dark); font-size: 14px; margin: 0 0 22px; }
.calc-row { margin-bottom: 18px; }
.calc-row label { display: block; font-size: 11px; letter-spacing: 0.14em; font-weight: 700; text-transform: uppercase; margin-bottom: 6px;}
.calc-karat { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; }
.calc-karat button {
  padding: 12px 6px;
  border: 1px solid #cfc4ab;
  background: #fffaf0;
  font-weight: 700;
  font-size: 13px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  color: var(--ink);
  transition: all .12s;
}
.calc-karat button.active {
  background: var(--ink); border-color: var(--ink); color: var(--gold-2);
}
.calc-slider input {
  width: 100%;
  appearance: none;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold) var(--p, 30%), #d9cdb2 var(--p, 30%));
  border-radius: 999px;
  outline: none;
}
.calc-slider input::-webkit-slider-thumb {
  appearance: none; width: 22px; height: 22px; background: var(--ink); border: 3px solid var(--gold-2); border-radius: 50%;
  cursor: pointer;
}
.calc-slider input::-moz-range-thumb {
  width: 22px; height: 22px; background: var(--ink); border: 3px solid var(--gold-2); border-radius: 50%;
  cursor: pointer; border: 0;
}
.calc-slider .ticks { display: flex; justify-content: space-between; font-size: 11px; color: var(--muted-dark); margin-top: 6px; font-family: var(--mono);}

.calc-right {
  background: var(--ink);
  color: var(--cream);
  padding: 38px 36px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.calc-right::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(500px 200px at 100% 0%, rgba(232,201,124,0.16), transparent 60%);
  pointer-events: none;
}
.calc-right .eyebrow { color: var(--gold-2); }
.calc-right .estimate {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(48px, 6vw, 82px); line-height: 1;
  color: var(--gold-2); margin: 14px 0 4px; letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.calc-right .range { color: var(--cream-3); font-size: 14px; margin-bottom: 18px; }
.calc-right .range .mono { color: var(--cream); }
.calc-right ul { padding: 0; margin: 0 0 20px; list-style: none; }
.calc-right ul li { display: flex; gap: 8px; align-items: center; font-size: 13px; color: var(--cream-3); padding: 4px 0; }
.calc-right ul li svg { color: var(--gold-2); }
.calc-right .calc-cta {
  background: linear-gradient(180deg, #f0d088, #c9a24b 60%, #a4822f);
  color: #2a1e05;
  border: 0; padding: 14px 16px;
  font-weight: 800; font-size: 15px;
  letter-spacing: 0.04em; text-transform: uppercase;
  border-radius: 4px;
  box-shadow: 0 14px 28px -10px rgba(164, 130, 47, 0.55);
}
.calc-disclaim { font-size: 11px; color: var(--muted); margin-top: 14px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--cream);
  border: 1px solid #d9cdb2;
  border-radius: 6px;
  margin-bottom: 12px;
  overflow: hidden;
}
.section.alt .faq-item { background: #fdfaf1; }
.faq-q {
  width: 100%; text-align: left; background: transparent; border: 0;
  padding: 20px 22px; font-family: var(--sans); font-size: 17px;
  font-weight: 700; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
}
.faq-q .ico { color: var(--gold-3); transition: transform .25s; }
.faq-item.open .faq-q .ico { transform: rotate(45deg); }
.faq-a {
  padding: 0 22px 0 22px;
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .25s;
  font-size: 15px; color: var(--muted-dark); line-height: 1.6;
}
.faq-item.open .faq-a { max-height: 360px; padding-bottom: 22px; }

/* ---------- Final CTA / Footer ---------- */
.final-cta {
  background: var(--ink); color: var(--cream); padding: 80px 0 70px; text-align: center;
  border-top: 1px solid var(--line);
}
.final-cta h2 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(36px, 5vw, 60px); line-height: 1.05; margin: 12px 0 14px;
  letter-spacing: -0.01em;
}
.final-cta h2 em { color: var(--gold-2); font-style: italic; }
.final-cta p { color: var(--cream-3); margin: 0 auto 28px; max-width: 540px; font-size: 17px; }
.final-cta .cta-btn { max-width: 360px; margin: 0 auto; display: block; }

.footer {
  background: #080b14; color: var(--cream-3); padding: 38px 0;
  font-size: 13px;
}
.footer-inner { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer .brand { color: var(--cream); }
.footer .legal { color: var(--muted); max-width: 600px; font-size: 12px; line-height: 1.5; }
.footer a { color: var(--cream-3); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Sticky CTA bar ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0;
  background: var(--ink); color: var(--cream);
  border-top: 1px solid var(--gold-3);
  padding: 12px 0;
  transform: translateY(120%);
  transition: transform .35s ease;
  z-index: 50;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.35);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.sticky-cta .text { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; font-size: 14px; }
.sticky-cta .text .label { font-family: var(--serif); font-size: 22px; color: var(--gold-2); }
.sticky-cta .text .sub { color: var(--cream-3); font-size: 13px;}
.sticky-cta .text .sub b { color: var(--cream); }
.sticky-cta .actions { display: flex; gap: 12px; align-items: center; }
.sticky-cta .ph { font-family: var(--serif); color: var(--cream); font-size: 18px; }
.sticky-cta .ph small { display: block; font-family: var(--sans); font-size: 9px; color: var(--gold-2); letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; margin-bottom: -2px;}
.sticky-cta button.cta {
  background: linear-gradient(180deg, #f0d088, #c9a24b 60%, #a4822f);
  color: #2a1e05; border: 0; padding: 13px 22px;
  font-weight: 800; font-size: 14px; letter-spacing: 0.04em;
  text-transform: uppercase; border-radius: 4px;
  box-shadow: 0 10px 22px -8px rgba(164,130,47,0.55);
}

/* ---------- Exit intent modal ---------- */
.modal-backdrop {
  position: fixed; inset: 0; background: rgba(8,11,20,0.7);
  backdrop-filter: blur(4px);
  display: grid; place-items: center;
  z-index: 100;
  animation: fadein .25s ease;
  padding: 24px;
}
@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideup { from { opacity:0; transform: translateY(20px);} to {opacity:1; transform:translateY(0);} }
.modal {
  background: var(--cream); color: var(--ink);
  border-radius: 8px;
  max-width: 540px; width: 100%;
  overflow: hidden;
  position: relative;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.5);
  animation: slideup .35s ease;
}
.modal .close {
  position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(14,18,28,0.1); color: var(--ink); border: 0; font-size: 18px;
}
.modal .head {
  background: var(--ink); color: var(--cream);
  padding: 32px 36px 28px; text-align: center;
}
.modal .head .eyebrow { color: var(--gold-2); }
.modal .head h3 {
  font-family: var(--serif); font-weight: 500;
  font-size: 38px; line-height: 1.05; margin: 12px 0 8px;
  letter-spacing: -0.01em;
}
.modal .head h3 em { color: var(--gold-2); font-style: italic; }
.modal .head p { color: var(--cream-3); margin: 0; font-size: 15px; }
.modal .body { padding: 28px 36px 30px; }
.modal .body ul { padding: 0; list-style: none; margin: 0 0 18px; }
.modal .body ul li { display: flex; gap: 10px; align-items: flex-start; padding: 6px 0; font-size: 14px; }
.modal .body ul li svg { color: var(--green); flex-shrink: 0; margin-top: 3px; }
.modal .body .cta-btn { font-size: 15px; padding: 14px; }
.modal .body .small { font-size: 11px; color: var(--muted-dark); text-align: center; margin-top: 10px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .proof-grid { grid-template-columns: 1fr; gap: 24px; }
  .calc-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 36px; }
  .compare-row { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .compare-row > div { padding: 14px 12px; font-size: 13px; }
  .nav-trust { display: none; }
  .press-logos { gap: 22px; }
  .spot-right .sep { display: none; }
  .spot-right { gap: 8px; }
  .section { padding: 64px 0; }
}
@media (max-width: 620px) {
  .container { width: calc(100% - 28px); }
  .spot-prices { gap: 14px; }
  .spot-prices .spot-price:nth-child(n+4) { display: none; }
  .nav-phone { display: none; }
  .hero { padding: 36px 0 56px; }
  .hero h1 { font-size: 44px; }
  .compare-row { grid-template-columns: 1fr 1fr 1fr 1fr; font-size: 11px; }
  .compare-row > div { padding: 12px 8px; }
  .compare-row.head > div { font-size: 9px; }
  .field-row { grid-template-columns: 1fr; }
  .sticky-cta .ph { display: none; }
  .sticky-cta .text .sub { display: none; }
  .modal .head { padding: 24px 22px; }
  .modal .head h3 { font-size: 28px; }
  .modal .body { padding: 22px 22px 24px; }
  .press-strip-inner { flex-direction: column; gap: 16px; }
}


/* ============================================
   REVISION: visuals, custom logo, no phone/spot
   ============================================ */

/* ---- Custom Logo ---- */
.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo-mark { display: block; flex-shrink: 0; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.25)); }
.logo-words { display: inline-flex; flex-direction: column; line-height: 1; }
.wm-top {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.34em;
  font-weight: 800;
  margin-bottom: 4px;
}
.wm-bot {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.01em;
  font-style: italic;
}
.logo-mark-only .logo-words { display: none; }

/* ---- Trust strip (replaces spot bar) ---- */
.trust-strip {
  background: var(--ink);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  color: var(--cream-3);
  font-size: 12px;
}
.trust-strip-inner { padding: 10px 0; position: relative; overflow: hidden; }
.trust-marquee {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 48s linear infinite;
  width: max-content;
}
.trust-item { display: inline-flex; gap: 8px; align-items: center; font-weight: 500; letter-spacing: 0.02em; }
.trust-item svg { color: var(--gold-2); flex-shrink: 0; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---- Nav (new layout) ---- */
.nav-inner { gap: 20px; }
.nav-cta {
  background: linear-gradient(180deg, #f0d088, #c9a24b 60%, #a4822f);
  color: #2a1e05;
  border: 0;
  padding: 12px 22px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 4px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  box-shadow: 0 10px 22px -8px rgba(164,130,47,0.45), inset 0 1px 0 rgba(255,255,255,0.4);
  cursor: pointer;
  transition: transform .08s;
}
.nav-cta:hover { transform: translateY(-1px); }

/* ---- Image placeholders (premium feel) ---- */
.img-slot {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.img-slot-dark {
  background:
    repeating-linear-gradient(135deg, rgba(232,201,124,0.06) 0 7px, rgba(232,201,124,0) 7px 14px),
    radial-gradient(120% 80% at 20% 20%, rgba(232,201,124,0.18), transparent 55%),
    linear-gradient(160deg, #1a2030 0%, #0a0d16 100%);
  color: var(--gold-2);
}
.img-slot-cream {
  background:
    repeating-linear-gradient(135deg, rgba(164,130,47,0.08) 0 7px, rgba(164,130,47,0) 7px 14px),
    radial-gradient(120% 80% at 20% 20%, rgba(255,255,255,0.5), transparent 55%),
    linear-gradient(160deg, #ece4d2, #c9bb9a);
  color: var(--gold-3);
}
.img-slot-label {
  position: relative;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  background: rgba(14,18,28,0.82);
  color: var(--gold-2);
  padding: 5px 10px;
  border: 1px solid rgba(232,201,124,0.32);
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  max-width: 80%;
}
.img-slot-cream .img-slot-label {
  background: rgba(246,241,231,0.88);
  color: var(--gold-3);
  border-color: rgba(164,130,47,0.4);
}
.img-slot-corner {
  position: absolute; width: 14px; height: 14px;
  border: 1px solid rgba(232,201,124,0.55);
}
.img-slot-cream .img-slot-corner { border-color: rgba(164,130,47,0.6); }
.img-slot-corner.tl { top: 8px; left: 8px; border-right: 0; border-bottom: 0; }
.img-slot-corner.tr { top: 8px; right: 8px; border-left: 0; border-bottom: 0; }
.img-slot-corner.bl { bottom: 8px; left: 8px; border-right: 0; border-top: 0; }
.img-slot-corner.br { bottom: 8px; right: 8px; border-left: 0; border-top: 0; }

/* ---- Hero background glows ---- */
.hero { position: relative; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.bg-glow { position: absolute; border-radius: 50%; filter: blur(120px); }
.bg-glow-1 { width: 640px; height: 640px; background: var(--gold); top: -240px; right: -160px; opacity: 0.18; }
.bg-glow-2 { width: 520px; height: 520px; background: var(--gold-2); bottom: -180px; left: -120px; opacity: 0.10; }
.hero-grid { position: relative; z-index: 1; }

/* ---- Hero collage ---- */
.hero-collage {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 14px;
  align-items: end;
  position: relative;
}
.collage-card {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 28px 56px -20px rgba(0,0,0,0.55), 0 0 0 1px rgba(232,201,124,0.12);
}
.collage-card .img-slot { height: 100%; }
.card-1 { transform: translateY(-12px) rotate(-1.5deg); }
.card-2 { transform: translateY(20px) rotate(1.2deg); }
.card-3 { transform: translateY(0) rotate(-0.8deg); }
.collage-stat {
  position: absolute;
  right: 6%; top: -22px;
  background: var(--cream);
  color: var(--ink);
  padding: 12px 20px;
  border-radius: 6px;
  box-shadow: 0 18px 32px -12px rgba(0,0,0,0.45);
  transform: rotate(3deg);
  border: 1px solid var(--gold-2);
  z-index: 2;
}
.cs-num { font-family: var(--serif); font-size: 30px; font-weight: 600; color: var(--gold-3); line-height: 1; }
.cs-label { font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-dark); font-weight: 700; margin-top: 4px; }

/* ---- Free kit preview below form ---- */
.kit-preview {
  margin-top: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px;
}
.kit-preview .img-slot { border-radius: 4px; }
.kit-caption {
  padding: 12px 6px 4px;
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13px;
  color: var(--cream-3);
  line-height: 1.5;
}
.kit-caption svg { color: var(--gold-2); flex-shrink: 0; margin-top: 3px; }
.kit-caption strong { color: var(--cream); font-weight: 600; }

/* ---- Steps now have images on top ---- */
.step { padding: 0; overflow: visible; position: relative; }
.step .step-img { border-radius: 6px 6px 0 0 !important; }
.step .step-body { padding: 36px 30px 32px; position: relative; }
.step .num {
  position: absolute !important;
  top: -28px !important; left: 24px !important;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--ink); color: var(--gold-2);
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 24px; font-weight: 500;
  border: 4px solid var(--cream);
  z-index: 2;
}
.section.alt .step .num { border-color: #efe8d6; }
.step .step-icon {
  width: 52px; height: 52px; border-radius: 6px;
  background: rgba(201,162,75,0.1);
  display: grid; place-items: center; color: var(--gold-3);
  margin-bottom: 12px; margin-top: 4px;
}

/* ---- What we buy gallery ---- */
.buy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.buy-card {
  background: #fdfaf1;
  border: 1px solid #d9cdb2;
  border-radius: 6px;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.section .buy-card { background: var(--cream); }
.section.alt .buy-card { background: #fdfaf1; }
.buy-card:hover { transform: translateY(-4px); box-shadow: 0 22px 40px -16px rgba(0,0,0,0.18); }
.buy-card .img-slot { border-radius: 0; }
.buy-body { padding: 20px 22px 22px; }
.buy-body h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.buy-body p { font-size: 14px; color: var(--muted-dark); margin: 0; line-height: 1.5; }
@media (max-width: 900px) {
  .buy-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .buy-grid { grid-template-columns: 1fr; }
}

/* ---- Testimonials with customer photos ---- */
.testimonial {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  align-items: start;
}
.testimonial .t-photo { width: 96px; }
.t-photo-slot { border-radius: 6px; }
.testimonial .t-content { min-width: 0; }
.testimonial .who { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; font-size: 13px; color: var(--muted-dark); }
.testimonial .who strong { color: var(--ink); font-weight: 700; }
.testimonial .who .payout {
  margin-left: auto;
  font-family: var(--mono); font-size: 12px;
  color: var(--green);
  background: rgba(63,157,112,0.12);
  padding: 2px 8px; border-radius: 3px;
  font-weight: 600;
}
@media (max-width: 720px) {
  .testimonial { grid-template-columns: 72px 1fr; gap: 14px; }
  .testimonial .t-photo { width: 72px; }
}

/* ---- Trust badge cluster ---- */
.trust-badges-head {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-dark);
  font-weight: 700;
  margin-bottom: 24px;
}
.trust-badges {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.t-badge {
  background: var(--cream);
  border: 1px solid #d9cdb2;
  border-radius: 6px;
  padding: 20px 12px 18px;
  text-align: center;
  transition: transform .15s, border-color .15s;
}
.t-badge:hover { transform: translateY(-2px); border-color: var(--gold); }
.t-top {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-dark);
  font-weight: 700;
}
.t-mid {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--gold-3);
  margin-top: 6px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.t-stars { color: var(--gold); font-size: 13px; letter-spacing: 1.5px; margin-top: 2px; }
.t-bot { font-size: 11px; color: var(--muted-dark); margin-top: 6px; line-height: 1.4; }
@media (max-width: 900px) {
  .trust-badges { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 520px) {
  .trust-badges { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Payout counter decorative gold bars ---- */
.pc-deco {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 200px;
  height: 200px;
  pointer-events: none;
  opacity: 0.5;
}
.pc-bar {
  position: absolute;
  background: linear-gradient(180deg, var(--gold-2), var(--gold-3));
  border-radius: 3px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), 0 4px 12px rgba(0,0,0,0.3);
  transform: rotate(-18deg);
}
.pc-bar-1 { width: 130px; height: 22px; right: 30px; bottom: 90px; opacity: 0.95;}
.pc-bar-2 { width: 110px; height: 18px; right: 12px; bottom: 60px; opacity: 0.75;}
.pc-bar-3 { width: 90px; height: 16px; right: 0px; bottom: 32px; opacity: 0.55;}
.payout-counter { position: relative; }
.payout-counter > * { position: relative; z-index: 1; }
.payout-counter > .pc-deco { z-index: 0; }

/* ---- Calculator: decorative bar in right column ---- */
.calc-right { position: relative; }
.calc-right > *:not(.calc-deco) { position: relative; z-index: 1; }
.calc-deco {
  position: absolute !important;
  inset: 0;
  aspect-ratio: auto !important;
  opacity: 0.18;
  border-radius: 0 !important;
  z-index: 0 !important;
}
.calc-deco .img-slot-label { display: none; }
.calc-deco .img-slot-corner { display: none; }

/* ---- Final CTA decoration ---- */
.final-cta { position: relative; overflow: hidden; }
.final-deco {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  pointer-events: none;
}
.final-deco .img-slot {
  width: 100%; height: 100%;
  aspect-ratio: auto !important;
  border-radius: 0 !important;
}
.final-deco .img-slot-label { display: none; }
.final-deco .img-slot-corner { display: none; }
.final-cta .container { position: relative; z-index: 1; }
.final-trust {
  margin-top: 22px;
  display: flex; gap: 26px; justify-content: center;
  color: var(--cream-3);
  font-size: 13px;
  flex-wrap: wrap;
}
.final-trust span { display: inline-flex; gap: 6px; align-items: center; }
.final-trust svg { color: var(--gold-2); }

/* ---- Sticky CTA cleanup ---- */
.sticky-cta .sticky-left {
  display: flex; gap: 16px; align-items: center; flex: 1; min-width: 0;
}
.sticky-mark { flex-shrink: 0; }
.sticky-mark .logo-words { display: none; }

/* ---- Modal badge ---- */
.modal-badge { display: flex; justify-content: center; margin-bottom: 14px; }
.modal-badge .logo-words { display: none; }
.modal-badge .logo-mark { filter: drop-shadow(0 8px 20px rgba(232,201,124,0.35)); }

/* ---- Responsive overrides for new layouts ---- */
@media (max-width: 980px) {
  .nav-cta { padding: 10px 16px; font-size: 12px; }
  .nav-trust { display: none; }
  .hero-collage { margin-top: 36px; grid-template-columns: 1fr 1fr; }
  .hero-collage .card-3 { display: none; }
  .collage-stat { right: 10px; top: -16px; }
}
@media (max-width: 620px) {
  .wm-bot { font-size: 20px; }
  .wm-top { font-size: 8.5px; }
  .nav-cta { font-size: 11px; padding: 9px 12px; letter-spacing: 0.04em; }
  .hero-collage { grid-template-columns: 1fr; gap: 12px; }
  .hero-collage .card-2, .hero-collage .card-3 { display: none; }
  .hero-collage .card-1 { transform: none; }
  .collage-stat { right: 8px; top: -12px; padding: 8px 14px; }
  .cs-num { font-size: 22px; }
  .step .num { width: 48px; height: 48px; font-size: 20px; }
  .trust-marquee { gap: 24px; animation-duration: 30s; }
}


/* ============================================================
   v2 REVISION. Real photos, BEST VALUE fix, senior legibility,
   address grid, 44px touch targets.
   ============================================================ */

/* ---- Real photos inside ImgSlot ---- */
.img-slot-has-photo {
  background: var(--ink-3);
}
.img-slot-has-photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.img-slot-has-photo .img-slot-label,
.img-slot-has-photo .img-slot-corner { display: none; }
.t-photo-slot.img-slot-has-photo > img { border-radius: 6px; }
.calc-deco.img-slot-has-photo > img { filter: brightness(0.7) contrast(1.1); }

/* ---- Fix BEST VALUE badge being clipped ---- */
.compare {
  overflow: visible !important;
  border-radius: 6px;
  margin-top: 18px;
}
.compare-row.head > div:nth-child(2)::before {
  top: -14px;
  font-size: 10px;
  padding: 4px 14px;
  letter-spacing: 0.18em;
  white-space: nowrap;
}

/* ---- BASE TYPOGRAPHY: bump for older readers ---- */
html, body {
  font-size: 18px; /* was 16px */
  line-height: 1.6;
  color: #14181f; /* near-black, higher contrast than #0e121c on cream */
}
/* Darken muted text site-wide for better contrast (WCAG AA on cream bg) */
:root {
  --muted-dark: #4a4a4a; /* was #6b6b6b */
  --muted: #7a786f;       /* was #8d8a82 */
  --cream-3: #e6dec8;     /* was #d9cdb2, brighter on dark bg */
}

/* Headings */
.hero h1 { font-size: clamp(44px, 6vw, 84px); }
.section-head h2 { font-size: clamp(36px, 4.4vw, 60px); }
.final-cta h2 { font-size: clamp(40px, 5.2vw, 64px); }

/* Hero subhead + bullets */
.hero .sub { font-size: 21px; line-height: 1.55; }
.hero-bullets li { font-size: 18px; line-height: 1.5; }
.hero-bullets { gap: 18px; }

/* Form text */
.form-card h2 { font-size: 36px; line-height: 1.1; }
.form-card .form-sub { font-size: 16px; color: #3a3a3a; }
.form-card .scarcity-strip {
  font-size: 15px;
  padding: 13px 14px;
}
.form-card .scarcity-strip strong { font-weight: 700; }

/* Form fields, bigger labels, bigger inputs, sentence case */
.field { gap: 7px; margin-bottom: 14px; }
.field label {
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 700;
  color: #1a1a1a;
}
.field input,
.field select {
  font-size: 17px;
  padding: 16px 16px;
  min-height: 52px;
  border-width: 1.5px;
  border-color: #b8a988;
}
.field input::placeholder { color: #999; }
.field input:focus, .field select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,162,75,0.2);
}

/* CTAs, bigger touch targets */
.cta-btn {
  font-size: 19px;
  padding: 20px 18px;
  min-height: 60px;
  letter-spacing: 0.03em;
}
.nav-cta { min-height: 44px; padding: 14px 24px; font-size: 14px; }
.calc-cta { font-size: 17px; padding: 18px 20px; min-height: 56px; }
.calc-karat button { padding: 16px 6px; font-size: 15px; min-height: 50px; }

.form-foot { font-size: 13px; }
.form-foot .lock svg { color: var(--green); }

/* Section bodies */
.section-head p { font-size: 19px; line-height: 1.55; color: #3d3d3d; }
.section.dark .section-head p { color: #d8d2c1; }
.step p { font-size: 17px; color: #404040; line-height: 1.55; }
.step h3 { font-size: 28px; }
.buy-body h3 { font-size: 26px; }
.buy-body p { font-size: 16px; color: #404040; line-height: 1.55; }

/* Testimonials */
.testimonial .quote { font-size: 21px; line-height: 1.45; }
.testimonial .who { font-size: 15px; }
.testimonial .verified { font-size: 13px; }

/* Comparison table */
.compare-row > div { font-size: 17px; padding: 22px 22px; }
.compare-row > div:first-child { font-weight: 600; }
.compare-row.head > div { font-size: 12px; padding-top: 26px; padding-bottom: 26px; }
.compare-row.head > div:nth-child(2) { font-size: 22px; padding-top: 26px; }
.compare-cell .good svg, .compare-cell .bad svg { width: 22px; height: 22px; }

/* Calculator */
.calc-left h3 { font-size: 32px; }
.calc-left p.sub { font-size: 16px; }
.calc-row label { font-size: 13px; letter-spacing: 0.05em; }
.calc-right .range { font-size: 16px; }
.calc-right ul li { font-size: 15px; padding: 6px 0; }

/* FAQ, bigger questions, comfy reading */
.faq-q { font-size: 19px; padding: 24px 24px; min-height: 60px; }
.faq-a { font-size: 17px; line-height: 1.6; }
.faq-item { margin-bottom: 14px; }

/* Footer + legal */
.footer { font-size: 15px; padding: 44px 0; }
.footer .legal { font-size: 13px; line-height: 1.6; }

/* Success state */
.success-card h2 { font-size: 36px; }
.success-card p { font-size: 17px; color: #404040; }

/* Upload area */
.upload-area .big { font-size: 24px; }
.upload-area .small { font-size: 15px; }

/* Identified items list */
.identified-list { font-size: 15px; padding: 14px 16px; }
.identified-list .row .est { font-size: 15px; }
.identified-list .total { font-size: 16px; }

/* Sticky CTA, bigger tap target */
.sticky-cta { padding: 14px 0; }
.sticky-cta button.cta { font-size: 16px; padding: 16px 26px; min-height: 52px; }
.sticky-cta .text .label { font-size: 20px; }
.sticky-cta .text .sub { font-size: 14px; }

/* Modal (exit-intent) */
.modal .head h3 { font-size: 36px; }
.modal .head p { font-size: 17px; line-height: 1.5; }
.modal .body ul li { font-size: 16px; line-height: 1.5; padding: 8px 0; }
.modal .body .cta-btn { font-size: 17px; padding: 18px; }

/* ---- Split-address form layout ---- */
.field-grid-address {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}
.field-grid-address .field { margin-bottom: 0; }
.field.field-state select {
  appearance: none;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>") no-repeat right 14px center / 14px,
    #fffaf0;
  padding-right: 38px;
}

/* ---- Mobile bumps ---- */
@media (max-width: 720px) {
  html, body { font-size: 17px; }
  .form-card .body { padding: 24px 22px 26px; }
  .form-card h2 { font-size: 30px; }
  .hero .sub { font-size: 18px; }
  .hero-bullets li { font-size: 16px; }
  .section { padding: 56px 0; }
  .compare-row > div { padding: 14px 10px; font-size: 14px; }
  .compare-row.head > div:nth-child(2) { font-size: 17px; padding: 26px 8px 18px; }
  .compare-row.head > div:nth-child(2)::before { font-size: 9px; padding: 3px 10px; top: -11px; }
  .faq-q { font-size: 17px; padding: 20px 18px; }
  .faq-a { font-size: 16px; }
  .calc-right .estimate { font-size: 56px !important; }
  .testimonial .quote { font-size: 17px; }
  .step h3 { font-size: 24px; }
  .step p { font-size: 16px; }
  .buy-body h3 { font-size: 22px; }
  .field input, .field select { font-size: 16px; padding: 15px 14px; min-height: 50px; }
  .cta-btn { font-size: 17px; padding: 18px 14px; min-height: 56px; }
  .field-grid-address { grid-template-columns: 1fr; gap: 12px; }
}

@media (max-width: 420px) {
  .nav-trust { display: none; }
  .form-card h2 { font-size: 26px; }
  .hero h1 { font-size: 36px; }
  .section-head h2 { font-size: 30px; }
  .final-cta h2 { font-size: 32px; }
  .modal .head h3 { font-size: 26px; }
  .compare-row > div { padding: 12px 8px; font-size: 12.5px; }
  .compare-row > div:first-child { font-size: 13px; }
  .compare-row.head > div:nth-child(2) { font-size: 14px; }
}

/* ---- Mobile hero scroll-CTA, visible immediately on page load on mobile ---- */
.hero-mobile-cta {
  display: none;
  width: 100%;
  margin: 22px 0 18px;
  padding: 22px 18px;
  background: linear-gradient(180deg, #f0d088, #c9a24b 60%, #a4822f);
  color: #2a1e05;
  border: 0;
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow:
    0 18px 40px -12px rgba(164, 130, 47, 0.65),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(0, 0, 0, 0.18);
  cursor: pointer;
  animation: hero-cta-pulse 2.6s ease-in-out infinite;
  transition: transform 0.08s ease;
}
.hero-mobile-cta:active { transform: translateY(1px); animation: none; }
.hero-mobile-cta .arrow {
  display: inline-block;
  margin-left: 8px;
  transition: transform 0.15s;
}
.hero-mobile-cta:active .arrow { transform: translateX(3px); }

@keyframes hero-cta-pulse {
  0%, 100% { box-shadow: 0 18px 40px -12px rgba(164, 130, 47, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 -1px 0 rgba(0, 0, 0, 0.18), 0 0 0 0 rgba(232, 201, 124, 0.5); }
  50% { box-shadow: 0 18px 40px -12px rgba(164, 130, 47, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 -1px 0 rgba(0, 0, 0, 0.18), 0 0 0 14px rgba(232, 201, 124, 0); }
}

/* Show on mobile only, desktop already has the form visible side-by-side */
@media (max-width: 980px) {
  .hero-mobile-cta { display: block; }
}

/* ---- Photo slot grid for Step 2 (labeled tiles) ---- */
.upload-instructions {
  font-size: 14px;
  line-height: 1.5;
  background: rgba(232, 201, 124, 0.1);
  border: 1px solid #d9cdb2;
  padding: 12px 14px;
  border-radius: 4px;
  margin-bottom: 14px;
  color: var(--ink);
}
.upload-instructions strong { color: var(--gold-3); }
.upload-instructions .mark-list {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--gold-3);
  font-weight: 600;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 4px;
}
.slot-grid .slot:nth-child(4),
.slot-grid .slot:nth-child(5) {
  grid-column: span 1;
}
.slot {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  aspect-ratio: 1/1;
  background: #fffaf0;
  border: 2px dashed #cfc4ab;
  border-radius: 6px;
  cursor: pointer;
  padding: 12px 8px;
  transition: border-color .15s, background .15s;
  overflow: hidden;
}
.slot:hover { border-color: var(--gold); background: #fff5dc; }
.slot.filled { border-style: solid; border-color: var(--gold); padding: 0; }
.slot svg { color: var(--gold); margin-bottom: 4px; }
.slot-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  margin-top: 2px;
}
.slot-hint {
  font-size: 10px;
  color: var(--muted-dark);
  line-height: 1.3;
  margin-top: 4px;
}
.slot-thumb { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 4px; }
.slot-x {
  position: absolute; top: 6px; right: 6px;
  width: 24px; height: 24px;
  background: rgba(14, 18, 28, 0.8);
  color: white; border: 0; border-radius: 999px;
  display: grid; place-items: center;
  cursor: pointer; z-index: 2;
}
.slot-badge {
  position: absolute; left: 6px; bottom: 6px;
  font-size: 10px;
  padding: 3px 7px;
  border-radius: 3px;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.slot-badge.analyzing { background: var(--amber); color: var(--ink); }
.slot-badge.done { background: var(--green); color: white; }

@media (max-width: 520px) {
  .slot-grid { grid-template-columns: repeat(2, 1fr); }
  .slot-label { font-size: 11px; }
  .slot-hint { font-size: 9.5px; }
}

/* ---- Press logos wrap properly on mobile ---- */
.press-strip-inner { flex-wrap: wrap; }
.press-logos {
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 28px;
  min-width: 0;
}
@media (max-width: 720px) {
  .press-logos { gap: 14px 20px; }
  .press-logo { font-size: 16px; }
  .press-logo.condensed { font-size: 13px; letter-spacing: 0.12em; }
}
@media (max-width: 420px) {
  .press-logo { font-size: 15px; }
  .press-logo.condensed { font-size: 12px; }
}

