@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=Inter:wght@400;500;600;700&display=swap');

/* ── Reset & Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #1a1a1a;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }
:focus-visible { outline: 2px solid var(--grass); outline-offset: 2px; }

/* ── Design Tokens ───────────────────────────────────────── */
:root {
  --forest: #1b3a2d;
  --grass: #4A7C2F;
  --grass-light: #5D8C3A;
  --amber: #F5A623;
  --white: #ffffff;
  --cream: #FDFCF9;
  --sage: #eef6ee;
  --sage-mid: #c8e6c9;
  --charcoal: #1a1a1a;
  --muted: #666;
  --border: #e2e8e0;
  --radius: 14px;
  --shadow: 0 4px 24px rgba(27,58,45,0.08);
}

/* ── Nav ─────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--forest);
  white-space: nowrap;
}
.nav-logo .logo-mark {
  width: 34px;
  height: 34px;
  background: var(--forest);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--forest);
  background: var(--sage);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.18s;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}
.btn-ghost {
  color: var(--forest);
  border: 1.5px solid var(--border);
  background: transparent;
}
.btn-ghost:hover { background: var(--sage); border-color: var(--sage-mid); }
.btn-primary {
  background: var(--grass);
  color: #fff;
  box-shadow: 0 2px 8px rgba(74,124,47,0.30);
}
.btn-primary:hover { background: var(--grass-light); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(74,124,47,0.35); }
.btn-forest {
  background: var(--forest);
  color: #fff;
  box-shadow: 0 2px 8px rgba(27,58,45,0.20);
}
.btn-forest:hover { background: #234d3c; transform: translateY(-1px); }
.btn-amber {
  background: var(--amber);
  color: var(--forest);
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(245,166,35,0.30);
}
.btn-amber:hover { background: #f0a020; transform: translateY(-1px); }
.btn-lg { padding: 15px 30px; font-size: 16px; border-radius: 12px; }
.btn-xl { padding: 18px 38px; font-size: 17px; border-radius: 14px; }
.btn-full { width: 100%; justify-content: center; }

/* ── Event type strip (replaces the rotating ticker) ────────── */
.type-strip {
  border-bottom: 1px solid var(--border);
  padding: 14px 24px;
  background: var(--white);
}
.type-strip-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.type-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: 20px;
  background: var(--sage);
  color: var(--forest);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.type-pill .dot { width: 5px; height: 5px; background: var(--amber); border-radius: 50%; }

/* ── Section wrappers ────────────────────────────────────── */
.section { padding: 96px 24px; }
.section-sm { padding: 72px 24px; }
.section-inner { max-width: 1160px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 64px; }
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grass);
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--forest);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Hero (white, green-bordered — was solid forest green) ──── */
.hero {
  background: var(--white);
  padding: 88px 24px 80px;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sage);
  border: 1px solid var(--sage-mid);
  color: var(--grass);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 900;
  color: var(--forest);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.hero-title em { font-style: italic; color: var(--grass); }
.hero-body {
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-actions .btn-outline-dark {
  color: var(--forest);
  border: 1.5px solid var(--border);
}
.hero-actions .btn-outline-dark:hover { background: var(--sage); }
.hero-proof {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 13px;
}
.hero-proof-divider { width: 1px; height: 20px; background: var(--border); }
.hero-proof strong { color: var(--forest); }

/* ── Map mock (kept as illustrative panel, forest only inside the card) ── */
.map-mock {
  background: #1e4535;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(27,58,45,0.22);
  position: relative;
  aspect-ratio: 4/5;
  max-width: 400px;
  margin-left: auto;
}
.map-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.map-road-h { position: absolute; left: 0; right: 0; height: 2px; background: rgba(255,255,255,0.12); }
.map-road-v { position: absolute; top: 0; bottom: 0; width: 2px; background: rgba(255,255,255,0.12); }
.map-pin { position: absolute; transform: translate(-50%, -100%); display: flex; flex-direction: column; align-items: center; }
.map-pin-bubble {
  background: #fff; border-radius: 10px; padding: 6px 10px;
  font-size: 11px; font-weight: 700; color: var(--forest);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25); white-space: nowrap;
  display: flex; align-items: center; gap: 5px;
}
.map-pin-bubble.amber { background: var(--amber); color: var(--forest); }
.map-pin-tail { width: 0; height: 0; border-left: 5px solid transparent; border-right: 5px solid transparent; border-top: 6px solid #fff; }
.map-pin-tail.amber { border-top-color: var(--amber); }
.map-location-dot {
  position: absolute; width: 14px; height: 14px; background: #4a90d9;
  border-radius: 50%; border: 2px solid #fff; box-shadow: 0 0 0 6px rgba(74,144,217,0.2);
}
.map-ui-pill {
  position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  background: rgba(255,255,255,0.95); border-radius: 24px; padding: 8px 18px;
  font-size: 12px; font-weight: 600; color: var(--forest);
  display: flex; align-items: center; gap: 8px; white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.map-slider-area {
  position: absolute; bottom: 20px; left: 16px; right: 16px;
  background: rgba(255,255,255,0.95); border-radius: 14px; padding: 14px 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.map-slider-label { font-size: 11px; color: var(--muted); font-weight: 600; margin-bottom: 8px; }
.map-slider-bar { height: 4px; background: var(--border); border-radius: 2px; position: relative; }
.map-slider-fill { position: absolute; left: 0; top: 0; bottom: 0; width: 45%; background: var(--grass); border-radius: 2px; }
.map-slider-thumb {
  position: absolute; top: 50%; left: 45%; transform: translate(-50%, -50%);
  width: 16px; height: 16px; background: var(--grass); border: 2px solid #fff;
  border-radius: 50%; box-shadow: 0 2px 6px rgba(74,124,47,0.4);
}

/* ── Trust bar ───────────────────────────────────────────── */
.trust-bar {
  background: var(--sage);
  border-top: 1px solid var(--sage-mid);
  border-bottom: 1px solid var(--sage-mid);
  padding: 20px 24px;
}
.trust-bar-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--grass); }

/* ── Step cards ──────────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.step-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 28px; transition: box-shadow 0.2s, transform 0.2s;
}
.step-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.step-num { font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 900; color: var(--sage-mid); line-height: 1; margin-bottom: 16px; }
.step-icon { font-size: 28px; margin-bottom: 12px; }
.step-title { font-size: 17px; font-weight: 700; color: var(--forest); margin-bottom: 8px; }
.step-body  { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── Event type cards ────────────────────────────────────── */
.event-types-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }
.event-type-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 22px; text-align: center; transition: all 0.2s;
}
.event-type-card:hover { border-color: var(--sage-mid); box-shadow: 0 6px 24px rgba(74,124,47,0.10); transform: translateY(-2px); }
.event-type-icon { font-size: 36px; margin-bottom: 10px; }
.event-type-name { font-size: 14px; font-weight: 700; color: var(--forest); margin-bottom: 4px; }
.event-type-desc { font-size: 12px; color: var(--muted); line-height: 1.5; }

/* ── Feature grid ────────────────────────────────────────── */
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px 80px; align-items: start; }
.feature-visual { position: sticky; top: 100px; }
.feature-list   { display: flex; flex-direction: column; gap: 36px; }
.feature-item   { display: flex; gap: 20px; align-items: flex-start; }
.feature-icon-wrap {
  width: 48px; height: 48px; background: var(--sage); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0;
}
.feature-item-title { font-size: 16px; font-weight: 700; color: var(--forest); margin-bottom: 6px; }
.feature-item-body  { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── Phone mock ──────────────────────────────────────────── */
.phone-mock {
  background: var(--forest); border-radius: 28px; padding: 18px 14px;
  box-shadow: 0 24px 60px rgba(27,58,45,0.25); width: 260px; margin: 0 auto; position: relative;
}
.phone-notch { width: 80px; height: 22px; background: #0d2318; border-radius: 12px; margin: 0 auto 16px; }
.phone-screen { background: var(--cream); border-radius: 18px; overflow: hidden; min-height: 380px; }
.phone-header { background: var(--forest); padding: 14px 16px; color: #fff; }
.phone-header-title { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.phone-header-sub   { font-size: 10px; color: rgba(255,255,255,0.65); }
.phone-body { padding: 12px; }
.phone-card { background: #fff; border-radius: 12px; overflow: hidden; margin-bottom: 10px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.phone-card-img { height: 80px; background: linear-gradient(135deg, #2d5a1b, #4A7C2F); display: flex; align-items: center; justify-content: center; font-size: 28px; position: relative; }
.phone-card-badge {
  position: absolute; bottom: 8px; left: 10px; background: rgba(27,58,45,0.85);
  color: #fff; font-size: 9px; font-weight: 700; padding: 3px 8px; border-radius: 10px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.phone-card-body  { padding: 10px 12px; }
.phone-card-title { font-size: 12px; font-weight: 700; color: var(--forest); margin-bottom: 3px; }
.phone-card-meta  { font-size: 10px; color: var(--muted); margin-bottom: 6px; }
.phone-card-time  { display: flex; gap: 8px; }
.phone-time-block { flex: 1; }
.phone-time-label { font-size: 8px; font-weight: 700; color: #aaa; text-transform: uppercase; letter-spacing: 0.06em; }
.phone-time-val   { font-size: 10px; color: var(--charcoal); font-weight: 500; }

/* ── Testimonials ────────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.testimonial-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.testimonial-stars  { color: var(--amber); font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text   { font-size: 15px; line-height: 1.65; color: var(--charcoal); margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; background: var(--sage); }
.testimonial-name { font-size: 14px; font-weight: 700; color: var(--forest); }
.testimonial-farm { font-size: 12px; color: var(--muted); }

/* ── CTA Banner (white card, green border+accents — was solid green gradient) ── */
.cta-banner {
  background: var(--white);
  border: 1.5px solid var(--sage-mid);
  border-radius: 24px;
  padding: 64px 48px;
  text-align: center;
  position: relative;
}
.cta-banner-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: var(--forest);
  line-height: 1.15;
  margin-bottom: 16px;
}
.cta-banner-body {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── SMS widget ──────────────────────────────────────────── */
.sms-widget { display: inline-flex; flex-direction: column; align-items: center; gap: 10px; width: 100%; max-width: 400px; }
.sms-label      { font-size: 13px; font-weight: 600; color: var(--muted); }
.sms-row { display: flex; width: 100%; border-radius: 12px; overflow: hidden; border: 1px solid var(--border); box-shadow: 0 4px 16px rgba(27,58,45,0.06); }
.sms-input {
  flex: 1; padding: 14px 18px; font-size: 15px; font-family: 'Inter', sans-serif;
  border: none; outline: none; background: #fff; color: var(--charcoal); min-width: 0;
}
.sms-input::placeholder { color: #aaa; }
.sms-btn {
  padding: 14px 22px; background: var(--grass); color: #fff; font-size: 14px; font-weight: 700;
  font-family: 'Inter', sans-serif; border: none; cursor: pointer; white-space: nowrap; transition: background 0.15s;
}
.sms-btn:hover       { background: var(--grass-light); }
.sms-btn.amber-btn   { background: var(--amber); color: var(--forest); }
.sms-btn.amber-btn:hover { background: #f0a020; }
.sms-fine            { font-size: 11px; color: #999; text-align: center; }
.sms-sent            { font-size: 14px; font-weight: 600; color: var(--grass); padding: 14px 0; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 4px; }
.faq-item { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; text-align: left; font-size: 15px; font-weight: 600; color: var(--forest);
  background: #fff; transition: background 0.15s; border: none; cursor: pointer;
}
.faq-question:hover { background: var(--sage); }
.faq-chevron { font-size: 13px; color: var(--muted); transition: transform 0.2s; flex-shrink: 0; }
.faq-chevron.open { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 24px 20px; font-size: 14px; line-height: 1.7; color: var(--muted); background: #fff; }
.faq-answer.open { display: block; }

/* ── Buyer hero (white, was solid green gradient) ───────────── */
.buyer-hero {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 80px 24px;
  text-align: center;
}
.buyer-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 900; color: var(--forest); line-height: 1.1;
  margin-bottom: 18px;
}
.buyer-hero-body { font-size: 17px; color: var(--muted); max-width: 540px; margin: 0 auto 36px; line-height: 1.6; }

/* ── Seller hero ─────────────────────────────────────────── */
.seller-hero { background: var(--cream); border-bottom: 1px solid var(--border); padding: 80px 24px; }
.seller-hero-inner { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

/* ── Pricing ─────────────────────────────────────────────── */
.pricing-section { background: var(--white); border-bottom: 1px solid var(--border); }
.pricing-section .section-title,
.pricing-section .eyebrow,
.pricing-section .section-subtitle { color: var(--forest) !important; }
.pricing-section .section-subtitle { color: var(--muted) !important; }
.pricing-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 860px; margin: 0 auto; }
.pricing-card {
  background: #fff; border: 1.5px solid var(--border); border-radius: 20px;
  padding: 36px 32px; position: relative;
}
.pricing-card.featured { border-color: var(--amber); box-shadow: 0 8px 32px rgba(245,166,35,0.14); }
.pricing-featured-badge {
  position: absolute; top: -13px; left: 32px; background: var(--amber); color: var(--forest);
  font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 20px; letter-spacing: 0.03em;
}
.pricing-plan { font-size: 14px; font-weight: 700; color: var(--muted); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.04em; }
.pricing-price { font-family: 'Playfair Display', serif; font-size: 34px; font-weight: 900; color: var(--forest); margin-bottom: 6px; }
.pricing-price span { color: var(--grass); }
.pricing-note { font-size: 13px; color: var(--muted); margin-bottom: 22px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.pricing-features li { font-size: 14px; color: var(--charcoal); padding-left: 22px; position: relative; }
.pricing-features li::before { content: '✓'; position: absolute; left: 0; color: var(--grass); font-weight: 700; }

/* ── Footer ──────────────────────────────────────────────── */
.footer { background: var(--charcoal); color: rgba(255,255,255,0.5); padding: 56px 24px 32px; }
.footer-inner { max-width: 1160px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.footer-logo .logo-mark { width: 30px; height: 30px; background: var(--grass); border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: 16px; }
.footer-desc { font-size: 13px; line-height: 1.6; max-width: 240px; margin-bottom: 20px; }
.footer-col-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.35); margin-bottom: 14px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color 0.15s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12px; }
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ── QR Modal ────────────────────────────────────────────── */
.qr-overlay {
  position: fixed; inset: 0; z-index: 999; background: rgba(20,30,25,0.55);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center; padding: 24px;
}
.qr-overlay.open { display: flex; }
.qr-modal {
  background: #fff; border-radius: 24px; padding: 40px 36px 32px; max-width: 420px; width: 100%;
  position: relative; box-shadow: 0 32px 80px rgba(0,0,0,0.25); text-align: center;
}
.qr-close-btn {
  position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; border-radius: 50%;
  background: var(--sage); border: none; cursor: pointer; font-size: 14px; color: var(--forest);
  display: flex; align-items: center; justify-content: center;
}
.qr-modal-icon { font-size: 42px; margin-bottom: 12px; }
.qr-modal-title { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--forest); margin-bottom: 8px; }
.qr-modal-subtitle { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 28px; }
.qr-code-wrap { background: var(--sage); border-radius: 16px; padding: 20px; margin-bottom: 20px; display: inline-block; }
.qr-instruction { font-size: 13px; color: var(--muted); margin-bottom: 20px; line-height: 1.5; }
.qr-store-links { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.qr-store-btn { display: flex; align-items: center; gap: 8px; background: var(--forest); color: #fff; padding: 10px 16px; border-radius: 10px; font-size: 13px; font-weight: 600; }
.qr-fine { font-size: 11px; color: #999; margin-top: 16px; }

/* ── Comparison table ────────────────────────────────────── */
.compare-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.compare-table th { padding: 16px 20px; text-align: left; font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; border-bottom: 2px solid var(--border); }
.compare-table th.center { text-align: center; }
.compare-table td { padding: 14px 20px; border-bottom: 1px solid var(--border); }
.compare-table td.center { text-align: center; }
.compare-table tr:nth-child(even) { background: var(--cream); }

/* ── Legal pages ─────────────────────────────────────────── */
.legal-hero { background: var(--cream); border-bottom: 1px solid var(--border); color: var(--forest); padding: 72px 24px 56px; }
.legal-hero-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; color: var(--forest); margin: 8px 0 12px; }
.legal-meta { font-size: 14px; color: var(--muted); }
.legal-body { max-width: 720px; margin: 0 auto; padding: 56px 0 80px; }
.legal-section { margin-bottom: 40px; }
.legal-section-heading { font-size: 1.1rem; font-weight: 700; color: var(--forest); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.legal-paragraph { font-size: 15px; line-height: 1.75; color: #333; margin-bottom: 12px; }
.legal-paragraph:last-child { margin-bottom: 0; }
.legal-contact-note { margin-top: 48px; padding: 20px 24px; background: var(--sage); border-radius: var(--radius); font-size: 14px; color: var(--muted); }
.legal-contact-note a { color: var(--grass); font-weight: 600; text-decoration: underline; }

/* ── Bg utilities ────────────────────────────────────────── */
.bg-cream  { background: var(--cream); }
.bg-sage   { background: var(--sage); }
.bg-white  { background: #fff; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner        { grid-template-columns: 1fr; }
  .map-mock          { display: none; }
  .feature-grid      { grid-template-columns: 1fr; }
  .feature-visual    { position: static; }
  .seller-hero-inner { grid-template-columns: 1fr; }
  .footer-grid       { grid-template-columns: 1fr 1fr; }
  .pricing-cards     { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hero      { padding: 56px 20px 48px; }
  .section   { padding: 64px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner  { padding: 48px 28px; }
  .legal-hero { padding: 48px 20px 40px; }
  .legal-body  { padding: 40px 0 60px; }
}
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
