/* ==========================================
   FloraVita — Organic Minimalist Redesign (Global)
   ========================================== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Inter:wght@300;400;600&display=swap');

:root {
  --bg: #F7F4EF;
  --text: #1C1C1A;
  --muted: #6B6B5F;
  --accent1: #2D5016;
  --accent2: #8BAF47;
  --border: #E0DAD0;
  
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
  
  --shadow-img: 0 20px 60px rgba(0,0,0,0.08);
  --radius: 2px;
  --maxw: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 300;
  color: var(--text);
  background-color: var(--bg);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
  -webkit-font-smoothing: antialiased;
  padding-bottom: 76px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 400; color: var(--text); line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 7vw, 4.5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: 1.5rem; }
p { margin-bottom: 1em; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section-pad { padding: clamp(60px, 10vw, 120px) 0; }

.muted { color: var(--muted); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  min-height: 56px; padding: 16px 32px; border-radius: var(--radius);
  font-family: var(--font-body); font-weight: 400; font-size: 16px;
  transition: all 0.3s ease; white-space: nowrap; cursor: pointer;
}
.btn-primary, .btn-terracotta { background: var(--accent1); color: #fff; padding: 18px 48px; }
.btn-primary:hover, .btn-terracotta:hover { background: var(--text); }
.btn-secondary { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-secondary:hover { border-color: var(--text); }
.btn-block { width: 100%; }

/* Form inputs & general elements */
input, textarea, select {
  font-family: var(--font-body); font-size: 16px; padding: 12px;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: transparent; color: var(--text); width: 100%;
}
input:focus, textarea:focus { outline: none; border-color: var(--accent1); }
label { display: block; font-size: 14px; margin-bottom: 8px; color: var(--muted); }
.field { margin-bottom: 24px; }

/* Subpage headers */
.page-header { text-align: center; padding: 60px 0; border-bottom: 1px solid var(--border); }
.page-header h1 { font-style: italic; margin-bottom: 16px; }

/* Box / Card styles */
.box, .card {
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; background: #fff;
}

/* Legal/Text Pages */
.legal-content { max-width: 800px; margin: 0 auto; padding: 60px 0; }
.legal-content h2 { font-size: 24px; margin-top: 40px; margin-bottom: 16px; }
.legal-content p, .legal-content li { font-size: 16px; color: var(--muted); }

/* Navigation */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247,244,239,0.85); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
.brand { font-family: var(--font-body); font-size: 14px; letter-spacing: 0.2em; font-weight: 300; color: var(--text); text-transform: uppercase; }

/* Footer */
footer { background: #1C1C1A; color: #fff; padding: 80px 0 40px; }
.foot-brand-name { font-family: var(--font-body); font-size: 16px; letter-spacing: 0.3em; font-weight: 300; text-transform: uppercase; display: block; margin-bottom: 24px; }
footer a { color: #fff; font-size: 14px; opacity: 0.8; transition: opacity 0.3s; }
footer a:hover { opacity: 1; }

.checkout-card { background: transparent; border: 1px solid var(--border); padding: 24px; border-radius: var(--radius); }
.trust-card { background: transparent; }


/* --- SECTION HEAD --- */
.section-head {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.section-head .eyebrow {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent1);
  margin-bottom: 0.75rem;
}

/* --- BENEFITS / FEATURES --- */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}
.benefit-row {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.benefit-row:last-child {
  border-bottom: none;
}
.benefit-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--border);
  line-height: 1;
}
.benefit-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  font-family: var(--font-body);
}
.benefit-content p {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
}

/* --- INGREDIENTS (SPLIT) --- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 768px) {
  .split {
    grid-template-columns: 1fr;
  }
}
.ing-info .eyebrow {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent1);
  margin-bottom: 0.75rem;
}

/* --- USAGE --- */
.usage-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 2rem;
  scrollbar-width: none;
}
.usage-scroll::-webkit-scrollbar {
  display: none;
}
.usage-card {
  flex: 0 0 300px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.usage-card .scene {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.usage-card .scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.usage-card:hover .scene img {
  transform: scale(1.05);
}
.usage-label {
  padding: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text);
  border-top: 1px solid var(--border);
}
.usage-label small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

/* --- COMPARE --- */
.compare-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .compare-container {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
}
.compare-col h3 {
  margin-bottom: 2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
}
.compare-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  border-bottom: 1px dashed #eee;
  padding-bottom: 0.5rem;
}
.compare-label {
  color: var(--muted);
}
.compare-val {
  font-weight: 600;
  color: var(--text);
}

/* --- PRODUCT SECTION (MISSING FIXES) --- */
.product-section {
  padding: 6rem 0;
  background-color: var(--bg);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.product-gallery-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.product-bottle-anim {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  transition: transform 0.4s ease;
}

.product-bottle-anim:hover {
  transform: scale(1.03);
}

.product-info {
  display: flex;
  flex-direction: column;
}

.product-info .eyebrow {
  margin-bottom: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent1);
  font-size: 0.85rem;
}

.product-info h2 {
  font-size: 2.5rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.price-row {
  margin: 1rem 0;
}

.price {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
}

/* Bullets */
.product-bullets {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.product-bullets li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text);
}

.prod-leaf {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: var(--accent1);
}

/* Quantity */
.qty-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}

.qty button {
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty button:hover {
  background: var(--bg);
}

.qty input {
  width: 40px;
  height: 40px;
  text-align: center;
  border: none;
  font-size: 1rem;
  font-family: inherit;
  color: var(--text);
  pointer-events: none;
  background: transparent;
}

/* CTA */
.product-cta {
  margin-bottom: 1rem;
}
.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

/* Shipping Note */
.shipping-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

/* Accordion */
.accordion {
  margin-top: 2rem;
  border-top: 1px solid var(--border);
}

.acc-item {
  border-bottom: 1px solid var(--border);
}

.acc-trigger {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1rem 0;
  font-size: 1rem;
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.acc-trigger .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.acc-item.open .acc-trigger .arrow {
  transform: rotate(180deg);
}

.acc-content {
  display: none;
  padding-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
}

.acc-content p {
  margin: 0;
}

.acc-item.open .acc-content {
  display: block;
}

/* End Missing CSS */

/* --- COMPACT FOOTER FIX --- */
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 4rem;
}

.foot-top {
  flex: 1 1 300px;
  max-width: 400px;
}

.foot-links-grid {
  flex: 2 1 500px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.foot-links-grid h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.foot-links-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.foot-links-grid a {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  transition: color 0.3s ease;
  text-decoration: none;
}

.foot-links-grid a:hover {
  color: #fff;
}

.foot-disclaimer {
  width: 100%;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

.foot-bottom {
  width: 100%;
}

@media (max-width: 768px) {
  .foot-links-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 500px) {
  .foot-links-grid {
    grid-template-columns: 1fr;
  }
}

/* --- STICKY MOBILE CTA BAR --- */
.sticky-mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(247,244,239,0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 90;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.05);
}

.sticky-price {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}

.sticky-sub {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

.sticky-mobile .btn {
  padding: 0.75rem 1.5rem;
  min-height: auto;
  font-size: 0.95rem;
}

@media (min-width: 901px) {
  .sticky-mobile {
    display: none !important;
  }
}

/* --- ALIGNMENT FIXES --- */
.text-center { text-align: center; }
.final-cta { text-align: center; }
.final-cta .btn { margin: 0 auto; }

/* --- CHECKOUT GRID --- */
.checkout-shell { background: var(--bg); }
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 900px) {
  .checkout-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.checkout-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}
@media (max-width: 600px) {
  .checkout-card { padding: 1.5rem; }
}

.field-row {
  display: flex;
  gap: 1.5rem;
}
.field-row .field { flex: 1; }
@media (max-width: 600px) {
  .field-row { flex-direction: column; gap: 0; }
}

.secure-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 1rem;
}

.sum-product {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.sum-product .img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #fff;
  overflow: hidden;
}
.sum-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}
.sum-line.total {
  font-weight: 600;
  font-size: 1.25rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: 1rem;
}
.discount-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.discount-row input {
  padding: 0.75rem;
  font-size: 0.95rem;
  flex: 1;
}
.discount-row button {
  background: var(--text);
  color: #fff;
  padding: 0 1.25rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
}

/* Payment Method Styles */
.pay-method-label {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  background: #fff;
  transition: all 0.3s;
}
.pay-method-label:hover {
  background: var(--bg);
}
.pay-method-label.active {
  border-color: var(--accent1);
  background: rgba(45, 80, 22, 0.03);
  box-shadow: 0 0 0 1px var(--accent1);
}
.pay-method-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.cc-form {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-top: none;
  background: rgba(0,0,0,0.015);
  border-radius: 0 0 var(--radius) var(--radius);
  margin-top: -12px;
  margin-bottom: 10px;
  display: none;
}
.cc-form.active {
  display: block;
}

/* Steps */
.steps {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.step .n {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}
.step.active {
  color: var(--text);
  font-weight: 600;
}
.step.active .n {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}

/* --- RADIO & CHECKBOX FIXES --- */
input[type="radio"], input[type="checkbox"] {
  width: auto;
  padding: 0;
  margin: 0;
  display: inline-block;
}

/* --- SUCCESS BANNER --- */
.success-banner {
  background: var(--accent1);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  display: none;
  margin-bottom: 24px;
}
.success-banner.active {
  display: block;
}

/* --- TOPBAR --- */
.topbar {
  background: #1C1C1A;
  color: #fff;
  padding: 8px 20px;
  font-size: 13px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  z-index: 200;
  position: relative;
}
.topbar .dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent2);
}
.topbar-note {
  color: rgba(255,255,255,0.6);
}
@media (max-width: 768px) {
  .topbar {
    font-size: 11px;
    padding: 6px 12px;
  }
  .topbar .dot { display: none; }
  .topbar-note { display: block; width: 100%; margin-top: 2px; }
}

/* --- NAV --- */
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { font-size: 14px; font-weight: 300; color: var(--text); opacity: 0.8; transition: opacity 0.2s; }
.nav-links a:hover { opacity: 1; }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.btn-sm { min-height: auto; padding: 10px 20px; font-size: 14px; }
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(247,244,239,0.97); padding: 1.5rem; border-bottom: 1px solid var(--border); gap: 1.25rem; }
  .nav-links.open { display: flex; }
  .menu-toggle { display: flex; }
}
@media (min-width: 769px) { .menu-toggle { display: none; } }

/* --- HERO --- */
.hero { position: relative; overflow: hidden; }
.hero-bg-svg {
  position: absolute; top: 50%; right: 5%; transform: translateY(-50%);
  width: 420px; height: 420px;
  pointer-events: none; opacity: 0.12;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center; min-height: 70vh;
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; min-height: auto; }
  .hero-visual { order: -1; max-width: 260px; margin: 0 auto; }
}
.hero-copy { position: relative; z-index: 1; }
.hero-visual { position: relative; z-index: 1; display: flex; justify-content: center; }
.hero-visual img { max-height: 560px; width: auto; max-width: 100%; object-fit: contain; }
.hero-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.hero-tags span { font-size: 12px; font-weight: 300; color: var(--muted); letter-spacing: 0.05em; }
.hero-copy h1 { margin-bottom: 1.25rem; }
.hero-copy .accent { color: var(--accent1); font-style: italic; }
.hero-sub { font-size: 1rem; color: var(--muted); max-width: 480px; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-direction: column; gap: 0.75rem; max-width: 340px; }
.btn-microtext { display: block; font-size: 12px; color: var(--muted); margin-top: 6px; text-align: center; }

/* --- DISCLAIMER --- */
.disclaimer { font-size: 12px; color: var(--muted); line-height: 1.5; }

/* --- MARQUEE --- */
.marquee { overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 14px 0; }
.marquee-track { display: flex; gap: 3rem; animation: marquee 30s linear infinite; white-space: nowrap; width: max-content; }
.marquee-track span { font-size: 13px; color: var(--muted); flex-shrink: 0; }
.star { color: var(--accent1); margin-left: 0.25rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* --- BIG CTA --- */
.bigcta {
  text-align: center; max-width: 640px; margin: 0 auto;
  padding: clamp(40px, 8vw, 80px) clamp(24px, 5vw, 60px);
  border: 1px solid var(--border); border-radius: var(--radius);
}
.bigcta h2 { margin-bottom: 1rem; font-style: italic; }
.bigcta p { color: var(--muted); margin-bottom: 1.5rem; }
.bigcta .btn { margin: 0 auto; display: inline-flex; }
.bigcta .eyebrow { display: flex; justify-content: center; margin-bottom: 0.75rem; }

/* --- COOKIE BANNER --- */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: var(--text); color: #fff; padding: 14px 24px;
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; font-size: 13px; flex-wrap: wrap;
}
#cookie-banner a { color: var(--accent2); text-decoration: underline; }
#cookie-banner button {
  background: var(--accent2); color: var(--text); border: none;
  padding: 8px 18px; border-radius: var(--radius); font-size: 13px;
  font-family: inherit; cursor: pointer; white-space: nowrap;
}

/* --- REVEAL ANIMATION --- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* --- FAQ WRAP --- */
.faq-wrap { max-width: 800px; margin: 0 auto; border-top: 1px solid var(--border); }

/* --- FINAL CTA --- */
.final-cta { text-align: center; }
.final-cta .btn { margin: 0 auto; }
