/* =====================================================
   CLARITY DATING — SHARED DESIGN SYSTEM
   Used by all 6 pages. Edit here, every page updates.
   ===================================================== */

:root {
  /* Brand colors */
  --navy: #0A1628;
  --navy-deep: #060F1D;
  --gold: #C9A961;
  --gold-light: #E0C684;
  --gold-dark: #A8893F;
  --off-white: #F8F6F1;
  --cream: #F2EFE6;
  --ink: #1A1A1A;
  --gray: #6B7280;
  --gray-light: #D1D5DB;
  --success: #10B981;
  --border-soft: #E5E1D5;

  /* Spacing scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(10, 22, 40, 0.06);
  --shadow-md: 0 4px 12px rgba(10, 22, 40, 0.08);
  --shadow-lg: 0 10px 40px rgba(10, 22, 40, 0.12);
  --shadow-gold: 0 6px 20px rgba(201, 169, 97, 0.35);
}

/* =====================================================
   RESET & BASE
   ===================================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* =====================================================
   TYPOGRAPHY
   ===================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}

h1 {
  font-size: clamp(2rem, 6vw, 3.75rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  letter-spacing: -0.015em;
}

h3 {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--gray);
  line-height: 1.55;
}

.serif-italic {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
}

/* =====================================================
   LAYOUT
   ===================================================== */

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  section {
    padding: 6rem 0;
  }
}

.section-dark {
  background: var(--navy);
  color: var(--off-white);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--off-white);
}

.section-cream {
  background: var(--cream);
}

/* =====================================================
   BUTTONS
   ===================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 1.1rem 2rem;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  line-height: 1.2;
  text-decoration: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(201, 169, 97, 0.45);
}

.btn-gold-lg {
  font-size: 1.15rem;
  padding: 1.35rem 2.5rem;
  width: 100%;
  max-width: 480px;
}

@media (min-width: 768px) {
  .btn-gold-lg {
    width: auto;
  }
}

.btn-outline {
  background: transparent;
  color: var(--off-white);
  border: 1.5px solid rgba(248, 246, 241, 0.3);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-text {
  background: transparent;
  color: var(--gray);
  font-size: 0.95rem;
  text-decoration: underline;
  padding: 0.5rem;
}

.btn-text:hover {
  color: var(--ink);
}

.cta-subtext {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--gray);
  letter-spacing: 0.02em;
}

/* =====================================================
   CARDS
   ===================================================== */

.card {
  background: white;
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-soft);
}

.card-dark {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 169, 97, 0.2);
  border-radius: var(--radius-md);
  padding: 2rem;
}

/* =====================================================
   HERO HEADER (sharp edges, premium feel)
   ===================================================== */

.hero {
  background: var(--navy);
  color: var(--off-white);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero h1 {
  color: var(--off-white);
  max-width: 18ch;
  margin-bottom: 1.5rem;
}

.hero .lead {
  color: rgba(248, 246, 241, 0.75);
  max-width: 60ch;
  margin-bottom: 2rem;
}

/* =====================================================
   GOLD DIVIDER (decorative)
   ===================================================== */

.gold-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 1.5rem 0;
}

.gold-divider-center {
  margin: 1.5rem auto;
}

/* =====================================================
   CHECKMARK LISTS
   ===================================================== */

.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 1.02rem;
  line-height: 1.5;
}

.check-list li:last-child {
  border-bottom: none;
}

.check-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 1.15rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.section-dark .check-list li {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

/* =====================================================
   FAQ ACCORDION
   ===================================================== */

.faq-item {
  border-bottom: 1px solid var(--border-soft);
  padding: 1.25rem 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  padding: 0.5rem 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-question .icon {
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-question[aria-expanded="true"] .icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.6;
}

.faq-answer.open {
  max-height: 500px;
  padding: 0.75rem 0 0.25rem;
}

/* =====================================================
   STAT GRID (2x2)
   ===================================================== */

.stat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .stat-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.stat-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 1.75rem;
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
}

.stat-card .stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.stat-card .stat-text {
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.stat-card .stat-source {
  font-size: 0.8rem;
  color: var(--gray);
  font-style: italic;
}

/* =====================================================
   TWO COLUMN LAYOUT (for-you / not-for-you)
   ===================================================== */

.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.col-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--border-soft);
}

.col-card.for-you {
  border-top: 4px solid var(--success);
}

.col-card.not-for-you {
  border-top: 4px solid var(--gray-light);
}

.col-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.col-card.for-you h3 {
  color: var(--success);
}

.col-card.not-for-you h3 {
  color: var(--gray);
}

.col-card ul {
  list-style: none;
  padding: 0;
}

.col-card li {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 0.98rem;
  line-height: 1.5;
}

.col-card li:last-child {
  border-bottom: none;
}

.col-card.for-you li::before {
  content: '✓ ';
  color: var(--success);
  font-weight: 700;
  margin-right: 0.35rem;
}

.col-card.not-for-you li::before {
  content: '✕ ';
  color: var(--gray-light);
  font-weight: 700;
  margin-right: 0.35rem;
}

/* =====================================================
   TESTIMONIAL CARDS
   ===================================================== */

.testimonial {
  background: white;
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border-left: 3px solid var(--gold);
}

.testimonial blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 1rem;
}

.testimonial cite {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.02em;
}

.testimonial-featured {
  background: var(--navy);
  color: var(--off-white);
  padding: 3rem;
  border-left: 4px solid var(--gold);
}

.testimonial-featured blockquote {
  color: var(--off-white);
  font-size: 1.35rem;
  line-height: 1.5;
}

.testimonial-featured cite {
  color: var(--gold);
}

/* =====================================================
   COUNTDOWN TIMER
   ===================================================== */

.countdown-wrap {
  text-align: center;
  margin: 2rem 0;
}

.countdown {
  display: inline-flex;
  gap: 0.5rem;
  background: rgba(201, 169, 97, 0.08);
  border: 1px solid rgba(201, 169, 97, 0.3);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
}

.countdown-unit {
  text-align: center;
  min-width: 60px;
}

.countdown-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.countdown-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray);
  margin-top: 0.4rem;
  display: block;
}

.section-dark .countdown-label {
  color: rgba(248, 246, 241, 0.6);
}

.countdown-divider {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.4;
  align-self: center;
}

/* =====================================================
   VALUE STACK TABLE
   ===================================================== */

.value-stack {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  margin: 2rem 0;
}

.value-stack table {
  width: 100%;
  border-collapse: collapse;
}

.value-stack td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-soft);
  font-size: 1rem;
}

.value-stack td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--gold-dark);
  white-space: nowrap;
}

.value-stack .total-row td {
  background: var(--cream);
  font-weight: 700;
  border-top: 2px solid var(--gold);
  border-bottom: none;
}

.value-stack .final-row td {
  background: var(--navy);
  color: var(--off-white);
  font-size: 1.15rem;
  font-weight: 700;
}

.value-stack .final-row td:last-child {
  color: var(--gold);
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
}

/* =====================================================
   LEAD CAPTURE OVERLAY (page 1 only)
   ===================================================== */

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 1.5rem;
  overflow-y: auto;
}

.overlay.hidden {
  display: none;
}

.overlay-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  max-width: 540px;
  width: 100%;
  margin: 1.5rem auto;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  border-top: 4px solid var(--gold);
}

@media (min-width: 768px) {
  .overlay-card {
    padding: 3rem 2.5rem;
  }
}

.overlay-card h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 0.5rem;
}

.overlay-card .lead {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.overlay-form-wrap {
  height: 480px;
  margin-top: 1rem;
}

/* =====================================================
   STICKY CONFIRMATION BAR (page 2)
   ===================================================== */

.sticky-confirm {
  background: var(--gold);
  color: var(--navy);
  text-align: center;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  position: sticky;
  top: 0;
  z-index: 100;
}

/* =====================================================
   CONTRAST PREVIEW CARDS (page 1)
   ===================================================== */

.contrast-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-soft);
}

.contrast-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}

.contrast-line {
  padding: 0.85rem 1rem;
  margin: 0.5rem 0;
  border-radius: var(--radius-sm);
  font-size: 0.98rem;
  line-height: 1.5;
}

.contrast-bad {
  background: #FBF4F4;
  border-left: 3px solid #D97070;
  color: #5A2A2A;
}

.contrast-good {
  background: #F4F8F4;
  border-left: 3px solid var(--success);
  color: #1B3A2B;
  font-weight: 500;
}

.contrast-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 0.25rem;
  opacity: 0.7;
}

/* =====================================================
   TOC LIST (page 1, what's inside)
   ===================================================== */

.toc-list {
  list-style: none;
  padding: 0;
  counter-reset: toc;
}

.toc-list li {
  display: flex;
  gap: 1.5rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 1.02rem;
  align-items: baseline;
}

.toc-list li:last-child {
  border-bottom: none;
}

.toc-num {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 700;
  min-width: 32px;
  flex-shrink: 0;
}

.toc-title {
  font-weight: 600;
  color: var(--off-white);
}

.toc-desc {
  color: rgba(248, 246, 241, 0.6);
  font-weight: 400;
  margin-left: 0.5rem;
}

/* =====================================================
   MODULE CARDS (page 2)
   ===================================================== */

.module-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 2rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-soft);
  border-left: 4px solid var(--gold);
}

.module-card .module-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.module-card h3 {
  margin-bottom: 1.25rem;
}

.module-card ul {
  list-style: none;
  padding: 0;
}

.module-card li {
  padding: 0.5rem 0;
  padding-left: 1.25rem;
  position: relative;
  font-size: 0.98rem;
}

.module-card li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.module-card .footnote {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-soft);
  font-size: 0.9rem;
  color: var(--gray);
  font-style: italic;
}

/* =====================================================
   PLACEHOLDER (for images you'll add later)
   ===================================================== */

.image-placeholder {
  background: linear-gradient(135deg, var(--cream), #E8E2D0);
  border: 2px dashed var(--gold);
  border-radius: var(--radius-md);
  padding: 3rem 1rem;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-dark);
  font-weight: 600;
  margin: 1.5rem 0;
}

.section-dark .image-placeholder {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(201, 169, 97, 0.5);
}

/* =====================================================
   FOOTER
   ===================================================== */

.site-footer {
  background: var(--navy-deep);
  color: rgba(248, 246, 241, 0.6);
  padding: 2.5rem 0;
  text-align: center;
  font-size: 0.85rem;
}

.site-footer .wordmark {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  display: block;
}

.site-footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

.site-footer a {
  color: rgba(248, 246, 241, 0.5);
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: var(--gold);
}

.site-footer-full .tagline {
  font-style: italic;
  margin: 0.75rem 0;
  color: rgba(248, 246, 241, 0.5);
}

/* =====================================================
   PRICE COMPARISON CARD (page 3)
   ===================================================== */

.price-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-md);
}

.price-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 1rem;
}

.price-row:last-child {
  border-bottom: none;
}

.price-row.highlight {
  font-weight: 700;
  color: var(--gold-dark);
  font-size: 1.15rem;
}

.price-row .price-label {
  color: var(--gray);
}

.price-row.highlight .price-label {
  color: var(--ink);
}

/* =====================================================
   ROAD CHOICE (page 1 final CTA)
   ===================================================== */

.road-choice {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0 3rem;
}

@media (min-width: 768px) {
  .road-choice {
    grid-template-columns: 1fr 1fr;
  }
}

.road {
  padding: 2rem;
  border-radius: var(--radius-md);
}

.road-1 {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(248, 246, 241, 0.6);
}

.road-2 {
  background: rgba(201, 169, 97, 0.08);
  border: 1px solid rgba(201, 169, 97, 0.4);
}

.road .road-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.road-1 .road-label {
  color: rgba(248, 246, 241, 0.4);
}

.road-2 .road-label {
  color: var(--gold);
}

.road p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.road-2 p {
  color: var(--off-white);
}

/* =====================================================
   DOWNSELL DUAL OFFER (page 5)
   ===================================================== */

.dual-offer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2.5rem 0;
}

@media (min-width: 900px) {
  .dual-offer {
    grid-template-columns: 1fr 1fr;
  }
}

.offer-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}

.offer-card h3 {
  margin-bottom: 0.5rem;
}

.offer-card .offer-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--gold-dark);
  margin: 0.5rem 0 1.25rem;
}

.offer-card .offer-content {
  flex-grow: 1;
}

.offer-card .offer-content p,
.offer-card .offer-content ul {
  margin-bottom: 1rem;
}

.offer-form-wrap {
  height: 460px;
  margin-top: 1rem;
}

/* =====================================================
   WELCOME PAGE
   ===================================================== */

.success-check {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  background: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.25rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.next-steps {
  list-style: none;
  padding: 0;
  counter-reset: step;
  margin: 2rem 0;
}

.next-steps li {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: white;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
}

.next-steps li::before {
  counter-increment: step;
  content: counter(step);
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
}

.next-steps li p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
}

.next-steps li strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 0.25rem;
}

.dual-cta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 600px) {
  .dual-cta {
    grid-template-columns: 1fr 1fr;
  }
}

.dual-cta .btn {
  width: 100%;
}

/* =====================================================
   UTILITY
   ===================================================== */

.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mt-0 { margin-top: 0; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }

.opt-out-link {
  display: block;
  text-align: center;
  margin-top: 1.5rem;
  color: var(--gray);
  font-size: 0.9rem;
  text-decoration: underline;
}

.opt-out-link:hover {
  color: var(--ink);
}

.section-dark .opt-out-link {
  color: rgba(248, 246, 241, 0.5);
}

.section-dark .opt-out-link:hover {
  color: var(--gold);
}
