:root {
  --bg: #F5F0EB;
  --bg-alt: #EDE8E0;
  --fg: #1A1714;
  --fg-muted: #6B6458;
  --accent: #FF5C1A;
  --accent-dark: #D44A10;
  --white: #FFFFFF;
  --border: #D9D2C8;
}

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

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

/* HERO */
.hero {
  padding: 80px 48px 72px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}
h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 20px;
}
.lede {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 460px;
}
.hero-stat-row {
  display: flex;
  align-items: center;
  gap: 28px;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}
.hero-image-wrap {
  position: relative;
}
.hero-photo {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.hero-badge {
  position: absolute;
  bottom: -16px;
  left: 24px;
  background: var(--accent);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 16px rgba(255,92,26,0.35);
}

/* PROOF */
.proof {
  padding: 60px 48px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.proof-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.proof-quote {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  color: var(--fg);
  line-height: 1.5;
  margin-bottom: 28px;
}
.proof-attribution { display: flex; align-items: center; justify-content: center; gap: 14px; }
.proof-avatar {
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 50%;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.proof-attribution strong { display: block; font-size: 14px; }
.proof-attribution span { font-size: 13px; color: var(--fg-muted); }

/* FEATURES */
.features { padding: 80px 48px; background: var(--bg); }
.features-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}
.features h2, .process h2, .pricing h2, .closing h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 48px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
}
.feature-card.featured {
  background: var(--fg);
  color: var(--white);
}
.feature-card.featured h3,
.feature-card.featured p { color: var(--white); }
.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
}
.feature-card.featured .feature-icon { background: rgba(255,255,255,0.1); }
.feature-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--fg);
}
.feature-card p { font-size: 14px; color: var(--fg-muted); line-height: 1.65; }

/* PROCESS */
.process { padding: 80px 48px; background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.process-inner { max-width: 1100px; margin: 0 auto; }
.process-header { margin-bottom: 48px; }
.comparison { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.compare-col { }
.compare-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.old .compare-tag { background: #E8E3DC; color: var(--fg-muted); }
.new .compare-tag { background: var(--accent); color: var(--white); }
.compare-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.compare-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; }
.compare-list .cross { color: #B0A89E; font-weight: 700; }
.compare-list .check { color: var(--accent); font-weight: 700; }

/* PRICING */
.pricing { padding: 80px 48px; background: var(--bg); }
.pricing-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.pricing-card {
  background: var(--white);
  border: 2px solid var(--fg);
  border-radius: 16px;
  padding: 48px;
  text-align: left;
}
.pricing-amount { display: flex; align-items: baseline; gap: 4px; margin-bottom: 8px; }
.price { font-family: 'Fraunces', serif; font-size: 72px; font-weight: 900; color: var(--fg); line-height: 1; }
.per { font-size: 18px; color: var(--fg-muted); font-weight: 500; }
.pricing-desc { font-size: 15px; color: var(--fg-muted); margin-bottom: 32px; }
.pricing-features { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pricing-features li { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 500; color: var(--fg); }
.pricing-features .check { color: var(--accent); font-weight: 700; }

/* CLOSING */
.closing { padding: 80px 48px; background: var(--fg); }
.closing-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.closing h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}
.closing p { font-size: 17px; color: rgba(255,255,255,0.65); max-width: 580px; margin: 0 auto 48px; line-height: 1.65; }
.closing-visual { display: flex; justify-content: center; }
.speed-ring {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  width: 160px;
  height: 160px;
  justify-content: center;
}
.ring-label { display: flex; align-items: baseline; gap: 4px; }
.ring-big { font-family: 'Fraunces', serif; font-size: 52px; font-weight: 900; color: var(--accent); line-height: 1; }
.ring-unit { font-size: 18px; font-weight: 600; color: var(--white); }
.ring-sub { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.4); }

/* FOOTER */
footer { padding: 40px 48px; background: var(--bg-alt); border-top: 1px solid var(--border); }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.footer-logo { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 900; color: var(--fg); display: block; margin-bottom: 6px; }
.footer-brand p { font-size: 13px; color: var(--fg-muted); }
.footer-copy { font-size: 13px; color: var(--fg-muted); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { padding: 56px 24px 48px; }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-photo { height: 280px; }
  .features { padding: 56px 24px; }
  .feature-grid { grid-template-columns: 1fr; }
  .comparison { grid-template-columns: 1fr; gap: 28px; }
  .pricing, .process, .closing { padding: 56px 24px; }
  .pricing-card { padding: 32px 24px; }
  .pricing-features { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .hero-stat-row { flex-wrap: wrap; gap: 20px; }
}
@media (max-width: 480px) {
  h1 { font-size: 34px; }
  .price { font-size: 56px; }
}
