/* ============================================================
   The Audacity to Launch — NJN Training & Consulting
   Palette derived from logo: deep navy + sunset orange
   ============================================================ */

:root {
  /* Brand */
  --brand-navy-900: #002558;
  --brand-navy-800: #003070;
  --brand-navy-700: #10488C;
  --brand-navy-600: #2070C0;
  --brand-blue-300: #6fa7d6;

  --brand-orange-500: #F26418;
  --brand-orange-600: #F05000;
  --brand-orange-400: #F88654;
  --brand-cream: #F8F4EC;
  --brand-gold: #D09030;

  /* Neutral */
  --bg: #fbfaf7;
  --surface: #ffffff;
  --surface-2: #f4f0ea;
  --ink-900: #0c1424;
  --ink-700: #2b3344;
  --ink-500: #5b6478;
  --ink-300: #9aa1b1;
  --line: rgba(11, 30, 63, 0.12);
  --line-strong: rgba(11, 30, 63, 0.22);

  /* Type */
  --font-display: "Fraunces", "Georgia", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --text-xs: clamp(0.75rem, 0.72rem + 0.15vw, 0.8125rem);
  --text-sm: clamp(0.875rem, 0.84rem + 0.2vw, 0.9375rem);
  --text-base: clamp(1rem, 0.96rem + 0.25vw, 1.0625rem);
  --text-lg: clamp(1.125rem, 1.05rem + 0.4vw, 1.25rem);
  --text-xl: clamp(1.5rem, 1.3rem + 1vw, 1.875rem);
  --text-2xl: clamp(2rem, 1.6rem + 2vw, 3rem);
  --text-3xl: clamp(2.5rem, 2rem + 3vw, 4.25rem);
  --text-hero: clamp(3rem, 2.2rem + 4.5vw, 6.5rem);

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(7, 23, 47, 0.06), 0 2px 6px rgba(7, 23, 47, 0.05);
  --shadow-md: 0 8px 24px -8px rgba(7, 23, 47, 0.18);
  --shadow-lg: 0 24px 60px -20px rgba(7, 23, 47, 0.35);

  --brand-orange: var(--brand-orange-500);
}

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  color: var(--ink-900);
  background: var(--bg);
}

::selection {
  background: var(--brand-orange-500);
  color: #fff;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}
.container.narrow { max-width: 780px; }

.section {
  padding: clamp(72px, 10vw, 140px) 0;
}
.section-head { margin-bottom: clamp(40px, 6vw, 64px); max-width: 760px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.center { text-align: center; }

/* ---------- Typography helpers ---------- */
.kicker {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--brand-orange-600);
  font-weight: 600;
  margin-bottom: 18px;
}
.kicker.light { color: var(--brand-orange-400); }

.display {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-3xl);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--ink-900);
  font-variation-settings: "opsz" 96;
}
.display.light { color: #fff; }
.display em { font-style: italic; font-weight: 500; color: var(--brand-orange-500); }

.lede {
  font-size: var(--text-lg);
  line-height: 1.55;
  color: var(--ink-700);
  margin-top: 18px;
  max-width: 65ch;
}
.lede.center { margin-left: auto; margin-right: auto; }
.lede.light { color: rgba(255, 255, 255, 0.85); }
.lede.strong { color: var(--ink-900); font-weight: 500; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
  text-align: center;
  border: 1px solid transparent;
}
.btn:active { transform: translateY(1px); }
.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-lg { padding: 16px 28px; font-size: var(--text-base); }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--brand-orange-500);
  color: #fff;
  box-shadow: 0 8px 20px -8px rgba(240, 106, 43, 0.6);
}
.btn-primary:hover { background: var(--brand-orange-600); box-shadow: 0 14px 28px -10px rgba(240, 106, 43, 0.7); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.16); }

.btn-ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.btn-ghost-light:hover { background: rgba(255, 255, 255, 0.1); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 250, 247, 0.85);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding-top: 14px; padding-bottom: 14px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { height: 42px; width: auto; mix-blend-mode: multiply; }
.nav { display: flex; gap: clamp(14px, 2.2vw, 28px); }
.nav a {
  font-size: var(--text-sm); font-weight: 500; color: var(--ink-700);
  padding: 8px 4px; border-bottom: 2px solid transparent;
}
.nav a:hover { color: var(--brand-orange-600); }

@media (max-width: 760px) {
  .nav { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: clamp(620px, 92vh, 880px);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center right; }
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 80% at 0% 50%, rgba(7, 23, 47, 0.92) 0%, rgba(7, 23, 47, 0.6) 40%, rgba(7, 23, 47, 0.1) 75%, transparent 100%),
    linear-gradient(180deg, rgba(7, 23, 47, 0.55) 0%, rgba(7, 23, 47, 0.4) 100%);
}
.hero-inner { padding: clamp(80px, 14vw, 140px) 0; max-width: 760px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: var(--text-xs); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(7, 23, 47, 0.4);
  backdrop-filter: blur(6px);
  margin-bottom: 28px;
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand-orange-500); box-shadow: 0 0 10px var(--brand-orange-500); }

.hero-title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.03em;
  font-variation-settings: "opsz" 144;
  text-wrap: balance;
}
.hero-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--brand-orange-400);
}

.hero-sub {
  margin-top: 24px;
  font-size: var(--text-lg);
  line-height: 1.55;
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.88);
}

.hero-cta {
  margin-top: 36px;
  display: flex; flex-wrap: wrap; gap: 14px;
}

.hero-pills {
  margin-top: 40px;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.hero-pills li {
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
}

/* ---------- Promise ---------- */
.promise {
  background: var(--surface-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* ---------- Deliverables ---------- */
.deliverables {
  background: var(--bg);
}
.deliv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.deliv-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
}
.deliv-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}
.deliv-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--brand-orange-500);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.deliv-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-xl);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--ink-900);
}
.deliv-card ul li {
  position: relative;
  padding-left: 20px;
  padding-block: 6px;
  font-size: var(--text-sm);
  color: var(--ink-700);
  line-height: 1.5;
  border-bottom: 1px dashed var(--line);
}
.deliv-card ul li:last-child { border-bottom: 0; }
.deliv-card ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand-orange-500);
}
.deliv-card .aside { color: var(--ink-500); font-style: italic; }

.deliv-card.highlight {
  background: linear-gradient(160deg, var(--brand-navy-800) 0%, var(--brand-navy-700) 100%);
  color: #fff;
  border: 1px solid var(--brand-navy-700);
}
.deliv-card.highlight h3 { color: #fff; }
.deliv-card.highlight .deliv-num { color: var(--brand-orange-400); font-size: 2rem; }
.deliv-card.highlight p { color: rgba(255, 255, 255, 0.85); margin-bottom: 22px; line-height: 1.55; }

/* ---------- Who ---------- */
.who { background: var(--surface-2); }
.who-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.who-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px 22px;
  font-size: var(--text-sm);
  color: var(--ink-700);
  line-height: 1.55;
}
.who-item strong { display: block; color: var(--ink-900); margin-bottom: 6px; font-size: var(--text-base); }

/* ---------- Esther ---------- */
.esther { background: var(--bg); }
.esther-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: start;
}
@media (max-width: 860px) {
  .esther-grid { grid-template-columns: 1fr; }
}
.esther-copy .lede { margin-top: 18px; }
.credentials {
  margin-top: 28px;
  display: grid;
  gap: 10px;
}
.credentials li {
  position: relative;
  padding-left: 26px;
  font-size: var(--text-sm);
  color: var(--ink-700);
}
.credentials li::before {
  content: "✦";
  position: absolute;
  left: 0; top: 0;
  color: var(--brand-orange-500);
  font-size: 14px;
}
.esther-card {
  background: linear-gradient(165deg, var(--brand-navy-800), var(--brand-navy-900));
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.esther-card::after {
  content: "";
  position: absolute;
  right: -60px; top: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, var(--brand-orange-500) 0%, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}
.esther-card-eyebrow {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--brand-orange-400);
  margin-bottom: 14px;
  font-weight: 600;
}
.esther-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 22px;
}
.format-list { display: grid; gap: 12px; }
.format-list li {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: var(--text-sm);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}
.format-list li strong { color: var(--brand-orange-400); font-weight: 600; }

/* ---------- Pricing ---------- */
.pricing { background: var(--surface-2); }
.price-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 920px) { .price-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; } }

.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.price-card.featured {
  background: linear-gradient(165deg, var(--brand-navy-800), var(--brand-navy-900));
  color: #fff;
  border-color: var(--brand-navy-700);
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
}
.price-card.featured:hover { transform: scale(1.02) translateY(-4px); }

.ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-orange-500);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  box-shadow: 0 8px 20px -8px rgba(240, 106, 43, 0.6);
}

.price-eyebrow {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--brand-orange-600);
  margin-bottom: 14px;
}
.price-card.featured .price-eyebrow { color: var(--brand-orange-400); }

.price-amount {
  font-family: var(--font-display);
  font-size: clamp(3rem, 2.4rem + 2vw, 4rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink-900);
  font-variation-settings: "opsz" 96;
}
.price-card.featured .price-amount { color: #fff; }
.price-amount .dollar {
  font-size: 0.5em;
  vertical-align: top;
  margin-right: 4px;
  font-weight: 500;
  color: var(--ink-500);
}
.price-card.featured .price-amount .dollar { color: rgba(255, 255, 255, 0.7); }
.price-amount .per {
  font-family: var(--font-sans);
  font-size: 0.32em;
  font-weight: 500;
  color: var(--ink-500);
  letter-spacing: 0;
  margin-left: 4px;
  vertical-align: baseline;
}
.price-card.featured .price-amount .per { color: rgba(255, 255, 255, 0.7); }

.price-tag {
  font-size: var(--text-sm);
  color: var(--ink-700);
  margin-top: 14px;
  margin-bottom: 24px;
  line-height: 1.5;
}
.price-card.featured .price-tag { color: rgba(255, 255, 255, 0.85); }

.price-list {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}
.price-list li {
  position: relative;
  padding-left: 26px;
  font-size: var(--text-sm);
  color: var(--ink-700);
  line-height: 1.5;
}
.price-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--brand-orange-500);
  box-shadow: inset 0 0 0 2px #fff;
}
.price-card.featured .price-list li { color: rgba(255, 255, 255, 0.88); }
.price-card.featured .price-list li::before { box-shadow: inset 0 0 0 2px var(--brand-navy-900); }

.fine-print {
  margin-top: 40px;
  text-align: center;
  font-size: var(--text-sm);
  color: var(--ink-500);
  max-width: 720px;
  margin-inline: auto;
  line-height: 1.6;
}

/* ---------- Reserve ---------- */
.reserve {
  background: linear-gradient(170deg, var(--brand-navy-900) 0%, var(--brand-navy-800) 60%, var(--brand-navy-700) 100%);
  position: relative;
  overflow: hidden;
}
.reserve::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, var(--brand-orange-500) 0%, transparent 70%);
  opacity: 0.25;
  pointer-events: none;
}
.reserve::after {
  content: "";
  position: absolute;
  bottom: -150px; left: -100px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, var(--brand-blue-300) 0%, transparent 70%);
  opacity: 0.15;
  pointer-events: none;
}
.reserve .container { position: relative; z-index: 1; }

.reserve-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

/* ---------- Signup form ---------- */
.signup {
  margin-top: 60px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 5vw, 48px);
  backdrop-filter: blur(12px);
  text-align: left;
}
.signup-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: #fff;
  margin-bottom: 24px;
  text-align: center;
  letter-spacing: -0.02em;
}
.signup .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 620px) { .signup .row { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { margin-bottom: 22px; }
.field span {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}
.field input,
.field select,
.field textarea {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  color: #fff;
  font-size: var(--text-sm);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(255, 255, 255, 0.45); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--brand-orange-400);
}
.field select option { color: var(--ink-900); }

.form-status {
  margin-top: 14px;
  text-align: center;
  font-size: var(--text-sm);
  color: var(--brand-orange-400);
  min-height: 1.2em;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink-900);
  color: rgba(255, 255, 255, 0.75);
  padding: 60px 0 28px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 36px;
}
.footer-brand img {
  height: 56px;
  width: auto;
  background: #fff;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: var(--text-sm);
  max-width: 380px;
  line-height: 1.5;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: var(--text-sm);
}
.footer-links a:hover { color: var(--brand-orange-400); }
.footer-fine {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.45);
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ---------- Motion reduce ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ============ ADDITIONS: payment plan, dual CTAs, bonus ============ */

/* Hero payment-plan line */
.hero-plan {
  margin-top: 1rem;
  font-family: var(--font-body, "Inter", system-ui, sans-serif);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.78);
  text-transform: none;
}

/* Payment-plan banner above pricing grid */
.pay-banner {
  max-width: 880px;
  margin: 0 auto 2.25rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, rgba(240, 106, 43, 0.08), rgba(240, 106, 43, 0.16));
  border: 1px solid rgba(240, 106, 43, 0.35);
  border-radius: 14px;
  text-align: center;
  font-family: var(--font-body, "Inter", system-ui, sans-serif);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--brand-navy-900, #07172f);
}
.pay-banner-strong {
  font-weight: 700;
  color: var(--brand-navy-900, #07172f);
}
.pay-banner-accent {
  display: block;
  margin-top: 0.35rem;
  font-weight: 600;
  color: var(--brand-orange-500, #f06a2b);
  font-style: italic;
  font-family: "Fraunces", Georgia, serif;
}

/* Dual CTA stack inside each price card */
.price-actions {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: auto;
}
.price-fineprint {
  margin-top: 0.65rem;
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(7, 23, 47, 0.6);
  text-align: center;
}
.price-card.featured .price-fineprint {
  color: rgba(255, 255, 255, 0.7);
}

/* "Book a Call First" secondary button — dark variant for cream cards */
.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  border: 1.5px solid rgba(7, 23, 47, 0.25);
  background: transparent;
  color: var(--brand-navy-900, #07172f);
  font-family: var(--font-body, "Inter", system-ui, sans-serif);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn-ghost-dark:hover {
  background: rgba(7, 23, 47, 0.06);
  border-color: var(--brand-navy-900, #07172f);
}
.price-card.featured .btn-ghost-dark {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.price-card.featured .btn-ghost-dark:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.85);
}

/* Accent kicker */
.kicker.accent { color: var(--brand-orange-500, #f06a2b); }

/* ============ BONUS SECTION ============ */
.section.bonus {
  background: linear-gradient(180deg, var(--cream, #fbfaf7) 0%, #f4eee5 100%);
  position: relative;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 780px) {
  .bonus-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

.bonus-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(7, 23, 47, 0.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(7, 23, 47, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(7, 23, 47, 0.12);
}

.bonus-cover {
  aspect-ratio: 4 / 3;
  background: var(--brand-navy-900, #07172f);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.bonus-cover img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  border-radius: 4px;
}

.bonus-body {
  padding: 1.75rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.bonus-tag {
  font-family: var(--font-body, "Inter", system-ui, sans-serif);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--brand-orange-500, #f06a2b);
  margin: 0;
}
.bonus-body h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--brand-navy-900, #07172f);
  margin: 0;
}
.bonus-sub {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--brand-orange-500, #f06a2b);
  margin: 0 0 0.35rem;
  line-height: 1.35;
}
.bonus-body p:not(.bonus-tag):not(.bonus-sub) {
  font-family: var(--font-body, "Inter", system-ui, sans-serif);
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(7, 23, 47, 0.78);
  margin: 0;
}

.bonus-fineprint {
  margin-top: 2.5rem;
  font-family: var(--font-body, "Inter", system-ui, sans-serif);
  font-size: 0.88rem;
  color: rgba(7, 23, 47, 0.6);
  line-height: 1.55;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ============ BONUS — 4-card icon grid ============ */
.bonus-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (max-width: 1100px) {
  .bonus-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .bonus-grid-4 { grid-template-columns: 1fr; }
}

.bonus-card-icon {
  background: var(--brand-cream, #fbfaf7);
  border: 1px solid rgba(7, 23, 47, 0.08);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(7, 23, 47, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.bonus-card-icon:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(7, 23, 47, 0.12);
}

.bonus-icon-wrap {
  background: linear-gradient(135deg, #07172f 0%, #0b1e3f 100%);
  padding: 2rem 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  text-align: center;
}
.bonus-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(240, 106, 43, 0.15);
  border: 1.5px solid rgba(240, 106, 43, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f78a52;
}
.bonus-icon svg {
  width: 28px;
  height: 28px;
}
.bonus-delivery {
  color: #fbfaf7;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
  opacity: 0.85;
}

.bonus-card-icon .bonus-body {
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.bonus-card-icon .bonus-body h3 {
  font-size: 1.15rem;
  line-height: 1.3;
  margin: 0.1rem 0 0;
}
.bonus-card-icon .bonus-sub {
  font-style: italic;
  color: #f06a2b;
  font-size: 0.92rem;
  margin: 0.1rem 0 0.4rem;
}
.bonus-card-icon .bonus-body > p:last-child {
  font-size: 0.92rem;
  line-height: 1.55;
  color: #2a3a55;
}

/* ---------- Done For You (DFY) premium tier ---------- */
.dfy-card {
  margin-top: 56px;
  padding: 48px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--brand-navy-900) 0%, #00468C 100%);
  color: #F8F4EC;
  box-shadow: 0 24px 60px rgba(0, 30, 80, 0.18);
  position: relative;
  overflow: hidden;
}
.dfy-card::before {
  content: "PREMIUM TIER";
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 700;
  padding: 6px 12px;
  background: #F05000;
  color: #fff;
  border-radius: 999px;
}
.dfy-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.dfy-eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: #F05000;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.dfy-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 38px;
  line-height: 1.1;
  font-weight: 600;
  margin: 0 0 20px;
  color: #fff;
}
.dfy-title-accent {
  font-style: italic;
  color: #F2A56A;
  display: block;
  margin-top: 4px;
}
.dfy-lede {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(248, 244, 236, 0.88);
  margin: 0 0 28px;
}
.dfy-price-block {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 24px;
}
.dfy-price {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 56px;
  font-weight: 600;
  line-height: 1;
  color: #fff;
}
.dfy-price .dollar {
  font-size: 28px;
  vertical-align: top;
  margin-right: 4px;
  color: #F2A56A;
}
.dfy-plan {
  margin: 8px 0 0;
  font-size: 14px;
  color: rgba(248, 244, 236, 0.85);
}
.dfy-plan strong { color: #fff; }
.dfy-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dfy-actions .btn-primary {
  background: #F05000;
  border-color: #F05000;
}
.dfy-actions .btn-primary:hover { background: #D44600; border-color: #D44600; }
.dfy-actions .btn-ghost-dark {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
}
.dfy-actions .btn-ghost-dark:hover {
  background: rgba(255,255,255,0.18);
  border-color: #fff;
}
.dfy-right { display: flex; flex-direction: column; gap: 24px; }
.dfy-block {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 20px 22px;
}
.dfy-block-title {
  font-size: 11px;
  letter-spacing: 0.16em;
  font-weight: 700;
  text-transform: uppercase;
  color: #F2A56A;
  margin: 0 0 12px;
}
.dfy-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(248, 244, 236, 0.92);
}
.dfy-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 7px;
}
.dfy-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #F05000;
}
.dfy-list.two-col {
  columns: 2;
  column-gap: 28px;
}
.dfy-list.two-col li { break-inside: avoid; }
.dfy-list strong { color: #fff; }
.dfy-how {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 20px 22px;
}
.dfy-steps {
  margin: 0 0 16px;
  padding-left: 20px;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(248, 244, 236, 0.92);
}
.dfy-steps li { margin-bottom: 8px; }
.dfy-steps li::marker { color: #F05000; font-weight: 700; }
.dfy-steps strong { color: #fff; }
.dfy-close {
  margin: 0;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 17px;
  color: #F2A56A;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 14px;
}

@media (max-width: 900px) {
  .dfy-card { padding: 32px 24px; }
  .dfy-grid { grid-template-columns: 1fr; gap: 32px; }
  .dfy-title { font-size: 28px; }
  .dfy-price { font-size: 44px; }
  .dfy-list.two-col { columns: 1; }
  .dfy-card::before { top: 16px; right: 16px; }
}

/* ===== Bonus grid 5-up ===== */
.bonus-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.5rem;
}
@media (max-width: 1200px) { .bonus-grid-5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px)  { .bonus-grid-5 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .bonus-grid-5 { grid-template-columns: 1fr; } }

/* ===== Policies section ===== */
.policies {
  background: var(--cream, #F8F4EC);
  color: var(--ink, #001434);
  padding: 5rem 0;
}
.policies .display { color: var(--navy, #003070); }
.policies .lede { max-width: 760px; margin-left: auto; margin-right: auto; color: #25446e; }
.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (max-width: 820px) { .policy-grid { grid-template-columns: 1fr; } }
.policy-card {
  background: #fff;
  border: 1px solid #d9dee9;
  border-left: 6px solid var(--orange, #F05000);
  border-radius: 14px;
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow: 0 6px 24px rgba(0, 21, 60, 0.05);
}
.policy-card h3 {
  margin: 0.25rem 0 1rem;
  color: var(--navy, #003070);
  font-size: 1.25rem;
  line-height: 1.25;
}
.policy-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange, #F05000);
  margin: 0;
}
.policy-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.policy-card li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #2a3a55;
}
.policy-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--sky, #2070C0);
}
.policy-card a { color: var(--navy, #003070); text-decoration: underline; }
.policy-fineprint {
  margin: 2rem auto 0;
  max-width: 820px;
  font-size: 0.95rem;
  color: #2a3a55;
}
.policy-fineprint a { color: var(--navy, #003070); font-weight: 600; }
.policy-consent {
  margin: 1.5rem auto 0;
  max-width: 820px;
  font-size: 0.9rem;
  color: #3a4a66;
  background: rgba(32, 112, 192, 0.08);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  text-align: left;
}
.policy-consent strong { color: var(--navy, #003070); }

/* ===== Form consent line ===== */
.form-consent {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 0.75rem;
  line-height: 1.5;
  text-align: left;
}
.form-consent a { color: #ffd8a8; text-decoration: underline; }

/* ===== Footer additions ===== */
.footer-addr {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}
.footer-links a { display: block; padding: 0.15rem 0; }

/* ===== Anthem section ===== */
.anthem {
  background:
    radial-gradient(circle at 20% 30%, rgba(240, 80, 0, 0.18), transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(32, 112, 192, 0.22), transparent 60%),
    linear-gradient(135deg, var(--navy, #003070) 0%, var(--navy-dark, #002558) 100%);
  color: #fff;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.anthem-card {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2.5rem;
  background: rgba(0, 21, 60, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  backdrop-filter: blur(8px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}
@media (max-width: 820px) {
  .anthem-card { grid-template-columns: 1fr; gap: 2rem; padding: 1.75rem; }
  .anthem-art { margin: 0 auto; max-width: 240px; }
}
.anthem-art {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  background: linear-gradient(160deg, #F05000 0%, #D09030 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 50px rgba(240, 80, 0, 0.4);
  overflow: hidden;
}
.anthem-icon {
  position: relative;
  z-index: 2;
  color: #fff;
  width: 38%;
}
.anthem-icon svg { width: 100%; height: auto; }
.anthem-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.anthem-rings span {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  width: 50%;
  aspect-ratio: 1 / 1;
  animation: anthem-pulse 3s ease-out infinite;
}
.anthem-rings span:nth-child(2) { animation-delay: 1s; }
.anthem-rings span:nth-child(3) { animation-delay: 2s; }
@keyframes anthem-pulse {
  0%   { transform: scale(0.6); opacity: 0.8; }
  100% { transform: scale(1.8); opacity: 0; }
}
.anthem-body .kicker { color: #ffb98a; }
.anthem-body .display { color: #fff; margin-bottom: 0.75rem; }
.anthem-body .lede { color: rgba(255, 255, 255, 0.85); margin-bottom: 1.5rem; max-width: 540px; }
.anthem-player {
  width: 100%;
  max-width: 540px;
  margin-top: 0.25rem;
  border-radius: 999px;
}
.anthem-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.anthem-actions .btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.anthem-actions .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
}
@media (prefers-reduced-motion: reduce) {
  .anthem-rings span { animation: none; opacity: 0.4; }
}

/* ============ PRODUCT STACK FEATURE (What You Get hero) ============ */
.stack-feature {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  margin: clamp(2.5rem, 4vw, 4rem) 0 clamp(3rem, 5vw, 5rem);
  padding: clamp(1.5rem, 3vw, 3rem);
  background: linear-gradient(135deg, #002558 0%, #003070 60%, #10488C 100%);
  border-radius: 24px;
  box-shadow: 0 24px 60px -20px rgba(0, 37, 88, 0.5);
  position: relative;
  overflow: hidden;
}
.stack-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 10%, rgba(240, 80, 0, 0.15), transparent 50%),
    radial-gradient(ellipse at 10% 90%, rgba(32, 112, 192, 0.18), transparent 55%);
  pointer-events: none;
}
.stack-image {
  position: relative;
  z-index: 1;
}
.stack-image img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
}
.stack-copy {
  position: relative;
  z-index: 1;
  color: #fff;
}
.stack-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-orange-400);
  background: rgba(240, 80, 0, 0.12);
  border: 1px solid rgba(240, 80, 0, 0.35);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  margin: 0 0 1rem;
}
.stack-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.1;
  font-weight: 700;
  margin: 0 0 1.25rem;
  color: #fff;
}
.stack-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.6rem;
}
.stack-list li {
  position: relative;
  padding-left: 1.5rem;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-sans);
  font-size: 0.98rem;
  line-height: 1.45;
}
.stack-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--brand-orange-400);
  box-shadow: 0 0 0 3px rgba(240, 80, 0, 0.2);
}
.stack-list strong {
  color: #fff;
  font-weight: 700;
}
.stack-foot {
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  font-size: 0.92rem;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1rem;
}
@media (max-width: 820px) {
  .stack-feature { grid-template-columns: 1fr; }
}

/* ============ NEW PRICING VALUE FRAMING ============ */
.price-value {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand-navy-700);
  margin: 0 0 0.25rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
}
.price-value-strike {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--brand-navy-900);
  letter-spacing: -0.01em;
  text-transform: none;
}
.price-card.featured .price-value { color: rgba(255, 255, 255, 0.7); }
.price-card.featured .price-value-strike { color: #fff; }

.price-invest {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brand-navy-600);
  margin: 0.5rem 0 0.1rem;
}
.price-card.featured .price-invest { color: rgba(255, 255, 255, 0.7); }

.price-save {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  background: var(--brand-orange-500);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin: 0.25rem 0 0.85rem;
  box-shadow: 0 2px 6px rgba(240, 80, 0, 0.25);
}
.price-card.featured .price-save {
  background: var(--brand-orange-400);
  color: var(--brand-navy-900);
}

/* ============ DFY TEASER (replaces full DFY card) ============ */
.dfy-teaser {
  margin-top: clamp(2.5rem, 4vw, 4rem);
  background: linear-gradient(135deg, var(--brand-navy-900) 0%, var(--brand-navy-800) 100%);
  border-radius: 24px;
  padding: clamp(1.75rem, 3vw, 3rem);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.dfy-teaser::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 110% -20%, rgba(240, 80, 0, 0.25), transparent 50%),
    radial-gradient(ellipse at -10% 120%, rgba(32, 112, 192, 0.2), transparent 55%);
  pointer-events: none;
}
.dfy-teaser-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
  z-index: 1;
}
.dfy-teaser-copy { color: #fff; }
.dfy-teaser-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-orange-400);
  background: rgba(240, 80, 0, 0.15);
  border: 1px solid rgba(240, 80, 0, 0.4);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  margin: 0 0 1rem;
}
.dfy-teaser-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.1;
  font-weight: 700;
  margin: 0 0 1rem;
  color: #fff;
}
.dfy-teaser-title .dfy-title-accent {
  color: var(--brand-orange-400);
  font-style: italic;
}
.dfy-teaser-lede {
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.55;
  margin: 0 0 1.25rem;
  max-width: 56ch;
}
.dfy-teaser-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.5rem;
}
.dfy-teaser-list li {
  position: relative;
  padding-left: 1.5rem;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-sans);
  font-size: 0.98rem;
}
.dfy-teaser-list li::before {
  content: "\2714";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand-orange-400);
  font-weight: 700;
}
.dfy-teaser-cta { margin: 0 0 1rem; }
.dfy-teaser-price {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-sans);
  font-size: 0.95rem;
}
.dfy-teaser-price-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-right: 0.5rem;
}
.dfy-teaser-price-amount {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}
.dfy-teaser-art {
  display: flex;
  align-items: center;
  justify-content: center;
}
.dfy-teaser-badge {
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  text-align: center;
  min-width: 220px;
  transform: rotate(-3deg);
}
.dfy-teaser-badge-line {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin: 0.15rem 0;
}
.dfy-teaser-badge-line.strong {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--brand-orange-400);
  font-weight: 700;
  margin: 0.6rem 0;
}
@media (max-width: 820px) {
  .dfy-teaser-grid { grid-template-columns: 1fr; }
  .dfy-teaser-art { order: -1; margin-bottom: 1rem; }
}

/* DFY teaser tagline (replaces crooked badge) */
.dfy-teaser .dfy-teaser-grid {
  grid-template-columns: 1fr;
}
.dfy-teaser-tagline {
  margin: 0.5rem 0 0;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}
.dfy-teaser-cta { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ============================================================
   Relaunch section + price-payplan line (added 2026-06-18)
   ============================================================ */

.section.relaunch {
  background: linear-gradient(180deg, #fbfaf7 0%, var(--brand-cream) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section.relaunch .kicker {
  color: var(--brand-orange-500);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: var(--text-xs);
}
.section.relaunch .display {
  color: var(--brand-navy-900);
  font-family: var(--font-display);
  font-weight: 700;
  margin-top: 0.5rem;
}
.section.relaunch .lede {
  color: var(--ink-700);
}
.section.relaunch .lede.strong {
  color: var(--brand-navy-900);
  font-weight: 600;
}

.price-payplan {
  margin: 0.75rem 0 0.5rem;
  font-size: var(--text-sm);
  color: var(--ink-700);
  font-weight: 600;
  padding: 0.6rem 0.75rem;
  background: rgba(242, 100, 24, 0.08);
  border-left: 3px solid var(--brand-orange-500);
  border-radius: 4px;
}
.price-card.featured .price-payplan {
  color: var(--brand-cream);
  background: rgba(255, 255, 255, 0.12);
  border-left-color: var(--brand-orange-400);
}

/* ============================================================
   Mobile hero fixes (added 2026-06-18)
   ============================================================ */

@media (max-width: 760px) {
  .hero {
    min-height: clamp(560px, 90vh, 760px);
  }
  /* Reframe background photo so the subject (Esther) fits in frame on phones
     instead of the right-edge crop that hides her face/shoulder */
  .hero-bg img {
    object-position: 60% center;
    object-fit: cover;
  }
  /* Strengthen the overlay so text reads clearly over the busier crop */
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(7, 23, 47, 0.72) 0%, rgba(7, 23, 47, 0.78) 100%) !important;
  }
  /* Ensure the hero-inner respects the container's side padding */
  .hero .container.hero-inner {
    padding-left: 22px;
    padding-right: 22px;
    padding-top: 88px;
    padding-bottom: 56px;
  }
  .hero-title {
    font-size: clamp(2.6rem, 12vw, 3.6rem) !important;
    line-height: 1.02 !important;
  }
  .hero-sub {
    font-size: 1.0625rem;
    line-height: 1.5;
  }
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .hero-cta .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .hero-plan {
    font-size: 0.8125rem;
    line-height: 1.5;
  }
  .hero-pills {
    gap: 8px;
  }
  .hero-pills li {
    font-size: 0.75rem;
  }
}
