:root {
  --bg: #FAF8F5;
  --bg-alt: #F0EDE8;
  --fg: #1A1A1A;
  --fg-muted: #6B6B6B;
  --accent: #1B4D3E;
  --accent-light: #2D6B58;
  --accent-glow: rgba(27, 77, 62, 0.08);
  --danger: #B91C1C;
  --warning: #D97706;
  --success: #1B4D3E;
  --border: rgba(26, 26, 26, 0.1);
  --shadow: 0 4px 24px rgba(26, 26, 26, 0.08);
}

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

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

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
}

/* Navigation */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
  font-weight: 600;
  font-size: 17px;
}
.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--fg); }

/* Sections */
section { padding: 80px 24px; }

/* Section label */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

/* Hero */
.hero { padding: 96px 24px 80px; }
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  background: var(--accent-glow);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(36px, 4vw, 52px);
  color: var(--fg);
  margin-bottom: 20px;
  max-width: 520px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  margin-bottom: 40px;
  max-width: 460px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-number {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
}
.stat-label { font-size: 13px; color: var(--fg-muted); }
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Hero mockup */
.proof-mockup {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.mockup-header {
  background: var(--bg-alt);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}
.mockup-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.mockup-dot.red { background: #FF5F57; }
.mockup-dot.yellow { background: #FFBD2E; }
.mockup-dot.green { background: #28C840; }
.mockup-title {
  font-size: 12px;
  color: var(--fg-muted);
  margin-left: 8px;
  font-family: 'DM Sans', sans-serif;
}
.mockup-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mockup-video-icon {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--fg-muted);
  font-size: 14px;
  font-weight: 500;
}
.mockup-meta { display: flex; flex-direction: column; gap: 10px; }
.meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--fg);
  font-weight: 500;
}

/* Proof section */
.proof-section { background: var(--bg-alt); }
.proof-inner { max-width: 1100px; margin: 0 auto; }
.proof-header { text-align: center; margin-bottom: 48px; }
.proof-header h2 { font-size: clamp(28px, 3vw, 40px); max-width: 600px; margin: 0 auto; }
.proof-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
}
.proof-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  border: 2px solid transparent;
}
.proof-card.danger { border-color: rgba(185, 28, 28, 0.15); }
.proof-card.success { border-color: rgba(27, 77, 62, 0.2); }
.proof-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 20px;
}
.fake-image-demo { display: flex; flex-direction: column; gap: 10px; }
.fake-image-label { font-size: 12px; color: var(--fg-muted); font-weight: 500; }
.fake-image-placeholder {
  background: var(--bg-alt);
  border: 2px dashed rgba(0,0,0,0.12);
  border-radius: 12px;
  padding: 28px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--fg-muted);
}
.fake-image-placeholder.verified {
  border-color: rgba(27, 77, 62, 0.3);
  background: rgba(27, 77, 62, 0.04);
  color: var(--accent);
}
.fake-badge {
  background: rgba(185, 28, 28, 0.1);
  color: var(--danger);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
}
.verified-badge {
  background: rgba(27, 77, 62, 0.1);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
}
.proof-card-footer {
  margin-top: 20px;
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
}
.proof-arrow { display: flex; align-items: center; }

/* How it works */
.howitworks-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.howitworks-inner h2 { font-size: clamp(28px, 3vw, 40px); margin-bottom: 56px; }
.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 240px;
}
.step-number {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--fg-muted); }
.step-connector {
  width: 80px;
  height: 2px;
  background: var(--border);
  margin: 0 24px;
  flex-shrink: 0;
}

/* Features */
.features-inner { max-width: 1100px; margin: 0 auto; }
.features-inner h2 { font-size: clamp(28px, 3vw, 40px); text-align: center; margin-bottom: 48px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  transition: box-shadow 0.2s;
}
.feature-card:hover { box-shadow: var(--shadow); }
.feature-icon {
  width: 48px; height: 48px;
  background: var(--accent-glow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-card h3 { font-size: 18px; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }

/* Pricing */
.pricing { background: var(--bg-alt); }
.pricing-inner { max-width: 1100px; margin: 0 auto; }
.pricing-inner h2 { font-size: clamp(28px, 3vw, 40px); text-align: center; margin-bottom: 40px; }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}
.pricing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px;
  position: relative;
}
.pricing-card.popular {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(27, 77, 62, 0.06);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.pricing-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 16px; }
.price-amount {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--fg);
}
.price-unit { font-size: 16px; color: var(--fg-muted); }
.pricing-desc { font-size: 14px; color: var(--fg-muted); margin-bottom: 24px; line-height: 1.5; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li { font-size: 14px; color: var(--fg); font-weight: 500; }

/* Closing */
.closing-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.closing-inner h2 { font-size: clamp(26px, 3vw, 38px); margin-bottom: 20px; }
.closing-inner p { font-size: 17px; color: var(--fg-muted); margin-bottom: 48px; line-height: 1.7; }
.closing-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.closing-number {
  font-family: 'Fraunces', serif;
  font-size: 72px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.closing-desc {
  font-size: 15px;
  color: var(--fg-muted);
  max-width: 420px;
  line-height: 1.6;
}

/* FAQ */
.faq-section { background: var(--bg); }
.faq-inner { max-width: 760px; margin: 0 auto; }
.faq-inner h2 { font-size: clamp(28px, 3vw, 40px); text-align: center; margin-bottom: 48px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  padding: 24px 0;
  cursor: pointer;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  transition: color 0.2s;
}
.faq-trigger:hover { color: var(--accent); }
.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.faq-trigger.open .faq-chevron { transform: rotate(180deg); }
.faq-content {
  padding: 0 0 24px 0;
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}
.faq-content[hidden] { display: none; }

/* Footer */
.footer {
  background: var(--fg);
  color: rgba(255,255,255,0.6);
  padding: 48px 24px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.footer-brand { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 600; font-size: 17px; }
.footer-tagline { font-size: 14px; }
.footer-copy { font-size: 13px; }

/* Responsive */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-arrow { transform: rotate(90deg); }
  .steps { flex-direction: column; gap: 0; }
  .step-connector { width: 2px; height: 32px; margin: 16px auto; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  section { padding: 56px 20px; }
}