/* ============================================================
   PARCEL VERDICT — Global Stylesheet
   Colors: Navy #1B2A4A | Copper #C4773A | Ivory #F8F5F0 | Charcoal #2D2D2D
   ============================================================ */

:root {
  --navy:        #1B2A4A;
  --navy-deep:   #111d33;
  --navy-mid:    #243560;
  --copper:      #C4773A;
  --copper-dark: #a8612d;
  --copper-light:#d4895a;
  --ivory:       #F8F5F0;
  --ivory-dark:  #EDE9E2;
  --charcoal:    #2D2D2D;
  --charcoal-mid:#4a4a4a;
  --white:       #ffffff;
  --light-grey:  #E4DFD8;
  --mid-grey:    #B0A898;
  --text-muted:  #7a7169;

  --font-head: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.14), 0 4px 12px rgba(0,0,0,.08);
  --shadow-navy:0 8px 30px rgba(27,42,74,.35);

  --max-w: 1140px;
  --gutter: clamp(20px, 5vw, 80px);
  --section-py: clamp(64px, 8vw, 100px);
}

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

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(38px, 6vw, 68px); font-weight: 800; }
h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 700; }
h3 { font-size: clamp(20px, 2.5vw, 26px); font-weight: 700; }
h4 { font-size: 18px; font-weight: 700; }

.mono { font-family: var(--font-mono); }
.copper-text { color: var(--copper); }
.navy-text   { color: var(--navy); }

/* ── LAYOUT HELPERS ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section-py { padding: var(--section-py) 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: all .18s ease;
  white-space: nowrap;
}
.btn-copper {
  background: var(--copper);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(196,119,58,.35);
}
.btn-copper:hover {
  background: var(--copper-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(196,119,58,.4);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.45);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.75);
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-lg { padding: 17px 36px; font-size: 16px; }
.btn-sm { padding: 10px 20px; font-size: 14px; }

/* ── SECTION LABEL ── */
.section-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 16px;
}

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--light-grey);
  transition: box-shadow .2s;
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.03em;
  color: var(--navy);
}
.nav-logo span { color: var(--copper); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: var(--charcoal-mid);
  transition: color .15s;
}
.nav-links a:hover { color: var(--navy); }
.nav-cta { margin-left: 8px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .2s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--light-grey);
  background: var(--white);
}
.mobile-menu a {
  display: block;
  padding: 14px var(--gutter);
  font-weight: 500;
  color: var(--charcoal);
  border-bottom: 1px solid var(--ivory-dark);
}
.mobile-menu a:last-child {
  padding: 16px var(--gutter);
  background: var(--copper);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  border-bottom: none;
}

/* ── HERO ── */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: clamp(72px, 10vw, 120px) 0 clamp(64px, 9vw, 110px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(196,119,58,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(196,119,58,.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 760px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196,119,58,.15);
  border: 1px solid rgba(196,119,58,.3);
  border-radius: 100px;
  padding: 6px 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--copper-light);
  margin-bottom: 28px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--copper);
  border-radius: 50%;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
}
.hero h1 .copper-text { color: var(--copper-light); }
.hero-sub {
  font-size: clamp(17px, 2vw, 20px);
  color: rgba(255,255,255,.72);
  font-weight: 400;
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 600px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-note {
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,.38);
  letter-spacing: .04em;
}

/* ── PROOF BAR ── */
.proof-bar {
  background: var(--copper);
  padding: 18px 0;
}
.proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 28px;
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-right: 1px solid rgba(255,255,255,.3);
}
.proof-item:last-child { border-right: none; }
.proof-item svg { opacity: .85; flex-shrink: 0; }

/* ── VALUE PROPS ── */
.value-props { background: var(--ivory); }
.value-props .section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.value-props .section-header h2 { color: var(--navy); }
.vp-card {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: box-shadow .2s, transform .2s;
}
.vp-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.vp-icon {
  width: 52px; height: 52px;
  background: var(--ivory);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid var(--light-grey);
}
.vp-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 10px;
}
.vp-card h3 { color: var(--navy); margin-bottom: 14px; }
.vp-card p  { color: var(--charcoal-mid); font-size: 15px; line-height: 1.7; }
.vp-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vp-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--charcoal-mid);
}
.vp-list li::before {
  content: '';
  width: 16px; height: 16px;
  min-width: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23C4773A'%3E%3Cpath d='M13.5 3.5L6 11 2.5 7.5l-1 1L6 13l8.5-8.5-1-1z'/%3E%3C/svg%3E") center/contain no-repeat;
  margin-top: 2px;
}

/* ── REPORT CONTENTS ── */
.report-contents { background: var(--white); }
.rc-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}
.rc-header h2 { color: var(--navy); margin-bottom: 14px; }
.rc-header p { color: var(--charcoal-mid); font-size: 16px; }
.rc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--light-grey);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.rc-item {
  background: var(--white);
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: background .15s;
}
.rc-item:hover { background: var(--ivory); }
.rc-item-icon {
  width: 40px; height: 40px;
  min-width: 40px;
  background: linear-gradient(135deg, var(--ivory) 0%, var(--ivory-dark) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rc-item-text h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.rc-item-text p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ── PRICING ── */
.pricing { background: var(--ivory); }
.pricing-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}
.pricing-header h2 { color: var(--navy); margin-bottom: 14px; }
.pricing-header p { color: var(--charcoal-mid); font-size: 16px; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}
.price-card {
  background: var(--white);
  border: 1.5px solid var(--light-grey);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: box-shadow .2s, transform .2s;
}
.price-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.price-card.featured {
  border-color: var(--copper);
  box-shadow: 0 0 0 1px var(--copper), var(--shadow-md);
}
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--copper);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.price-tier {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 12px;
}
.price-amount {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 38px;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.price-amount sup {
  font-size: 20px;
  vertical-align: top;
  margin-top: 6px;
  font-weight: 700;
}
.price-amount sub {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  vertical-align: baseline;
  font-family: var(--font-body);
}
.price-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
  min-height: 36px;
  line-height: 1.5;
}
.price-features {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 28px;
}
.price-features li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  color: var(--charcoal-mid);
}
.price-features li::before {
  content: '';
  width: 14px; height: 14px;
  min-width: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Ccircle cx='7' cy='7' r='7' fill='%231B2A4A' opacity='.1'/%3E%3Cpath d='M4 7l2 2 4-4' stroke='%231B2A4A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center/contain no-repeat;
}
.price-card.featured .price-features li::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Ccircle cx='7' cy='7' r='7' fill='%23C4773A' opacity='.15'/%3E%3Cpath d='M4 7l2 2 4-4' stroke='%23C4773A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center/contain no-repeat;
}
.price-card .btn { width: 100%; justify-content: center; }

/* ── SAMPLE TEASER ── */
.sample-teaser { background: var(--navy); }
.st-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}
.st-header h2 { color: var(--white); margin-bottom: 14px; }
.st-header p { color: rgba(255,255,255,.6); font-size: 16px; }
.report-mockup {
  max-width: 740px;
  margin: 0 auto 48px;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-navy);
}
.mock-topbar {
  background: var(--navy-deep);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mock-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 14px;
  color: var(--white);
}
.mock-logo span { color: var(--copper); }
.mock-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,.4);
  letter-spacing: .06em;
}
.mock-rule { height: 3px; background: var(--copper); }
.mock-verdict {
  background: var(--copper);
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mock-verdict-word {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 42px;
  color: var(--white);
  letter-spacing: -0.02em;
}
.mock-verdict-sub {
  text-align: right;
}
.mock-verdict-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}
.mock-verdict-summary {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255,255,255,.8);
  max-width: 300px;
  text-align: right;
}
.mock-body { padding: 24px 32px; }
.mock-address {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--light-grey);
}
.mock-section-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 10px;
}
.mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--light-grey);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 20px;
}
.mock-stat {
  background: var(--white);
  padding: 14px 16px;
}
.mock-stat-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 4px;
}
.mock-stat-val {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
}
.mock-stat-val.highlight { color: var(--copper); font-size: 20px; }
.mock-comps {
  background: var(--ivory);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.mock-comps-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 8px 14px;
  background: var(--navy);
  gap: 8px;
}
.mock-comps-header span {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
.mock-comps-header span:not(:first-child) { text-align: right; }
.mock-comp-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 8px 14px;
  gap: 8px;
  border-bottom: 1px solid var(--light-grey);
}
.mock-comp-row:last-child { border-bottom: none; }
.mock-comp-row:nth-child(odd) { background: var(--white); }
.mock-comp-row span { font-family: var(--font-mono); font-size: 11px; color: var(--charcoal); }
.mock-comp-row span.addr { color: var(--charcoal-mid); font-family: var(--font-body); font-size: 12px; }
.mock-comp-row span:not(.addr) { text-align: right; }
.mock-comp-row span.score { color: var(--navy); font-weight: 600; }
.mock-footer-bar {
  background: var(--ivory);
  padding: 10px 32px;
  border-top: 1px solid var(--light-grey);
}
.mock-footer-bar p {
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--text-muted);
  text-align: center;
}
.st-cta { text-align: center; }
.st-cta p {
  color: rgba(255,255,255,.5);
  font-size: 13px;
  margin-top: 14px;
  font-family: var(--font-mono);
}

/* ── HOW IT WORKS ── */
.how-it-works { background: var(--white); }
.hiw-header {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 56px;
}
.hiw-header h2 { color: var(--navy); margin-bottom: 14px; }
.hiw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}
.hiw-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.66% + 16px);
  right: calc(16.66% + 16px);
  height: 1px;
  background: linear-gradient(90deg, var(--copper), var(--light-grey), var(--copper));
  pointer-events: none;
}
.hiw-step { text-align: center; }
.hiw-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
.hiw-step h4 { color: var(--navy); margin-bottom: 10px; }
.hiw-step p  { color: var(--charcoal-mid); font-size: 14.5px; line-height: 1.65; }

/* ── FINAL CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: clamp(56px, 7vw, 88px) 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 16px; }
.cta-band p {
  color: rgba(255,255,255,.65);
  font-size: 17px;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
.footer {
  background: var(--navy-deep);
  padding: 48px 0 32px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-brand { max-width: 280px; }
.footer-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.footer-logo span { color: var(--copper); }
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,.45);
  margin-bottom: 14px;
  font-style: italic;
}
.footer-email a {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--copper-light);
  letter-spacing: .02em;
}
.footer-email a:hover { color: var(--copper); }
.footer-links-col h5 {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 14px;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-links-col a {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  transition: color .15s;
}
.footer-links-col a:hover { color: rgba(255,255,255,.9); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-ftc {
  font-size: 11px;
  color: rgba(255,255,255,.3);
  line-height: 1.6;
  max-width: 560px;
}
.footer-copy {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,.25);
  white-space: nowrap;
}

/* ── SAMPLE PAGE ── */
.sample-hero {
  background: var(--navy);
  padding: 72px 0 60px;
  text-align: center;
}
.sample-hero h1 { color: var(--white); margin-bottom: 16px; }
.sample-hero p  { color: rgba(255,255,255,.65); font-size: 18px; max-width: 520px; margin: 0 auto 32px; }
.report-full {
  background: var(--ivory);
  padding: var(--section-py) 0;
}
.report-card {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.rc-section {
  padding: 28px 36px;
  border-bottom: 1px solid var(--light-grey);
}
.rc-section:last-child { border-bottom: none; }
.rc-sec-header {
  background: var(--ivory);
  border-left: 4px solid var(--copper);
  padding: 8px 12px;
  margin-bottom: 16px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.rc-sec-header h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--navy);
}
.rc-sec-desc {
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 2px;
}
.kv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.kv-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--ivory);
  border-radius: var(--radius-sm);
}
.kv-item:nth-child(odd) { background: var(--white); border: 1px solid var(--light-grey); }
.kv-label {
  font-size: 12px;
  color: var(--text-muted);
}
.kv-val {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.kv-val.copper { color: var(--copper); font-size: 16px; }
.kv-val.green  { color: #2e7d32; }
.pills-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}
.pill-box {
  background: var(--ivory);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  text-align: center;
}
.pill-box-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 4px;
}
.pill-box-val {
  font-family: var(--font-mono);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
}
.signal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.signal-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--ivory);
  border-radius: var(--radius-sm);
  font-size: 13px;
}
.sig-name { color: var(--charcoal-mid); }
.sig-val  { font-family: var(--font-mono); font-weight: 600; font-size: 12px; }
.sig-pos  { color: #2e7d32; }
.sig-neg  { color: var(--copper); }
.sig-neu  { color: var(--mid-grey); }
.traj-box {
  background: #FFF8E1;
  border: 1px solid #ffe082;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.traj-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--copper);
  text-transform: uppercase;
  white-space: nowrap;
}
.traj-val {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: #E65100;
}
.traj-desc {
  font-size: 12.5px;
  color: var(--charcoal-mid);
  font-style: italic;
  flex: 1;
}
.sample-cta {
  background: var(--navy);
  padding: clamp(56px, 7vw, 80px) 0;
  text-align: center;
}
.sample-cta h2 { color: var(--white); margin-bottom: 14px; }
.sample-cta p  { color: rgba(255,255,255,.6); font-size: 16px; margin-bottom: 32px; }

/* ── ORDER PAGE ── */
.order-hero {
  background: var(--navy);
  padding: 72px 0 60px;
  text-align: center;
}
.order-hero h1 { color: var(--white); margin-bottom: 16px; }
.order-hero p  { color: rgba(255,255,255,.65); font-size: 18px; max-width: 500px; margin: 0 auto; }
.order-section {
  background: var(--ivory);
  padding: var(--section-py) 0;
  min-height: 60vh;
}
.order-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  max-width: 920px;
  margin: 0 auto;
  align-items: start;
}
.order-form-card {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.order-form-card h2 {
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 28px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 7px;
  letter-spacing: .01em;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--light-grey);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color .15s, box-shadow .15s;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(196,119,58,.12);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%23B0A898' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}
.form-submit { margin-top: 28px; }
.form-submit .btn { width: 100%; justify-content: center; font-size: 16px; padding: 16px; }
.form-note {
  margin-top: 16px;
  font-size: 12.5px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.55;
}
.form-note a { color: var(--copper); }
.order-sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-md);
  padding: 24px;
}
.sidebar-card h4 { color: var(--navy); font-size: 15px; margin-bottom: 12px; }
.sidebar-card ul { display: flex; flex-direction: column; gap: 8px; }
.sidebar-card li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--charcoal-mid);
}
.sidebar-card li::before {
  content: '✓';
  color: var(--copper);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.4;
}
.sidebar-tier {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--light-grey);
  font-size: 14px;
}
.sidebar-tier:last-child { border-bottom: none; padding-bottom: 0; }
.tier-name { color: var(--charcoal); font-weight: 500; }
.tier-price {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--navy);
  font-size: 15px;
}
.confirmation-box {
  display: none;
  background: #e8f5e9;
  border: 1.5px solid #66bb6a;
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
}
.confirmation-box.show { display: block; }
.conf-icon {
  width: 56px; height: 56px;
  background: #4caf50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.conf-icon svg { color: white; }
.confirmation-box h3 { color: #2e7d32; margin-bottom: 10px; }
.confirmation-box p  { color: #388e3c; font-size: 14.5px; line-height: 1.65; }

/* ── RESPONSIVE ── */
@media (max-width: 1040px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .rc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .grid-2 { grid-template-columns: 1fr; }
  .hiw-grid { grid-template-columns: 1fr; }
  .hiw-grid::before { display: none; }
  .order-layout { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
  .signal-grid { grid-template-columns: 1fr; }
  .kv-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu.open { display: flex; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .rc-grid { grid-template-columns: 1fr; }
  .mock-verdict { flex-direction: column; gap: 12px; text-align: center; }
  .mock-verdict-sub { text-align: center; }
  .mock-verdict-summary { text-align: center; max-width: 100%; }
  .mock-comps-header, .mock-comp-row { grid-template-columns: 2fr 1fr 1fr; }
  .mock-comps-header span:last-child,
  .mock-comp-row span:last-child { display: none; }
  .proof-inner { flex-direction: column; gap: 0; }
  .proof-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.2); }
  .proof-item:last-child { border-bottom: none; }
  .footer-bottom { flex-direction: column; }
  .pills-row { grid-template-columns: 1fr 1fr; }
  .mock-stats { grid-template-columns: 1fr 1fr; }
}
