:root {
  --bg: #F7F6F3;
  --bg-dark: #141414;
  --fg: #141414;
  --fg-muted: #6B7280;
  --fg-light: #F7F6F3;
  --accent: #E5A220;
  --accent-dim: rgba(229, 162, 32, 0.15);
  --border: rgba(20, 20, 20, 0.08);
  --border-dark: rgba(247, 246, 243, 0.1);
  --card-bg: #FFFFFF;
  --shadow: 0 4px 24px rgba(20,20,20,0.06);
  --shadow-lg: 0 8px 48px rgba(20,20,20,0.10);
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* NAV */
.nav {
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-text {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}

/* HERO */
.hero {
  padding: 80px 48px 96px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.hero-headline {
  font-size: clamp(48px, 6vw, 80px);
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat {}
.stat-value {
  font-family: 'Archivo', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--fg);
  display: block;
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Hero Graphic */
.hero-graphic {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
}
.graphic-rings {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--accent);
}
.ring-1 { width: 280px; height: 280px; opacity: 0.15; }
.ring-2 { width: 200px; height: 200px; opacity: 0.25; }
.ring-3 { width: 130px; height: 130px; opacity: 0.4; }
.ring-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  background: var(--accent);
  border-radius: 50%;
  z-index: 1;
}
.ring-label {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: var(--fg);
  letter-spacing: 0.04em;
}
.graphic-badge {
  background: var(--fg);
  color: var(--bg);
  border-radius: 8px;
  padding: 16px 24px;
  width: 100%;
}
.badge-line {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 5px 0;
  border-bottom: 1px solid rgba(247,246,243,0.1);
}
.badge-line:last-child { border-bottom: none; }

/* FEATURES */
.features {
  padding: 96px 48px;
  background: #fff;
  border-top: 1px solid var(--border);
}
.features-header {
  max-width: 680px;
  margin: 0 auto 64px;
  text-align: center;
}
.features-title {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--fg);
  margin-bottom: 16px;
}
.features-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.65;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}
.feature-card {
  padding: 40px 32px;
  background: var(--bg);
}
.feature-icon {
  margin-bottom: 16px;
}
.feature-title {
  font-family: 'Archivo', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.feature-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* SPLIT SECTIONS */
.split-section {
  padding: 80px 48px;
}
.split-section--dark {
  background: var(--bg-dark);
  color: var(--fg-light);
}
.split-section--light {
  background: var(--bg);
}
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.split-grid--reversed .split-content { order: 2; }
.split-grid--reversed .split-illustration { order: 1; }
.split-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.split-title {
  font-size: clamp(28px, 3.5vw, 40px);
  color: inherit;
  margin-bottom: 20px;
}
.split-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.split-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.split-list li {
  font-size: 15px;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.split-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.split-section--dark .split-list li,
.split-section--dark .split-body {
  color: rgba(247,246,243,0.65);
}

/* Seller illustration */
.illus-card {
  background: rgba(247,246,243,0.05);
  border: 1px solid rgba(247,246,243,0.12);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
}
.illus-card-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247,246,243,0.4);
  margin-bottom: 16px;
}
.illus-car-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.illus-car-info { flex: 1; }
.illus-car-name {
  font-family: 'Archivo', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--fg-light);
}
.illus-car-price {
  font-family: 'Archivo', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
}
.illus-car-meta {
  font-size: 12px;
  color: rgba(247,246,243,0.5);
  margin-top: 2px;
}
.illus-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #4ADE80;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ADE80;
}
.illus-stat-row {
  display: flex;
  gap: 24px;
}
.illus-stat {}
.illus-stat-num {
  font-family: 'Archivo', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  display: block;
}
.illus-stat-label {
  font-size: 12px;
  color: rgba(247,246,243,0.5);
}

/* Buyer illustration */
.illus-search {
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.search-bar {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
.search-placeholder {
  font-size: 15px;
  color: var(--fg-muted);
}
.search-results { padding: 12px; }
.result-card {
  display: flex;
  gap: 14px;
  padding: 14px;
  border-radius: 8px;
  margin-bottom: 8px;
  border: 1px solid var(--border);
}
.result-card:last-child { margin-bottom: 0; }
.result-img-placeholder {
  width: 80px;
  height: 60px;
  border-radius: 6px;
  background: linear-gradient(135deg, #e8e5de 0%, #d4d0c8 100%);
  flex-shrink: 0;
}
.result-info { flex: 1; }
.result-title {
  font-family: 'Archivo', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 3px;
}
.result-meta {
  font-size: 12px;
  color: var(--fg-muted);
  margin-bottom: 4px;
}
.result-price {
  font-family: 'Archivo', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 6px;
}
.result-verified {
  display: flex;
  gap: 6px;
}
.v-badge {
  font-size: 10px;
  padding: 2px 8px;
  background: var(--accent-dim);
  color: #B87B10;
  border-radius: 100px;
  font-weight: 500;
}

/* CLOSING */
.closing {
  padding: 120px 48px;
  background: #fff;
  border-top: 1px solid var(--border);
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-size: clamp(36px, 5vw, 56px);
  color: var(--fg);
  margin-bottom: 28px;
}
.closing-body {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.closing-body:last-child { margin-bottom: 0; }

/* FOOTER */
.footer {
  padding: 48px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}
.footer-name {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--fg);
}
.footer-tagline {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 8px;
}
.footer-copy {
  font-size: 12px;
  color: var(--fg-muted);
}

/* NAV LINKS */
.nav-right {
  display: flex;
  gap: 20px;
  align-items: center;
}
.nav-link {
  font-size: 14px;
  color: var(--fg-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s;
}
.nav-link:hover { color: var(--fg); }

/* CHECKOUT FORM */
.checkout-form-wrapper {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.checkout-form-header {
  text-align: center;
  margin-bottom: 28px;
}
.checkout-price {
  font-family: 'Archivo', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.04em;
  line-height: 1;
}
.checkout-tagline {
  font-size: 14px;
  color: var(--fg-muted);
  margin-top: 6px;
}
.bos-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: 0.01em;
}
.form-group select,
.form-group input {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--fg);
  background: var(--bg);
  transition: border-color 0.15s;
  outline: none;
}
.form-group select:focus,
.form-group input:focus { border-color: var(--accent); }
.form-group select option[value=""] { color: var(--fg-muted); }
.btn-checkout {
  background: var(--fg);
  color: var(--fg-light);
  border: none;
  border-radius: 8px;
  padding: 16px 24px;
  font-family: 'Archivo', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: -0.01em;
  transition: background 0.15s;
}
.btn-checkout:hover:not(:disabled) { background: #2a2a2a; }
.btn-checkout:disabled { opacity: 0.6; cursor: not-allowed; }
.form-disclaimer {
  font-size: 12px;
  color: var(--fg-muted);
  text-align: center;
  line-height: 1.5;
}

/* STATES SECTION */
.states-section {
  padding: 80px 48px;
  background: #fff;
  border-top: 1px solid var(--border);
}
.states-header {
  max-width: 1200px;
  margin: 0 auto 48px;
  text-align: center;
}
.states-title {
  font-size: clamp(28px, 3vw, 40px);
  color: var(--fg);
  margin-bottom: 12px;
}
.states-sub { font-size: 16px; color: var(--fg-muted); }
.states-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto 32px;
}
.state-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  background: var(--bg);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.state-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(229,162,32,0.12);
}
.state-card--featured { border-color: var(--accent-dim); }
.state-card-rank {
  font-family: 'Archivo', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
  min-width: 36px;
}
.state-card-info { flex: 1; }
.state-card-name {
  font-family: 'Archivo', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 4px;
}
.state-card-desc { font-size: 13px; color: var(--fg-muted); }
.all-states-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}
.state-chip {
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 14px;
  color: var(--fg-muted);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.15s;
}
.state-chip:hover {
  border-color: var(--accent);
  color: var(--fg);
  background: var(--accent-dim);
}

/* TRUST SECTION */
.trust-section {
  padding: 80px 48px;
  border-top: 1px solid var(--border);
}
.trust-header {
  max-width: 800px;
  margin: 0 auto 56px;
  text-align: center;
}
.trust-title {
  font-size: clamp(28px, 3vw, 40px);
  color: var(--fg);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  max-width: 1000px;
  margin: 0 auto;
  background: var(--border);
}
.trust-grid--2col { max-width: 900px; }
.trust-card {
  padding: 36px 32px;
  background: var(--bg);
}
.trust-icon { margin-bottom: 16px; }
.trust-card-title {
  font-family: 'Archivo', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}
.trust-card-desc { font-size: 15px; color: var(--fg-muted); line-height: 1.6; }

/* FAQ SECTION */
.faq-section {
  padding: 80px 48px;
  background: #fff;
  border-top: 1px solid var(--border);
}
.faq-inner { max-width: 700px; margin: 0 auto; }
.faq-title {
  font-size: clamp(28px, 3vw, 40px);
  color: var(--fg);
  margin-bottom: 48px;
  text-align: center;
}
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }
.faq-q {
  font-family: 'Archivo', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}
.faq-a { font-size: 15px; color: var(--fg-muted); line-height: 1.7; }

/* CTA STRIP */
.cta-strip {
  padding: 64px 48px;
  background: var(--fg);
  text-align: center;
}
.cta-strip-inner { max-width: 600px; margin: 0 auto; }
.cta-strip-headline {
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--fg-light);
  margin-bottom: 12px;
}
.cta-strip-sub { font-size: 16px; color: rgba(247,246,243,0.6); margin-bottom: 32px; }
.cta-strip-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--fg);
  padding: 16px 40px;
  border-radius: 8px;
  font-family: 'Archivo', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: background 0.15s;
}
.cta-strip-btn:hover { background: #d4911e; }

/* SUCCESS PAGE */
.success-section {
  padding: 80px 48px;
  max-width: 600px;
  margin: 0 auto;
}
.success-inner { text-align: center; }
.success-icon { margin-bottom: 24px; display: flex; justify-content: center; }
.success-headline {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--fg);
  margin-bottom: 16px;
}
.success-body { font-size: 17px; color: var(--fg-muted); line-height: 1.7; margin-bottom: 36px; }
.success-order-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  text-align: left;
  margin-bottom: 36px;
}
.success-order-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.success-order-row {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.success-order-row:last-child { border-bottom: none; }
.success-order-row span:first-child { color: var(--fg-muted); }
.success-next { text-align: left; margin-bottom: 36px; }
.success-next-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 16px;
}
.success-next-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.success-next-list li {
  font-size: 15px;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
}
.success-next-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.btn-back-home {
  display: inline-block;
  padding: 12px 28px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Archivo', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
  transition: border-color 0.15s;
}
.btn-back-home:hover { border-color: var(--fg); }

/* 404 PAGE */
.notfound-section {
  padding: 120px 48px;
  text-align: center;
}
.notfound-inner { max-width: 500px; margin: 0 auto; }
.notfound-code {
  font-family: 'Archivo', sans-serif;
  font-size: 96px;
  font-weight: 800;
  color: var(--accent-dim);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 16px;
}
.notfound-headline {
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--fg);
  margin-bottom: 12px;
}
.notfound-body { font-size: 16px; color: var(--fg-muted); margin-bottom: 32px; }

/* GUIDE PAGES */
.guide-hero {
  padding: 64px 48px 48px;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.guide-hero-inner { max-width: 760px; margin: 0 auto; }
.guide-breadcrumb {
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.guide-breadcrumb a { color: var(--fg-muted); text-decoration: none; }
.guide-breadcrumb a:hover { color: var(--fg); }
.guide-headline {
  font-size: clamp(36px, 5vw, 56px);
  color: var(--fg);
  margin-bottom: 16px;
  line-height: 1.05;
}
.guide-subhead {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.6;
  max-width: 640px;
  margin-bottom: 20px;
}
.guide-meta {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: var(--fg-muted);
}
.guide-body {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 48px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  align-items: start;
}
.guide-toc { }
.toc-sticky {
  position: sticky;
  top: 32px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}
.toc-sticky h3 {
  font-family: 'Archivo', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.toc-sticky ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.toc-sticky ul li a {
  font-size: 14px;
  color: var(--fg-muted);
  text-decoration: none;
  line-height: 1.4;
}
.toc-sticky ul li a:hover { color: var(--accent); }
.guide-content { max-width: 700px; }
.guide-content h2 {
  font-family: 'Archivo', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 16px;
  margin-top: 56px;
  line-height: 1.15;
}
.guide-content h2:first-child { margin-top: 0; }
.guide-content p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.guide-content ul, .guide-content ol {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 20px;
  padding-left: 20px;
}
.guide-content li { margin-bottom: 8px; }
.guide-content a { color: var(--accent); text-decoration: none; }
.guide-content a:hover { text-decoration: underline; }
.guide-content strong { color: var(--fg); font-weight: 600; }
.guide-content em { font-style: italic; }
.guide-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 24px 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.guide-table thead { background: var(--fg); }
.guide-table th {
  padding: 12px 16px;
  color: var(--fg-light);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: left;
}
.guide-table td {
  padding: 12px 16px;
  color: var(--fg-muted);
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}
.guide-table tr:last-child td { border-bottom: none; }
.guide-table td a { color: var(--accent); font-weight: 500; }
.guide-cta {
  background: var(--fg);
  border-radius: 16px;
  padding: 40px;
  margin-top: 56px;
}
.guide-cta h2 {
  font-size: 28px !important;
  color: var(--fg-light) !important;
  margin-top: 0 !important;
}
.guide-cta p {
  color: rgba(247,246,243,0.7) !important;
  font-size: 16px;
}
.guide-cta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 28px 0;
}
.guide-cta-state a {
  display: block;
  padding: 12px 16px;
  background: rgba(247,246,243,0.08);
  border: 1px solid rgba(247,246,243,0.15);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--fg-light);
  text-decoration: none;
  transition: background 0.15s;
}
.guide-cta-state a:hover { background: rgba(247,246,243,0.15); }
.guide-cta-price {
  font-size: 14px !important;
  color: rgba(247,246,243,0.5) !important;
  margin-top: 16px !important;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .nav-right { gap: 12px; }
  .nav-link { font-size: 13px; }
  .hero { padding: 48px 24px 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-headline { font-size: 44px; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .checkout-form-wrapper { padding: 24px; }
  .checkout-price { font-size: 44px; }
  .states-section { padding: 64px 24px; }
  .states-grid { grid-template-columns: 1fr; }
  .trust-section { padding: 64px 24px; }
  .trust-grid { grid-template-columns: 1fr; }
  .faq-section { padding: 64px 24px; }
  .cta-strip { padding: 48px 24px; }
  .success-section { padding: 48px 24px; }
  .notfound-section { padding: 80px 24px; }
  .footer { padding: 32px 24px; }
  .hero-right { display: flex; justify-content: center; }
  /* Guide pages mobile */
  .guide-hero { padding: 40px 24px 32px; }
  .guide-body { grid-template-columns: 1fr; gap: 0; padding: 32px 24px; }
  .guide-toc { margin-bottom: 40px; }
  .toc-sticky { position: static; }
  .guide-cta { padding: 28px 24px; }
  .guide-cta-grid { grid-template-columns: 1fr; }
}