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

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

:root {
  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Color Palette */
  --bg-cream: #F9F8F6;
  --bg-warm-white: #FFFDFB;
  --bg-pure-white: #FFFFFF;
  --charcoal-900: #0F0E0D;
  --charcoal-800: #1D1C1A;
  --charcoal-700: #2C2A27;
  
  --gold-primary: #C5A880;
  --gold-light: #F0E6D8;
  --gold-dark: #8E734E;
  --gold-glow: rgba(197, 168, 128, 0.12);
  --gold-gradient: linear-gradient(135deg, #E6D5BE 0%, #C5A880 50%, #9E8057 100%);
  
  --sage-green: #596D56;
  --sage-light: #EDF2ED;
  --sage-text: #2D3A2C;
  
  --rust-red: #B55836;
  --rust-light: #FFF4F0;
  --rust-text: #78311B;

  --text-primary: #2C2926;
  --text-muted: #6E6760;
  --text-muted-light: #A59E97;
  
  /* Borders and Shadow Design */
  --border-subtle: 1px solid rgba(19, 18, 17, 0.05);
  --border-gold-soft: 1px solid rgba(197, 168, 128, 0.18);
  --border-white-soft: 1px solid rgba(255, 255, 255, 0.08);
  
  --shadow-subtle: 0 4px 24px rgba(18, 17, 16, 0.02);
  --shadow-medium: 0 12px 36px rgba(18, 17, 16, 0.05);
  --shadow-large: 0 24px 64px rgba(18, 17, 16, 0.08);
  --shadow-dark: 0 32px 80px rgba(0, 0, 0, 0.22);
  --shadow-float: 0 20px 40px rgba(197, 168, 128, 0.1);
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base HTML Styles */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-cream);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Announcement Bar */
.announcement-bar {
  background: var(--charcoal-900);
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  padding: 10px 24px;
  font-size: 13px;
  letter-spacing: 0.06em;
  font-weight: 500;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 10;
}

.announcement-bar span {
  color: var(--gold-primary);
  font-weight: 700;
}

/* FOMO Bar */
.fomo-bar {
  background: var(--rust-red);
  color: #ffffff;
  padding: 12px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 10;
  box-shadow: 0 4px 20px rgba(181, 88, 54, 0.15);
}

.fomo-bar strong {
  font-weight: 700;
}

/* Elegant Timer Box styling */
.timer {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-weight: 700;
  margin-left: 4px;
}

.timer-unit {
  background: rgba(255, 255, 255, 0.16);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  min-width: 32px;
  text-align: center;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.timer-sep {
  opacity: 0.8;
  font-size: 14px;
  animation: timerPulse 1.2s infinite;
}

@keyframes timerPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ─── HERO ─── */
.hero {
  background: var(--bg-warm-white);
  position: relative;
  overflow: hidden;
  padding: 0 24px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 75% 40%, rgba(197, 168, 128, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 55% 70% at 15% 75%, rgba(89, 109, 86, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  min-height: 85vh;
  padding: 100px 0 80px;
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-tag {
  display: inline-block;
  background: rgba(197, 168, 128, 0.08);
  color: var(--gold-dark);
  border: var(--border-gold-soft);
  border-radius: var(--radius-pill);
  padding: 6px 18px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 28px;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(38px, 4.8vw, 56px);
  line-height: 1.15;
  color: var(--charcoal-900);
  margin-bottom: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-dark);
  position: relative;
}

.hero h1 em::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  background: var(--gold-primary);
  opacity: 0.3;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 520px;
  font-weight: 400;
}

.hero-bullets {
  list-style: none;
  margin-bottom: 44px;
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--charcoal-800);
  margin-bottom: 14px;
  font-weight: 500;
}

.hero-bullets li::before {
  content: '';
  width: 22px;
  height: 22px;
  background: var(--sage-light);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 6l2.5 2.5 4.5-4.5' stroke='%23596D56' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
  border: 1px solid rgba(89, 109, 86, 0.15);
}

.cta-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 440px;
}

.price-line {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--text-muted);
}

.price-now {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--charcoal-900);
}

.price-was {
  font-size: 18px;
  text-decoration: line-through;
  color: var(--text-muted-light);
}

.price-save {
  background: var(--sage-light);
  color: var(--sage-text);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.05em;
  border: 1px solid rgba(89, 109, 86, 0.1);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--charcoal-900);
  color: #ffffff;
  padding: 18px 40px;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: var(--transition-fast);
  border: 1px solid var(--charcoal-900);
  cursor: pointer;
  box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(142, 115, 78, 0.25);
}

.btn-primary:active {
  transform: translateY(0);
}

.trust-line {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
}

.trust-line svg {
  width: 14px;
  height: 14px;
  color: var(--gold-primary);
}

/* HERO RIGHT — BOOK STACK Visuals */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.book-stack-wrap {
  position: relative;
  z-index: 2;
  transition: var(--transition-smooth);
}

.book-stack-wrap::after {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: calc(var(--radius-lg) + 4px);
  border: var(--border-gold-soft);
  z-index: -1;
  pointer-events: none;
  opacity: 0.8;
  transition: var(--transition-smooth);
}

.book-stack-wrap img {
  width: 100%;
  max-width: 440px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-large), 0 8px 16px rgba(0, 0, 0, 0.04);
  display: block;
  transition: var(--transition-smooth);
}

.book-stack-wrap:hover {
  transform: scale(1.02) translateY(-4px);
}

.book-stack-wrap:hover::after {
  inset: -20px;
  opacity: 1;
  border-color: var(--gold-primary);
}

.badge-float {
  position: absolute;
  background: var(--charcoal-900);
  color: #ffffff;
  border-radius: 50%;
  width: 104px;
  height: 104px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.06em;
  border: 2px solid var(--gold-primary);
  line-height: 1.3;
  box-shadow: var(--shadow-dark);
  z-index: 5;
  transition: var(--transition-smooth);
}

.badge-float.top-right {
  top: -24px;
  right: -24px;
  animation: floatBadges 4s ease-in-out infinite;
}

.badge-float .big {
  font-size: 26px;
  font-weight: 700;
  font-family: var(--font-serif);
  color: var(--gold-primary);
  line-height: 1;
}

@keyframes floatBadges {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ─── SECTION STYLING ─── */
section {
  padding: 100px 24px;
  position: relative;
  z-index: 2;
}

.section-label {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 16px;
}

.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.8vw, 44px);
  text-align: center;
  color: var(--charcoal-900);
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.section-heading em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-dark);
}

.section-sub {
  text-align: center;
  font-size: 16px;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 72px;
  line-height: 1.7;
}

/* ─── WHAT YOU GET (Items Grid) ─── */
.items-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.item-card {
  background: var(--bg-pure-white);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.item-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold-primary);
  opacity: 0;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  transition: var(--transition-fast);
}

.item-card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-4px);
  border-color: rgba(197, 168, 128, 0.25);
}

.item-card:hover::after {
  opacity: 1;
}

.item-num {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--gold-dark);
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.item-num::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold-primary);
  opacity: 0.4;
}

.item-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--charcoal-900);
  margin-bottom: 12px;
  line-height: 1.4;
}

.item-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
  flex-grow: 1;
}

.item-tag {
  display: inline-block;
  background: var(--sage-light);
  color: var(--sage-text);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  align-self: flex-start;
  border: 1px solid rgba(89, 109, 86, 0.08);
}

/* ─── FOR WHOM ─── */
.for-whom {
  background: var(--charcoal-900);
  position: relative;
  overflow: hidden;
}

.for-whom::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 80%, rgba(197, 168, 128, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.for-whom .section-label {
  color: var(--gold-primary);
}

.for-whom .section-heading {
  color: #ffffff;
}

.for-whom .section-sub {
  color: rgba(255, 255, 255, 0.55);
}

.persona-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.persona-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 40px 28px 36px;
  transition: var(--transition-smooth);
  position: relative;
}

.persona-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(197, 168, 128, 0.06) 0%, transparent 100%);
  opacity: 0;
  transition: var(--transition-smooth);
  border-radius: var(--radius-md);
}

.persona-card:hover {
  transform: translateY(-6px);
  border-color: rgba(197, 168, 128, 0.35);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.04);
}

.persona-card:hover::before {
  opacity: 1;
}

.persona-icon {
  font-size: 32px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.05);
  transition: var(--transition-fast);
}

.persona-card:hover .persona-icon {
  background: rgba(197, 168, 128, 0.15);
  border-color: rgba(197, 168, 128, 0.3);
  transform: scale(1.05);
}

.persona-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.persona-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

/* ─── FREE BONUS ─── */
.free-bonus {
  background: var(--bg-cream);
}

.bonus-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.bonus-card {
  background: var(--bg-pure-white);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: var(--transition-smooth);
}

.bonus-card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-4px);
}

.bonus-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--gold-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  border: var(--border-gold-soft);
}

.bonus-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--charcoal-900);
  margin-bottom: 12px;
}

.bonus-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.bonus-card.highlight {
  border-color: rgba(181, 88, 54, 0.25);
  background: var(--rust-light);
  box-shadow: 0 4px 20px rgba(181, 88, 54, 0.02);
}

.bonus-card.highlight .bonus-icon {
  background: rgba(181, 88, 54, 0.1);
  border-color: rgba(181, 88, 54, 0.2);
}

/* ─── PAIN & GAIN ─── */
.pain-gain {
  background: var(--bg-warm-white);
}

.pain-gain-grid {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  border-radius: var(--radius-lg);
}

.pain-col {
  background: var(--bg-pure-white);
  padding: 48px 40px;
  border-radius: var(--radius-lg);
  border: var(--border-subtle);
  box-shadow: var(--shadow-subtle);
}

.gain-col {
  background: #FCFAF6;
  padding: 48px 40px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(197, 168, 128, 0.35);
  box-shadow: var(--shadow-medium), 0 0 30px rgba(197, 168, 128, 0.08);
  position: relative;
  transition: var(--transition-smooth);
}

.gain-col:hover {
  transform: translateY(-2px);
  border-color: rgba(197, 168, 128, 0.6);
  box-shadow: var(--shadow-large), 0 0 40px rgba(197, 168, 128, 0.12);
}

.col-head {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pain-col .col-head {
  color: var(--rust-red);
}

.gain-col .col-head {
  color: var(--sage-green);
  font-weight: 700;
}

.col-head svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.row-list {
  list-style: none;
}

.row-list li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  font-size: 14.5px;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

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

.pain-col .row-list li {
  color: var(--charcoal-700);
}

.gain-col .row-list li {
  color: var(--charcoal-900);
  font-weight: 500;
}

.row-list li svg {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

.pain-col .row-list li svg {
  color: var(--rust-red);
  opacity: 0.85;
}

.gain-col .row-list li svg {
  color: var(--sage-green);
}

/* ─── TESTIMONIALS ─── */
.testimonials {
  background: var(--bg-cream);
}

.testi-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: var(--bg-pure-white);
  border: var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
}

.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.stars {
  color: var(--gold-dark);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  display: flex;
  gap: 2px;
}

.stars svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.testi-card blockquote {
  font-size: 15px;
  line-height: 1.75;
  color: var(--charcoal-800);
  margin-bottom: 28px;
  font-style: italic;
  flex-grow: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 20px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-glow);
  border: 1px solid rgba(197, 168, 128, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 16px;
  color: var(--gold-dark);
  flex-shrink: 0;
}

.author-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--charcoal-900);
}

.author-role {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ─── PRICING ─── */
.pricing {
  background: var(--bg-warm-white);
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(197, 168, 128, 0.05) 0%, transparent 70%);
  bottom: -200px;
  right: -100px;
  pointer-events: none;
}

.pricing-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--charcoal-900);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-dark);
  border: var(--border-white-soft);
  position: relative;
}

.pricing-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(197, 168, 128, 0.2);
  pointer-events: none;
}

.pricing-header {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, transparent 100%);
  padding: 40px 48px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-header h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  color: #ffffff;
  margin-bottom: 6px;
  font-weight: 500;
}

.pricing-header p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}

.pricing-body {
  padding: 48px;
}

.includes-list {
  list-style: none;
  margin-bottom: 40px;
}

.includes-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
}

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

.check-icon {
  width: 22px;
  height: 22px;
  background: rgba(197, 168, 128, 0.15);
  border: 1px solid var(--gold-primary);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 6l2.5 2.5 4.5-4.5' stroke='%23C5A880' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
}

.pricing-total {
  text-align: center;
  margin-bottom: 36px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-md);
  position: relative;
}

.total-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.total-was {
  font-size: 18px;
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 4px;
}

.total-now {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 700;
  color: var(--gold-primary);
  line-height: 1;
}

.total-currency {
  font-size: 26px;
  vertical-align: super;
  font-weight: 500;
}

.total-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 10px;
}

.btn-checkout {
  width: 100%;
  background: var(--gold-gradient);
  color: var(--charcoal-900);
  border: none;
  border-radius: var(--radius-md);
  padding: 20px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: var(--transition-fast);
  display: block;
  text-align: center;
  text-decoration: none;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(197, 168, 128, 0.2);
}

.btn-checkout:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(197, 168, 128, 0.35);
}

.btn-checkout:active {
  transform: translateY(0);
}

.delivery-note {
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
}

.delivery-note strong {
  color: rgba(255, 255, 255, 0.8);
}

/* ─── FAQ ─── */
.faq {
  background: var(--bg-cream);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition-fast);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--charcoal-900);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-sans);
  transition: var(--transition-fast);
}

.faq-q:hover {
  color: var(--gold-dark);
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--gold-primary);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
  color: var(--gold-dark);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.open .faq-a {
  max-height: 280px;
  padding-bottom: 24px;
}

/* ─── BOTTOM CTA ─── */
.bottom-cta {
  background: var(--charcoal-900);
  text-align: center;
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.bottom-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(197, 168, 128, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.bottom-cta .section-label {
  color: var(--gold-primary);
}

.bottom-cta .section-heading {
  color: #ffffff;
  margin-bottom: 24px;
}

.bottom-cta p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 17px;
  max-width: 520px;
  margin: 0 auto 44px;
  line-height: 1.7;
}

.bottom-cta .btn-primary {
  font-size: 17px;
  padding: 20px 52px;
  background: #ffffff;
  color: var(--charcoal-900);
  border-color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.bottom-cta .btn-primary:hover {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  color: var(--charcoal-900);
  box-shadow: 0 12px 30px rgba(197, 168, 128, 0.3);
}

/* ─── FOOTER ─── */
footer {
  background: var(--charcoal-900);
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  padding: 40px 24px;
  font-size: 13px;
  line-height: 1.8;
  position: relative;
  z-index: 2;
}

footer a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: var(--transition-fast);
  border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
}

footer a:hover {
  color: var(--gold-primary);
  border-bottom-color: var(--gold-primary);
}

/* ─── STICKY CTA (Floating Pill) ─── */
.sticky-cta {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translate(-50%, 150%);
  width: 90%;
  max-width: 680px;
  background: rgba(29, 28, 26, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  border-radius: var(--radius-pill);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(197, 168, 128, 0.1) inset;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  gap: 16px;
}

.sticky-cta.visible {
  transform: translate(-50%, 0);
}

.sticky-left {
  color: #ffffff;
  padding-left: 8px;
}

.sticky-left strong {
  font-size: 15px;
  font-family: var(--font-serif);
  display: block;
  font-weight: 500;
  color: var(--gold-primary);
}

.sticky-left span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  display: block;
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 320px;
}

.sticky-btn {
  background: var(--gold-gradient);
  color: var(--charcoal-900);
  border: none;
  border-radius: var(--radius-pill);
  padding: 12px 26px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition-fast);
  box-shadow: 0 4px 15px rgba(197, 168, 128, 0.2);
}

.sticky-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(197, 168, 128, 0.35);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── RESPONSIVE DESIGN ─── */
@media (max-width: 1024px) {
  .hero-inner {
    gap: 40px;
  }
  
  .persona-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .bonus-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  section {
    padding: 70px 20px;
  }
  
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 60px 0 40px;
    gap: 48px;
    text-align: center;
  }
  
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-bullets {
    display: inline-block;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
  }
  
  .cta-group {
    align-items: center;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-visual {
    order: -1;
  }
  
  .book-stack-wrap img {
    max-width: 340px;
    margin: 0 auto;
  }
  
  .badge-float {
    display: none; /* Hide on smaller screens to avoid overlap */
  }
  
  .pain-gain-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .pain-col, .gain-col {
    padding: 36px 28px;
  }
  
  .testi-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-body {
    padding: 36px 24px;
  }
  
  .sticky-cta {
    width: calc(100% - 32px);
    border-radius: var(--radius-md);
    bottom: 16px;
    padding: 16px;
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  
  .sticky-left {
    padding-left: 0;
  }
  
  .sticky-left span {
    max-width: 100%;
  }
  
  .sticky-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .persona-grid, .bonus-grid {
    grid-template-columns: 1fr;
  }
  
  .fomo-bar {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}
