/* ============================================================
   VanPricer — Shared Styles
   Design language: warm earth tones, clean + professional
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Space+Grotesk:wght@500;600;700&display=swap');

/* ── Variables ────────────────────────────────────────────── */
:root {
  --sand:        #F5F0EB;
  --dark:        #1A1A1A;
  --forest:      #2D4A3E;
  --rust:        #C45D3E;
  --rust-dark:   #A84C30;
  --warm-white:  #FAFAF7;
  --border:      #E5E0DA;
  --text-muted:  #7A746E;
  --text-light:  #9C9590;
  --shadow-sm:   0 1px 4px rgba(0,0,0,0.07);
  --shadow-md:   0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:   0 8px 32px rgba(0,0,0,0.13);
  --radius:      12px;
  --radius-sm:   8px;
  --radius-lg:   16px;
  --transition:  0.18s ease;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--warm-white);
  color: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--rust); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: 1.25rem; }
p  { color: #3A3530; }

/* ── Layout ───────────────────────────────────────────────── */
.container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 20px;
}
.container--narrow { max-width: 680px; }
.container--wide   { max-width: 1200px; }

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
  padding: 0 20px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav__inner {
  max-width: 1060px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
}
.nav__logo span { color: var(--rust); }
.nav__cta {
  background: var(--rust);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 9px 20px;
  border-radius: 8px;
  transition: background var(--transition);
}
.nav__cta:hover { background: var(--rust-dark); text-decoration: none; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn--primary {
  background: var(--rust);
  color: #fff;
}
.btn--primary:hover { background: var(--rust-dark); text-decoration: none; }
.btn--secondary {
  background: var(--rust);
  color: #fff;
  border: 1.5px solid var(--rust);
}
.btn--secondary:hover { background: var(--rust-dark); text-decoration: none; }
.btn--forest {
  background: var(--forest);
  color: #fff;
}
.btn--forest:hover { background: #243d32; text-decoration: none; }
.btn--large { font-size: 1.1rem; padding: 16px 36px; }
.btn--full  { width: 100%; justify-content: center; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ── Cards ────────────────────────────────────────────────── */
.card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

/* ── Card Selector (make, build type) ─────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 10px;
}
.card-grid--wide {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}
.card-option {
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  padding: 14px 12px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  user-select: none;
}
.card-option:hover {
  border-color: var(--rust);
  background: rgba(196,93,62,0.03);
}
.card-option.selected {
  border-color: var(--rust);
  background: rgba(196,93,62,0.06);
}
.card-option .card-icon {
  font-size: 1.6rem;
  margin-bottom: 6px;
}
.card-option .card-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
}
.card-option .card-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ── Form Elements ────────────────────────────────────────── */
.form-group {
  margin-bottom: 24px;
}
.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: var(--dark);
}
.form-label .form-hint {
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-left: 6px;
}
.form-input, .form-select {
  width: 100%;
  padding: 12px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--dark);
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A746E' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-input:focus, .form-select:focus {
  border-color: var(--rust);
  box-shadow: 0 0 0 3px rgba(196,93,62,0.12);
}
.form-input::placeholder { color: var(--text-light); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── Radio/Checkbox Groups ────────────────────────────────── */
.radio-group, .check-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.radio-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all var(--transition);
  user-select: none;
  background: #fff;
}
.radio-pill:hover { border-color: var(--rust); background: rgba(196,93,62,0.03); }
.radio-pill.selected {
  border-color: var(--rust);
  background: rgba(196,93,62,0.08);
  color: var(--rust);
}
.radio-pill input[type="radio"],
.radio-pill input[type="checkbox"] { display: none; }

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 500;
  background: #fff;
  transition: all var(--transition);
  user-select: none;
}
.checkbox-item:hover { border-color: var(--rust); background: rgba(196,93,62,0.03); }
.checkbox-item.selected {
  border-color: var(--rust);
  background: rgba(196,93,62,0.07);
}
.checkbox-item input[type="checkbox"] { display: none; }
.checkbox-item .check-icon {
  width: 18px;
  height: 18px;
  border: 2px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  flex-shrink: 0;
}
.checkbox-item.selected .check-icon {
  background: var(--rust);
  border-color: var(--rust);
  color: #fff;
}

.features-section { margin-bottom: 28px; }
.features-section h4 {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.check-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 8px;
}

/* ── Star Rating ──────────────────────────────────────────── */
.star-rating { display: flex; gap: 6px; }
.star {
  font-size: 2rem;
  cursor: pointer;
  color: var(--border);
  transition: color var(--transition);
  user-select: none;
}
.star.active, .star:hover ~ .star.active { color: #E8B84B; }
.star-rating:hover .star { color: #E8B84B; }
.star-rating:hover .star:hover ~ .star { color: var(--border); }

/* ── Progress Bar ─────────────────────────────────────────── */
.progress-bar {
  background: var(--border);
  height: 4px;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 8px;
}
.progress-fill {
  height: 100%;
  background: var(--rust);
  border-radius: 2px;
  transition: width 0.4s ease;
}

/* ── Badges ───────────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.badge--forest { background: rgba(45,74,62,0.12); color: var(--forest); }
.badge--rust   { background: rgba(196,93,62,0.12); color: var(--rust); }
.badge--sand   { background: var(--sand); color: var(--text-muted); }

/* ── Pricing Tiers ────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}
.pricing-tier {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  background: #fff;
  position: relative;
}
.pricing-tier.featured {
  border-color: var(--rust);
  box-shadow: 0 0 0 3px rgba(196,93,62,0.1);
}
.pricing-tier .tier-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.pricing-tier.featured .tier-label { color: var(--rust); }
.pricing-tier .tier-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--dark);
}
.pricing-tier .tier-days {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.tier-badge-featured {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--rust);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

/* ── Comp Cards ───────────────────────────────────────────── */
.comp-card {
  display: flex;
  gap: 14px;
  padding: 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  margin-bottom: 10px;
  transition: border-color var(--transition);
}
.comp-card:hover { border-color: #C8C3BC; }
.comp-thumb {
  width: 80px;
  height: 60px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--sand);
}
.comp-thumb-placeholder {
  width: 80px;
  height: 60px;
  border-radius: 6px;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  color: var(--text-light);
}
.comp-body { flex: 1; min-width: 0; }
.comp-title {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.comp-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.comp-price {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  white-space: nowrap;
}
.comp-status-sold { color: var(--forest); font-size: 0.75rem; font-weight: 600; }

/* ── Blurred / locked paywall ─────────────────────────────── */
.paywall-blur {
  position: relative;
  overflow: hidden;
}
.paywall-blur::after {
  content: '';
  position: absolute;
  inset: 0;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  background: rgba(250,250,247,0.55);
  border-radius: var(--radius);
  pointer-events: none;
}

/* ── Paywall CTA block ────────────────────────────────────── */
.paywall-block {
  border: 2px solid var(--rust);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  background: #fff;
  margin: 32px 0;
}
.paywall-block h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.paywall-block p {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 0.95rem;
}
.paywall-list {
  list-style: none;
  text-align: left;
  max-width: 340px;
  margin: 0 auto 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.paywall-list li {
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--dark);
}
.paywall-list li::before {
  content: '✓';
  color: var(--forest);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ── Sticky bottom bar ────────────────────────────────────── */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: #fff;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 200;
  box-shadow: 0 -2px 16px rgba(0,0,0,0.2);
}
.sticky-bar p { color: #E5E0DA; font-size: 0.9rem; margin: 0; }
.sticky-bar .btn { flex-shrink: 0; }

/* ── Loading screen ───────────────────────────────────────── */
.loading-screen {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 40px 20px;
  display: none;
}
.loading-screen.active { display: flex; }
.spinner {
  width: 52px;
  height: 52px;
  border: 4px solid var(--border);
  border-top-color: var(--rust);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loading-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 340px;
  width: 100%;
}
.loading-step {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.loading-step.visible { opacity: 1; transform: translateY(0); }
.loading-step .step-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
  transition: background 0.3s ease;
}
.loading-step.visible .step-dot { background: var(--rust); }
.loading-step .step-done .step-dot { background: var(--forest); }
.loading-step span { font-size: 0.9rem; color: var(--text-muted); }
.loading-step.visible span { color: var(--dark); }

/* ── Landing page ─────────────────────────────────────────── */
.hero {
  background: var(--sand);
  padding: 80px 20px;
  text-align: center;
}
.hero h1 { margin-bottom: 20px; }
.hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 36px;
}
.hero-cta-group {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-tag {
  display: inline-block;
  background: rgba(196,93,62,0.1);
  color: var(--rust);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section { padding: 72px 20px; }
.section--sand { background: var(--sand); }
.section--white { background: #fff; }
.section-title { text-align: center; margin-bottom: 48px; }
.section-title h2 { margin-bottom: 10px; }
.section-title p { color: var(--text-muted); font-size: 1rem; }

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.value-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.value-card .value-icon { font-size: 2rem; margin-bottom: 14px; }
.value-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.value-card p  { font-size: 0.9rem; color: var(--text-muted); }

.steps-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}
.step-item { text-align: center; }
.step-number {
  width: 44px;
  height: 44px;
  background: var(--rust);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 auto 16px;
}
.step-item h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step-item p  { font-size: 0.9rem; color: var(--text-muted); }

/* Free vs Paid comparison */
.tier-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 780px;
  margin: 0 auto;
}
.tier-col { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; }
.tier-col.featured { border-color: var(--rust); }
.tier-col h3 { font-size: 1.05rem; margin-bottom: 6px; }
.tier-price-tag {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--rust);
  margin-bottom: 20px;
}
.tier-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.tier-col ul li { font-size: 0.9rem; display: flex; align-items: flex-start; gap: 8px; }
.tier-col ul li::before { content: '✓'; color: var(--forest); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.tier-col ul li.locked::before { content: '🔒'; font-size: 0.8rem; }

/* Founder quote */
.founder-quote {
  background: var(--forest);
  padding: 64px 20px;
  text-align: center;
}
.founder-quote blockquote {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: rgba(255,255,255,0.9);
  font-style: italic;
  max-width: 640px;
  margin: 0 auto 20px;
  line-height: 1.65;
}
.founder-quote cite {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  font-style: normal;
}

/* Footer */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 32px 20px;
  text-align: center;
  font-size: 0.85rem;
}
.footer a { color: rgba(255,255,255,0.5); }
.footer a:hover { color: rgba(255,255,255,0.8); text-decoration: underline; }
.footer-links { display: flex; gap: 20px; justify-content: center; margin-bottom: 12px; }

/* ── Questionnaire shell ───────────────────────────────────── */
.questionnaire {
  min-height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
}
.q-header {
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
  padding: 20px;
}
.q-header-inner {
  max-width: 680px;
  margin: 0 auto;
}
.q-step-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.q-body { flex: 1; padding: 36px 20px; }
.q-body-inner { max-width: 680px; margin: 0 auto; }
.q-step { display: none; }
.q-step.active {
  display: block;
  animation: fadeInUp 0.28s ease;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.q-step-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.q-step-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.q-footer {
  background: var(--warm-white);
  border-top: 1px solid var(--border);
  padding: 20px;
  position: sticky;
  bottom: 0;
}
.q-footer-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.q-skip {
  font-size: 0.85rem;
  color: var(--text-muted);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.q-skip:hover { color: var(--dark); text-decoration: underline; }

/* ── Results page ─────────────────────────────────────────── */
.results-header {
  background: var(--sand);
  padding: 40px 20px;
  border-bottom: 1px solid var(--border);
}
.results-header-inner {
  max-width: 860px;
  margin: 0 auto;
}
.results-van-title {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
  margin-bottom: 8px;
}
.results-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.results-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 32px 20px 120px;
}
.section-heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.results-section { margin-bottom: 40px; }

.comp-analysis-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 4px;
  font-style: italic;
  line-height: 1.5;
}

.strength-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(45,74,62,0.06);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
}
.strength-item .strength-icon { flex-shrink: 0; font-size: 1rem; }
.strength-item p { font-size: 0.9rem; margin: 0; }

.concern-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(196,93,62,0.06);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
}
.concern-item .concern-icon { flex-shrink: 0; font-size: 1rem; }
.concern-item p { font-size: 0.9rem; margin: 0; }

.narrative-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #3A3530;
  white-space: pre-wrap;
}

.listing-copy-box {
  background: var(--sand);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  font-size: 0.9rem;
  line-height: 1.7;
  white-space: pre-wrap;
  position: relative;
}
.copy-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--forest);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}
.copy-btn:hover { background: #243d32; }

.confidence-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}
.confidence-track {
  flex: 1;
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.confidence-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 0.6s ease;
}
.confidence-fill.high   { width: 100%; background: var(--forest); }
.confidence-fill.medium { width: 65%;  background: #E8B84B; }
.confidence-fill.low    { width: 30%;  background: var(--rust); }

.methodology-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}
.methodology-row:last-child { border-bottom: none; }
.methodology-row .mrow-label { color: var(--text-muted); }
.methodology-row .mrow-value { font-weight: 600; font-family: 'Space Grotesk', sans-serif; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .tier-comparison { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .check-grid { grid-template-columns: 1fr; }
  .q-footer-inner { flex-direction: column; gap: 12px; }
  .q-footer-inner .btn { width: 100%; }
  .hero { padding: 52px 20px; }
  .section { padding: 52px 20px; }
  .comp-card { flex-direction: column; }
  .comp-thumb, .comp-thumb-placeholder { width: 100%; height: 140px; }
  .sticky-bar { flex-direction: column; text-align: center; }
}

/* ── Utility ──────────────────────────────────────────────── */
.text-muted { color: var(--text-muted); }
.text-rust  { color: var(--rust); }
.text-forest { color: var(--forest); }
.mt-0  { margin-top: 0; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-0  { margin-bottom: 0; }
.mb-8  { margin-bottom: 8px; }
.divider { border: none; border-top: 1px solid var(--border); margin: 28px 0; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
