/* ========== Base / Reset ========== */
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  color: #111;
  background: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, Apple Color Emoji, Segoe UI Emoji;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

/* Elegant headings with a serif fallback (no webfont required) */
h1, h2, h3 {
  margin: 0 0 0.6em;
  font-family: "Times New Roman", Times, Georgia, serif;
  line-height: 1.2;
}

img { max-width: 100%; height: auto; display: block; }

/* ========== Theme ========== */
:root{
  --bg-dark: #0e0e10;
  --bg-light: #ffffff;
  --text: #111111;
  --text-invert: #ffffff;
  --muted: #6b7280;
  --border: #e5e7eb;
  --accent: #D4AF37;       /* Gold */
  --accent-ink: #111111;
  --accent-hover: #B9962D; /* Darker gold */
  --container: 960px;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
  --section-pad: clamp(48px, 6vw, 96px);
}

/* ========== Layout ========== */
.container{
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding: 0 20px;
}

/* Section rhythm */
section{ padding: var(--section-pad) 0; }
.hero{ padding: clamp(72px, 10vw, 140px) 0; background: var(--bg-dark); color: var(--text-invert); }
.why{ background: #fafafa; }
.offer{ background: var(--bg-light); }
.proof{ background: #f5f5f5; }
.final-cta{ background: var(--bg-dark); color: var(--text-invert); }
.footer{ background: #0a0a0b; color: #bdbdbd; padding: 36px 0; }

/* ========== Hero ========== */
.hero-title{
  font-size: clamp(34px, 6vw, 56px);
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.hero-subline{
  font-size: clamp(16px, 2.8vw, 20px);
  color: #e5e7eb;
  max-width: 720px;
  margin-bottom: 28px;
}

/* ========== Typography helpers ========== */
p{ margin: 0 0 1em; }
ul{ margin: 0; padding-left: 1.2em; }
.benefits{
  list-style: none;
  padding: 0;
  display: grid;
  gap: 10px;
}
.benefits li{
  padding-left: 36px;
  position: relative;
  font-size: 17px;
}
.benefits li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--accent), #e8c96b);
  box-shadow: 0 2px 8px rgba(212,175,55,.35);
}

/* ========== Buttons ========== */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .12s ease, box-shadow .12s ease, background-color .12s ease, color .12s ease, border-color .12s ease;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn:focus-visible{ outline: 3px solid rgba(212,175,55,.45); outline-offset: 2px; }
.btn:active{ transform: translateY(1px); }

.btn-accent{
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 10px 20px rgba(212,175,55,.25);
}
.btn-accent:hover{ background: var(--accent-hover); }

.btn-outline{
  background: transparent;
  color: var(--text);
  border-color: var(--accent);
}
.btn-outline:hover{
  background: rgba(212,175,55,.08);
}

/* CTA group */
.cta-buttons{
  display: flex; flex-wrap: wrap; gap: 12px;
}

/* ========== Offer / Value Stack ========== */
.value-stack{
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(20px, 4vw, 32px);
}
.value-stack ul{
  list-style: none;
  padding: 0; margin: 0 0 14px;
  display: grid; gap: 10px;
}
.value-stack li{
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 12px;
  border-bottom: 1px dashed #ececec;
  padding: 8px 0;
  font-size: 16px;
}
.value-stack .value{
  color: #6b7280;
  font-size: 14px;
  white-space: nowrap;
}
.total-value{
  font-weight: 700;
  margin: 8px 0;
}
.price-today{
  font-size: 18px;
  margin: 8px 0 16px;
}

/* ========== Proof ========== */
.proof-images{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.proof-images img{
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #fff;
}

/* ========== Footer ========== */
.footer a{ color: #d1d5db; text-decoration: none; }
.footer a:hover{ text-decoration: underline; }

/* ========== Utilities ========== */
.center{ text-align: center; }
.mt-0{ margin-top: 0 !important; }
.mb-0{ margin-bottom: 0 !important; }

/* ========== Responsive ========== */
@media (min-width: 720px){
  .hero { padding: 120px 0; }
  .hero-subline{ max-width: 760px; }
  .proof-images{ grid-template-columns: repeat(2, 1fr); }
}

/* ========== Motion Preferences ========== */
@media (prefers-reduced-motion: reduce){
  .btn{ transition: none; }
}
