/* ============================================================
   THE JEWISH DOCTOR — MAIN STYLESHEET
   Editorial premium design · senior-friendly typography
   ============================================================ */

:root {
  --bg-primary:     #0d0a06;
  --bg-deep:        #0a0705;
  --bg-card:        #1a140c;
  --bg-card-hover:  #221b10;
  --text-primary:   #f2ecd9;
  --text-secondary: #c4b896;
  --text-muted:     #8a8070;
  --gold:           #d9b872;
  --gold-bright:    #f2d488;
  --gold-deep:      #8a6d40;
  --bronze:         #5a4a30;
  --ruby:           #7a1f2a;
  --ruby-bright:    #a83340;
  --red-urgent:     #b84848;
  --red-bright:     #d96060;
  --buy-green:      #2d9a5f;
  --buy-green-bright: #45bd82;
  --buy-green-deep:   #1e7a47;
  --green-check:    #5a7a4a;
  --green-bright:   #7a9a5a;
  --border-subtle:  rgba(217, 184, 114, 0.22);
  --border-strong:  rgba(217, 184, 114, 0.5);
  --shadow-gold:    0 0 40px rgba(217, 184, 114, 0.18);
  --shadow-green:   0 0 40px rgba(69, 189, 130, 0.3);
  --shadow-deep:    0 12px 40px rgba(0, 0, 0, 0.7);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lora', 'Georgia', serif;
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  background-image:
    radial-gradient(ellipse 80% 50% at 20% 10%, rgba(217, 184, 114, 0.09) 0%, transparent 60%),
    radial-gradient(ellipse 70% 60% at 80% 40%, rgba(122, 31, 42, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 100% 60% at 50% 100%, rgba(138, 109, 64, 0.08) 0%, transparent 60%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.85  0 0 0 0 0.75  0 0 0 0 0.55  0 0 0 0.05 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  padding-top: 56px; /* room for flash offer bar */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.no-flashbar { padding-top: 0; }

/* ---------- TYPOGRAPHY ---------- */

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.3rem; }

p  { margin-bottom: 1rem; }

a  { color: var(--gold-bright); text-decoration: none; }
a:hover { color: var(--gold); text-decoration: underline; }

.serif    { font-family: 'Cormorant Garamond', serif; }
.body     { font-family: 'Lora', serif; }
.mono     { font-family: 'JetBrains Mono', 'IBM Plex Mono', monospace; }
.ui       { font-family: 'Inter', 'Lato', sans-serif; }

.gold       { color: var(--gold); }
.gold-bright{ color: var(--gold-bright); }
.dim        { color: var(--text-secondary); }
.muted      { color: var(--text-muted); }
.strike     { text-decoration: line-through; color: var(--text-muted); }
.uppercase  { text-transform: uppercase; letter-spacing: 0.15em; }
.center     { text-align: center; }

/* ---------- LAYOUT ---------- */

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-sm {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 80px 0;
  position: relative;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 20px 0;
  color: var(--gold-deep);
  font-size: 1.4rem;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
  max-width: 180px;
}

/* ---------- BUTTONS ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 36px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 280ms ease;
  min-height: 58px;
  text-align: center;
}

.btn-primary,
.btn-buy {
  background: linear-gradient(180deg, var(--buy-green-bright) 0%, var(--buy-green) 55%, var(--buy-green-deep) 100%);
  color: #ffffff;
  box-shadow:
    0 6px 20px rgba(45, 154, 95, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.25);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  animation: buy-pulse 2.6s ease-in-out infinite;
  position: relative;
}

.btn-primary::after,
.btn-buy::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(69, 189, 130, 0.6), transparent);
  filter: blur(14px);
  z-index: -1;
  opacity: 0.7;
}

.btn-primary:hover,
.btn-buy:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 12px 34px rgba(69, 189, 130, 0.65),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  background: linear-gradient(180deg, #5acf94 0%, var(--buy-green-bright) 55%, var(--buy-green) 100%);
  text-decoration: none;
  color: #ffffff;
  animation-play-state: paused;
}

@keyframes buy-pulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(45, 154, 95, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.3); }
  50% { box-shadow: 0 8px 32px rgba(69, 189, 130, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.4); }
}

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

.btn-secondary:hover {
  background: rgba(201, 169, 97, 0.08);
  color: var(--gold-bright);
  border-color: var(--gold-bright);
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-xl {
  padding: 22px 48px;
  font-size: 1.15rem;
  min-height: 68px;
}

.btn-full { width: 100%; }

/* ---------- FLASH OFFER BAR ---------- */

.flash-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: linear-gradient(90deg, #b89450 0%, #c9a961 50%, #b89450 100%);
  color: #1a1306;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid #8f6e32;
}

.flash-bar .text { flex: 1; min-width: 0; }
.flash-bar strong { font-weight: 800; }

.flash-bar .timer {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 4px 12px;
  background: rgba(0, 0, 0, 0.22);
  border-radius: 3px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.flash-bar .timer .colon { animation: pulse 1s infinite; }

.flash-bar .flash-cta {
  background: #0a0a0a;
  color: var(--gold-bright);
  padding: 8px 18px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all 200ms ease;
}

.flash-bar .flash-cta:hover {
  background: #1a1306;
  color: var(--gold-bright);
  text-decoration: none;
  transform: scale(1.04);
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

/* ---------- HERO ---------- */

.hero {
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201, 169, 97, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid var(--border-strong);
  border-radius: 30px;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 32px;
  background: rgba(201, 169, 97, 0.04);
}

.hero h1 {
  max-width: 900px;
  margin: 0 auto 24px;
  font-weight: 500;
  color: var(--text-primary);
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-bright);
  font-weight: 500;
}

.hero .subtitle {
  max-width: 780px;
  margin: 0 auto 36px;
  font-size: 1.18rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.hero .cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}

.hero .microtext {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-top: 6px;
}

.hero .microtext .mono { color: var(--gold-bright); }

/* ---------- AUTHORITY / DR WEISS ---------- */

.authority {
  background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(20, 17, 11, 0.5) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.authority-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: center;
  max-width: 940px;
  margin: 0 auto;
}

.doctor-portrait {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  box-shadow: var(--shadow-gold), var(--shadow-deep);
  background: radial-gradient(circle at 50% 40%, #3a3020 0%, #1a1610 80%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold-bright);
  font-size: 4rem;
  font-weight: 500;
  overflow: hidden;
  position: relative;
}

.doctor-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doctor-portrait::after {
  content: '⚕';
  position: absolute;
  bottom: -10px;
  right: -10px;
  background: var(--bg-primary);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
}

.doctor-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  line-height: 1.55;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 16px;
  border-left: 3px solid var(--gold);
  padding-left: 24px;
}

.doctor-sig {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--gold-bright);
  margin-bottom: 20px;
  padding-left: 27px;
}

.doctor-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-left: 27px;
}

.doctor-creds span {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  padding: 6px 14px;
  background: rgba(201, 169, 97, 0.08);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
}

/* ---------- PROBLEM SECTION ---------- */

.problem h2 {
  text-align: center;
  margin-bottom: 50px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.problem-list {
  max-width: 720px;
  margin: 0 auto;
  list-style: none;
}

.problem-list li {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  line-height: 1.45;
  font-style: italic;
  color: var(--text-primary);
  padding: 18px 0 18px 40px;
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

.problem-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-style: normal;
}

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

.transition-quote {
  text-align: center;
  max-width: 700px;
  margin: 60px auto 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-style: italic;
  color: var(--gold-bright);
  line-height: 1.4;
  padding: 30px;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

/* ---------- LIVE SALES TICKER ---------- */

.sales-ticker {
  background: linear-gradient(90deg, rgba(20, 17, 11, 0.95), rgba(30, 25, 15, 0.95));
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--gold);
}

.sales-ticker .ticker-track {
  display: inline-block;
  padding-left: 100%;
  animation: ticker-scroll 90s linear infinite;
}

.sales-ticker:hover .ticker-track {
  animation-play-state: paused;
}

.sales-ticker .ticker-item {
  display: inline-block;
  margin-right: 48px;
}

.sales-ticker .dot {
  color: var(--green-bright);
  margin-right: 8px;
}

.sales-ticker .ticker-item strong {
  color: var(--gold-bright);
  font-weight: 600;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* ---------- PRICING ---------- */

.pricing {
  background: radial-gradient(ellipse at center top, rgba(201, 169, 97, 0.06), transparent 70%);
}

.pricing-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 40px;
}

.pricing-header h2 {
  margin-bottom: 16px;
}

.pricing-header .subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  font-style: italic;
}

.progress-section {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
  padding: 0 16px;
}

.progress-section .label {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.progress-bar {
  height: 16px;
  background: rgba(201, 169, 97, 0.08);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-deep) 0%, var(--gold) 70%, var(--gold-bright) 100%);
  border-radius: 10px;
  transition: width 600ms ease;
  box-shadow: 0 0 10px rgba(201, 169, 97, 0.4);
}

.progress-section .percent-label {
  margin-top: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--gold-bright);
  font-weight: 600;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}

.price-card {
  background: linear-gradient(180deg, var(--bg-card) 0%, #0f0d08 100%);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 40px 34px 34px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 300ms ease;
}

.price-card.featured {
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-gold), var(--shadow-deep);
  transform: scale(1.02);
  background: linear-gradient(180deg, #1a1610 0%, #14110b 100%);
}

.price-card.featured::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--gold-bright), transparent 50%);
  z-index: -1;
  opacity: 0.5;
  filter: blur(12px);
}

.badge-popular {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: #0a0a0a;
  padding: 8px 22px;
  border-radius: 30px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(201, 169, 97, 0.4);
  animation: badge-pulse 3s ease-in-out infinite;
}

.badge-off {
  display: inline-block;
  background: var(--red-urgent);
  color: #fff;
  padding: 4px 12px;
  border-radius: 3px;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

@keyframes badge-pulse {
  0%, 100% { transform: translateX(-50%) scale(1); box-shadow: 0 4px 14px rgba(201, 169, 97, 0.4); }
  50% { transform: translateX(-50%) scale(1.04); box-shadow: 0 6px 22px rgba(201, 169, 97, 0.6); }
}

.price-card .cover {
  display: flex;
  justify-content: center;
  margin: 8px 0 24px;
  position: relative;
}

.price-card .cover img {
  max-height: 260px;
  max-width: 100%;
  border-radius: 4px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.7), 0 0 30px rgba(201, 169, 97, 0.1);
}

.price-card.featured .cover { position: relative; min-height: 260px; }

.price-card.featured .cover .main-cover {
  position: relative;
  z-index: 2;
  max-height: 280px;
  border: 1px solid rgba(201, 169, 97, 0.2);
}

.price-card.featured .cover .bonus-cover {
  position: absolute;
  bottom: -20px;
  right: calc(50% - 160px);
  max-height: 130px;
  transform: rotate(7deg);
  z-index: 1;
  opacity: 0.92;
  border-radius: 3px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-subtle);
}

.price-card .bonus-tag {
  position: absolute;
  bottom: -8px;
  right: 16%;
  background: var(--gold);
  color: #0a0a0a;
  padding: 4px 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  border-radius: 3px;
  z-index: 3;
  transform: rotate(-5deg);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.price-card h3 {
  text-align: center;
  color: var(--text-primary);
  font-size: 1.75rem;
  margin-bottom: 6px;
}

.price-card .sub {
  text-align: center;
  color: var(--text-secondary);
  font-style: italic;
  font-size: 1rem;
  margin-bottom: 24px;
  min-height: 48px;
}

.price-block {
  text-align: center;
  margin: 20px 0;
  padding: 20px;
  background: rgba(10, 10, 10, 0.4);
  border-radius: 6px;
  border: 1px solid var(--border-subtle);
}

.price-block .strike-row {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.price-block .strike-row .strike { margin-right: 6px; }

.price-block .main-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--gold-bright);
  line-height: 1;
  margin: 4px 0;
}

.price-block .main-price small {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.1em;
  margin-left: 6px;
  text-transform: uppercase;
}

.price-block .mini-timer {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.9rem;
  color: var(--red-bright);
  margin-top: 8px;
  letter-spacing: 0.04em;
}

.feature-list {
  list-style: none;
  margin: 24px 0;
  flex-grow: 1;
}

.feature-list li {
  padding: 8px 0 8px 30px;
  position: relative;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text-primary);
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
}

.feature-list li.bonus::before { content: '🎁'; color: var(--gold-bright); }
.feature-list li.bonus {
  color: var(--gold-bright);
  font-weight: 600;
  margin: 10px 0;
  padding: 12px 16px 12px 30px;
  background: rgba(201, 169, 97, 0.08);
  border-radius: 4px;
  border-left: 3px solid var(--gold);
}

.last-purchase {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-align: center;
  margin: 12px 0 16px;
  padding: 8px;
  background: rgba(90, 122, 74, 0.08);
  border-radius: 4px;
  border-left: 2px solid var(--green-check);
}

.last-purchase .dot {
  color: var(--green-bright);
  animation: pulse 2s infinite;
  margin-right: 6px;
}

.note-footer {
  text-align: center;
  margin-top: 14px;
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Scarcity counter */
.scarcity-box {
  max-width: 680px;
  margin: 36px auto 0;
  text-align: center;
  padding: 16px 24px;
  background: rgba(139, 58, 58, 0.08);
  border: 1px solid rgba(139, 58, 58, 0.25);
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--text-primary);
}

.scarcity-box.warning {
  background: rgba(139, 58, 58, 0.2);
  border-color: var(--red-urgent);
  color: #f5d5d5;
  animation: scarcity-shake 0.6s;
}

@keyframes scarcity-shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}

/* ---------- COMPARISON TABLE ---------- */

.comparison {
  padding: 80px 0;
}

.comparison h2 {
  text-align: center;
  margin-bottom: 50px;
}

.comp-table {
  max-width: 900px;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  background: var(--bg-card);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.comp-table th {
  background: rgba(0, 0, 0, 0.3);
  padding: 22px 16px;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  color: var(--gold-bright);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

.comp-table th:first-child {
  text-align: left;
  padding-left: 28px;
  color: var(--text-secondary);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comp-table th.best {
  background: linear-gradient(180deg, rgba(201, 169, 97, 0.18), rgba(201, 169, 97, 0.08));
  color: var(--gold-bright);
}

.comp-table th.best::after {
  content: 'BEST CHOICE';
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: #0a0a0a;
  background: var(--gold-bright);
  padding: 3px 10px;
  border-radius: 3px;
  width: fit-content;
  margin: 6px auto 0;
  font-weight: 800;
}

.comp-table td {
  padding: 14px 16px;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.98rem;
  text-align: center;
}

.comp-table td:first-child {
  text-align: left;
  padding-left: 28px;
  color: var(--text-primary);
}

.comp-table td.best-col {
  background: rgba(201, 169, 97, 0.06);
  color: var(--gold-bright);
  font-weight: 600;
}

.comp-table .check { color: var(--green-bright); font-weight: 700; font-size: 1.2rem; }
.comp-table .cross { color: var(--text-muted); font-size: 1.1rem; }

.comp-table tr.total td {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  border-top: 2px solid var(--border-strong);
  background: rgba(0, 0, 0, 0.3);
  padding: 18px 16px;
}

.comp-table tr.total td.best-col {
  color: var(--gold-bright);
  background: rgba(201, 169, 97, 0.14);
}

.comp-table tr.price td {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-bright);
  padding: 20px 16px;
}

/* ---------- WHAT'S INSIDE ---------- */

.inside {
  background: linear-gradient(180deg, rgba(20, 17, 11, 0.4), transparent);
}

.inside h2 {
  text-align: center;
  margin-bottom: 16px;
}

.inside .sub {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 50px;
  font-style: italic;
}

.inside-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.inside-card {
  background: var(--bg-card);
  padding: 28px 24px;
  border-radius: 6px;
  border: 1px solid var(--border-subtle);
  transition: all 300ms ease;
}

.inside-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-gold);
}

.inside-card .icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  display: block;
}

.inside-card h4 {
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: var(--gold-bright);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

.inside-card p {
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}

.inside-card.bonus {
  background: linear-gradient(180deg, rgba(201, 169, 97, 0.1), rgba(201, 169, 97, 0.02));
  border-color: var(--gold);
}

.inside-total {
  text-align: center;
  margin-top: 50px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  color: var(--text-primary);
}

.inside-total strong {
  color: var(--gold-bright);
  font-weight: 700;
}

/* ---------- SCIENTIFIC AUTHORITY ---------- */

.science {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.science h2 {
  text-align: center;
  margin-bottom: 40px;
}

.science-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}

.science-card {
  text-align: center;
  padding: 30px 22px;
  background: var(--bg-card);
  border-radius: 6px;
  border: 1px solid var(--border-subtle);
}

.science-card .icon {
  font-size: 2.4rem;
  color: var(--gold);
  margin-bottom: 14px;
}

.science-card h4 {
  color: var(--gold-bright);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.science-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.disclaimer {
  max-width: 780px;
  margin: 50px auto 0;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  text-align: center;
  font-style: italic;
}

/* ---------- TESTIMONIALS ---------- */

.testimonials h2 {
  text-align: center;
  margin-bottom: 50px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial {
  background: var(--bg-card);
  padding: 32px 28px;
  border-radius: 6px;
  border: 1px solid var(--border-subtle);
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: var(--gold-deep);
  opacity: 0.4;
  line-height: 1;
}

.testimonial .stars {
  color: var(--gold-bright);
  margin-bottom: 12px;
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.testimonial .quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.18rem;
  line-height: 1.55;
  color: var(--text-primary);
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial .author {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--gold-bright);
  font-weight: 600;
  margin-bottom: 4px;
}

.testimonial .verified {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: var(--green-bright);
  letter-spacing: 0.05em;
}

/* ---------- GUARANTEE ---------- */

.guarantee {
  background: radial-gradient(ellipse at center, rgba(201, 169, 97, 0.08), transparent 70%);
  text-align: center;
}

.guarantee-seal {
  width: 180px;
  height: 180px;
  margin: 0 auto 30px;
  border: 3px double var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: var(--bg-card);
  box-shadow: var(--shadow-gold), var(--shadow-deep);
  position: relative;
}

.guarantee-seal::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid var(--gold-deep);
  border-radius: 50%;
}

.guarantee-seal .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--gold-bright);
  line-height: 1;
}

.guarantee-seal .label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 4px;
}

.guarantee h2 {
  margin-bottom: 20px;
  color: var(--gold-bright);
}

.guarantee .promise {
  max-width: 720px;
  margin: 0 auto 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  line-height: 1.5;
  font-style: italic;
  color: var(--text-primary);
}

.guarantee .signature {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--gold-bright);
}

/* ---------- FAQ ---------- */

.faq h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color 240ms ease;
}

.faq-item:hover { border-color: var(--border-strong); }

.faq-q {
  padding: 20px 24px;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--text-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}

.faq-q .plus {
  color: var(--gold);
  font-size: 1.6rem;
  transition: transform 240ms ease;
  flex-shrink: 0;
}

.faq-item.open .faq-q .plus { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease, padding 300ms ease;
  padding: 0 24px;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 24px 20px;
}

/* ---------- FINAL CTA ---------- */

.final-cta {
  background:
    radial-gradient(ellipse at center, rgba(201, 169, 97, 0.18) 0%, transparent 60%),
    linear-gradient(180deg, #0a0a0a, #14110b);
  text-align: center;
  padding: 100px 0 120px;
  position: relative;
}

.final-cta h2 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 16px;
  color: var(--gold-bright);
  letter-spacing: -0.02em;
}

.final-cta .timer-big {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--text-primary);
  letter-spacing: 0.08em;
  margin: 30px 0 40px;
  font-weight: 600;
}

.final-cta .timer-big .colon { animation: pulse 1s infinite; color: var(--gold); }

.final-cta .cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.trust-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 40px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.trust-row .icon { color: var(--gold); }

/* ---------- FOOTER ---------- */

footer {
  background: #060606;
  border-top: 1px solid var(--border-subtle);
  padding: 50px 0 30px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  color: var(--text-muted);
  font-size: 0.88rem;
}

footer .footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--gold-bright);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

footer .footer-links {
  margin-bottom: 24px;
}

footer .footer-links a {
  color: var(--text-secondary);
  margin: 0 14px;
  font-size: 0.88rem;
  text-decoration: none;
}

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

footer .legal-note {
  max-width: 720px;
  margin: 24px auto 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-style: italic;
}

/* ---------- DOWNLOAD PAGE ---------- */

.download-page {
  padding: 30px 0 80px;
}

.payment-confirmed {
  text-align: center;
  margin: 10px auto 30px;
  max-width: 860px;
}

.payment-confirmed.compact { margin-bottom: 24px; }

.confirmed-seal {
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 30%, var(--green-bright), var(--green-check));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0a0a;
  font-size: 4rem;
  font-weight: 700;
  box-shadow: 0 0 30px rgba(122, 154, 90, 0.5);
  animation: seal-pop 600ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.confirmed-seal.small {
  width: 70px;
  height: 70px;
  font-size: 2.4rem;
  margin-bottom: 14px;
  box-shadow: 0 0 20px rgba(122, 154, 90, 0.45);
}

@keyframes seal-pop {
  0%   { transform: scale(0); opacity: 0; }
  60%  { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

.confirmed-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 8px;
}

.confirmed-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--gold-bright);
  margin-bottom: 10px;
  line-height: 1.2;
}

.welcome-wrap { margin: 50px auto 20px; }

.welcome-message {
  max-width: 680px;
  margin: 0 auto 40px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  line-height: 1.6;
  font-style: italic;
  color: var(--text-primary);
  padding: 30px 30px;
  text-align: center;
  background: rgba(26, 20, 12, 0.5);
  border-left: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
  border-radius: 4px;
}

.welcome-message .sig {
  display: block;
  margin-top: 18px;
  color: var(--gold-bright);
  font-size: 1.05rem;
}

.download-cards.single {
  grid-template-columns: minmax(320px, 640px);
  justify-content: center;
}

.auto-download-status {
  max-width: 560px;
  margin: 0 auto 40px;
  text-align: center;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
}

.auto-download-status .spinner {
  width: 40px;
  height: 40px;
  margin: 0 auto 14px;
  border: 3px solid rgba(201, 169, 97, 0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.auto-download-status.done .spinner {
  border-color: var(--green-check);
  border-top-color: var(--green-bright);
  animation: none;
  background: var(--green-check);
  color: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.auto-download-status p {
  font-family: 'Inter', sans-serif;
  color: var(--text-secondary);
  font-size: 0.98rem;
  margin: 0;
}

.download-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto 60px;
}

.download-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 28px;
  display: flex;
  gap: 22px;
  align-items: center;
  transition: all 300ms ease;
}

.download-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-gold);
}

.download-card .thumb {
  flex-shrink: 0;
  width: 110px;
}

.download-card .thumb img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.download-card .info { flex: 1; }

.download-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  color: var(--gold-bright);
  margin-bottom: 4px;
}

.download-card .meta {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}

.download-card .bonus-stamp {
  display: inline-block;
  background: var(--gold);
  color: #0a0a0a;
  padding: 2px 10px;
  border-radius: 3px;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.next-steps {
  max-width: 820px;
  margin: 0 auto 50px;
  text-align: center;
}

.next-steps h3 {
  color: var(--gold-bright);
  margin-bottom: 30px;
}

.next-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.next-step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  padding: 26px 20px;
  text-align: center;
}

.next-step-card .step-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
}

.next-step-card p {
  color: var(--text-primary);
  font-size: 1rem;
  margin: 0;
  line-height: 1.5;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 900px) {

  section { padding: 60px 0; }

  .flash-bar {
    font-size: 0.75rem;
    padding: 8px 12px;
    gap: 8px;
  }

  .flash-bar .text span.full { display: none; }
  .flash-bar .text strong { font-size: 0.8rem; }
  .flash-bar .timer { font-size: 1rem; padding: 3px 8px; }

  .flash-bar .flash-cta {
    padding: 6px 12px;
    font-size: 0.72rem;
  }

  body { padding-top: 48px; }

  .authority-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .doctor-portrait {
    margin: 0 auto;
    width: 160px;
    height: 160px;
    font-size: 3rem;
  }

  .doctor-quote {
    border-left: none;
    padding-left: 0;
    border-top: 2px solid var(--gold);
    padding-top: 20px;
  }

  .doctor-sig, .doctor-creds { padding-left: 0; justify-content: center; }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* CRITICAL: $150 card ABOVE $47 on mobile */
  .price-card.featured { order: -1; transform: none; }

  .comp-table { font-size: 0.9rem; }
  .comp-table th, .comp-table td { padding: 12px 8px; font-size: 0.85rem; }
  .comp-table th:first-child { padding-left: 12px; font-size: 0.7rem; }
  .comp-table td:first-child { padding-left: 12px; }
  .comp-table tr.price td { font-size: 1.3rem; }

  .price-block .main-price { font-size: 2.6rem; }

  .btn-xl { padding: 18px 24px; font-size: 1rem; }

  .final-cta .cta-group { flex-direction: column; align-items: center; }

  .trust-row { gap: 16px; font-size: 0.8rem; }

  .download-card { flex-direction: column; text-align: center; }
  .download-card .thumb { width: 140px; }
}

@media (max-width: 520px) {
  body { font-size: 17px; }
  .hero { padding: 60px 0 50px; }
  h1 { font-size: 2rem; }
  .problem-list li { font-size: 1.2rem; }
  .transition-quote { font-size: 1.3rem; padding: 20px 10px; }
  .price-card { padding: 32px 22px 26px; }
  .flash-bar .timer { font-size: 0.88rem; }
  .flash-bar .text { font-size: 0.7rem; }
  .doctor-quote { font-size: 1.2rem; }
}

/* ---------- UTILITY ---------- */

.hidden { display: none !important; }
.mt-2  { margin-top: 16px; }
.mt-4  { margin-top: 32px; }
.mb-2  { margin-bottom: 16px; }
.mb-4  { margin-bottom: 32px; }


/* ============================================================
   HERO-BUY — first thing user sees: 2 books + BUY NOW buttons
   Rich animated background with Jewish/medical motifs.
   ============================================================ */

.hero-buy {
  position: relative;
  padding: 60px 0 70px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%,   rgba(217, 184, 114, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(122, 31, 42, 0.14) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 15% 60%,  rgba(217, 184, 114, 0.1) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 85% 40%,  rgba(217, 184, 114, 0.1) 0%, transparent 70%),
    linear-gradient(180deg, #120d07 0%, #0d0a06 50%, #0f0a06 100%);
  border-bottom: 1px solid rgba(217, 184, 114, 0.15);
}

/* Animated rotating golden light cone */
.hero-buy::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  width: 140%;
  height: 180%;
  transform: translateX(-50%);
  background:
    conic-gradient(
      from 0deg at 50% 50%,
      transparent 0deg,
      rgba(217, 184, 114, 0.06) 45deg,
      transparent 90deg,
      rgba(242, 212, 136, 0.04) 180deg,
      transparent 270deg,
      rgba(217, 184, 114, 0.05) 315deg,
      transparent 360deg
    );
  animation: cone-rotate 60s linear infinite;
  pointer-events: none;
  z-index: 0;
}

/* Subtle pulsing golden haze overlay */
.hero-buy::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 30%, rgba(242, 212, 136, 0.08) 0%, transparent 60%);
  animation: haze-pulse 7s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes cone-rotate {
  to { transform: translateX(-50%) rotate(360deg); }
}

@keyframes haze-pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.hero-buy .container { position: relative; z-index: 2; }

/* Floating motif symbols (Jewish medical wisdom icons) */
.bg-motifs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.motif {
  position: absolute;
  color: var(--gold);
  opacity: 0.14;
  font-family: 'Cormorant Garamond', serif;
  user-select: none;
  animation: motif-float 18s ease-in-out infinite, motif-fade 8s ease-in-out infinite;
  filter: drop-shadow(0 0 12px rgba(217, 184, 114, 0.4));
}

.motif.large { font-size: 3.5rem; opacity: 0.09; }
.motif.med   { font-size: 2.4rem; opacity: 0.12; }
.motif.small { font-size: 1.6rem; opacity: 0.18; }

@keyframes motif-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%      { transform: translateY(-18px) rotate(4deg); }
  66%      { transform: translateY(10px) rotate(-3deg); }
}

@keyframes motif-fade {
  0%, 100% { opacity: 0.08; }
  50%      { opacity: 0.22; }
}

/* Hebrew letter decorative accents */
.motif.hebrew {
  font-family: 'Times New Roman', serif;
  font-weight: 500;
  color: var(--gold-bright);
}

/* ---------- Hero intro text ---------- */

.hero-buy-intro {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 50px;
}

.hero-buy-intro .eyebrow {
  display: inline-block;
  padding: 8px 22px;
  border: 1px solid var(--border-strong);
  border-radius: 30px;
  color: var(--gold-bright);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 26px;
  background: rgba(217, 184, 114, 0.06);
  backdrop-filter: blur(4px);
}

.hero-buy-intro h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--text-primary);
  margin-bottom: 14px;
  line-height: 1.1;
  font-weight: 500;
}

.hero-buy-intro h1 em {
  font-style: italic;
  color: var(--gold-bright);
  text-shadow: 0 0 30px rgba(242, 212, 136, 0.4);
}

.hero-buy-intro .subtitle {
  font-size: 1.18rem;
  color: var(--text-secondary);
  font-style: italic;
  margin: 0;
}

/* ---------- Hero books grid ---------- */

.hero-books {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 32px;
  max-width: 1060px;
  margin: 0 auto;
  align-items: stretch;
}

.hero-book {
  background:
    linear-gradient(180deg, rgba(26, 20, 12, 0.85) 0%, rgba(15, 10, 6, 0.9) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 36px 30px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: center;
  backdrop-filter: blur(6px);
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}

.hero-book:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  border-color: var(--border-strong);
}

.hero-book.featured {
  border: 2px solid var(--gold);
  background:
    linear-gradient(180deg, rgba(34, 27, 16, 0.95) 0%, rgba(20, 15, 9, 0.95) 100%);
  box-shadow:
    var(--shadow-gold),
    0 20px 60px rgba(0, 0, 0, 0.6),
    inset 0 0 40px rgba(217, 184, 114, 0.05);
  transform: scale(1.02);
}

.hero-book.featured::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 10px;
  padding: 2px;
  background: linear-gradient(180deg, var(--gold-bright), transparent 50%, var(--gold-bright));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0.7;
  pointer-events: none;
  animation: border-shine 4s ease-in-out infinite;
}

@keyframes border-shine {
  0%, 100% { opacity: 0.4; }
  50%      { opacity: 0.9; }
}

.hero-book .pop-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: #1a1306;
  padding: 8px 22px;
  border-radius: 30px;
  font-family: 'Inter', sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(217, 184, 114, 0.55);
  animation: badge-pulse 3s ease-in-out infinite;
}

.hero-book .off-badge {
  display: inline-block;
  background: var(--ruby-bright);
  color: #fff;
  padding: 5px 14px;
  border-radius: 3px;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  box-shadow: 0 3px 12px rgba(168, 51, 64, 0.4);
}

.hero-book .book-cover-wrap {
  position: relative;
  margin: 8px auto 22px;
  display: flex;
  justify-content: center;
  min-height: 240px;
  align-items: flex-end;
}

.hero-book .book-cover-wrap img.main {
  max-height: 260px;
  max-width: 180px;
  border-radius: 4px;
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.8),
    0 0 30px rgba(217, 184, 114, 0.15);
  transition: transform 400ms ease;
}

.hero-book:hover .book-cover-wrap img.main {
  transform: translateY(-6px) rotate(-1deg);
}

.hero-book.featured .book-cover-wrap img.main {
  max-height: 280px;
  border: 1px solid rgba(217, 184, 114, 0.3);
}

.hero-book .book-cover-wrap img.bonus {
  position: absolute;
  bottom: -12px;
  right: calc(50% - 170px);
  max-height: 130px;
  transform: rotate(8deg);
  opacity: 0.95;
  border-radius: 3px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.7);
  border: 1px solid var(--border-subtle);
  transition: transform 400ms ease;
}

.hero-book:hover .book-cover-wrap img.bonus {
  transform: rotate(5deg) translateY(-4px);
}

.hero-book .free-stamp {
  position: absolute;
  bottom: 4px;
  right: calc(50% - 155px);
  background: var(--gold);
  color: #0a0a0a;
  padding: 3px 9px;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  border-radius: 3px;
  transform: rotate(-6deg);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.6);
  z-index: 3;
}

.hero-book h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
  line-height: 1.15;
}

.hero-book.featured h3 { color: var(--gold-bright); }

.hero-book .sub-line {
  font-size: 0.98rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 22px;
  min-height: 48px;
}

.hero-book .price-row {
  margin: 18px 0 22px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
}

.hero-book .price-row .strike {
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.hero-book .price-row .now {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.4rem;
  font-weight: 700;
  color: var(--gold-bright);
  line-height: 1;
  text-shadow: 0 0 20px rgba(242, 212, 136, 0.3);
}

.hero-book .mini-note {
  margin-top: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ---------- Trust row under books ---------- */

.hero-trust {
  display: flex;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
  margin-top: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-trust .ic { color: var(--gold-bright); font-size: 1.1rem; }

/* ---------- Narrative hero (the big title section, now AFTER buy hero) ---------- */

.narrative-hero {
  padding: 80px 0;
  text-align: center;
  background:
    radial-gradient(ellipse at center, rgba(122, 31, 42, 0.06) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-primary) 0%, rgba(20, 15, 9, 0.4) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}

.narrative-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(217, 184, 114, 0.06) 0%, transparent 70%);
  animation: haze-pulse 9s ease-in-out infinite;
  pointer-events: none;
}

.narrative-hero .container { position: relative; z-index: 1; }

.narrative-hero h1 {
  max-width: 920px;
  margin: 0 auto 24px;
  font-weight: 500;
  font-size: clamp(2.4rem, 5.4vw, 4.2rem);
}

.narrative-hero h1 em {
  font-style: italic;
  color: var(--gold-bright);
}

.narrative-hero .subtitle {
  max-width: 780px;
  margin: 0 auto 36px;
  font-size: 1.18rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---------- Mobile tweaks for hero-buy ---------- */

@media (max-width: 900px) {
  .hero-books {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-book.featured {
    order: -1;
    transform: none;
  }
  .hero-book.featured:hover {
    transform: translateY(-4px);
  }
  .hero-book .book-cover-wrap img.bonus {
    right: calc(50% - 140px);
    max-height: 110px;
  }
  .hero-buy-intro h1 { font-size: 2.2rem; }
  .hero-trust { gap: 18px; font-size: 0.82rem; }
  .motif.large { font-size: 2.2rem; }
  .motif.med   { font-size: 1.6rem; }
  .motif.small { font-size: 1.2rem; }
}

@media (max-width: 520px) {
  .hero-buy { padding: 40px 0 50px; }
  .hero-book { padding: 30px 20px 24px; }
  .hero-book .price-row .now { font-size: 2.8rem; }
  .hero-book .book-cover-wrap img.main { max-height: 220px; }
  .hero-book .book-cover-wrap img.bonus { max-height: 90px; right: calc(50% - 110px); }
}
