/* ─── Reset & Base ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:     #0e0e16;
  --surface:   #14141e;
  --border:    #2a2a38;
  --muted:     #5a5a72;
  --warm-gray: #b8b4a8;
  --cream:     #f0ede6;
  --white:     #f8f7f4;
  --gold:      #c99a2e;
  --gold-light:#e8c160;
  --gold-dim:  rgba(201,154,46,0.15);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ─── Navigation ────────────────────────────────────── */
.nav {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
.nav__logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
}

/* ─── Hero ──────────────────────────────────────────── */
.hero {
  padding: 100px 0 80px;
  border-bottom: 1px solid var(--border);
}
.hero__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 60px;
  align-items: center;
}
.hero__col-number {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero__zero {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 9rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.hero__zero-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--warm-gray);
  margin-top: 12px;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero__eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
}
.hero__headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
}
.hero__sub {
  font-size: 1.05rem;
  color: var(--warm-gray);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.hero__price-tag {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.hero__price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
}
.hero__price-sub {
  font-size: 0.95rem;
  color: var(--muted);
}

/* ─── Problem ───────────────────────────────────────── */
.problem {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}
.problem__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
.problem__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 28px;
  font-weight: 500;
}
.problem__headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.25;
  max-width: 720px;
  margin-bottom: 36px;
}
.problem__body {
  max-width: 680px;
  font-size: 1rem;
  color: var(--warm-gray);
  line-height: 1.8;
  margin-bottom: 56px;
}
.problem__body p + p { margin-top: 18px; }
.problem__stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.problem__stat { }
.problem__stat-num {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 8px;
}
.problem__stat-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ─── Solution ───────────────────────────────────────── */
.solution {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.solution__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
.solution__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 28px;
  font-weight: 500;
}
.solution__headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 56px;
}
.solution__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}
.step {
  position: relative;
}
.step::after {
  content: '';
  position: absolute;
  right: -16px;
  top: 28px;
  width: 24px;
  height: 1px;
  background: var(--border);
}
.step:last-child::after { display: none; }
.step__number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.25;
  margin-bottom: 16px;
  line-height: 1;
}
.step__title {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
}
.step__desc {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.65;
}
.solution__price-card {
  background: var(--black);
  border: 1px solid var(--gold-dim);
  border-radius: 4px;
  padding: 40px 48px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto auto;
  gap: 0 40px;
  align-items: start;
}
.solution__price-label {
  grid-column: 1;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 500;
  align-self: end;
}
.solution__price-amount {
  grid-column: 1;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.solution__price-amount span {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--muted);
}
.solution__price-total {
  grid-column: 1;
  font-size: 0.85rem;
  color: var(--warm-gray);
  margin-bottom: 0;
}
.solution__includes {
  grid-column: 2;
  grid-row: 1 / 4;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.solution__includes li {
  font-size: 0.9rem;
  color: var(--warm-gray);
  padding-left: 20px;
  position: relative;
}
.solution__includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

/* ─── Perfect For ───────────────────────────────────── */
.perfect {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}
.perfect__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
.perfect__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 28px;
  font-weight: 500;
}
.perfect__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
.perfect__card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--surface);
}
.perfect__icon {
  color: var(--gold);
  margin-bottom: 16px;
}
.perfect__card-title {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
}
.perfect__card-desc {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.65;
}
.perfect__warning {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 24px;
  background: var(--gold-dim);
  border: 1px solid rgba(201,154,46,0.2);
  border-radius: 2px;
}
.perfect__warning svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.perfect__warning p { font-size: 0.9rem; color: var(--warm-gray); line-height: 1.6; }

/* ─── Guarantee ──────────────────────────────────────── */
.guarantee {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.guarantee__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
.guarantee__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 40px;
  font-weight: 500;
}
.guarantee__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}
.guarantee__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.guarantee__icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.guarantee__item-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 6px;
}
.guarantee__item-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── Closing ────────────────────────────────────────── */
.closing {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.closing__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
.closing__text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--warm-gray);
  max-width: 800px;
  line-height: 1.6;
  margin-bottom: 32px;
}
.closing__tagline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: var(--white);
  max-width: 600px;
}

/* ─── Footer ─────────────────────────────────────────── */
.footer {
  padding: 40px 0;
}
.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer__logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
}
.footer__tagline {
  font-size: 0.8rem;
  color: var(--muted);
}
.footer__meta {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: right;
}

/* ─── Responsive ──────────────────────────────────────── */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 32px; }
  .hero__col-number { flex-direction: row; align-items: center; gap: 24px; }
  .hero__zero { font-size: 5rem; }
  .hero__zero-label { margin-top: 0; }
  .solution__steps { grid-template-columns: 1fr; }
  .step::after { display: none; }
  .solution__price-card { grid-template-columns: 1fr; }
  .solution__includes { grid-column: 1; grid-row: auto; }
  .perfect__grid { grid-template-columns: 1fr; }
  .guarantee__grid { grid-template-columns: 1fr; }
  .problem__stat-row { grid-template-columns: 1fr; gap: 24px; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .footer__meta { text-align: left; }
}

@media (max-width: 600px) {
  .hero, .problem, .solution, .perfect, .closing { padding: 60px 0; }
  .hero__inner, .problem__inner, .solution__inner, .perfect__inner, .closing__inner, .guarantee__inner, .footer__inner { padding: 0 24px; }
  .hero__headline { font-size: 1.8rem; }
  .solution__price-card { padding: 28px 24px; }
  .perfect__card { padding: 24px; }
}