
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Palette */
  --ivory:       #FDFAF6;
  --ivory-deep:  #F7F1E9;
  --parchment:   #F0E9DE;
  --blush:       #F2E6E0;
  --blush-deep:  #E8D4CC;
  --rose:        #A0504A;
  --rose-light:  #FDF3F2;
  --rose-mid:    #C47068;
  --mauve:       #7A4E5E;
  --sage:        #4E7060;
  --sage-light:  #EAF2EE;
  --amber:       #B8762A;
  --amber-light: #FBF4E8;
  --ink:         #2A1F1A;
  --warm-gray:   #6A5A52;
  --border:      #E4D9D0;
  --white:       #FFFFFF;
  --shadow:      rgba(42,31,26,0.08);
  --radius:      12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', -apple-system, sans-serif;
  background: var(--ivory);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ─── URGENCY BAR ─── */
.urgency-bar {
  background: var(--rose);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 100;
}
.urgency-bar .dot {
  width: 7px; height: 7px;
  background: #FFD9D0;
  border-radius: 50%;
  animation: blink 1.4s infinite;
  flex-shrink: 0;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.25} }
.urgency-bar .countdown {
  font-family: monospace;
  font-size: 15px;
  font-weight: 800;
  color: #FFE8E2;
  letter-spacing: 0.05em;
}

/* ─── HEADER ─── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 13px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  box-shadow: 0 1px 8px var(--shadow);
}
.header-logo img { height: 38px; }
.header-trust { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 1px; }
.trust-item .val { font-size: 13px; font-weight: 700; color: var(--rose); }
.trust-item .lbl { font-size: 10px; color: var(--warm-gray); letter-spacing: 0.06em; text-transform: uppercase; }
@media(max-width:560px) {
  .site-header { justify-content: center; }
  .header-trust { gap: 12px; }
}

/* ─── TICKER ─── */
.ticker-wrap {
  background: var(--parchment);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 8px 0;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.ticker-item {
  font-size: 12px;
  color: var(--warm-gray);
  padding: 0 32px;
  flex-shrink: 0;
}
.ticker-item .tag { color: var(--rose); font-weight: 700; }

/* ─── BREAKING BANNER ─── */
.breaking-banner {
  background: var(--amber-light);
  border-bottom: 1px solid #DFC4A0;
  padding: 11px 20px;
  text-align: center;
}
.breaking-banner p { font-size: 13px; color: #5A3E18; line-height: 1.5; }
.breaking-banner strong { color: var(--amber); font-weight: 700; }

/* ─── HERO ─── */
.hero {
  background: linear-gradient(160deg, var(--blush) 0%, var(--ivory) 60%, var(--ivory-deep) 100%);
  padding: 44px 20px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(160,80,74,0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-kicker {
  display: inline-block;
  background: var(--white);
  border: 1px solid var(--blush-deep);
  color: var(--rose);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 18px;
  box-shadow: 0 1px 4px var(--shadow);
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 6.5vw, 50px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.18;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.hero h1 em { font-style: italic; color: var(--rose); }
.hero .sub {
  font-size: 16px;
  color: var(--warm-gray);
  max-width: 540px;
  margin: 0 auto 24px;
  line-height: 1.65;
}
.hero-bullets {
  list-style: none;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 32px;
  text-align: left;
}
.hero-bullets li {
  font-size: 14px;
  color: var(--ink);
  display: flex;
  align-items: flex-start;
  gap: 9px;
  line-height: 1.45;
}
.hero-bullets li::before {
  content: "✓";
  color: var(--sage);
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── BUNDLE SECTION ─── */
.bundle-section {
  background: var(--ivory-deep);
  padding: 0 20px 36px;
  border-bottom: 1px solid var(--border);
}
.bundle-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  padding: 24px 0 14px;
}
.bundle-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}
.bundle-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 16px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  position: relative;
  background: var(--white);
  box-shadow: 0 2px 10px var(--shadow);
}
.bundle-card:hover, .bundle-card.selected {
  border-color: var(--rose-mid);
  box-shadow: 0 4px 20px rgba(160,80,74,0.14);
  background: #FFFBFA;
}
.bundle-card .badge {
  position: absolute;
  top: -1px; right: 14px;
  background: var(--rose);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 11px;
  border-radius: 0 0 8px 8px;
  letter-spacing: 0.04em;
}
.bundle-card .row1 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 5px;
}
.bundle-card .title { font-size: 15px; font-weight: 700; color: var(--ink); }
.bundle-card .saving {
  font-size: 12px; font-weight: 700; color: var(--sage);
  background: var(--sage-light); padding: 2px 9px; border-radius: 20px;
}
.bundle-card .desc { font-size: 13px; color: var(--warm-gray); margin-bottom: 9px; }
.bundle-card .price-row { display: flex; align-items: baseline; gap: 8px; }
.bundle-card .price { font-size: 26px; font-weight: 800; color: var(--rose); font-family: 'Jost', sans-serif; }
.bundle-card .per { font-size: 12px; color: var(--warm-gray); }
.bundle-card .reg { font-size: 13px; color: #bbb; text-decoration: line-through; }

/* ─── CTA BUTTON ─── */
.cta-btn {
  display: block;
  background: linear-gradient(135deg, #C47068 0%, var(--rose) 50%, #8A3E3A 100%);
  color: #fff;
  text-align: center;
  font-size: 17px;
  font-weight: 800;
  padding: 18px 24px;
  border-radius: var(--radius);
  margin: 16px auto 0;
  max-width: 480px;
  letter-spacing: 0.03em;
  box-shadow: 0 6px 24px rgba(160,80,74,0.3);
  transition: transform 0.15s, box-shadow 0.15s;
  cursor: pointer;
  border: none; 
  width: 100%;
  line-height: 1.3;
}
.cta-btn:hover { background: linear-gradient(135deg, #C47068 0%, var(--rose) 50%, #8A3E3A 100%); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(160,80,74,0.4); }
.cta-btn:active { background: linear-gradient(135deg, #C47068 0%, var(--rose) 50%, #8A3E3A 100%); transform: translateY(0); }
.cta-btn .sub { font-weight: 400; font-size: 12px; display: block; margin-top: 4px; opacity: 0.85; }

.trust-strip {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 12px 0 0;
  font-size: 12px;
  color: var(--warm-gray);
  max-width: 480px;
  margin: 0 auto;
}
.trust-strip span { display: flex; align-items: center; gap: 4px; }

/* ─── PRODUCT VISUAL ─── */
.product-visual {
  background: linear-gradient(180deg, var(--blush) 0%, var(--ivory-deep) 100%);
  padding: 36px 20px 40px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.product-visual img {
  max-width: 300px;
  margin: 0 auto 22px;
  filter: drop-shadow(0 16px 40px rgba(160,80,74,0.15));
}
.product-badge {
  display: inline-block;
  background: var(--white);
  border: 1px solid var(--blush-deep);
  border-radius: 10px;
  padding: 12px 22px;
  margin-bottom: 14px;
  box-shadow: 0 2px 12px var(--shadow);
}
.product-badge .name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 700; color: var(--ink);
}
.product-badge .sub {
  font-size: 11px; color: var(--rose); letter-spacing: 0.1em;
  text-transform: uppercase; margin-top: 3px; font-weight: 600;
}
.stat-pills { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.stat-pill {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 16px;
  text-align: center;
  box-shadow: 0 1px 6px var(--shadow);
}
.stat-pill .val { font-size: 20px; font-weight: 800; color: var(--rose); line-height: 1; }
.stat-pill .lbl { font-size: 11px; color: var(--warm-gray); margin-top: 3px; }
.media-logos {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.media-logos span { font-size: 11px; font-weight: 800; color: #B8ADA8; letter-spacing: 0.06em; text-transform: uppercase; }

/* ─── SECTION WRAPPERS ─── */
.section { padding: 52px 20px; }
.section.ivory { background: var(--ivory); }
.section.parchment { background: var(--ivory-deep); }
.section.blush-bg { background: var(--blush); }
.section.sage-bg { background: #F0F5F2; }

.section-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 8px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 4.5vw, 38px);
  font-weight: 700;
  line-height: 1.22;
  margin-bottom: 12px;
  color: var(--ink);
}
.section-title em { font-style: italic; color: var(--rose); }
.section-sub { font-size: 15px; color: var(--warm-gray); line-height: 1.65; margin-bottom: 28px; }
.inner { max-width: 680px; margin: 0 auto; }

/* ─── DIVIDER ─── */
.ornament {
  text-align: center;
  color: var(--blush-deep);
  font-size: 18px;
  letter-spacing: 6px;
  margin: 4px 0 20px;
}

/* ─── CHECKLIST ─── */
.checklist { display: flex; flex-direction: column; gap: 9px; margin-bottom: 22px; }
.check-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 16px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 9px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
  user-select: none;
  box-shadow: 0 1px 5px var(--shadow);
}
.check-item:hover { border-color: var(--rose-mid); box-shadow: 0 2px 10px rgba(160,80,74,0.1); }
.check-item.checked { border-color: var(--rose); background: var(--rose-light); }
.check-item .box {
  width: 22px; height: 22px;
  border: 2px solid var(--border);
  border-radius: 5px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  color: var(--rose);
  background: var(--white);
  transition: all 0.15s;
}
.check-item.checked .box { border-color: var(--rose); background: var(--rose); color: #fff; }
.check-item .text { font-size: 14px; font-weight: 500; color: var(--ink); line-height: 1.4; }
.check-item.checked .text { color: var(--rose); }

.symptom-result {
  background: var(--rose-light);
  border: 1.5px solid var(--blush-deep);
  border-left: 4px solid var(--rose);
  border-radius: 9px;
  padding: 16px 18px;
  font-size: 14px;
  color: var(--rose);
  line-height: 1.6;
  display: none;
  margin-bottom: 18px;
}
.symptom-result strong { font-weight: 700; font-size: 15px; display: block; margin-bottom: 4px; }
.symptom-result.show { display: block; }

/* ─── BIO BARS ─── */
.bio-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px var(--shadow);
}
.bio-title { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--warm-gray); margin-bottom: 22px; }
.bio-row { margin-bottom: 18px; }
.bio-label { display: flex; justify-content: space-between; font-size: 14px; font-weight: 600; margin-bottom: 6px; color: var(--ink); }
.bio-pct.good { color: var(--sage); }
.bio-pct.bad { color: var(--rose); }
.bio-track { height: 26px; background: var(--parchment); border-radius: 6px; overflow: hidden; }
.bio-fill { height: 100%; border-radius: 6px; display: flex; align-items: center; padding-left: 12px; font-size: 12px; font-weight: 700; color: #fff; }
.bio-fill.green { background: linear-gradient(90deg, #4E7060, #6A9A80); }
.bio-fill.red   { background: linear-gradient(90deg, var(--rose), var(--rose-mid)); }
.bio-fill.orange{ background: linear-gradient(90deg, #C87840, #D89858); }
.bio-note { font-size: 13px; color: var(--warm-gray); margin-top: 14px; line-height: 1.6; background: var(--ivory-deep); padding: 12px 14px; border-radius: 7px; }

/* ─── TESTIMONIALS ─── */
.testi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media(max-width:560px) { .testi-grid { grid-template-columns: 1fr; } }
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 2px 12px var(--shadow);
  transition: box-shadow 0.2s;
}
.testi-card:hover { box-shadow: 0 6px 24px rgba(160,80,74,0.12); }
.testi-stars { color: #D4904A; font-size: 14px; margin-bottom: 7px; letter-spacing: 2px; }
.testi-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px; font-weight: 600;
  color: var(--ink); margin-bottom: 8px; line-height: 1.35;
}
.testi-body { font-size: 14px; color: #5A4E48; line-height: 1.6; margin-bottom: 14px; }
.testi-meta { display: flex; align-items: center; gap: 10px; }
.testi-meta img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; border: 2px solid var(--blush-deep); }
.testi-meta .name { font-size: 13px; font-weight: 700; color: var(--ink); }
.testi-meta .verified { font-size: 11px; color: var(--sage); font-weight: 600; }

/* ─── INGREDIENTS ─── */
.ingredient-grid { display: flex; flex-direction: column; gap: 12px; }
.ingredient-item {
  display: flex;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--rose-mid);
  border-radius: var(--radius);
  padding: 18px;
  align-items: flex-start;
  box-shadow: 0 2px 10px var(--shadow);
  transition: box-shadow 0.2s, border-left-color 0.2s;
}
.ingredient-item:hover { box-shadow: 0 4px 20px rgba(160,80,74,0.12); border-left-color: var(--rose); }
.ingredient-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-weight: 700;
  color: var(--rose); line-height: 1;
  min-width: 34px; margin-top: 2px;
  opacity: 0.8;
}
.ingredient-body .name { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.ingredient-body .role { font-size: 12px; color: var(--rose); font-weight: 600; margin-bottom: 7px; letter-spacing: 0.02em; }
.ingredient-body .desc { font-size: 14px; color: var(--warm-gray); line-height: 1.6; }

/* ─── TIMELINE ─── */
.timeline { display: flex; gap: 12px; margin-top: 10px; }
@media(max-width:560px) { .timeline { flex-direction: column; } }
.timeline-item {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--rose-mid);
  border-radius: var(--radius);
  padding: 20px 16px;
  box-shadow: 0 2px 10px var(--shadow);
  text-align: center;
}
.timeline-item .phase {
  font-size: 10px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--rose); margin-bottom: 4px;
}
.timeline-item .phase-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; font-weight: 600; color: var(--ink);
  margin-bottom: 12px; line-height: 1.3;
}
.timeline-item .benefits { list-style: none; display: flex; flex-direction: column; gap: 6px; text-align: left; }
.timeline-item .benefits li {
  font-size: 13px; color: var(--warm-gray);
  display: flex; align-items: flex-start; gap: 7px; line-height: 1.4;
}
.timeline-item .benefits li::before { content: "✦"; color: var(--rose-mid); font-size: 10px; flex-shrink: 0; margin-top: 2px; }

/* ─── COMPARISON TABLE ─── */
.compare-wrap { overflow-x: auto; margin-top: 10px; border-radius: var(--radius); box-shadow: 0 2px 14px var(--shadow); }
.compare-table { width: 100%; border-collapse: collapse; font-size: 13px; min-width: 440px; }
.compare-table th {
  background: var(--ink);
  color: #fff;
  padding: 12px 10px;
  text-align: center;
  font-size: 12px; font-weight: 700;
}
.compare-table th:first-child { text-align: left; }
.compare-table th.win { background: var(--sage); }
.compare-table td { border: 1px solid var(--border); padding: 11px 10px; text-align: center; vertical-align: middle; background: var(--white); }
.compare-table td:first-child { text-align: left; font-weight: 600; font-size: 13px; color: var(--ink); }
.compare-table tr:nth-child(even) td { background: var(--ivory-deep); }
.compare-table .g { color: var(--sage); font-weight: 700; }
.compare-table .r { color: var(--rose); font-weight: 600; }

/* ─── FOUNDER ─── */
.founder-block {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  margin-top: 10px;
  box-shadow: 0 2px 14px var(--shadow);
}
.founder-block img {
  width: 96px; height: 96px;
  border-radius: 50%; object-fit: cover; flex-shrink: 0;
  border: 3px solid var(--blush-deep);
  box-shadow: 0 4px 14px rgba(160,80,74,0.15);
}
.founder-block .copy .f-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.founder-block .copy .f-sub { font-size: 12px; color: var(--rose); margin-bottom: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.founder-block .copy p { font-size: 14px; color: var(--warm-gray); line-height: 1.65; }
.founder-block .copy .sig {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 18px;
  color: var(--rose); margin-top: 12px;
}
@media(max-width:500px) { .founder-block { flex-direction: column; align-items: center; text-align: center; } }

/* ─── GUARANTEE ─── */
.guarantee-block {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  background: var(--white);
  border: 1.5px solid var(--blush-deep);
  border-top: 4px solid var(--amber);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 2px 14px var(--shadow);
}
.guarantee-block .seal { font-size: 54px; flex-shrink: 0; line-height: 1; }
.guarantee-block h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 700; margin-bottom: 8px; color: var(--ink);
}
.guarantee-block p { font-size: 14px; color: var(--warm-gray); line-height: 1.65; }
.guarantee-block .contact { font-size: 13px; margin-top: 12px; display: flex; gap: 14px; flex-wrap: wrap; }
.guarantee-block .contact a { font-weight: 700; color: var(--rose); text-decoration: underline; }
@media(max-width:500px) { .guarantee-block { flex-direction: column; align-items: center; text-align: center; } }

/* ─── FINAL BUNDLE SECTION ─── */
.final-cta {
  background: linear-gradient(160deg, var(--blush) 0%, var(--ivory-deep) 100%);
  padding: 52px 20px;
  border-top: 1px solid var(--border);
}

/* ─── BONUSES ─── */
.bonus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 10px; }
@media(max-width:480px) { .bonus-grid { grid-template-columns: 1fr; } }
.bonus-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  position: relative;
  box-shadow: 0 2px 10px var(--shadow);
}
.bonus-card .free-tag {
  position: absolute;
  top: -1px; right: 12px;
  background: var(--sage);
  color: #fff;
  font-size: 10px; font-weight: 800;
  padding: 3px 11px;
  border-radius: 0 0 8px 8px;
  letter-spacing: 0.06em;
}
.bonus-card .icon { font-size: 28px; margin-bottom: 10px; }
.bonus-card .b-title { font-family: 'Cormorant Garamond', serif; font-size: 17px; font-weight: 700; margin-bottom: 7px; color: var(--ink); }
.bonus-card .b-desc { font-size: 13px; color: var(--warm-gray); line-height: 1.55; }
.bonus-card .b-value { font-size: 12px; color: #ccc; margin-top: 9px; text-decoration: line-through; }

/* ─── FAQ ─── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 17px 0;
  font-size: 15px; font-weight: 600;
  cursor: pointer;
  gap: 12px;
  color: var(--ink);
  transition: color 0.15s;
}
.faq-q:hover { color: var(--rose); }
.faq-q .arrow { font-size: 20px; color: var(--rose-mid); flex-shrink: 0; transition: transform 0.2s; line-height: 1; }
.faq-item.open .faq-q .arrow { transform: rotate(45deg); }
.faq-a {
  font-size: 14px; color: var(--warm-gray);
  line-height: 1.7; padding-bottom: 18px; display: none;
}
.faq-item.open .faq-a { display: block; }

/* ─── PAYMENT BAR ─── */
.payment-bar {
  background: var(--parchment);
  border-top: 1px solid var(--border);
  padding: 18px 20px;
  text-align: center;
}
.payment-bar .cards { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.payment-bar .card-logo {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 5px 11px;
  font-size: 11px; font-weight: 700;
  color: var(--warm-gray);
}

/* ─── FOOTER ─── */ 
.site-footer { 
  background: #2A1F1A;
  color: #9A8E88;
  padding: 26px 20px 125px;
  font-size: 12px;
  line-height: 1.75;
  text-align: center;
}
.site-footer p { margin-bottom: 8px; }
.site-footer .links { display: flex; justify-content: center; gap: 18px; margin-top: 14px; flex-wrap: wrap; }
.site-footer .links a { color: #7A6E68; text-decoration: underline; }

/* ─── STICKY BOTTOM BAR ─── */
.sticky-cta {
  position: fixed;
  bottom: -90px;
  left: 0; right: 0;
  background: var(--white);
  border-top: 2px solid var(--blush-deep);
  padding: 11px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 99;
  transition: bottom 0.3s ease;
  box-shadow: 0 -4px 20px rgba(42,31,26,0.12);
}
.sticky-cta.show { bottom: 0; }
.sticky-cta p { font-size: 13px; color: var(--warm-gray); margin: 0; line-height: 1.4; }
.sticky-cta p strong { color: var(--ink); }
.sticky-cta a {
  background: var(--rose);
  color: #fff;
  font-size: 13px; font-weight: 800;
  padding: 11px 18px;
  border-radius: 8px;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 3px 12px rgba(160,80,74,0.3);
}
@media(max-width:400px) {
  .sticky-cta { flex-direction: column; text-align: center; }
  .sticky-cta a { width: 100%; text-align: center; }
}

/* ─── MOBILE GLOBAL ─── */
@media(max-width:600px) {
  .section { padding: 40px 16px; }
  .hero { padding: 36px 16px 28px; }
  body { font-size: 15px; }
}


.stick-btn{
    width: 15%;
        padding: 12px 22px;
} 

/* Bottom sticky bar button right side */
.bottom-sticky-bar,
.sticky-bar,
.claim-bar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* Claim button */
.bottom-sticky-bar a,
.sticky-bar a,
.claim-bar a {
    margin-left: auto;
}