/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:       #1B4332;
  --green-light: #2D6A4F;
  --amber:       #D97706;
  --amber-light: #F59E0B;
  --cream:       #FAF7F2;
  --cream-dark:  #F0EBE1;
  --ink:         #1A1A18;
  --ink-muted:   #5C5C58;
  --over:        #15803D;
  --under:       #B91C1C;
  --even:        #1D4ED8;
  --border:      #E5E0D8;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== NAV ===== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--ink-muted);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.nav-cta {
  margin-left: auto;
  background: var(--green);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.15s;
  white-space: nowrap;
}
.nav-cta:hover { background: #215f3c; }

/* ===== HERO ===== */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 96px 32px 64px;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--green);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--ink-muted);
  max-width: 560px;
  margin-bottom: 28px;
  line-height: 1.7;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.hero-cta-primary {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.15s;
}
.hero-cta-primary:hover { background: var(--green-light); }
.hero-cta-caption {
  font-size: 0.82rem;
  color: var(--ink-muted);
  max-width: 280px;
  line-height: 1.4;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-block {
  display: flex;
  flex-direction: column;
  padding: 0 32px;
  border-left: 1px solid var(--border);
}
.stat-block:first-child { border-left: none; padding-left: 0; }
.stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* ===== LIVE DATA ===== */
.live-data {
  background: var(--green);
  padding: 72px 32px;
}
.live-data-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.live-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: rgba(250, 247, 242, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 40px;
}
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25); }
  50%       { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.0); }
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  color: var(--cream);
}
.price-row { display: flex; align-items: stretch; }
.price-header {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(250, 247, 242, 0.45);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 12px;
  margin-bottom: 4px;
}
.price-row:not(.price-header) {
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 14px 0;
  transition: background 0.15s;
}
.price-row:not(.price-header):hover { background: rgba(255,255,255,0.04); }
.price-row > span { flex: 1; }
.price-col-wide { flex: 2 !important; }
.price-min { color: rgba(250, 247, 242, 0.55); font-size: 0.9rem; }
.price-med { font-weight: 600; color: var(--amber-light); font-size: 1rem; }
.price-max { color: rgba(250, 247, 242, 0.55); font-size: 0.9rem; }
.price-sources { font-size: 0.75rem; color: rgba(250, 247, 242, 0.35); text-align: right; }

/* For flexbox price rows */
.price-row > span:first-child { flex: 2; }
.price-row > span:nth-child(2) { flex: 1; }
.price-row > span:nth-child(3) { flex: 1; font-weight: 600; color: var(--amber-light); }
.price-row > span:nth-child(4) { flex: 1; }
.price-row > span:nth-child(5) { flex: 1; text-align: right; font-size: 0.75rem; color: rgba(250,247,242,0.35); }

.live-note {
  font-size: 0.8rem;
  color: rgba(250, 247, 242, 0.35);
  margin-top: 28px;
  font-style: italic;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  max-width: 1100px;
  margin: 0 auto;
  padding: 96px 32px;
}
.how-header { margin-bottom: 64px; }
.how-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.4rem;
  color: var(--green);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.how-header p {
  font-size: 1.05rem;
  color: var(--ink-muted);
}
.steps {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.step {
  flex: 1;
  min-width: 240px;
  padding: 32px;
  background: var(--cream-dark);
  border: 1px solid var(--border);
}
.step-connector {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.step-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--amber);
  margin-bottom: 16px;
}
.step h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 12px;
}
.step p {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.65;
}

/* ===== CATEGORY COVERAGE (drinks callout) ===== */
.category-coverage {
  margin-top: 64px;
  padding: 32px;
  background: var(--cream-dark);
  border: 1px solid var(--border);
}
.category-coverage h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 20px;
}
.coverage-row {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.coverage-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--ink);
}
.coverage-icon {
  font-size: 1.4rem;
}
.coverage-label {
  font-size: 0.9rem;
  color: var(--ink-muted);
}
.coverage-note {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--amber);
  margin-top: 8px;
}

/* ===== REPORT PREVIEW ===== */
.report-preview {
  background: var(--cream-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 96px 32px;
}
.report-preview-inner { max-width: 900px; margin: 0 auto; }
.report-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.report-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(217, 119, 6, 0.1);
  padding: 4px 10px;
  border-radius: 3px;
}
.report-postcode {
  font-size: 0.85rem;
  color: var(--ink-muted);
}
.report-mockup {
  background: #fff;
  border: 1px solid var(--border);
  overflow: hidden;
}
.report-header-row {
  display: flex;
  padding: 12px 20px;
  background: var(--green);
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.report-row {
  display: flex;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  transition: background 0.1s;
}
.report-row:last-child { border-bottom: none; }
.report-row:hover { background: #FAFAF8; }
.report-col-wide { flex: 2; font-weight: 500; }
.report-col { flex: 1; text-align: center; }
.report-col:last-child { text-align: right; }
.report-footer-row { background: var(--cream); border-top: 2px solid var(--border); }
.report-footer-row .report-col-wide { font-weight: 700; color: var(--green); }
.highlight { color: var(--green); font-weight: 700; font-size: 1rem; }
.over { color: var(--over); font-weight: 600; }
.under { color: var(--under); font-weight: 600; }
.even { color: var(--ink-muted); }
.report-note {
  font-size: 0.8rem;
  color: var(--ink-muted);
  margin-top: 16px;
}
.over-label  { color: var(--over); font-weight: 600; }
.under-label { color: var(--under); font-weight: 600; }
.even-label  { color: var(--ink-muted); }

/* ===== WHO IT'S FOR ===== */
.who-it-for {
  max-width: 1100px;
  margin: 0 auto;
  padding: 96px 32px;
}
.who-inner h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.4rem;
  color: var(--green);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.who-inner > p {
  font-size: 1.05rem;
  color: var(--ink-muted);
  max-width: 580px;
  margin-bottom: 56px;
  line-height: 1.7;
}
.who-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}
.who-card {
  padding: 32px;
  border: 1px solid var(--border);
  background: #fff;
}
.who-icon {
  width: 44px;
  height: 44px;
  background: rgba(217, 119, 6, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  margin-bottom: 20px;
}
.who-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 10px;
}
.who-card p {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.65;
}

/* ===== CLOSING ===== */
.closing {
  background: var(--green);
  padding: 96px 32px;
}
.closing-inner { max-width: 1100px; margin: 0 auto; }
.closing h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.closing p {
  font-size: 1.05rem;
  color: rgba(250, 247, 242, 0.7);
  max-width: 560px;
  margin-bottom: 20px;
  line-height: 1.7;
}
.closing-detail { margin-bottom: 48px; }
.closing-price {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}
.price-big {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--amber-light);
  line-height: 1;
}
.price-sub {
  font-size: 0.9rem;
  color: rgba(250, 247, 242, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ===== CLOSING — SUBSCRIPTION + ROADMAP ===== */
.closing-subscription {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 32px;
}
.closing-sub-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--amber-light);
  line-height: 1.2;
}
.closing-sub-note {
  font-size: 0.95rem;
  color: rgba(250, 247, 242, 0.6);
}
.closing-roadmap {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.roadmap-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
  margin-bottom: 8px;
}
.closing-roadmap p {
  font-size: 0.95rem;
  color: rgba(250, 247, 242, 0.6);
  max-width: 480px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #0E2318;
  padding: 48px 32px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
}
.footer-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  display: block;
  margin-bottom: 6px;
}
.footer-tagline {
  font-size: 0.8rem;
  color: rgba(250, 247, 242, 0.4);
}
.footer-meta p {
  font-size: 0.8rem;
  color: rgba(250, 247, 242, 0.35);
  margin-bottom: 4px;
}

/* ===== POSTCODE WIDGET ===== */
.postcode-widget {
  margin-bottom: 32px;
  max-width: 560px;
}
.postcode-input-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.postcode-input {
  flex: 1;
  min-width: 180px;
  padding: 13px 16px;
  font-size: 1rem;
  font-family: inherit;
  border: 2px solid var(--border);
  background: #fff;
  color: var(--ink);
  border-radius: 6px;
  outline: none;
  transition: border-color 0.15s;
}
.postcode-input:focus { border-color: var(--green); }
.postcode-btn {
  padding: 13px 22px;
  background: var(--green);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: inherit;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
}
.postcode-btn:hover { background: var(--green-light); }
.postcode-hint {
  font-size: 0.78rem;
  color: var(--ink-muted);
  margin-top: 8px;
}
.postcode-result {
  margin-top: 20px;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
}
.pc-loading { font-size: 0.9rem; color: var(--ink-muted); margin: 0; }
.pc-error { font-size: 0.9rem; color: var(--under); margin: 0; }
.pc-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
}
.pc-status-badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 3px;
}
.pc-badge-ready { background: rgba(21,128,61,0.1); color: var(--over); }
.pc-badge-building { background: rgba(217,119,6,0.1); color: var(--amber); }
.pc-badge-soon { background: rgba(92,92,88,0.1); color: var(--ink-muted); }
.pc-summary { font-size: 0.9rem; color: var(--ink-muted); margin: 0 0 16px; line-height: 1.6; }
.pc-actions { margin-bottom: 16px; }
.pc-btn-primary {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 11px 20px;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.15s;
}
.pc-btn-primary:hover { background: var(--green-light); }
.pc-actions-note { font-size: 0.8rem; color: var(--ink-muted); margin: 8px 0 0; }
.pc-notify-row { margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border); }
.pc-notify-label { font-size: 0.85rem; color: var(--ink); margin: 0 0 10px; font-weight: 500; }
.pc-email-form { display: flex; gap: 8px; flex-wrap: wrap; }
.pc-email-input {
  flex: 1;
  min-width: 200px;
  padding: 10px 14px;
  font-size: 0.9rem;
  font-family: inherit;
  border: 1px solid var(--border);
  border-radius: 5px;
  outline: none;
  transition: border-color 0.15s;
}
.pc-email-input:focus { border-color: var(--green); }
.pc-email-btn {
  padding: 10px 18px;
  background: var(--amber);
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  font-family: inherit;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
}
.pc-email-btn:hover { background: var(--amber-light); }
.pc-email-btn:disabled { opacity: 0.6; cursor: default; }
.pc-email-confirm {
  font-size: 0.88rem;
  color: var(--over);
  margin: 8px 0 0;
  font-weight: 500;
}
.pc-sample-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--green);
  text-decoration: none;
  font-weight: 500;
}
.pc-sample-link:hover { text-decoration: underline; }
.hero-cta-secondary {
  display: inline-block;
  background: transparent;
  color: var(--green);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 11px 20px;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.01em;
  border: 1.5px solid var(--green);
  transition: background 0.15s, color 0.15s;
}
.hero-cta-secondary:hover { background: var(--green); color: #fff; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero { padding: 64px 24px 48px; }
  .hero-headline { font-size: 2.2rem; }
  .hero-stats { gap: 16px; }
  .stat-block { padding: 0 20px; border-left: none; }
  .stat-divider { display: none; }
  .steps { flex-direction: column; }
  .step-connector { transform: rotate(90deg); }
  .coverage-row { flex-direction: column; }
  .how-it-works, .who-it-for { padding: 64px 24px; }
  .report-preview { padding: 64px 24px; }
  .closing { padding: 64px 24px; }
  .report-header-row, .report-row { font-size: 0.78rem; }
  .footer-inner { flex-direction: column; gap: 24px; }
  .price-row > span:nth-child(2),
  .price-row > span:nth-child(4) { display: none; }
}

@media (max-width: 480px) {
  .nav-inner { padding: 12px 20px; }
  .hero-stats { flex-direction: column; align-items: flex-start; }
  .stat-block { border-left: none; padding: 8px 0; border-bottom: 1px solid var(--border); }
  .stat-block:last-child { border-bottom: none; }
  .price-row > span:nth-child(5) { display: none; }
}

/* ===== /COMPARE PAGE ===== */
.back-bar { background: var(--ink); padding: 12px 24px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.back-bar a { color: #fff; text-decoration: none; font-size: 14px; opacity: 0.7; }
.back-bar a:hover { opacity: 1; }
.back-bar .sep { color: #fff; opacity: 0.3; font-size: 14px; }
.back-bar .page-label { color: #fff; font-size: 14px; }
.back-bar .badge { margin-left: auto; background: var(--accent); color: #fff; font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 100px; letter-spacing: 0.5px; }

.wrap { max-width: 860px; margin: 0 auto; padding: 40px 24px 80px; }
.page-header { text-align: center; margin-bottom: 36px; }
.page-brand { font-family: 'Playfair Display', serif; font-size: 12px; color: var(--accent-dark); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 10px; }
.page-title { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; line-height: 1.2; margin-bottom: 12px; }
.page-subtitle { font-size: 16px; color: var(--ink-muted); max-width: 540px; margin: 0 auto; }

.form-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; margin-bottom: 32px; box-shadow: var(--shadow); }
.form-label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 6px; color: var(--ink); }
.form-hint { font-size: 13px; color: var(--ink-muted); margin-bottom: 10px; }
.form-select, .form-input { width: 100%; padding: 10px 14px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 14px; font-family: inherit; background: var(--bg); color: var(--ink); appearance: none; }
.form-select:focus, .form-input:focus, .form-textarea:focus { outline: none; border-color: var(--accent); background: var(--bg-white); }
.form-textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 13.5px; font-family: 'DM Sans', monospace; background: var(--bg); color: var(--ink); resize: vertical; min-height: 180px; line-height: 1.7; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.form-group:last-child { margin-bottom: 0; }
.submit-btn { display: block; width: 100%; padding: 13px 24px; background: var(--ink); color: #fff; border: none; border-radius: var(--radius); font-size: 15px; font-weight: 600; font-family: inherit; cursor: pointer; transition: background 0.15s; text-align: center; }
.submit-btn:hover { background: #333; }
.code-hint { background: var(--bg); border: 1px solid var(--border); padding: 1px 5px; border-radius: 4px; font-size: 12px; }

.error-banner { background: var(--red-bg); border: 1px solid var(--red-border); border-radius: var(--radius); padding: 14px 18px; font-size: 14px; color: var(--red); margin-bottom: 24px; }

.results-header { margin-bottom: 24px; }
.results-title { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; margin-bottom: 4px; }
.results-subtitle { font-size: 14px; color: var(--ink-muted); }

.cmp-legend { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; font-size: 13px; }
.legend-item { display: flex; align-items: center; gap: 6px; }
.legend-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.legend-dot.green  { background: var(--green); }
.legend-dot.amber  { background: #b45309; }
.legend-dot.red    { background: var(--red); }
.legend-dot.neutral { background: #ccc; }

.results-table { width: 100%; border-collapse: collapse; font-size: 14px; background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin-bottom: 24px; }
.results-table th { text-align: left; font-weight: 600; font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--ink-muted); padding: 12px 14px; border-bottom: 2px solid var(--border); background: var(--bg); }
.results-table td { padding: 12px 14px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.results-table tr:last-child td { border-bottom: none; }
.row-green td { background: #f0fdf6; }
.row-amber td { background: #fffdf0; }
.row-red   td { background: #fff8f7; }
.row-neutral td { background: var(--bg-white); }
.item-name { font-weight: 600; }
.cat-badge { display: inline-block; padding: 2px 8px; border-radius: 100px; font-size: 11px; font-weight: 500; text-transform: capitalize; background: var(--bg); border: 1px solid var(--border); color: var(--ink-muted); }
.price-user { font-size: 15px; font-weight: 700; }
.price-median { font-size: 14px; color: var(--ink-muted); }
.price-range { font-size: 11px; color: var(--ink-light); }
.delta-pill { display: inline-block; padding: 3px 10px; border-radius: 100px; font-size: 13px; font-weight: 700; white-space: nowrap; }
.delta-green  { background: var(--green-bg, #edf7f1); color: var(--green); border: 1px solid #a7f3d0; }
.delta-amber  { background: #fffbeb; color: #b45309; border: 1px solid #fcd34d; }
.delta-red    { background: var(--red-bg); color: var(--red); border: 1px solid #fca5a5; }
.delta-neutral { background: var(--bg); color: var(--ink-muted); border: 1px solid var(--border); }
.venue-count-cell { font-size: 12px; color: var(--ink-muted); white-space: nowrap; }
.no-match { font-size: 12px; color: var(--ink-light); font-style: italic; }

.summary-strip { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.summary-stat { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 20px; flex: 1; min-width: 120px; text-align: center; }
.summary-stat .val { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: var(--accent-dark); }
.summary-stat .lbl { font-size: 12px; color: var(--ink-muted); margin-top: 2px; }

.cta-box { background: var(--ink); color: #fff; border-radius: var(--radius); padding: 28px 32px; margin-bottom: 24px; }
.cta-box h3 { font-family: 'Playfair Display', serif; font-size: 20px; margin-bottom: 6px; }
.cta-box p { font-size: 14px; opacity: 0.75; margin-bottom: 16px; }
.cta-form { display: flex; gap: 8px; flex-wrap: wrap; }
.cta-input { flex: 1; min-width: 220px; padding: 10px 14px; border: none; border-radius: var(--radius); font-size: 14px; font-family: inherit; }
.cta-btn { background: var(--accent); color: #fff; font-weight: 600; padding: 10px 20px; border: none; border-radius: var(--radius); cursor: pointer; font-size: 14px; font-family: inherit; transition: background 0.15s; }
.cta-btn:hover { background: var(--accent-dark); }
.cta-confirm { margin-top: 10px; font-size: 14px; opacity: 0.85; }

.tips-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 24px; font-size: 13px; color: var(--ink-muted); line-height: 1.7; }
.tips-card strong { color: var(--ink); }

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 20px; }
  .page-title { font-size: 24px; }
  .cta-box { padding: 20px; }
  .results-table th:nth-child(4),
  .results-table td:nth-child(4) { display: none; }
}
