/* ============================================================
   OLIVE COOKS — stylesheet
   Warm editorial aesthetic: food magazine × healthy lifestyle
   Fonts: Playfair Display (headings) · Nunito (body)
   ============================================================ */

/* === CSS VARIABLES === */
:root {
  --olive:       #4E6B45;
  --olive-dark:  #3A5831;
  --olive-light: #EDF3E8;
  --cream:       #FAF7F2;
  --cream-dark:  #F2EDE4;
  --dark:        #2C2C2C;
  --brown:       #6E4A2A;
  --gray:        #8C8C87;
  --light-gray:  #D8D8D3;
  --white:       #FFFFFF;
  --error:       #C0392B;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Nunito', system-ui, -apple-system, sans-serif;

  --radius:    12px;
  --radius-sm: 6px;
  --radius-lg: 20px;

  --shadow:    0 2px 12px rgba(44, 44, 44, 0.07);
  --shadow-md: 0 6px 28px rgba(44, 44, 44, 0.10);
  --shadow-lg: 0 16px 56px rgba(44, 44, 44, 0.14);

  --max-w:      1160px;
  --section-v:  clamp(72px, 9vw, 128px);
  --section-v-sm: clamp(48px, 6vw, 80px);

  --transition: 220ms ease;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--dark);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea { font-family: inherit; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--dark);
}
h1 { font-size: clamp(36px, 5.5vw, 68px); font-weight: 700; }
h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 700; }
h3 { font-size: clamp(22px, 3vw, 32px); font-weight: 600; }
h4 { font-size: clamp(18px, 2vw, 22px); font-weight: 600; }
p  { color: var(--dark); line-height: 1.7; }

.lead {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--gray);
  font-weight: 400;
  line-height: 1.6;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive);
}

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.container--narrow {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), opacity var(--transition);
  white-space: nowrap;
  text-align: center;
  cursor: pointer;
  user-select: none;
}
.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--olive);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(78, 107, 69, 0.30);
}
.btn--primary:hover {
  background: var(--olive-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(78, 107, 69, 0.38);
}

.btn--outline {
  background: transparent;
  color: var(--olive);
  border: 2px solid var(--olive);
}
.btn--outline:hover {
  background: var(--olive-light);
  transform: translateY(-2px);
}

.btn--ghost {
  background: rgba(255,255,255,0.18);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.28);
  transform: translateY(-2px);
}

.btn--large {
  font-size: 18px;
  padding: 20px 42px;
}

.btn--full { width: 100%; justify-content: center; }

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

/* === NAVIGATION === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--light-gray);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.nav__logo span { color: var(--olive); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray);
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--dark); }
.nav__cta { flex-shrink: 0; }
.nav__cta .btn { padding: 11px 22px; font-size: 14px; }

@media (max-width: 640px) {
  .nav__links { display: none; }
  .nav__cta .btn { padding: 10px 18px; font-size: 14px; }
}

/* === HERO (homepage) === */
.hero {
  padding: var(--section-v) 0 calc(var(--section-v) * 0.75);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(78, 107, 69, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(110, 74, 42, 0.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}
.hero__content {}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--olive);
}
.hero__title {
  margin-bottom: 20px;
}
.hero__title em {
  font-style: italic;
  color: var(--olive);
}
.hero__sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--gray);
  margin-bottom: 36px;
  max-width: 460px;
  line-height: 1.65;
}
.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero__image {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero__image .olive-img {
  width: 100%;
  max-width: 380px;
  border-radius: var(--radius-lg);
  object-fit: cover;
}
.olive-img-fallback {
  width: 340px;
  height: 400px;
  border-radius: var(--radius-lg);
  background: var(--olive-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 2px dashed var(--light-gray);
  color: var(--gray);
  font-size: 14px;
  text-align: center;
  padding: 24px;
}
.olive-img-fallback span { font-size: 64px; }

@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__ctas { justify-content: center; }
  .hero__image { order: -1; }
  .olive-img-fallback { width: 220px; height: 260px; }
  .olive-img-fallback span { font-size: 48px; }
}

/* === TRUST STRIP === */
.trust {
  background: var(--olive);
  color: var(--white);
  padding: 40px 0;
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.trust__item {}
.trust__icon { font-size: 28px; margin-bottom: 8px; }
.trust__label {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}
.trust__sub {
  font-size: 13px;
  opacity: 0.75;
  font-weight: 500;
}

@media (max-width: 600px) {
  .trust__grid { grid-template-columns: 1fr; gap: 24px; }
}

/* === SECTION HEADERS === */
.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.section-header h2 { margin-top: 12px; }
.section-header .lead { margin-top: 16px; max-width: 540px; margin-left: auto; margin-right: auto; }

/* === BUNDLE SECTION === */
.bundle-section {
  padding: var(--section-v) 0;
  background: var(--cream-dark);
  position: relative;
  overflow: hidden;
}
.bundle-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(78, 107, 69, 0.07);
  pointer-events: none;
}
.bundle-section::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(110, 74, 42, 0.05);
  pointer-events: none;
}
.bundle-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.bundle-card__books {
  display: flex;
  gap: 20px;
  align-items: flex-end;
}
.book-thumb {
  flex: 1;
  background: var(--olive-light);
  border-radius: 10px;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--gray);
  text-align: center;
  padding: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid var(--light-gray);
  position: relative;
  overflow: hidden;
}
.book-thumb--1 { transform: rotate(-3deg); }
.book-thumb--2 { transform: rotate(2deg); margin-bottom: 16px; }
.bundle-card__content {}
.bundle-badge {
  display: inline-block;
  background: var(--olive-light);
  color: var(--olive-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.bundle-card__title {
  margin-bottom: 12px;
}
.bundle-card__desc {
  color: var(--gray);
  margin-bottom: 24px;
  font-size: 16px;
}
.bundle-pricing {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.bundle-price-main {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}
.bundle-price-was {
  font-size: 18px;
  color: var(--gray);
  text-decoration: line-through;
}
.bundle-savings {
  font-size: 13px;
  color: var(--olive);
  font-weight: 700;
  margin-bottom: 28px;
}
.bundle-includes {
  list-style: none;
  margin-bottom: 32px;
}
.bundle-includes li {
  font-size: 15px;
  color: var(--dark);
  padding: 7px 0;
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  align-items: center;
  gap: 10px;
}
.bundle-includes li::before {
  content: '✓';
  color: var(--olive);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

@media (max-width: 840px) {
  .bundle-card {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .bundle-card__books {
    justify-content: center;
    max-width: 260px;
    margin: 0 auto;
  }
  .bundle-card__content { text-align: center; }
  .bundle-pricing { justify-content: center; }
}

/* === BOOK CARDS (homepage) === */
.books-section {
  padding: var(--section-v) 0;
}
.books-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.book-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid transparent;
}
.book-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--olive-light);
}
.book-card__cover {
  background: var(--olive-light);
  border-radius: var(--radius-sm);
  height: 200px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--gray);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--light-gray);
}
.book-card__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 8px;
  display: block;
}
.book-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}
.book-card__desc {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.6;
}
.book-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.book-card__price {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--dark);
}

@media (max-width: 700px) {
  .books-grid { grid-template-columns: 1fr; }
}

/* === PAGE HERO (inner pages) === */
.page-hero {
  padding: clamp(56px, 7vw, 96px) 0 clamp(48px, 6vw, 80px);
  border-bottom: 1px solid var(--light-gray);
  text-align: center;
}
.page-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--olive-light);
  color: var(--olive-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.page-hero__title { margin-bottom: 16px; }
.page-hero__sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto 36px;
}
.page-hero__price-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 16px 32px;
  box-shadow: var(--shadow);
}
.price-main {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  line-height: 1;
  color: var(--dark);
}
.price-meta {
  font-size: 13px;
  color: var(--gray);
  font-weight: 600;
}

/* === BAB SECTIONS === */
.bab-section { padding: var(--section-v) 0; }
.bab-section + .bab-section {
  padding-top: 0;
}

.bab-block {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.bab-block:last-child { margin-bottom: 0; }
.bab-label {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  opacity: 0.06;
  color: var(--dark);
  letter-spacing: -0.03em;
  user-select: none;
  position: sticky;
  top: 80px;
}
.bab-label--before { color: var(--brown); opacity: 0.10; }
.bab-label--after  { color: var(--olive); opacity: 0.10; }
.bab-label--bridge { color: var(--dark); opacity: 0.06; }

.bab-content {}
.bab-content h3 {
  margin-bottom: 16px;
}
.bab-content p {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 16px;
  max-width: 620px;
}
.bab-content p:last-child { margin-bottom: 0; }

@media (max-width: 640px) {
  .bab-block {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .bab-label {
    font-size: 36px;
    opacity: 0.15;
    position: static;
  }
}

/* === CHAPTER LIST === */
.chapter-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.chapter-item {
  background: var(--olive-light);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
}
.chapter-item__name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}
.chapter-item__count {
  font-size: 13px;
  color: var(--olive);
  font-weight: 700;
}

/* === RECIPE TEASERS === */
.teasers-section {
  padding: var(--section-v-sm) 0;
  background: var(--cream-dark);
}
.teasers-header {
  text-align: center;
  margin-bottom: 40px;
}
.teasers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.teaser-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.teaser-card__name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}
.teaser-card__line {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.5;
  font-style: italic;
}

@media (max-width: 720px) {
  .teasers-grid { grid-template-columns: 1fr; }
}

/* === PRICE BLOCK === */
.price-section {
  padding: var(--section-v) 0;
}
.price-box {
  background: var(--olive);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(48px, 6vw, 72px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.price-box::before {
  content: '';
  position: absolute;
  top: -60px; right: -40px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
}
.price-box::after {
  content: '';
  position: absolute;
  bottom: -50px; left: -30px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}
.price-box h3 {
  color: var(--white);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.price-box__sub {
  opacity: 0.8;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}
.price-box__amount {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.price-box__meta {
  opacity: 0.7;
  font-size: 15px;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}
.price-box .btn--ghost {
  position: relative;
  z-index: 1;
}
.price-box__guarantee {
  margin-top: 20px;
  font-size: 13px;
  opacity: 0.7;
  position: relative;
  z-index: 1;
}

/* === MANYCHAT CALLOUT === */
.manychat-callout {
  background: var(--cream-dark);
  border-left: 3px solid var(--olive);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin: clamp(40px, 5vw, 56px) 0;
}
.manychat-callout p {
  font-size: 15px;
  color: var(--dark);
  line-height: 1.6;
}
.manychat-callout strong {
  color: var(--olive-dark);
  font-weight: 700;
}

/* === FAQ === */
.faq-section { padding: var(--section-v-sm) 0; }
.faq-section h3 { margin-bottom: 32px; }
.faq-list { display: flex; flex-direction: column; gap: 0; }

.faq-item {
  border-bottom: 1px solid var(--light-gray);
}
.faq-item:first-child { border-top: 1px solid var(--light-gray); }

.faq-question {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: none;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--olive); }
.faq-question .icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--olive-light);
  color: var(--olive);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 400;
  transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-question .icon {
  transform: rotate(45deg);
  background: var(--olive);
  color: var(--white);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 280ms ease;
}
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-answer__inner {
  overflow: hidden;
}
.faq-answer__inner p {
  padding-bottom: 24px;
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  max-width: 620px;
}

/* === SOCIAL PROOF === */
.proof-section {
  padding: var(--section-v-sm) 0;
  background: var(--white);
}
.proof-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--light-gray);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 40px;
}
.proof-stat {
  background: var(--white);
  padding: 32px;
  text-align: center;
}
.proof-stat__num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  display: block;
}
.proof-stat__label {
  font-size: 13px;
  color: var(--gray);
  font-weight: 600;
  margin-top: 4px;
}

@media (max-width: 600px) {
  .proof-stat-row { grid-template-columns: 1fr; }
}

/* === BUNDLE PAGE === */
.bundle-hero {
  padding: var(--section-v) 0;
  text-align: center;
}
.bundle-hero__books {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
  margin: 40px auto;
  max-width: 400px;
}
.bundle-hero__books .book-thumb {
  flex: 1;
  min-height: 200px;
}
.bundle-hero__books .book-thumb--1 { transform: rotate(-4deg); }
.bundle-hero__books .book-thumb--2 { transform: rotate(3deg); margin-bottom: 20px; }

.bundle-pricing-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 20px;
  margin: 28px 0 12px;
}
.bundle-big-price {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  color: var(--dark);
}
.bundle-was-price {
  font-size: 22px;
  color: var(--gray);
  text-decoration: line-through;
}
.bundle-save-tag {
  display: inline-block;
  background: var(--olive-light);
  color: var(--olive-dark);
  font-weight: 700;
  font-size: 14px;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 32px;
}
.bundle-what-you-get {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin: 48px 0;
  text-align: left;
}
.bundle-feature {
  background: var(--cream-dark);
  border-radius: var(--radius-sm);
  padding: 20px;
}
.bundle-feature__icon { font-size: 24px; margin-bottom: 8px; }
.bundle-feature__title {
  font-weight: 700;
  font-size: 15px;
  color: var(--dark);
  margin-bottom: 4px;
}
.bundle-feature__desc { font-size: 13px; color: var(--gray); }

.bundle-secondary-links {
  text-align: center;
  padding: var(--section-v-sm) 0;
  border-top: 1px solid var(--light-gray);
}
.bundle-secondary-links p {
  color: var(--gray);
  font-size: 15px;
  margin-bottom: 20px;
}
.bundle-secondary-links .link-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* === SUCCESS PAGE === */
.success-page {
  min-height: calc(100vh - 68px);
  padding: var(--section-v) 0;
}
.success-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(48px, 6vw, 72px);
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.success-check {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--olive-light);
  color: var(--olive);
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.success-card h2 { margin-bottom: 12px; }
.success-card .lead { margin-bottom: 36px; }
.download-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.success-loading {
  color: var(--gray);
  font-size: 15px;
  margin: 24px 0;
}
.success-email-note {
  background: var(--cream-dark);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 14px;
  color: var(--gray);
  margin: 24px 0 36px;
  line-height: 1.6;
}
.success-upsell {
  padding: var(--section-v-sm) 0;
  background: var(--cream-dark);
  margin: 0 -clamp(48px, 6vw, 72px);
  padding-left: clamp(48px, 6vw, 72px);
  padding-right: clamp(48px, 6vw, 72px);
  border-top: 1px solid var(--light-gray);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.success-upsell h4 { margin-bottom: 8px; }
.success-upsell p { font-size: 14px; color: var(--gray); margin-bottom: 20px; }

/* === FOOTER === */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 40px 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--white);
  font-weight: 700;
}
.footer__logo span { color: var(--olive-light); }
.footer__links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--white); }
.footer__copy {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  width: 100%;
  margin-top: 8px;
}

/* === UTILITIES === */
.text-center { text-align: center; }
.text-olive   { color: var(--olive); }
.mt-0  { margin-top: 0; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0  { margin-bottom: 0; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* === TOAST NOTIFICATIONS === */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--dark);
  color: var(--white);
  padding: 14px 24px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  z-index: 9999;
  transition: transform 300ms ease;
  pointer-events: none;
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast.error { background: var(--error); }

/* === DIVIDER === */
.section-divider {
  border: none;
  height: 1px;
  background: var(--light-gray);
  margin: 0;
}

/* === RESPONSIVE UTILS === */
@media (max-width: 768px) {
  .hide-mobile { display: none !important; }
}
@media (min-width: 769px) {
  .hide-desktop { display: none !important; }
}
