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

:root {
  --bg: #f4efe6;
  --bg-alt: #e8e0d5;
  --fg: #1a1814;
  --fg-muted: #5c5548;
  --accent: #c9973a;
  --accent-dark: #a87b28;
  --surface: #ffffff;
  --border: #d4c9b8;
  --tag-bg: #1a1814;
  --tag-fg: #f4efe6;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Bitter', 'Georgia', serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg);
}

/* === HEADER === */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 32px;
  height: 64px; display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-family: 'Bitter', serif; font-weight: 700; font-size: 20px;
  color: var(--fg); text-decoration: none; letter-spacing: -0.3px;
}
.header-nav { display: flex; gap: 32px; }
.header-nav a {
  font-size: 15px; font-weight: 500; color: var(--fg-muted);
  text-decoration: none; transition: color 0.15s;
}
.header-nav a:hover { color: var(--fg); }
.header-nav a.active { color: var(--fg); font-weight: 600; }

/* === BUTTONS === */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #fff;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px; font-weight: 600;
  padding: 14px 28px; border-radius: 6px;
  border: none; cursor: pointer; text-decoration: none;
  transition: background 0.15s, transform 0.1s;
  box-shadow: 0 2px 8px rgba(201,151,58,0.3);
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--fg);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px; font-weight: 600;
  padding: 13px 27px; border-radius: 6px;
  border: 2px solid var(--border); cursor: pointer; text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}
.btn-secondary:hover { border-color: var(--fg); background: rgba(26,24,20,0.04); }

/* === SECTION WRAPPER === */
.section-inner {
  max-width: 860px; margin: 0 auto; padding: 0 32px;
}
.section-lg { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-muted { background: var(--bg-alt); }

/* === EYEBROW === */
.eyebrow-tag {
  display: inline-block;
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); background: rgba(201,151,58,0.12);
  padding: 5px 12px; border-radius: 3px;
  margin-bottom: 16px;
}

/* === PRODUCT HERO === */
.product-hero {
  text-align: center;
  padding: 72px 32px 64px;
  max-width: 680px;
  margin: 0 auto;
}
.product-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  margin-bottom: 16px;
}
.product-hero .price {
  font-family: 'Bitter', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}
.product-hero .price .cents { font-size: 24px; color: var(--fg-muted); }
.product-hero .instant-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(34,197,94,0.12); color: #16a34a;
  font-size: 14px; font-weight: 600;
  padding: 6px 14px; border-radius: 99px;
  margin-bottom: 24px;
}
.product-hero .hero-desc {
  font-size: 18px; color: var(--fg-muted);
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto; margin-right: auto;
}

/* === DIVIDER === */
.divider {
  max-width: 860px; margin: 0 auto;
  border: none; border-top: 1px solid var(--border);
}

/* === WHAT'S INSIDE === */
.inside-header { text-align: center; margin-bottom: 40px; }
.inside-header h2 { font-size: 28px; margin-bottom: 8px; }
.inside-header p { color: var(--fg-muted); font-size: 16px; }

.kit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.kit-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
}
.kit-card .kit-icon {
  width: 44px; height: 44px;
  background: rgba(201,151,58,0.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.kit-card h3 { font-size: 17px; font-family: 'Bitter', serif; font-weight: 700; }
.kit-card p { font-size: 14px; color: var(--fg-muted); line-height: 1.55; }

/* === CTA SECTION === */
.cta-section {
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 56px 40px;
  max-width: 620px;
  margin: 0 auto;
}
.cta-section .price-lockup {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin-bottom: 8px;
}
.cta-section .price-lockup .price {
  font-family: 'Bitter', serif;
  font-size: 48px; font-weight: 700;
}
.cta-section .price-lockup .strike {
  font-size: 28px; color: var(--fg-muted);
  text-decoration: line-through;
}
.cta-section .price-lockup .badge {
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  background: var(--accent); color: #fff; padding: 3px 10px; border-radius: 3px;
}
.cta-section .delivery-note {
  font-size: 14px; color: var(--fg-muted); margin-bottom: 28px;
}
.cta-section .cta-actions {
  display: flex; flex-direction: column; gap: 12px; align-items: center;
}
.cta-section .guarantee {
  font-size: 13px; color: var(--fg-muted); margin-top: 4px;
}

/* === FEATURES GRID === */
.features-header { text-align: center; margin-bottom: 36px; }
.features-header h2 { font-size: 26px; margin-bottom: 8px; }
.features-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.feature-item { display: flex; gap: 14px; align-items: flex-start; }
.feature-check {
  width: 24px; height: 24px; flex-shrink: 0;
  background: rgba(34,197,94,0.12); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #16a34a; font-size: 14px;
  margin-top: 2px;
}
.feature-item h4 { font-size: 15px; font-weight: 700; font-family: 'Source Sans 3', sans-serif; margin-bottom: 4px; }
.feature-item p { font-size: 14px; color: var(--fg-muted); }

/* === FAQ === */
.faq-header { text-align: center; margin-bottom: 36px; }
.faq-header h2 { font-size: 26px; margin-bottom: 8px; }
.faq-list { max-width: 640px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  cursor: pointer;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  font-size: 16px; font-weight: 700;
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
}
.faq-q::after {
  content: '+';
  font-size: 22px; color: var(--fg-muted);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  font-size: 15px; color: var(--fg-muted);
  margin-top: 8px; line-height: 1.65;
  display: none;
}
.faq-item.open .faq-a { display: block; }

/* === DISCLAIMER === */
.disclaimer {
  background: var(--bg-alt);
  border-radius: 8px;
  padding: 20px 24px;
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.disclaimer strong { color: var(--fg); }

/* === FOOTER === */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
}
.footer-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 32px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-inner p { font-size: 14px; color: var(--fg-muted); }

/* === AUDIENCE GRID === */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.audience-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
}
.audience-card .audience-icon {
  width: 44px; height: 44px;
  background: rgba(201,151,58,0.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.audience-card h3 { font-size: 17px; font-family: 'Bitter', serif; font-weight: 700; }
.audience-card p { font-size: 14px; color: var(--fg-muted); line-height: 1.55; }

/* === MOBILE === */
@media (max-width: 640px) {
  .header-inner { padding: 0 20px; }
  .header-nav { gap: 20px; }
  .section-inner { padding: 0 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 36px 24px; }
  .product-hero { padding: 48px 20px 40px; }
}