/* ===================================================
   IMI Landing Page — Premium Design System
   Color Palette: White, Gold (#C9A84C), Navy (#1A2332), 
   Warm Gray (#6B6B6B), Soft Cream (#FAF8F5)
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold: #C9A84C;
  --gold-light: #E2CA7E;
  --gold-dark: #A68A3A;
  --navy: #1A2332;
  --navy-light: #2A3A52;
  --cream: #FAF8F5;
  --cream-dark: #F0EDE7;
  --warm-gray: #6B6B6B;
  --warm-gray-light: #9A9A9A;
  --white: #FFFFFF;
  --text-primary: #1A2332;
  --text-secondary: #4A4A4A;
  --text-muted: #7A7A7A;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 64px rgba(0,0,0,0.12);
  --shadow-gold: 0 8px 32px rgba(201,168,76,0.2);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--text-secondary);
  line-height: 1.8;
}

.gold-text {
  color: var(--gold);
}

.accent-line {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 0 auto 1.5rem;
}

.section-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: inline-block;
}

/* ---------- LAYOUT ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

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

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

.section--navy h2,
.section--navy h3,
.section--navy p,
.section--navy li {
  color: var(--white);
}

.section--navy .section-label {
  color: var(--gold-light);
}

.text-center {
  text-align: center;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 60px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.35);
}

.btn--glass {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.btn--glass:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255,255,255,0.1);
}

.btn--outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}

.btn--outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}

.btn--large {
  padding: 1.2rem 3rem;
  font-size: 1rem;
  letter-spacing: 2px;
}

.btn-arrow {
  transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ---------- NAVIGATION / HEADER ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  padding: 0.6rem 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.header__logo img {
  height: 50px;
  width: auto;
  transition: var(--transition);
}

.header.scrolled .header__logo img {
  height: 40px;
}

.header__cta .btn {
  padding: 0.7rem 1.8rem;
  font-size: 0.8rem;
}

/* ---------- HERO SECTION ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  overflow: hidden;
}

.hero__video-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero__video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(26, 35, 50, 0.7) 0%,
    rgba(26, 35, 50, 0.5) 50%,
    rgba(26, 35, 50, 0.85) 100%
  );
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 2rem clamp(1.25rem, 4vw, 2.5rem);
  animation: heroFadeIn 1.2s ease-out;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__content h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
}

.hero__content h1 .gold-text {
  display: block;
}

.hero__subtitle {
  color: rgba(255,255,255,0.8);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  line-height: 1.8;
}

.hero__badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.hero__badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-weight: 500;
}

.hero__badge svg {
  width: 18px;
  height: 18px;
  color: var(--gold-light);
}

/* ---------- MY STORY SECTION ---------- */
.story {
  position: relative;
}

.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.story__images {
  position: relative;
}

.story__img-main {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.story__img-float {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
  object-fit: cover;
}

.story__text h2 {
  margin-bottom: 1.5rem;
}

.story__text p {
  margin-bottom: 1.25rem;
}

.story__text p:first-of-type {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-primary);
}

.story__signature {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold);
  margin: 1.5rem 0 2rem;
}

/* ---------- PLANNER BUNDLE SECTION ---------- */
.planners__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: 3rem;
}

.planner-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  border: 1px solid rgba(0,0,0,0.04);
}

.planner-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.planner-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.planner-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.planner-card:hover .planner-card__image img {
  transform: scale(1.05);
}

.planner-card__number {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  z-index: 2;
}

.planner-card__body {
  padding: 1.5rem;
}

.planner-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.planner-card__benefits {
  list-style: none;
}

.planner-card__benefits li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.planner-card__benefits li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---------- WHO IS THIS FOR ---------- */
.audience__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.audience__image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.audience__list {
  list-style: none;
  display: grid;
  gap: 1rem;
}

.audience__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.audience__item:hover {
  border-left-color: var(--gold);
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.audience__icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.audience__item-text {
  font-weight: 500;
  color: var(--text-primary);
  font-size: 1rem;
}

/* ---------- BONUS SECTION ---------- */
.bonus {
  position: relative;
}

.bonus__card {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
  overflow: hidden;
  position: relative;
}

.bonus__card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.bonus__video-wrap {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.bonus__video-wrap video {
  width: 100%;
  display: block;
  border-radius: var(--radius-lg);
}

.bonus__text {
  position: relative;
  z-index: 2;
}

.bonus__text .section-label {
  color: var(--gold-light);
}

.bonus__text h2 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.bonus__text p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  font-size: 1.05rem;
  line-height: 1.9;
}

/* ---------- NEW BONUS & GIFT SECTION ---------- */
.gift-badge-container {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.gift-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  box-shadow: var(--shadow-gold);
  animation: giftPulse 2s infinite ease-in-out;
}

@keyframes giftPulse {
  0% { transform: scale(1); box-shadow: 0 4px 15px rgba(201, 168, 76, 0.4); }
  50% { transform: scale(1.05); box-shadow: 0 8px 25px rgba(201, 168, 76, 0.6); }
  100% { transform: scale(1); box-shadow: 0 4px 15px rgba(201, 168, 76, 0.4); }
}

.gift-badge__icon {
  width: 18px;
  height: 18px;
  color: var(--white);
}

.bonus-gifts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.bonus-gift-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201, 168, 76, 0.2);
  box-shadow: var(--shadow-sm);
  padding: 2.5rem 2rem 2rem;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}

.bonus-gift-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.bonus-gift-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.bonus-gift-card__badge {
  position: absolute;
  top: 15px;
  right: 20px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 1px;
  background: rgba(201, 168, 76, 0.1);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}

.bonus-gift-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.bonus-gift-card__value {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 1.25rem;
  letter-spacing: 1px;
}

.bonus-gift-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ---------- NEW BONUS VIDEO SECTION ---------- */
.video-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-lg);
  padding: clamp(2rem, 4vw, 3.5rem);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  position: relative;
}

.video-card__player-wrap {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  aspect-ratio: 16/9;
  background: var(--navy);
}

.video-card__player {
  width: 100%;
  height: 100%;
}

.video-card__player video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-card__benefits {
  list-style: none;
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.video-card__benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.video-card__benefits li svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.video-card__cta {
  margin-top: 1.5rem;
}

/* ---------- TRANSFORMATION SECTION ---------- */
.transform__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.transform__image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.transform__list {
  list-style: none;
  display: grid;
  gap: 1.25rem;
}

.transform__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
}

.transform__check {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.transform__check svg {
  width: 16px;
  height: 16px;
  color: var(--white);
}

/* ---------- FINAL CTA SECTION ---------- */
.final-cta {
  position: relative;
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

.final-cta__bundle {
  max-width: 480px;
  margin: 0 auto 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.final-cta__bundle img {
  width: 100%;
}

.final-cta__text {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}

.final-cta__text h2 {
  margin-bottom: 1.25rem;
}

.final-cta__text p {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.final-cta__text .btn {
  margin-top: 1.5rem;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--navy);
  padding: 3rem 0;
  text-align: center;
}

.footer__logo img {
  height: 50px;
  margin: 0 auto 1.5rem;
  filter: brightness(1.2);
}

.footer__divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 0 auto 1.5rem;
  border-radius: 2px;
}

.footer__copy {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  font-weight: 300;
}

/* ---------- SCROLL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* stagger children */
.stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.2s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.3s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.4s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.5s; }
.stagger.visible > *:nth-child(7) { transition-delay: 0.6s; }

.stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- DECORATIVE ELEMENTS ---------- */
.gold-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 0;
}

.section-divider__line {
  width: 50px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

/* ---------- PRICE BADGE ---------- */
.price-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 2rem;
  background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(201,168,76,0.05));
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 60px;
  margin-bottom: 2rem;
}

.price-badge__label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.price-badge__amount {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-dark);
}

/* ---------- SOCIAL PROOF STRIP ---------- */
.proof-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 4vw, 4rem);
  padding: 1.5rem 0;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}

.proof-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold-light);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
  .story__grid,
  .audience__grid,
  .transform__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .story__images { order: -1; }

  .story__img-main {
    height: 400px;
  }

  .story__img-float {
    bottom: -20px;
    right: -10px;
    width: 160px;
    height: 160px;
  }

  .planners__grid,
  .bonus-gifts__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bonus__card,
  .video-card {
    grid-template-columns: 1fr;
  }

  .audience__image,
  .transform__image {
    height: 350px;
  }
}

@media (max-width: 600px) {
  .planners__grid,
  .bonus-gifts__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__badges {
    gap: 1rem;
  }

  .btn--large {
    padding: 1rem 2rem;
    font-size: 0.85rem;
    letter-spacing: 1px;
  }

  .story__img-float {
    display: none;
  }

  .story__img-main,
  .audience__image,
  .transform__image {
    height: 300px;
  }

  .header__cta {
    display: none;
  }

  .price-badge {
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.5rem 1.5rem;
  }
}

/* ---------- CUSTOM SCROLLBAR ---------- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dark);
}

/* ---------- SELECTION ---------- */
::selection {
  background: var(--gold);
  color: var(--white);
}
