/* =====================================================================
   La Bibbia Semplificata — bespoke styles
   Editorial / devotional / sacred. Cream + navy + sacred gold.
   ===================================================================== */

:root {
  --cream:    #F7F1E6;
  --navy:     #16243F;
  --navy-soft:#22324F;
  --gold:     #C2A24A;
  --gold-deep:#A8862F;
  --charcoal: #2B2B2B;
  --surface:  #FBF7EF;
  --ease:     cubic-bezier(0.32, 0.72, 0, 1);
}

html { scroll-behavior: smooth; }
html, body { overflow-x: clip; max-width: 100%; }
h1, h2, h3, p { overflow-wrap: break-word; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

/* tailwind font-weight bridges (since we used font-600 / font-700 utility names) */
.font-500 { font-weight: 500; }
.font-600 { font-weight: 600; }
.font-700 { font-weight: 700; }

/* Focus visibility (accessibility) */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 999px;
}

/* ---------- Film grain overlay ---------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Avatars ---------- */
.avatar {
  display: inline-grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 0 0 2.5px var(--cream);
  flex-shrink: 0;
}
.quote-author .avatar { box-shadow: 0 0 0 2.5px var(--surface); }

/* ---------- Eyebrow / ornaments ---------- */
.eyebrow {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-weight: 700;
  color: var(--gold-deep);
}
.eyebrow-gold { color: var(--gold); }

.ornament {
  width: 64px;
  height: 14px;
  position: relative;
}
.ornament::before,
.ornament::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.ornament::before { left: 0; }
.ornament::after  { right: 0; transform: scaleX(-1); }

/* ---------- Section dividers (gold + cross) ---------- */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--gold);
  padding: 0 1.5rem;
}
.divider::before,
.divider::after {
  content: "";
  height: 1px;
  width: min(180px, 28vw);
  background: linear-gradient(90deg, transparent, rgba(194,162,74,0.55), transparent);
}
.divider span { font-size: 13px; opacity: 0.8; }

/* =====================================================================
   HERO CAROUSEL
   ===================================================================== */
.carousel { position: relative; }
.carousel-track {
  display: flex;
  transition: transform 0.75s var(--ease);
  will-change: transform;
}
.carousel-slide {
  min-width: 100%;
  padding: 1.5rem;
}

/* hero media slides (landscape image frames) */
.carousel.is-media .carousel-slide.media { padding: 0; }
.hframe {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(160deg, var(--surface), rgba(194,162,74,0.08));
}
.hframe-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.hframe-ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  text-align: center;
  padding: 1rem;
  background:
    repeating-linear-gradient(45deg, rgba(22,36,63,0.03) 0 14px, transparent 14px 28px),
    linear-gradient(160deg, var(--surface), rgba(194,162,74,0.1));
}
.hframe-ph span {
  font-family: "Merriweather", Georgia, serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--navy);
  opacity: 0.55;
}
.hframe-ph small {
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  color: var(--gold-deep);
  opacity: 0.8;
}

/* dots */
[data-dots] button {
  width: 7px; height: 7px;
  border-radius: 999px;
  background: rgba(22,36,63,0.2);
  transition: all 0.4s var(--ease);
}
[data-dots] button[aria-current="true"] {
  width: 22px;
  background: var(--gold);
}

/* =====================================================================
   PAGE PREVIEW MOCKUPS (faux Bible-map pages)
   ===================================================================== */
.page-preview {
  background: linear-gradient(170deg, #fff, var(--surface));
  border: 1px solid rgba(194,162,74,0.22);
  border-radius: 1.1rem;
  padding: 1.4rem 1.3rem 1.5rem;
  box-shadow: 0 14px 36px -22px rgba(22,36,63,0.35);
  min-height: 300px;
}
.page-preview.compact { min-height: 230px; }

.pp-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pp-tag {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--gold-deep);
  background: rgba(194,162,74,0.12);
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
}
.pp-num {
  font-family: "Merriweather", Georgia, serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: rgba(22,36,63,0.35);
}
.pp-title {
  font-family: "Merriweather", Georgia, serif;
  font-weight: 700;
  font-size: 1.9rem;
  color: var(--navy);
  line-height: 1;
  margin-top: 0.65rem;
}
.pp-rule {
  height: 2px;
  width: 38px;
  background: var(--gold);
  border-radius: 2px;
  margin: 0.75rem 0 1.1rem;
}

/* faux timeline */
.pp-timeline {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}
.pp-timeline span {
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: rgba(22,36,63,0.1);
  position: relative;
}
.pp-timeline span::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 7px; height: 7px;
  border-radius: 999px;
  background: var(--gold);
}
.pp-timeline.tall span { height: 8px; }

/* faux text lines */
.pp-lines { display: flex; flex-direction: column; gap: 0.5rem; }
.pp-lines i {
  display: block;
  height: 7px;
  border-radius: 999px;
  background: rgba(22,36,63,0.09);
}
.pp-lines.big i { height: 9px; }

/* chips */
.pp-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.1rem;
}
.pp-chips span {
  font-size: 9.5px;
  font-weight: 600;
  color: var(--navy);
  background: rgba(22,36,63,0.06);
  border: 1px solid rgba(22,36,63,0.08);
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
}

/* grid (gospel layout) */
.pp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
}
.pp-grid.six { grid-template-columns: repeat(3, 1fr); }
.pp-cell {
  height: 34px;
  border-radius: 0.6rem;
  background: linear-gradient(160deg, rgba(194,162,74,0.12), rgba(22,36,63,0.05));
  border: 1px solid rgba(22,36,63,0.06);
}

/* bars (psalms) */
.pp-bars {
  display: flex;
  align-items: flex-end;
  gap: 0.4rem;
  height: 70px;
  margin-bottom: 1.1rem;
}
.pp-bars i {
  flex: 1;
  border-radius: 0.4rem 0.4rem 0 0;
  background: linear-gradient(180deg, var(--gold), rgba(194,162,74,0.4));
}

/* checks (reading plan) */
.pp-checks {
  display: flex;
  gap: 0.45rem;
  margin-bottom: 1.1rem;
}
.pp-checks span {
  width: 22px; height: 22px;
  border-radius: 0.45rem;
  border: 1.5px solid rgba(22,36,63,0.12);
  background: rgba(22,36,63,0.02);
}
.pp-checks span.on {
  background: var(--gold);
  border-color: var(--gold);
  position: relative;
}
.pp-checks span.on::after {
  content: "";
  position: absolute;
  left: 7px; top: 4px;
  width: 5px; height: 9px;
  border: solid var(--navy);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* =====================================================================
   TESTIMONIALS CAROUSEL (screenshot slots)
   ===================================================================== */
.tnav {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  border: 1px solid rgba(22,36,63,0.12);
  box-shadow: 0 10px 26px -18px rgba(22,36,63,0.4);
  transition: transform 0.4s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.tnav:hover { background: var(--navy); color: var(--cream); border-color: var(--navy); transform: translateY(-2px); }
.tnav:active { transform: scale(0.96); }

/* frecce flottanti sopra il carosello (mobile) */
.tnav-float {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 38px;
  height: 38px;
  transform: translateY(-50%) !important;
  background: rgba(247,241,230,0.92);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.tcarousel {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.5rem 0 1.75rem;
}
.tcarousel::-webkit-scrollbar { display: none; }

/* one testimonial per view, full width */
.tcard {
  scroll-snap-align: center;
  flex: 0 0 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 1.25rem;
}
.tcard .tshot-img {
  width: auto;
  max-width: min(90%, 360px);
  max-height: 72vh;
  height: auto;
}

/* faux WhatsApp-style screenshot placeholder (replace .tshot with a real <img>) */
.tshot {
  aspect-ratio: 4 / 5;
  border-radius: 1.4rem;
  overflow: hidden;
  background: #ECE5DD;
  border: 1px solid rgba(22,36,63,0.1);
  box-shadow: 0 18px 44px -26px rgba(22,36,63,0.45);
  display: flex;
  flex-direction: column;
}
.tshot-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.1rem;
  border: 1px solid rgba(22,36,63,0.1);
  box-shadow: 0 18px 44px -26px rgba(22,36,63,0.45);
}
.tshot-top {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 0.85rem;
  background: #128C7E;
  color: #fff;
}
.tshot-av {
  display: grid;
  place-items: center;
  width: 30px; height: 30px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--cream);
  background: var(--navy);
  box-shadow: 0 0 0 2px rgba(255,255,255,0.4);
}
.tshot-name { font-size: 0.82rem; font-weight: 600; line-height: 1.1; }
.tshot-status { font-size: 0.62rem; opacity: 0.8; line-height: 1.1; }
.tshot-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1rem 0.9rem;
}
.bub {
  display: flex;
  flex-direction: column;
  gap: 0.32rem;
  max-width: 82%;
  padding: 0.55rem 0.65rem;
  border-radius: 0.85rem;
  background: #fff;
  box-shadow: 0 1px 1px rgba(0,0,0,0.06);
}
.bub.in  { align-self: flex-start; border-top-left-radius: 0.2rem; }
.bub.out { align-self: flex-end; background: #DCF8C6; border-top-right-radius: 0.2rem; }
.bub i {
  display: block;
  height: 6px;
  width: 100%;
  border-radius: 999px;
  background: rgba(22,36,63,0.14);
}
.bub.out i { background: rgba(18,140,126,0.22); }
.tshot-stars {
  align-self: flex-start;
  margin-top: auto;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--gold-deep);
}

/* =====================================================================
   FINAL TESTIMONIALS MARQUEE (auto-scroll cards)
   ===================================================================== */
.rev-marquee { overflow: hidden; }
.rev-track {
  display: flex;
  width: max-content;
  animation: marquee 52s linear infinite;
}
.rev-marquee:hover .rev-track { animation-play-state: paused; }
.rev-group {
  display: flex;
  gap: 1.25rem;
  padding-right: 1.25rem;
}
.rev-card {
  flex: 0 0 auto;
  width: 300px;
  background: #fff;
  border: 1px solid rgba(22,36,63,0.06);
  border-radius: 1.25rem;
  padding: 1.5rem 1.6rem;
  box-shadow: 0 16px 44px -30px rgba(22,36,63,0.3);
  white-space: normal;
}
.rev-stars { color: var(--gold); letter-spacing: 0.12em; font-size: 0.95rem; }
.rev-text {
  margin-top: 0.7rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(43,43,43,0.82);
}
.rev-name {
  margin-top: 1rem;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.92rem;
}
@media (prefers-reduced-motion: reduce) { .rev-track { animation: none; } }

/* =====================================================================
   TESTIMONIALS MARQUEE (legacy, unused)
   ===================================================================== */
.marquee { position: relative; }
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-right: 1.5rem;
}
.mq-item {
  white-space: nowrap;
  font-size: 0.95rem;
  color: rgba(247,241,230,0.85);
}
.mq-item em {
  font-style: normal;
  color: var(--gold);
  font-weight: 600;
  margin-left: 0.4rem;
}
.mq-dot { color: rgba(194,162,74,0.5); font-size: 0.7rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =====================================================================
   VIDEO PLACEHOLDER
   ===================================================================== */
.video-frame {
  display: block;
  width: 100%;
  border-radius: 1.85rem;
  overflow: hidden;
  cursor: pointer;
}
.video-inner {
  position: relative;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(34,50,79,0.9), var(--navy));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.video-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(194,162,74,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(194,162,74,0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, #000 30%, transparent 75%);
}
.play-btn {
  position: relative;
  display: grid;
  place-items: center;
  width: 72px; height: 72px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  padding-left: 4px;
  box-shadow: 0 14px 36px -10px rgba(194,162,74,0.6);
  transition: transform 0.5s var(--ease);
}
.play-btn::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 999px;
  border: 1px solid rgba(194,162,74,0.4);
  animation: pulse 2.6s ease-out infinite;
}
.video-frame:hover .play-btn { transform: scale(1.06); }
@keyframes pulse {
  0%   { transform: scale(0.9); opacity: 0.8; }
  70%  { transform: scale(1.35); opacity: 0; }
  100% { opacity: 0; }
}
.video-caption {
  position: relative;
  color: rgba(247,241,230,0.85);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* =====================================================================
   FEATURES (zig-zag)
   ===================================================================== */
.feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(22,36,63,0.06);
  border-radius: 2rem;
  padding: 1.6rem;
  box-shadow: 0 18px 50px -30px rgba(22,36,63,0.3);
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px -30px rgba(22,36,63,0.32);
}
.feature-media {
  /* solo l'immagine, senza cornice */
}
.feature-title {
  font-family: "Merriweather", Georgia, serif;
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--navy);
  line-height: 1.05;
}
.feature-text {
  margin-top: 0.85rem;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(43,43,43,0.78);
}
.feature-list {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.7rem;
}
.feature-list li {
  position: relative;
  list-style: none;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  background: rgba(194,162,74,0.1);
  border: 1px solid rgba(194,162,74,0.22);
  border-radius: 999px;
  padding: 0.4rem 0.85rem 0.4rem 1.9rem;
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0.7rem; top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 4px; height: 8px;
  border: solid var(--gold-deep);
  border-width: 0 2px 2px 0;
}

@media (min-width: 768px) {
  .feature {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 2.5rem;
    padding: 2.25rem;
  }
  .feature.reverse .feature-media { order: 2; }
  .feature.reverse .feature-body  { order: 1; }
}

/* =====================================================================
   QUOTE CARDS
   ===================================================================== */
.quote-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(22,36,63,0.06);
  border-radius: 1.5rem;
  padding: 2rem 1.75rem 1.75rem;
  box-shadow: 0 16px 44px -30px rgba(22,36,63,0.3);
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
  display: flex;
  flex-direction: column;
}
.quote-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 56px -30px rgba(22,36,63,0.32);
}
.quote-card.sm { padding: 1.75rem 1.5rem; }
.quote-mark {
  font-family: "Merriweather", Georgia, serif;
  font-size: 3.5rem;
  line-height: 0.6;
  color: var(--gold);
  height: 1.4rem;
}
.quote-text {
  font-size: 1.02rem;
  line-height: 1.6;
  color: rgba(43,43,43,0.85);
  flex: 1;
}
.quote-card.sm .quote-text { font-size: 0.95rem; }
.quote-author {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(22,36,63,0.07);
  font-size: 0.9rem;
}

/* =====================================================================
   BONUS CARDS (on navy)
   ===================================================================== */
.bonus-card {
  background: rgba(247,241,230,0.04);
  border: 1px solid rgba(247,241,230,0.1);
  border-radius: 1.75rem;
  padding: 1.75rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  transition: transform 0.6s var(--ease), background 0.6s var(--ease), border-color 0.6s var(--ease);
}
.bonus-card:hover {
  transform: translateY(-4px);
  background: rgba(247,241,230,0.07);
  border-color: rgba(194,162,74,0.35);
}
.bonus-media {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.4rem;
}
.bonus-mock {
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  border-radius: 1rem;
  background: rgba(194,162,74,0.14);
  border: 1px solid rgba(194,162,74,0.3);
  color: var(--gold);
}
.bonus-tag {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: rgba(247,241,230,0.5);
}
.bonus-title {
  font-family: "Merriweather", Georgia, serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.15;
  color: var(--cream);
}
.bonus-text {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(247,241,230,0.65);
}

/* =====================================================================
   PRICING
   ===================================================================== */
.price-bullet {
  position: relative;
  padding-left: 2rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
}
.price-bullet::before {
  content: "";
  position: absolute;
  left: 0; top: 1px;
  width: 20px; height: 20px;
  border-radius: 999px;
  background: rgba(194,162,74,0.16);
}
.price-bullet::after {
  content: "";
  position: absolute;
  left: 7px; top: 5px;
  width: 5px; height: 9px;
  border: solid var(--gold-deep);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* cover mockup */
.cover-mock {
  position: relative;
  width: 100%;
  max-width: 240px;
  aspect-ratio: 3 / 4;
  border-radius: 0.5rem 1rem 1rem 0.5rem;
  background: linear-gradient(155deg, #1d3050, #0f1b30);
  border: 1px solid rgba(194,162,74,0.35);
  box-shadow:
    -10px 0 0 -4px rgba(194,162,74,0.25),
    0 30px 60px -25px rgba(0,0,0,0.6);
  padding: 1.75rem 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--cream);
}
.cover-cross { color: var(--gold); font-size: 1.5rem; margin-bottom: 1.5rem; }
.cover-kicker {
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(194,162,74,0.9);
  font-weight: 700;
}
.cover-title {
  font-family: "Merriweather", Georgia, serif;
  font-weight: 700;
  font-size: 1.85rem;
  line-height: 1.05;
  margin-top: 0.75rem;
}
.cover-rule {
  width: 40px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  margin: 1.1rem 0;
}
.cover-sub {
  font-size: 0.78rem;
  color: rgba(247,241,230,0.6);
  letter-spacing: 0.02em;
}

/* =====================================================================
   GUARANTEE
   ===================================================================== */
.guarantee-badge {
  display: grid;
  place-items: center;
  width: 64px; height: 64px;
  border-radius: 999px;
  background: rgba(194,162,74,0.14);
  border: 1px solid rgba(194,162,74,0.35);
  color: var(--gold-deep);
}

/* =====================================================================
   FAQ ACCORDION
   ===================================================================== */
.faq-item {
  background: #fff;
  border: 1px solid rgba(22,36,63,0.07);
  border-radius: 1.25rem;
  overflow: hidden;
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.faq-item:hover { border-color: rgba(194,162,74,0.3); }
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  padding: 1.3rem 1.5rem;
  font-family: "Merriweather", Georgia, serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--navy);
  cursor: pointer;
  background: none;
  border: none;
}
.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 999px;
  background: rgba(194,162,74,0.12);
  transition: background 0.4s var(--ease), transform 0.5s var(--ease);
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 11px; height: 2px;
  border-radius: 2px;
  background: var(--gold-deep);
  transform: translate(-50%, -50%);
  transition: transform 0.5s var(--ease), opacity 0.4s var(--ease);
}
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-trigger[aria-expanded="true"] .faq-icon { background: var(--gold); }
.faq-trigger[aria-expanded="true"] .faq-icon::before { background: var(--navy); }
.faq-trigger[aria-expanded="true"] .faq-icon::after  { opacity: 0; transform: translate(-50%, -50%) rotate(0deg); }

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.55s var(--ease);
}
.faq-panel > p {
  overflow: hidden;
  min-height: 0;
  padding: 0 1.5rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(43,43,43,0.75);
  opacity: 0;
  transition: opacity 0.4s var(--ease), padding 0.4s var(--ease);
}
.faq-item.open .faq-panel { grid-template-rows: 1fr; }
.faq-item.open .faq-panel > p { opacity: 1; padding: 0 1.5rem 1.4rem; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer-link {
  color: rgba(247,241,230,0.7);
  transition: color 0.35s var(--ease);
}
.footer-link:hover { color: var(--gold); }

/* =====================================================================
   STICKY MOBILE CTA
   ===================================================================== */
.sticky-cta {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 45;
  background: rgba(247,241,230,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(22,36,63,0.08);
  box-shadow: 0 -10px 30px -18px rgba(22,36,63,0.35);
  padding-bottom: env(safe-area-inset-bottom);
  transform: translateY(120%);
  transition: transform 0.55s var(--ease);
}
.sticky-cta.show { transform: translateY(0); }

/* =====================================================================
   SCROLL REVEAL
   ===================================================================== */
/* reveal animation disabled — everything visible immediately */
.reveal, .reveal.in {
  opacity: 1;
  transform: none;
  filter: none;
  transition: none;
}

/* =====================================================================
   MOBILE TITLE SIZE REDUCTION
   ===================================================================== */
@media (max-width: 639px) {
  .feature-title { font-size: 1.4rem; }
  .bonus-title   { font-size: 1.35rem; }
  .pp-title      { font-size: 1.65rem; }
  .faq-trigger   { font-size: 1.15rem; }
}
