@import url('https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700&family=Geist+Mono:wght@400;500&display=swap');

:root {
  --ink: #142631;
  --paper: #F0EAD8;
  --paperd: #DDD5BF;
  --paperl: #F8F4EC;
  --teal: #0B7A8A;
  --teal-lt: #E0F2F4;
  --green: #498F5C;
  --peach: #D4845A;
  --muted: #6E7A80;
  --white: #FFFFFF;
  --font: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'Geist Mono', monospace;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Placeholder link tooltips */
[data-label] {
  position: relative;
}

[data-label]:hover::after {
  content: "Coming soon";
  position: absolute;
  background: var(--ink);
  color: var(--paper);
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 10;
}

/* Typography */
h1, h2, h3 {
  line-height: 1.1;
}

h1 {
  font-size: 72px;
  font-weight: 700;
  letter-spacing: -3px;
  line-height: 1.0;
}

h2 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -1.5px;
}

h3 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
}

.section-label {
  font-size: 11px;
  color: var(--teal);
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
}

.text-muted {
  color: var(--muted);
}

.text-center {
  text-align: center;
}

.section > .section-label.text-center {
  margin-bottom: 16px;
}

.section > h2.text-center {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease;
}

.btn-primary:hover {
  background: #096B79;
}

.btn-primary:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  border: 1px solid rgba(240, 234, 216, 0.25);
  color: rgba(240, 234, 216, 0.8);
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s ease;
}

.btn-secondary:hover {
  border-color: rgba(240, 234, 216, 0.5);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--paperd);
  color: var(--ink);
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: border-color 0.15s ease;
}

.btn-outline:hover {
  border-color: var(--teal);
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  border: none;
  color: var(--muted);
  padding: 12px 24px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: color 0.15s ease;
}

.btn-ghost:hover {
  color: var(--ink);
}

.btn-sm {
  font-size: 14px;
  padding: 10px 20px;
}

.btn-white {
  background: var(--white);
  color: var(--teal);
  font-size: 18px;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 10px;
  transition: background 0.15s ease;
}

.btn-white:hover {
  background: rgba(255, 255, 255, 0.9);
}

.btn-social {
  display: inline-block;
  border: 1px solid rgba(240, 234, 216, 0.25);
  color: var(--paper);
  background: transparent;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.15s ease;
}

.btn-social:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* Chips */
.chip-positive {
  display: inline-block;
  background: rgba(73, 143, 92, 0.12);
  color: var(--green);
  font-weight: 600;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 20px;
}

.chip-negative {
  display: inline-block;
  background: rgba(212, 132, 90, 0.12);
  color: var(--peach);
  font-weight: 600;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  text-decoration: line-through;
}

.chip-teal {
  display: inline-block;
  background: var(--teal-lt);
  color: var(--teal);
  font-weight: 600;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 20px;
}

.chip-dark {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(240, 234, 216, 0.85);
  font-weight: 600;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 20px;
}

.chip-good-deal {
  display: inline-block;
  background: rgba(73, 143, 92, 0.12);
  color: #3A8C3F;
  font-weight: 600;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 20px;
}

.chip-peach {
  display: inline-block;
  background: rgba(212, 132, 90, 0.12);
  color: var(--peach);
  font-weight: 600;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 20px;
}

.chip-peach-dark {
  display: inline-block;
  background: rgba(212, 132, 90, 0.12);
  color: #C07040;
  font-weight: 600;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 20px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* Nav */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 64px;
  background: transparent;
  transition: background 0.2s ease, border-color 0.2s ease;
}

nav.scrolled {
  background: var(--ink);
  border-bottom: 1px solid rgba(240, 234, 216, 0.1);
}

nav .nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo .wordmark {
  font-size: 18px;
  font-weight: 700;
  color: var(--paper);
}

.nav-logo .wordmark-light {
  font-weight: 300;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  color: rgba(240, 234, 216, 0.65);
  transition: color 0.15s ease;
}

.nav-links a:hover {
  color: var(--paper);
}

.nav-right {
  display: flex;
  align-items: center;
}

.nav-contact {
  font-size: 14px;
  color: rgba(240, 234, 216, 0.65);
  margin-right: 24px;
  transition: color 0.15s ease;
}

.nav-contact:hover {
  color: var(--paper);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-size: 28px;
  font-weight: 600;
  color: var(--paper);
}

.mobile-menu .close-btn {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 36px;
  color: var(--paper);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}

/* Hero */
.hero {
  background: var(--ink);
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 0 48px;
  margin-top: -64px;
  padding-top: 64px;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
  width: 100%;
}

.hero-left {
  flex: 0 0 52%;
}

.hero-right {
  flex: 0 0 48%;
}

.eyebrow {
  display: inline-block;
  background: rgba(11, 122, 138, 0.2);
  border: 1px solid rgba(11, 122, 138, 0.4);
  color: var(--teal);
  font-size: 13px;
  border-radius: 20px;
  padding: 6px 16px;
  margin-bottom: 28px;
}

.hero h1 .line1 {
  color: var(--paper);
}

.hero h1 .line2 {
  color: var(--teal);
}

.hero-sub {
  margin-top: 24px;
  max-width: 480px;
  font-size: 19px;
  color: rgba(240, 234, 216, 0.6);
  line-height: 1.65;
}

.hero-buttons {
  margin-top: 40px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-caption {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(240, 234, 216, 0.35);
}

/* Popup mockup */
.popup-frame {
  max-width: 340px;
  margin: 0 auto;
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(240, 234, 216, 0.1);
  border-radius: 20px;
  padding: 16px;
}

.live-badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background: var(--teal);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}

.popup {
  border-radius: 10px;
  overflow: hidden;
}

.popup-header {
  background: #0F1E2A;
  border-bottom: 3px solid var(--teal);
  padding: 13px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.popup-header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.popup-header-left span {
  font-size: 16px;
  color: var(--paper);
  font-weight: 600;
}

.popup-body {
  background: var(--paper);
  padding: 12px;
}

.address-bar {
  background: var(--white);
  border-radius: 8px;
  padding: 8px 12px;
  border: 0.5px solid var(--paperd);
  font-size: 11.5px;
  margin-bottom: 10px;
  color: var(--ink);
}

.verdict-card {
  background: var(--ink);
  border-radius: 10px;
  padding: 14px;
}

.verdict-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.verdict-label {
  font-size: 20px;
  font-weight: 700;
}

.verdict-label.great {
  color: var(--green);
}

.verdict-label.fair {
  color: var(--peach);
}

.verdict-label.overpriced {
  color: var(--peach);
}

.verdict-meta {
  font-size: 11px;
  color: rgba(240, 234, 216, 0.45);
  margin-top: 3px;
}

.verdict-score {
  text-align: right;
}

.verdict-score .score-num {
  font-size: 38px;
  font-weight: 700;
  font-family: var(--font-mono);
  color: var(--paper);
  line-height: 1;
}

.verdict-score .score-denom {
  font-size: 11px;
  color: rgba(240, 234, 216, 0.3);
  font-family: var(--font-mono);
}

.score-bars {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
}

.score-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.score-row-label {
  width: 56px;
  flex-shrink: 0;
  font-size: 11px;
  color: rgba(240, 234, 216, 0.4);
}

.score-row-bar {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.score-row-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 4px;
  border-radius: 2px;
}

.score-row-fill.green { background: var(--green); }
.score-row-fill.teal { background: var(--teal); }
.score-row-fill.peach { background: var(--peach); }

.score-row-num {
  width: 18px;
  font-size: 11px;
  color: var(--paper);
  font-family: var(--font-mono);
  text-align: right;
}

.verdict-divider {
  height: 0.5px;
  background: rgba(255, 255, 255, 0.07);
  margin: 8px 0;
}

.verdict-quote {
  font-size: 11px;
  font-style: italic;
  color: rgba(240, 234, 216, 0.55);
  line-height: 1.55;
}

/* Trust bar */
.trust-bar {
  background: var(--paper);
  border-top: 1px solid var(--paperd);
  border-bottom: 1px solid var(--paperd);
  padding: 28px 48px;
}

.trust-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.trust-stat {
  text-align: center;
  flex: 1;
  position: relative;
}

.trust-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 32px;
  background: var(--paperd);
}

.trust-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}

.trust-label {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}

/* Sections */
.section {
  padding: 120px 48px;
}

.section-white {
  background: var(--white);
}

.section-paper {
  background: var(--paper);
}

.section-dark {
  background: var(--ink);
}

.section-dark .section-label {
  color: var(--teal);
}

.section-dark h2 {
  color: var(--paper);
}

.section-sub {
  font-size: 14px;
  color: var(--muted);
  text-align: center;
  max-width: 560px;
  margin: 16px auto 0;
  line-height: 1.65;
}

.section-dark .section-sub {
  color: rgba(240, 234, 216, 0.55);
}

.section-sub-lg {
  margin-bottom: 64px;
}

.section-sub-md {
  margin-bottom: 56px;
}

.section-sub-sm {
  margin-bottom: 48px;
}

/* Step cards */
.steps-grid {
  display: flex;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.step-card {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--paperd);
  border-radius: 16px;
  padding: 36px 28px;
  transition: all 0.2s ease;
}

.step-card:hover {
  border-color: var(--teal);
  transform: translateY(-4px);
}

.step-number {
  font-size: 48px;
  font-family: var(--font-mono);
  color: var(--teal);
  opacity: 0.25;
  margin-bottom: 16px;
  line-height: 1;
}

.step-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 16px;
  color: var(--teal);
}

.step-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}

.step-body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

/* Features grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--paperd);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.15s ease;
}

.feature-card:hover {
  border-color: var(--teal);
}

.feature-icon {
  width: 40px;
  height: 40px;
  color: var(--teal);
  margin-bottom: 20px;
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}

.feature-body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.feature-footer {
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--paperd);
}

/* Verdict examples */
.verdicts-grid {
  display: flex;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.verdict-example {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(240, 234, 216, 0.08);
  border-radius: 12px;
  padding: 20px;
}

.verdict-example-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(240, 234, 216, 0.07);
}

.verdict-example-header span {
  font-size: 12px;
  color: var(--paper);
  font-weight: 600;
}

.verdict-address {
  font-size: 12px;
  font-weight: 700;
  color: var(--paper);
}

.verdict-details {
  font-size: 11px;
  color: rgba(240, 234, 216, 0.45);
  margin-top: 2px;
}

.verdict-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 12px;
}

.verdict-row-left .verdict-label {
  font-size: 18px;
}

.verdict-example .verdict-score .score-num {
  font-size: 36px;
}

.verdict-example .verdict-quote {
  font-size: 11px;
  font-style: italic;
  color: rgba(240, 234, 216, 0.5);
  line-height: 1.55;
}

/* Scoring explainer */
.tier-grid {
  display: flex;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto 56px;
}

.tier-card {
  flex: 1;
  border: 1px solid var(--paperd);
  border-radius: 12px;
  padding: 24px;
}

.tier-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.tier-subtitle {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}

.weight-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.weight-bar-label {
  width: 72px;
  flex-shrink: 0;
  font-size: 13px;
  color: var(--muted);
}

.weight-bar-track {
  flex: 1;
  height: 6px;
  background: var(--paperd);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}

.weight-bar-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 6px;
  background: var(--teal);
  border-radius: 3px;
}

.weight-bar-fill.gray {
  background: var(--paperd);
}

.weight-bar-pct {
  width: 36px;
  font-size: 13px;
  font-family: var(--font-mono);
  color: var(--teal);
  text-align: right;
}

.weight-bar-pct.muted {
  color: var(--muted);
}

.verdict-table {
  max-width: 560px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--paperd);
}

.verdict-table table {
  width: 100%;
  border-collapse: collapse;
}

.verdict-table th {
  background: var(--ink);
  color: var(--paper);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 20px;
  text-align: left;
}

.verdict-table td {
  padding: 14px 20px;
  font-size: 14px;
  color: var(--muted);
}

.verdict-table tr:nth-child(even) td {
  background: var(--paperl);
}

.verdict-table tr:nth-child(odd) td {
  background: var(--white);
}

/* Pricing */
.free-banner {
  max-width: 1200px;
  margin: 0 auto 32px;
  background: rgba(73, 143, 92, 0.08);
  border: 1px solid rgba(73, 143, 92, 0.2);
  border-radius: 12px;
  padding: 20px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.free-banner-left {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.free-banner-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--green);
}

.free-banner-sub {
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
}

.pricing-grid {
  display: flex;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--paperd);
  border-radius: 16px;
  padding: 32px;
}

.pricing-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}

.pricing-card-sub {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
  margin-bottom: 28px;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--paperd);
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-row.featured {
  padding: 16px;
  background: rgba(11, 122, 138, 0.04);
  border-left: 3px solid var(--teal);
  position: relative;
  border-bottom: 1px solid var(--paperd);
}

.pricing-badge {
  position: absolute;
  top: -10px;
  right: 16px;
  background: var(--teal);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}

.pricing-row-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}

.pricing-row-detail {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.pricing-row-price {
  font-size: 22px;
  font-weight: 700;
  font-family: var(--font-mono);
  color: var(--teal);
}

.pricing-footer {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: var(--muted);
}

/* Cities */
.cities-grid {
  display: flex;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.city-card {
  flex: 1;
  border: 1px solid var(--paperd);
  border-radius: 16px;
  padding: 32px;
}

.city-card.featured {
  border: 2px solid var(--teal);
}

.city-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 16px;
}

.city-badge.live {
  background: var(--green);
}

.city-badge.upcoming {
  background: var(--teal);
}

.city-badge.future {
  background: var(--muted);
}

.city-name {
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
}

.city-neighborhoods {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 8px;
  margin-bottom: 20px;
}

.city-platforms {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 24px;
}

/* Social */
.social-grid {
  display: flex;
  gap: 20px;
  max-width: 640px;
  margin: 0 auto;
}

.social-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(240, 234, 216, 0.1);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
}

.social-icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 16px;
  color: var(--paper);
}

.social-handle {
  font-size: 20px;
  font-weight: 700;
  color: var(--paper);
  margin-bottom: 8px;
}

.social-desc {
  font-size: 14px;
  color: rgba(240, 234, 216, 0.55);
  margin-bottom: 24px;
  line-height: 1.65;
}

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--paperd);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  width: 100%;
  text-align: left;
  background: none;
  border: none;
}

.faq-chevron {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--muted);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 0 20px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* Final CTA */
.final-cta {
  background: var(--teal);
  padding: 100px 48px;
  text-align: center;
}

.final-cta .logo-large {
  margin: 0 auto 32px;
}

.final-cta h2 {
  font-size: 52px;
  color: var(--white);
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.final-cta-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
}

.final-cta-caption {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 20px;
}

/* Footer */
footer {
  background: #0F1D28;
  border-top: 1px solid rgba(240, 234, 216, 0.07);
  padding: 60px 48px 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(240, 234, 216, 0.07);
}

.footer-col-1 {
  flex-basis: 40%;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(240, 234, 216, 0.45);
  margin-top: 10px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  color: rgba(240, 234, 216, 0.5);
  transition: color 0.15s ease;
}

.footer-social a:hover {
  color: var(--teal);
}

.footer-col-label {
  font-size: 10px;
  color: var(--teal);
  letter-spacing: 1.5px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  font-size: 14px;
  color: rgba(240, 234, 216, 0.55);
  margin-bottom: 10px;
  transition: color 0.15s ease;
}

.footer-links a:hover {
  color: var(--paper);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 28px;
  font-size: 12px;
  color: rgba(240, 234, 216, 0.3);
}

/* Legal pages */
.legal-page {
  background: var(--white);
  padding: 80px 48px;
  min-height: 60vh;
}

.legal-content {
  max-width: 720px;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: 48px;
  letter-spacing: -1.5px;
}

.legal-updated {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
  margin-bottom: 56px;
}

.legal-content h2 {
  font-size: 24px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-content p,
.legal-content li {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 12px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

nav.nav-light {
  background: var(--ink);
  border-bottom: 1px solid rgba(240, 234, 216, 0.1);
}

/* Contact form */
.contact-page {
  background: var(--white);
  padding: 100px 48px 80px;
  min-height: 60vh;
}

.contact-content {
  max-width: 520px;
  margin: 0 auto;
}

.contact-intro {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  font-family: var(--font);
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--paperd);
  border-radius: 8px;
  padding: 12px 14px;
  transition: border-color 0.15s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--teal);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}

.form-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.contact-form .btn-primary {
  width: 100%;
  text-align: center;
  border: none;
  cursor: pointer;
}

.contact-form .btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-status {
  font-size: 14px;
  line-height: 1.6;
  padding: 12px 16px;
  border-radius: 8px;
  display: none;
}

.form-status.visible {
  display: block;
}

.form-status.success {
  background: rgba(73, 143, 92, 0.1);
  color: var(--green);
  border: 1px solid rgba(73, 143, 92, 0.25);
}

.form-status.error {
  background: rgba(212, 132, 90, 0.1);
  color: var(--peach);
  border: 1px solid rgba(212, 132, 90, 0.25);
}

.contact-success-panel {
  display: none;
  text-align: center;
  padding: 24px 0;
}

.contact-success-panel.visible {
  display: block;
}

.contact-success-panel h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

.contact-success-panel p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 44px;
    letter-spacing: -2px;
    line-height: 1.1;
  }

  h2 {
    font-size: 32px;
  }

  .container,
  nav .nav-inner,
  .hero,
  .trust-bar,
  .section,
  .final-cta,
  footer,
  .legal-page {
    padding-left: 24px;
    padding-right: 24px;
  }

  nav .nav-inner {
    padding: 0 24px;
  }

  .nav-links,
  .nav-right .nav-contact,
  .nav-right .btn-primary {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .hero-inner {
    flex-direction: column;
  }

  .hero-left,
  .hero-right {
    flex: none;
    width: 100%;
  }

  .hero-right {
    margin-top: 48px;
  }

  .popup-frame {
    max-width: 300px;
  }

  .trust-inner {
    flex-wrap: wrap;
    gap: 24px;
  }

  .trust-stat {
    flex: 0 0 calc(50% - 12px);
  }

  .trust-stat::after {
    display: none;
  }

  .trust-stat:nth-child(odd)::after {
    display: block;
  }

  .trust-stat:nth-child(2)::after {
    display: none;
  }

  .steps-grid,
  .verdicts-grid,
  .tier-grid,
  .pricing-grid,
  .cities-grid,
  .social-grid {
    flex-direction: column;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .verdicts-grid {
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
  }

  .verdict-example {
    min-width: 280px;
    flex: none;
    scroll-snap-align: start;
  }

  .footer-top {
    flex-direction: column;
    gap: 32px;
  }

  .footer-col-1 {
    flex-basis: auto;
  }

  .free-banner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .free-banner-left {
    flex-direction: column;
    align-items: center;
  }

  .final-cta h2 {
    font-size: 36px;
  }

  .section {
    padding: 72px 24px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 36px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .trust-stat {
    flex: 0 0 100%;
  }

  .trust-stat::after {
    display: none !important;
  }
}
