/* ============================================================
   INSUVIT — css/style.css
   Color system: --tone-* tokens | Architecture: Section-scoped semantic
   Typography: Outfit (display) + Nunito (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Nunito:wght@400;500;600;700&display=swap');

/* ── TOKENS ── */
:root {
  --tone-main:       #16a37a;
  --tone-dark:       #0d7a5a;
  --tone-light:      #e4f7f0;
  --tone-pale:       #f0fdf8;
  --tone-support:    #5ecba8;
  --tone-cta:        #e85d35;
  --tone-cta-h:      #c94825;
  --tone-accent:     #f5b731;
  --tone-accent-bg:  #fff9ea;
  --tone-bg:         #f6fdfb;
  --tone-white:      #ffffff;
  --tone-text:       #18302a;
  --tone-muted:      #5c7a70;
  --tone-border:     #caeadb;
  --tone-shadow:     rgba(22,163,122,.13);
  --tone-shadow-lg:  rgba(22,163,122,.2);
  --tone-card-bg:    #ffffff;
  --tone-soft-blue:  #e8f4fd;
  --tone-coral-light:#fdf0ec;

  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  22px;
  --r-xl:  34px;
  --r-pill:100px;

  --fs-xs:  .75rem;
  --fs-sm:  .875rem;
  --fs-md:  1rem;
  --fs-lg:  1.125rem;
  --fs-xl:  1.375rem;
  --fs-2xl: 1.75rem;
  --fs-3xl: 2.25rem;
  --fs-4xl: 2.875rem;

  --fw-reg: 400;
  --fw-med: 500;
  --fw-semi:600;
  --fw-bold:700;
  --fw-xbold:800;

  --space-xs: 6px;
  --space-sm: 12px;
  --space-md: 20px;
  --space-lg: 32px;
  --space-xl: 52px;
  --space-2xl:80px;
  --space-3xl:110px;

  --max-w:   1180px;
  --transition: .25s ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Nunito', sans-serif;
  font-size: var(--fs-md);
  font-weight: var(--fw-reg);
  color: var(--tone-text);
  background: var(--tone-bg);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }

/* ── UTILS ── */
.wrap       { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.txt-center { text-align: center; }
.txt-muted  { color: var(--tone-muted); }
.visually-hidden { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 {
  font-family: 'Outfit', sans-serif;
  font-weight: var(--fw-bold);
  line-height: 1.25;
  color: var(--tone-text);
}
h1 { font-size: clamp(2rem, 5vw, var(--fs-4xl)); font-weight: var(--fw-xbold); }
h2 { font-size: clamp(1.6rem, 3.5vw, var(--fs-3xl)); }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-lg); }
p  { line-height: 1.75; }

.section-label {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: var(--fs-sm); font-weight: var(--fw-semi);
  color: var(--tone-main); letter-spacing: .06em; text-transform: uppercase;
  background: var(--tone-light); border-radius: var(--r-pill);
  padding: 5px 16px; margin-bottom: 16px;
}
.section-label::before {
  content: ''; width: 8px; height: 8px;
  background: var(--tone-main); border-radius: 50%;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--r-pill);
  font-family: 'Outfit', sans-serif; font-size: var(--fs-md); font-weight: var(--fw-semi);
  cursor: pointer; border: 2px solid transparent; transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--tone-cta); color: #fff; border-color: var(--tone-cta);
  box-shadow: 0 6px 20px rgba(232,93,53,.28);
}
.btn-primary:hover {
  background: var(--tone-cta-h); border-color: var(--tone-cta-h);
  transform: translateY(-2px); box-shadow: 0 10px 28px rgba(232,93,53,.36);
}
.btn-outline {
  background: transparent; color: var(--tone-main); border-color: var(--tone-main);
}
.btn-outline:hover {
  background: var(--tone-main); color: #fff;
}
.btn-lg { padding: 17px 44px; font-size: var(--fs-lg); }
.btn-sm { padding: 10px 22px; font-size: var(--fs-sm); }
.btn-icon svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── HEADER ── */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--tone-border);
  box-shadow: 0 2px 20px var(--tone-shadow);
}
.header-top-strip {
  background: var(--tone-main);
  color: #fff; text-align: center;
  padding: 7px 24px;
  font-size: var(--fs-sm); font-weight: var(--fw-med);
}
.header-top-strip a { color: #fff; text-decoration: underline; }
.header-main { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 24px; }
.logo-block { display: flex; align-items: center; gap: 12px; }
.logo-svg { width: 44px; height: 44px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: 'Outfit', sans-serif; font-size: 1.45rem;
  font-weight: var(--fw-xbold); color: var(--tone-main); letter-spacing: -.02em;
}
.logo-sub { font-size: var(--fs-xs); color: var(--tone-muted); font-weight: var(--fw-med); letter-spacing: .04em; }
.header-nav { display: flex; align-items: center; gap: 28px; }
.header-nav a {
  font-size: var(--fs-sm); font-weight: var(--fw-semi); color: var(--tone-text);
  transition: color var(--transition);
}
.header-nav a:hover { color: var(--tone-main); }
.header-phone {
  display: flex; align-items: center; gap: 8px;
  font-size: var(--fs-sm); font-weight: var(--fw-semi); color: var(--tone-text);
}
.header-phone svg { color: var(--tone-main); }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.menu-toggle svg { width: 24px; height: 24px; color: var(--tone-text); }

/* ── HERO ── */
.hero-section {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #f0fdf8 0%, #e8f9f2 50%, #fef9ee 100%);
  padding: var(--space-3xl) 0 var(--space-2xl);
}
.hero-section::before {
  content: ''; position: absolute;
  top: -80px; right: -120px; width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(94,203,168,.18) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero-section::after {
  content: ''; position: absolute;
  bottom: -60px; left: -80px; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,183,49,.14) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1.55fr 1fr;
  gap: 48px; align-items: center; position: relative; z-index: 1;
}
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 20px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--tone-white); border: 1px solid var(--tone-border);
  border-radius: var(--r-pill); padding: 5px 12px;
  font-size: var(--fs-xs); font-weight: var(--fw-semi); color: var(--tone-muted);
  box-shadow: 0 2px 10px var(--tone-shadow);
  white-space: nowrap;
}
.hero-badge svg { width: 13px; height: 13px; color: var(--tone-main); flex-shrink: 0; }
.hero-content h1 {
  font-size: clamp(1.1rem, 2.15vw, 1.55rem);
  white-space: nowrap;
  letter-spacing: -0.018em;
  line-height: 1.2;
  margin-bottom: 16px;
}
.hero-content h1 em { font-style: normal; color: var(--tone-main); }
.hero-lead {
  font-size: var(--fs-lg); color: var(--tone-muted); line-height: 1.7;
  margin-bottom: 28px; max-width: 500px;
}
.hero-cta-row {
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap; margin-bottom: 16px;
}
.hero-note {
  display: flex; align-items: center; gap: 10px;
  font-size: var(--fs-xs); color: var(--tone-muted);
  font-weight: var(--fw-med);
}
.hero-note-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--tone-border); flex-shrink: 0;
}
.hero-image-panel { position: relative; display: flex; justify-content: center; }
.hero-img-frame {
  position: relative; border-radius: var(--r-xl);
  overflow: hidden; box-shadow: 0 20px 60px var(--tone-shadow-lg);
  width: 100%; max-width: 480px;
}
.hero-img-frame img { width: 100%; height: 420px; object-fit: cover; }
.hero-product-pin {
  position: absolute; bottom: 24px; left: -24px;
  background: var(--tone-white); border-radius: var(--r-lg);
  padding: 14px 18px; display: flex; align-items: center; gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12); z-index: 2;
}
.hero-product-pin img { width: 56px; height: 56px; object-fit: contain; border-radius: var(--r-sm); }
.pin-label { font-size: var(--fs-xs); color: var(--tone-muted); margin-bottom: 2px; }
.pin-name  { font-family: 'Outfit', sans-serif; font-size: var(--fs-sm); font-weight: var(--fw-bold); color: var(--tone-text); }
.pin-price { font-family: 'Outfit', sans-serif; font-size: var(--fs-md); font-weight: var(--fw-xbold); color: var(--tone-cta); margin-top: 2px; }

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--tone-white);
  border-top: 1px solid var(--tone-border);
  border-bottom: 1px solid var(--tone-border);
  padding: var(--space-lg) 0;
}
.trust-strip-inner {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md); align-items: center;
}
.trust-item { display: flex; align-items: center; gap: 16px; padding: 10px 20px; }
.trust-item + .trust-item { border-left: 1px solid var(--tone-border); }
.trust-icon {
  width: 50px; height: 50px; flex-shrink: 0;
  background: var(--tone-light); border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center; color: var(--tone-main);
}
.trust-icon svg { width: 26px; height: 26px; }
.trust-title { font-family: 'Outfit', sans-serif; font-weight: var(--fw-bold); font-size: var(--fs-md); color: var(--tone-text); margin-bottom: 2px; }
.trust-desc  { font-size: var(--fs-xs); color: var(--tone-muted); }

/* ── GENERIC SECTION ── */
.section-pad { padding: var(--space-3xl) 0; }
.section-pad-sm { padding: var(--space-2xl) 0; }
.section-head { text-align: center; margin-bottom: var(--space-xl); }
.section-head p { font-size: var(--fs-lg); color: var(--tone-muted); max-width: 620px; margin: 12px auto 0; }
.bg-pale    { background: var(--tone-pale); }
.bg-white   { background: var(--tone-white); }
.bg-mint    { background: var(--tone-light); }
.bg-accent  { background: var(--tone-accent-bg); }

/* ── BENEFIT CARDS ── */
.benefit-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
.benefit-card {
  background: var(--tone-card-bg); border-radius: var(--r-lg);
  padding: var(--space-lg) var(--space-md);
  border: 1px solid var(--tone-border);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column; gap: 12px;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px var(--tone-shadow-lg);
}
.benefit-card-icon {
  width: 56px; height: 56px;
  background: var(--tone-light); border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--tone-main);
}
.benefit-card-icon svg { width: 28px; height: 28px; }
.benefit-card h4 { font-size: var(--fs-md); font-weight: var(--fw-bold); }
.benefit-card p  { font-size: var(--fs-sm); color: var(--tone-muted); line-height: 1.65; }

/* ── AUDIENCE SECTION ── */
.audience-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-xl); align-items: start;
}
.audience-images { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-sm); }
.aud-img {
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: 0 8px 28px var(--tone-shadow);
}
.aud-img img { width: 100%; height: 200px; object-fit: cover; transition: transform .4s ease; }
.aud-img:hover img { transform: scale(1.04); }
.aud-img:first-child { grid-column: span 2; }
.aud-img:first-child img { height: 240px; }
.audience-text { padding-top: var(--space-md); }
.audience-text p { color: var(--tone-muted); margin-bottom: var(--space-md); }
.checklist { display: flex; flex-direction: column; gap: 12px; margin-bottom: var(--space-lg); }
.check-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 16px; background: var(--tone-pale);
  border-radius: var(--r-md); border-left: 3px solid var(--tone-main);
}
.check-icon { color: var(--tone-main); flex-shrink: 0; margin-top: 2px; }
.check-icon svg { width: 18px; height: 18px; }
.check-text { font-size: var(--fs-sm); font-weight: var(--fw-med); color: var(--tone-text); }

/* ── HOW IT WORKS ── */
.steps-track {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md); position: relative;
}
.steps-track::before {
  content: ''; position: absolute;
  top: 28px; left: 10%; right: 10%;
  height: 2px; background: var(--tone-border); z-index: 0;
}
.step-card {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 14px;
}
.step-num {
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--tone-main); color: #fff;
  font-family: 'Outfit', sans-serif; font-size: var(--fs-xl); font-weight: var(--fw-xbold);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px var(--tone-shadow-lg);
}
.step-card h4 { font-size: var(--fs-md); }
.step-card p  { font-size: var(--fs-sm); color: var(--tone-muted); }

/* ── PRODUCT SPOTLIGHT ── */
.product-spotlight-layout {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: var(--space-xl); align-items: center;
}
.product-img-wrap {
  position: relative; display: flex; justify-content: center; align-items: center;
  background: var(--tone-light); border-radius: var(--r-xl);
  padding: var(--space-xl); min-height: 420px;
}
.product-img-wrap::before {
  content: ''; position: absolute; inset: 0;
  border-radius: var(--r-xl);
  background: radial-gradient(ellipse at 60% 40%, rgba(94,203,168,.2) 0%, transparent 65%);
}
.product-img-wrap img { max-height: 340px; object-fit: contain; position: relative; z-index: 1; drop-shadow: 0 20px 50px rgba(0,0,0,.15); }
.product-badge-ribbon {
  position: absolute; top: 20px; right: 20px; z-index: 2;
  background: var(--tone-accent); color: var(--tone-text);
  border-radius: var(--r-pill); padding: 8px 18px;
  font-family: 'Outfit', sans-serif; font-size: var(--fs-sm); font-weight: var(--fw-bold);
}
.product-info h2 { margin-bottom: var(--space-sm); }
.product-info > p { color: var(--tone-muted); margin-bottom: var(--space-lg); font-size: var(--fs-lg); }
.feature-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: var(--space-lg); }
.feature-item {
  display: flex; align-items: center; gap: 12px;
  font-size: var(--fs-sm); font-weight: var(--fw-med);
}
.feature-dot {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  background: var(--tone-light); display: flex; align-items: center; justify-content: center;
  color: var(--tone-main);
}
.feature-dot svg { width: 14px; height: 14px; }
.product-price-row {
  display: flex; align-items: center; gap: var(--space-md);
  margin-bottom: var(--space-lg); flex-wrap: wrap;
}
.price-tag {
  font-family: 'Outfit', sans-serif; font-size: var(--fs-3xl); font-weight: var(--fw-xbold);
  color: var(--tone-cta);
}
.price-label { font-size: var(--fs-sm); color: var(--tone-muted); }
.stock-note {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--tone-light); border-radius: var(--r-pill);
  padding: 5px 14px; font-size: var(--fs-xs); font-weight: var(--fw-semi); color: var(--tone-main);
}
.stock-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--tone-main); animation: blink 1.4s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.4} }

/* ── LIFESTYLE GRID ── */
.lifestyle-cards-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
.lifestyle-card {
  border-radius: var(--r-lg); overflow: hidden;
  background: var(--tone-card-bg);
  border: 1px solid var(--tone-border);
  box-shadow: 0 4px 18px var(--tone-shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.lifestyle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px var(--tone-shadow-lg);
}
.lifestyle-card-img { height: 190px; overflow: hidden; }
.lifestyle-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.lifestyle-card:hover .lifestyle-card-img img { transform: scale(1.06); }
.lifestyle-card-body { padding: 18px; }
.lifestyle-card-body h4 { font-size: var(--fs-md); margin-bottom: 6px; }
.lifestyle-card-body p  { font-size: var(--fs-xs); color: var(--tone-muted); line-height: 1.6; }

/* ── REVIEWS ── */
.reviews-layout {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.review-card {
  background: var(--tone-card-bg); border-radius: var(--r-lg);
  padding: var(--space-lg); border: 1px solid var(--tone-border);
  display: flex; flex-direction: column; gap: 14px;
  transition: box-shadow var(--transition);
}
.review-card:hover { box-shadow: 0 10px 36px var(--tone-shadow-lg); }
.stars { display: flex; gap: 3px; color: var(--tone-accent); }
.stars svg { width: 17px; height: 17px; }
.review-text { font-size: var(--fs-sm); color: var(--tone-text); font-style: italic; line-height: 1.75; flex: 1; }
.review-text::before { content: '"'; }
.review-text::after  { content: '"'; }
.reviewer-row { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--tone-light); display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif; font-weight: var(--fw-bold); font-size: var(--fs-md); color: var(--tone-main);
  flex-shrink: 0;
}
.reviewer-name { font-weight: var(--fw-bold); font-size: var(--fs-sm); color: var(--tone-text); }
.reviewer-meta { font-size: var(--fs-xs); color: var(--tone-muted); }

/* ── ORDER FORM ── */
.order-section { background: linear-gradient(135deg, #f0fdf8 0%, #e8f4ff 100%); }
.order-layout {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: var(--space-xl); align-items: start;
}
.order-info-col h2 { margin-bottom: var(--space-md); }
.order-info-col p  { color: var(--tone-muted); margin-bottom: var(--space-lg); }
.order-perks { display: flex; flex-direction: column; gap: 14px; margin-bottom: var(--space-xl); }
.order-perk {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px; background: var(--tone-white);
  border-radius: var(--r-md); border: 1px solid var(--tone-border);
  box-shadow: 0 2px 12px var(--tone-shadow);
}
.order-perk-icon {
  width: 42px; height: 42px; border-radius: var(--r-sm);
  background: var(--tone-light); display: flex; align-items: center; justify-content: center;
  color: var(--tone-main); flex-shrink: 0;
}
.order-perk-icon svg { width: 22px; height: 22px; }
.order-perk-text strong { display: block; font-weight: var(--fw-bold); font-size: var(--fs-sm); color: var(--tone-text); }
.order-perk-text span  { font-size: var(--fs-xs); color: var(--tone-muted); }
.order-price-card {
  background: var(--tone-main); border-radius: var(--r-lg);
  padding: var(--space-md) var(--space-lg); color: #fff; margin-bottom: var(--space-lg);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.opc-label { font-size: var(--fs-sm); opacity: .85; }
.opc-price { font-family: 'Outfit', sans-serif; font-size: var(--fs-3xl); font-weight: var(--fw-xbold); }
.opc-sub   { font-size: var(--fs-xs); opacity: .7; }

.form-card {
  background: var(--tone-card-bg); border-radius: var(--r-xl);
  padding: var(--space-xl); border: 1px solid var(--tone-border);
  box-shadow: 0 12px 40px var(--tone-shadow);
}
.form-card h3 { margin-bottom: var(--space-lg); font-size: var(--fs-xl); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-sm); }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: var(--space-sm); }
.form-field label {
  font-size: var(--fs-sm); font-weight: var(--fw-semi); color: var(--tone-text);
}
.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px 16px; border: 1.5px solid var(--tone-border);
  border-radius: var(--r-md); font-size: var(--fs-sm);
  color: var(--tone-text); background: var(--tone-pale);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none; border-color: var(--tone-main);
  box-shadow: 0 0 0 3px rgba(22,163,122,.15);
}
.form-field input::placeholder { color: #aaa; }
.form-submit {
  width: 100%; margin-top: 6px;
  padding: 12px 24px;
  font-size: var(--fs-md);
  gap: 7px;
}
.form-submit svg { width: 15px; height: 15px; flex-shrink: 0; }
.form-privacy { font-size: var(--fs-xs); color: var(--tone-muted); margin-top: 10px; text-align: center; }
.form-privacy a { color: var(--tone-main); text-decoration: underline; }

/* ── FAQ ── */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--tone-card-bg); border: 1px solid var(--tone-border);
  border-radius: var(--r-md); overflow: hidden;
  box-shadow: 0 2px 12px var(--tone-shadow);
}
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; cursor: pointer;
  font-family: 'Outfit', sans-serif; font-size: var(--fs-md); font-weight: var(--fw-semi);
  color: var(--tone-text); user-select: none; gap: 14px;
  background: none; border: none; width: 100%; text-align: left;
}
.faq-question:hover { color: var(--tone-main); }
.faq-chevron {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--tone-light); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: transform var(--transition), background var(--transition);
  color: var(--tone-main);
}
.faq-chevron svg { width: 14px; height: 14px; }
.faq-item.open .faq-chevron { transform: rotate(180deg); background: var(--tone-main); color: #fff; }
.faq-answer {
  display: none; padding: 0 22px 18px;
  font-size: var(--fs-sm); color: var(--tone-muted); line-height: 1.75;
}
.faq-item.open .faq-answer { display: block; }

/* ── DISCLAIMER NOTE ── */
.disclaimer-note {
  background: var(--tone-accent-bg); border: 1px solid rgba(245,183,49,.4);
  border-radius: var(--r-md); padding: var(--space-md) var(--space-lg);
  font-size: var(--fs-sm); color: var(--tone-muted); text-align: center;
  max-width: 860px; margin: 0 auto;
}
.disclaimer-note strong { color: var(--tone-text); }

/* ── CONTACT STRIP ── */
.contact-section { background: var(--tone-light); }
.contact-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-lg); flex-wrap: wrap;
}
.contact-tagline h3 { margin-bottom: 6px; }
.contact-tagline p  { color: var(--tone-muted); font-size: var(--fs-sm); max-width: 440px; }
.contact-details { display: flex; flex-direction: column; gap: 10px; }
.contact-line {
  display: flex; align-items: center; gap: 10px;
  font-size: var(--fs-sm); font-weight: var(--fw-med); color: var(--tone-text);
}
.contact-line svg { color: var(--tone-main); width: 18px; height: 18px; flex-shrink: 0; }

/* ── FOOTER ── */
.site-footer {
  background: var(--tone-text); color: rgba(255,255,255,.75);
  padding: var(--space-xl) 0 var(--space-lg);
}
.footer-top {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: var(--space-xl); padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo-name { color: #5ecba8; }
.footer-brand .logo-sub  { color: rgba(255,255,255,.5); }
.footer-brand p { font-size: var(--fs-sm); margin-top: var(--space-sm); line-height: 1.7; }
.footer-col h5 {
  font-family: 'Outfit', sans-serif; font-size: var(--fs-sm); font-weight: var(--fw-bold);
  color: #fff; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col li a { font-size: var(--fs-sm); color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer-col li a:hover { color: var(--tone-support); }
.footer-col .contact-line { color: rgba(255,255,255,.65); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px; padding-top: var(--space-lg);
  font-size: var(--fs-xs); color: rgba(255,255,255,.45);
}
.footer-bottom a { color: rgba(255,255,255,.55); }
.footer-bottom a:hover { color: var(--tone-support); }

/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--tone-white);
  border-top: 2px solid var(--tone-main);
  box-shadow: 0 -6px 30px rgba(0,0,0,.12);
  padding: 20px 0;
  transform: translateY(100%);
  transition: transform .4s ease;
}
#cookie-banner.visible { transform: translateY(0); }
.cookie-inner {
  display: flex; align-items: center; gap: 24px;
  flex-wrap: wrap; justify-content: space-between;
}
.cookie-text { font-size: var(--fs-sm); color: var(--tone-muted); flex: 1; min-width: 220px; }
.cookie-text a { color: var(--tone-main); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity .5s ease, transform .5s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .benefit-cards-grid,
  .lifestyle-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-track { grid-template-columns: repeat(2, 1fr); }
  .steps-track::before { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hero-content h1 {
    white-space: normal;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
  }
}
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-content h1 {
    white-space: normal;
    font-size: clamp(1.6rem, 5vw, 2.2rem);
    letter-spacing: -.01em;
  }
  .hero-note { justify-content: center; }
  .hero-badges { justify-content: center; }
  .hero-cta-row { justify-content: center; }
  .hero-lead { max-width: 100%; }
  .hero-product-pin { left: 10px; bottom: 10px; }
  .trust-strip-inner { grid-template-columns: 1fr; }
  .trust-item + .trust-item { border-left: none; border-top: 1px solid var(--tone-border); }
  .audience-layout  { grid-template-columns: 1fr; }
  .product-spotlight-layout { grid-template-columns: 1fr; }
  .order-layout     { grid-template-columns: 1fr; }
  .reviews-layout   { grid-template-columns: 1fr; }
  .header-nav       { display: none; }
  .header-nav.open  { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #fff; padding: 20px 24px; border-bottom: 1px solid var(--tone-border); box-shadow: 0 8px 24px var(--tone-shadow); }
  .menu-toggle      { display: flex; }
  .site-header .wrap { position: relative; }
  .footer-top { grid-template-columns: 1fr; }
}
@media (max-width: 580px) {
  .benefit-cards-grid,
  .lifestyle-cards-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  .hero-img-frame img { height: 280px; }
}

/* ── LEGAL PAGES ── */
.legal-page-wrap { max-width: 780px; margin: 60px auto; padding: 0 24px; }
.legal-page-wrap h1 { font-size: var(--fs-2xl); margin-bottom: 8px; }
.legal-date { color: var(--tone-muted); font-size: var(--fs-sm); margin-bottom: var(--space-xl); }
.legal-page-wrap h2 { font-size: var(--fs-xl); margin: var(--space-lg) 0 var(--space-sm); color: var(--tone-main); }
.legal-page-wrap p  { margin-bottom: var(--space-sm); color: var(--tone-muted); }
.legal-page-wrap ul { margin: var(--space-sm) 0 var(--space-sm) var(--space-lg); list-style: disc; }
.legal-page-wrap li { margin-bottom: 6px; color: var(--tone-muted); font-size: var(--fs-sm); }
.legal-page-wrap a  { color: var(--tone-main); text-decoration: underline; }

/* ── SUCCESS PAGE ── */
.success-hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--tone-pale) 0%, var(--tone-light) 100%);
  padding: 40px 24px; text-align: center;
}
.success-card {
  background: var(--tone-white); border-radius: var(--r-xl);
  padding: 56px 48px; max-width: 540px; width: 100%;
  box-shadow: 0 20px 60px var(--tone-shadow-lg);
}
.success-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--tone-light); color: var(--tone-main);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--space-lg);
}
.success-icon svg { width: 40px; height: 40px; }
