:root {
  --black-ritual: #090707;
  --burgundy-deep: #2A060D;
  --blood-red: #7A0F1A;
  --aged-gold: #C49A45;
  --aged-gold-bright: #E0B85A;
  --parchment: #E8D8B8;
  --ivory: #F7EEDC;
  --smoke: #B8AFA4;
  --card-bg: #120B0D;
  --bonus-bg: #16080C;

  --font-title: "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 28px;

  --shadow-gold: 0 0 24px rgba(196, 154, 69, 0.35);
  --shadow-gold-lg: 0 0 60px rgba(196, 154, 69, 0.25);
  --shadow-dark: 0 24px 80px rgba(0, 0, 0, 0.45);

  --container: 720px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--black-ritual);
  color: var(--parchment);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  background-color: var(--black-ritual);
  background-image:
    radial-gradient(ellipse at 20% 10%, rgba(122, 15, 26, 0.18), transparent 55%),
    radial-gradient(ellipse at 80% 90%, rgba(42, 6, 13, 0.6), transparent 55%);
  padding-bottom: 90px;
}

h1, h2, h3, h4 {
  font-family: var(--font-title);
  color: var(--ivory);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }
a { color: var(--aged-gold); text-decoration: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 18px;
}

.section { padding: 60px 0; position: relative; }

/* ---------- Alert bar ---------- */
.alert-bar {
  background: var(--blood-red);
  color: var(--ivory);
  border-bottom: 1px solid var(--aged-gold);
  text-align: center;
  padding: 11px 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
  position: relative;
  overflow: hidden;
}
.alert-bar .pulse {
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--aged-gold);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.2); box-shadow: 0 0 12px var(--aged-gold); }
}

/* ---------- Buttons ---------- */
.btn-primary {
  background: linear-gradient(180deg, #D9AC55 0%, #C49A45 50%, #A6802F 100%);
  color: var(--black-ritual);
  border: 1px solid var(--ivory);
  border-radius: 14px;
  padding: 18px 24px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-gold), inset 0 1px 0 rgba(255,255,255,0.35);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
  text-decoration: none;
  width: 100%;
  text-align: center;
  line-height: 1.25;
}
.btn-primary:hover {
  background: linear-gradient(180deg, #ECC067 0%, #E0B85A 50%, #B58A35 100%);
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: transparent;
  color: var(--aged-gold);
  border: 1px solid var(--aged-gold);
  border-radius: 12px;
  padding: 13px 20px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  width: 100%;
}

/* ---------- Badges ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(196, 154, 69, 0.45);
  background: rgba(196, 154, 69, 0.06);
  color: var(--aged-gold);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.badge-danger {
  border-color: rgba(122,15,26,0.7);
  background: rgba(122,15,26,0.18);
  color: #F2C9A5;
}
.badge-solid {
  background: var(--aged-gold);
  color: var(--black-ritual);
  border-color: var(--aged-gold);
}

/* ---------- Cards ---------- */
.card {
  background: var(--card-bg);
  border: 1px solid rgba(196, 154, 69, 0.22);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-dark);
}

/* ---------- Decorative ornaments ---------- */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--aged-gold);
  margin: 0 auto 22px;
  opacity: 0.85;
}
.ornament .line {
  height: 1px;
  width: 40px;
  background: linear-gradient(90deg, transparent, var(--aged-gold));
}
.ornament .line.right { background: linear-gradient(270deg, transparent, var(--aged-gold)); }
.ornament .glyph {
  font-size: 16px;
  letter-spacing: 0.4em;
}

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--aged-gold);
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 12px;
  text-align: center;
}

/* ---------- HERO ---------- */
.hero { padding: 32px 0 60px; }
.hero h1 {
  font-size: 32px;
  line-height: 1.15;
  color: var(--ivory);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.hero h1 .gold { color: var(--aged-gold); }
.hero .alert-headline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(122,15,26,0.25);
  border: 1px solid var(--blood-red);
  color: var(--ivory);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero .sub {
  font-size: 16px;
  color: var(--parchment);
  line-height: 1.55;
  margin-bottom: 24px;
}

/* Video container */
.video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(196,154,69,0.5);
  box-shadow: var(--shadow-gold-lg), 0 30px 60px rgba(0,0,0,0.6);
  margin-bottom: 28px;
  background: #000;
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-wrap::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(196,154,69,0.4), transparent 50%, rgba(196,154,69,0.2));
  pointer-events: none;
  z-index: 2;
  opacity: 0.6;
}

.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
  font-size: 13px;
  color: var(--smoke);
}
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust svg { color: var(--aged-gold); flex-shrink: 0; }

/* ---------- Section titles ---------- */
.section-title {
  font-size: 26px;
  line-height: 1.18;
  text-align: center;
  margin: 0 auto 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.section-title .gold { color: var(--aged-gold); }
.section-sub {
  text-align: center;
  color: var(--parchment);
  margin: 0 auto 32px;
  font-size: 15px;
  line-height: 1.55;
}

/* ---------- Opening ---------- */
.opening {
  background: linear-gradient(180deg, var(--black-ritual) 0%, var(--burgundy-deep) 100%);
  text-align: center;
}
.opening blockquote {
  font-size: 19px;
  color: var(--ivory);
  line-height: 1.55;
  margin: 0;
  font-weight: 500;
}
.opening blockquote .em { color: var(--aged-gold); font-weight: 600; }
.opening .signature {
  margin-top: 24px;
  color: var(--smoke);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ---------- Photo blocks ---------- */
.photo-block {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(196,154,69,0.3);
  margin-bottom: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.photo-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-block::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(9,7,7,0.5));
  pointer-events: none;
}

/* ---------- Pain ---------- */
/* (pain-list rules moved below to alternate contrast) */
.pain-icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border: 1px solid rgba(196,154,69,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--aged-gold);
}
.pain-text strong {
  display: block;
  color: var(--ivory);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
}
.pain-text span { color: var(--parchment); font-size: 14px; }

/* ---------- Mockup ---------- */
.mockup-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  padding: 20px 0;
}
.mockup-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(196,154,69,0.3), transparent 60%);
  filter: blur(40px);
  z-index: 0;
}
.book {
  position: relative;
  width: 240px;
  height: 360px;
  z-index: 2;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.7));
  border-radius: 4px 10px 10px 4px;
  overflow: hidden;
  animation: bookFloat 6s ease-in-out infinite;
}
@keyframes bookFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.book img.cover-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- Benefits (with thumbnail photos) ---------- */
.benefit-block {
  background: var(--card-bg);
  border: 1px solid rgba(196,154,69,0.22);
  border-radius: 20px;
  margin-bottom: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.benefit-block .photo {
  width: 100%;
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(196,154,69,0.18);
}
.benefit-block .body {
  padding: 22px;
  position: relative;
}
.benefit-block .icon-tile {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(196,154,69,0.12);
  border: 1px solid rgba(196,154,69,0.35);
  color: var(--aged-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.benefit-block .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- Pain alternating cards for contrast ---------- */
.pain-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pain-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 18px;
  border-radius: 14px;
  border: 1px solid rgba(196,154,69,0.22);
  background: var(--card-bg);
}
.pain-item:nth-child(odd) {
  background: var(--ivory);
  border-color: var(--aged-gold);
}
.pain-item:nth-child(odd) .pain-text strong { color: var(--burgundy-deep); }
.pain-item:nth-child(odd) .pain-text span { color: #4a2a30; }
.pain-item:nth-child(odd) .pain-icon {
  background: rgba(122,15,26,0.1);
  border-color: var(--burgundy-deep);
  color: var(--burgundy-deep);
}
.benefit-block .body { padding: 0; }
.benefit-block h3 {
  font-size: 19px;
  color: var(--ivory);
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.benefit-block p { color: var(--parchment); font-size: 14px; line-height: 1.6; margin-bottom: 14px; }
.benefit-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.benefit-block ul li {
  color: var(--parchment);
  font-size: 14px;
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.benefit-block ul li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--aged-gold);
  font-size: 12px;
}

/* ---------- Spell preview carousel ---------- */
.spell-carousel {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 18px 18px;
  margin: 0 -18px;
  scrollbar-width: none;
}
.spell-carousel::-webkit-scrollbar { display: none; }
.spell-card {
  background: var(--card-bg);
  border: 1px solid rgba(196,154,69,0.22);
  border-radius: 18px;
  overflow: hidden;
  flex: 0 0 78%;
  max-width: 320px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}
.spell-card .photo {
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
}
.spell-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.spell-card .photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9,7,7,0.1), rgba(9,7,7,0.7));
}
.spell-card .photo .tag {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(9,7,7,0.75);
  border: 1px solid var(--aged-gold);
  color: var(--aged-gold);
  padding: 4px 9px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 999px;
  z-index: 1;
}
.spell-card .body { padding: 16px 18px 18px; flex: 1; display: flex; flex-direction: column; }
.spell-card h3 {
  font-size: 16px;
  color: var(--ivory);
  margin-bottom: 6px;
  font-weight: 700;
  line-height: 1.25;
}
.spell-card p { color: var(--parchment); font-size: 13px; line-height: 1.5; flex: 1; }
.spell-card .inside {
  display: inline-block;
  margin-top: 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--aged-gold);
  border-top: 1px dashed rgba(196,154,69,0.3);
  padding-top: 12px;
}
.carousel-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--smoke);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 4px;
}
.carousel-hint svg { color: var(--aged-gold); animation: hintSlide 2s ease-in-out infinite; }
@keyframes hintSlide {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}

/* ---------- Bonuses ---------- */
.bonus-band {
  text-align: center;
  background: linear-gradient(90deg, transparent, rgba(196,154,69,0.18), transparent);
  border-top: 1px solid rgba(196,154,69,0.4);
  border-bottom: 1px solid rgba(196,154,69,0.4);
  padding: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--aged-gold);
  font-size: 11px;
  text-transform: uppercase;
  margin: 0 auto 32px;
}
.bonus-card {
  background: var(--bonus-bg);
  border: 1px solid var(--aged-gold);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  text-align: center;
  box-shadow: var(--shadow-dark);
  margin-bottom: 22px;
}
.bonus-stamp {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--aged-gold);
  color: var(--black-ritual);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  padding: 5px 9px;
  border-radius: 999px;
}
.bonus-cover {
  width: 170px;
  height: 245px;
  margin: 14px auto 22px;
  border-radius: 4px 10px 10px 4px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.7), 0 0 0 1px rgba(196,154,69,0.3);
}
.bonus-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bonus-card h3 { color: var(--aged-gold); font-size: 19px; margin-bottom: 10px; font-weight: 700; }
.bonus-card p { color: var(--parchment); font-size: 14px; line-height: 1.55; }
.bonus-card ul {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}
.bonus-card ul li {
  color: var(--parchment);
  font-size: 13px;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.bonus-card ul li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--aged-gold);
  font-size: 11px;
}
.bonus-value {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed rgba(196,154,69,0.3);
  color: var(--ivory);
  font-size: 16px;
  font-weight: 700;
}
.bonus-value .strike { color: var(--smoke); text-decoration: line-through; font-size: 13px; margin-right: 8px; }

/* La Congrega special card */
.congrega-card {
  background:
    linear-gradient(180deg, rgba(22,8,12,0.95), rgba(42,6,13,0.95)),
    url("assets/sisterhood-feature.webp") center/cover;
  border: 1px solid var(--aged-gold);
  position: relative;
}
.congrega-card .photo {
  aspect-ratio: 16/10;
  width: 100%;
  margin: 0 0 22px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.congrega-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.congrega-card .photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9,7,7,0.2), rgba(9,7,7,0.6));
}

/* ---------- Testimonials ---------- */
.testi-card {
  background: var(--card-bg);
  border: 1px solid rgba(196,154,69,0.22);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 18px;
}
.testi-quote {
  color: var(--ivory);
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 18px;
  font-weight: 500;
}
.testi-quote .hi { color: var(--aged-gold); font-weight: 700; }
.testi-meta { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2A060D, #7A0F1A);
  border: 1px solid var(--aged-gold);
  color: var(--aged-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
}
.testi-name { color: var(--ivory); font-weight: 600; font-size: 14px; }
.testi-loc { color: var(--smoke); font-size: 12px; }
.testi-stars { color: var(--aged-gold); font-size: 13px; margin-bottom: 12px; letter-spacing: 3px; }

/* ---------- Offer ---------- */
.offer-section {
  background: linear-gradient(180deg, var(--burgundy-deep) 0%, var(--black-ritual) 100%);
}
.offer-box {
  background: linear-gradient(180deg, #0e0508 0%, #2A060D 100%);
  border: 1px solid var(--aged-gold);
  border-radius: var(--radius-xl);
  padding: 30px 22px;
  box-shadow: var(--shadow-gold-lg), var(--shadow-dark);
  position: relative;
}
.offer-stack {
  margin: 28px 0;
  border-top: 1px dashed rgba(196,154,69,0.3);
}
.offer-line {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(196,154,69,0.3);
  gap: 12px;
}
.offer-line .item { color: var(--parchment); font-size: 13px; display: flex; flex-direction: column; gap: 3px; flex: 1; }
.offer-line .item strong { color: var(--ivory); font-size: 15px; font-weight: 700; }
.offer-line .val { color: var(--aged-gold); font-size: 15px; font-weight: 700; white-space: nowrap; }
.offer-line.total { border-bottom: none; padding-top: 18px; }
.offer-line.total .item strong { color: var(--ivory); font-size: 17px; }
.offer-line.total .val { color: var(--smoke); font-size: 18px; text-decoration: line-through; }

.price-block { text-align: center; margin-top: 22px; }
.price-block .old {
  color: var(--smoke);
  text-decoration: line-through;
  font-size: 18px;
  font-weight: 600;
}
.price-block .now {
  color: var(--ivory);
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  margin: 6px 0;
  letter-spacing: -0.03em;
}
.price-block .now .cents { font-size: 0.5em; vertical-align: top; }
.price-block .save {
  display: inline-block;
  background: var(--blood-red);
  color: var(--ivory);
  padding: 5px 12px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 800;
  border-radius: 999px;
  margin-bottom: 10px;
}
.offer-cta { display: flex; flex-direction: column; align-items: stretch; gap: 14px; margin-top: 18px; }
.offer-trust {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 18px;
  color: var(--smoke);
  font-size: 12px;
}
.offer-trust span { display: inline-flex; align-items: center; gap: 8px; justify-content: center; }
.offer-trust svg { color: var(--aged-gold); flex-shrink: 0; }

/* ---------- Objections ---------- */
.objection-card {
  background: var(--card-bg);
  border: 1px solid rgba(196,154,69,0.22);
  border-radius: var(--radius-md);
  padding: 22px;
  margin-bottom: 14px;
}
.objection-card h3 {
  color: var(--aged-gold);
  font-size: 17px;
  margin-bottom: 8px;
  font-weight: 700;
}
.objection-card p { color: var(--parchment); font-size: 14px; line-height: 1.6; }

/* ---------- Guarantee ---------- */
.guarantee-card {
  background: #0E0A08;
  border: 1px solid var(--aged-gold);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow-gold-lg);
}
.guarantee-shield { margin: 0 auto 18px; color: var(--aged-gold); }
.guarantee h3 { font-size: 22px; color: var(--ivory); margin-bottom: 10px; font-weight: 700; }
.guarantee p { color: var(--parchment); font-size: 15px; line-height: 1.6; }
.guarantee .small { color: var(--smoke); font-size: 13px; margin-top: 12px; }

/* ---------- Urgency ---------- */
.urgency {
  background: var(--burgundy-deep);
  border-top: 1px solid var(--blood-red);
  border-bottom: 1px solid var(--blood-red);
  text-align: center;
  padding: 50px 0;
}
.urgency .lines {
  font-size: 19px;
  color: var(--ivory);
  line-height: 1.5;
  font-weight: 600;
}
.urgency .lines em { color: var(--aged-gold); font-style: normal; display: block; margin-top: 12px; font-weight: 700; }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--card-bg);
  border: 1px solid rgba(196,154,69,0.25);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-item.open { border-color: var(--aged-gold); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  padding: 18px 20px;
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  gap: 12px;
}
.faq-q .chev {
  color: var(--aged-gold);
  transition: transform 0.3s ease;
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
}
.faq-item.open .chev { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a-inner {
  padding: 0 20px 20px;
  color: var(--parchment);
  font-size: 14px;
  line-height: 1.65;
}

/* ---------- Final CTA ---------- */
.final-cta { text-align: center; }
.final-cta h2 { font-size: 28px; margin-bottom: 18px; font-weight: 800; letter-spacing: -0.02em; }
.final-cta h2 em { color: var(--aged-gold); font-style: normal; }
.final-cta p { color: var(--parchment); font-size: 15px; line-height: 1.6; margin-bottom: 14px; }

.ps-block {
  margin-top: 40px;
  padding: 28px 22px;
  background: var(--card-bg);
  border: 1px solid rgba(196,154,69,0.3);
  border-radius: 20px;
  text-align: left;
}
.ps-block .label {
  color: var(--aged-gold);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
.ps-block p { color: var(--parchment); font-size: 14px; line-height: 1.65; margin-bottom: 12px; }
.ps-block .em { color: var(--ivory); font-weight: 600; }

/* ---------- Footer ---------- */
.footer {
  background: #050404;
  color: var(--smoke);
  border-top: 1px solid rgba(196,154,69,0.2);
  padding: 36px 0 28px;
  font-size: 12px;
}
.footer h4 {
  color: var(--aged-gold);
  font-size: 13px;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
.footer-block { margin-bottom: 24px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.footer a { color: var(--smoke); }
.footer .legal {
  border-top: 1px solid rgba(196,154,69,0.15);
  padding-top: 16px;
  color: #6b5e51;
  font-size: 11px;
  text-align: center;
  line-height: 1.6;
}

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(180deg, rgba(9,7,7,0.96), var(--black-ritual));
  border-top: 1px solid var(--aged-gold);
  padding: 10px 14px;
  z-index: 100;
  display: none;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(12px);
}
.sticky-cta.visible { display: flex; }
.sticky-cta .price-mini { flex-shrink: 0; color: var(--ivory); }
.sticky-cta .price-mini .now { font-size: 19px; font-weight: 800; display: block; line-height: 1; letter-spacing: -0.02em; }
.sticky-cta .price-mini .old { color: var(--smoke); text-decoration: line-through; font-size: 11px; }
.sticky-cta .btn-primary { flex: 1; padding: 12px 10px; font-size: 12px; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Tablet/desktop scaling ---------- */
@media (min-width: 720px) {
  body { font-size: 17px; }
  .container { max-width: 760px; }
  .section { padding: 80px 0; }
  .hero h1 { font-size: 44px; }
  .hero .sub { font-size: 18px; }
  .section-title { font-size: 36px; }
  .opening blockquote { font-size: 22px; }
  .price-block .now { font-size: 80px; }
  .final-cta h2 { font-size: 38px; }
}
