/* ============ Offer Detail Pages ============ */

/* Offer Hero */
.offer-hero {
  padding: 80px 0 64px;
  text-align: center;
}
.offer-hero .kicker { font-size: 14px; }
.offer-h1 {
  font-size: clamp(56px, 9vw, 120px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-top: 14px;
  text-wrap: balance;
}
.offer-tagline {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 400;
  letter-spacing: -0.012em;
  color: var(--ink-soft);
  margin-top: 22px;
  max-width: 600px;
  margin-left: auto; margin-right: auto;
  text-wrap: balance;
}
.offer-price-line {
  margin-top: 48px;
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.offer-price-big {
  font-size: clamp(72px, 12vw, 160px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.9;
}
.offer-price-big .unit {
  font-size: 0.42em;
  font-weight: 500;
  margin-left: 2px;
}
.offer-price-alt {
  font-size: 16px;
  color: var(--ink-mute);
  margin-top: 14px;
}
.offer-hero-cta {
  margin-top: 40px;
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

/* Inclusions */
.inclusions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 820px;
  margin: 0 auto;
}
.incl {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.incl:last-child { border-bottom: none; }
.incl-num {
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.08em;
  padding-top: 4px;
}
.incl-t {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 600; letter-spacing: -0.02em;
  line-height: 1.18;
}
.incl-d {
  margin-top: 8px;
  font-size: 16px;
  color: var(--ink-mute);
  text-wrap: pretty;
  max-width: 560px;
  line-height: 1.5;
}

/* Timeline */
.timeline {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  padding-left: 40px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 6px; top: 14px; bottom: 14px;
  width: 1px; background: var(--line);
}
.tl-step {
  position: relative;
  padding: 14px 0 28px;
}
.tl-step:last-child { padding-bottom: 0; }
.tl-step::before {
  content: "";
  position: absolute;
  left: -39px;
  top: 22px;
  width: 13px; height: 13px;
  background: var(--bg);
  border: 2px solid var(--gold);
  border-radius: 50%;
}
.tl-when {
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.08em;
  font-weight: 500;
}
.tl-what {
  font-size: 20px; font-weight: 600; letter-spacing: -0.015em;
  margin-top: 6px;
}
.tl-desc {
  margin-top: 6px;
  font-size: 15px; color: var(--ink-mute);
  line-height: 1.5;
}

/* Comparison strip */
.compare-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 720px) {
  .compare-strip { grid-template-columns: repeat(2, 1fr); }
}
.compare-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 28px 24px;
  display: flex; flex-direction: column;
}
.compare-card .other-name {
  font-size: 14px; color: var(--ink-mute);
  letter-spacing: -0.005em;
}
.compare-card .other-h {
  font-size: 22px; font-weight: 600; letter-spacing: -0.018em;
  margin-top: 4px;
}
.compare-card .other-price {
  font-size: 16px; color: var(--gold); font-weight: 500;
  margin-top: 4px;
}
.compare-card .other-cta {
  margin-top: 16px;
}

/* CTA section */
.offer-cta-band {
  background: var(--ink);
  color: white;
  padding: 100px 22px;
  text-align: center;
}
.offer-cta-band .title {
  color: white;
}
.offer-cta-band .subtitle {
  color: rgba(255,255,255,.6);
}
