/* ============================================================
   GLYCO BALANCE — style.css
   Auto-selected: Section-scoped semantic CSS, Soft Green/Pastel palette
   Fonts: Cormorant Garamond (display) + Nunito (body)
   ============================================================ */

/* ── TOKENS ── */
:root {
  --tone-main:        #2b7a4b;
  --tone-main-dark:   #1a5435;
  --tone-support:     #5ab87a;
  --tone-cta:         #28a060;
  --tone-cta-hover:   #1f834e;
  --tone-accent:      #b8e8cb;
  --tone-pastel:      #e8f7ef;
  --tone-pastel-alt:  #d4f0e1;
  --tone-bg:          #f5fbf7;
  --tone-bg-alt:      #edf7f1;
  --tone-white:       #ffffff;
  --tone-text:        #1a2e24;
  --tone-muted:       #55776a;
  --tone-border:      #c0dfd0;
  --tone-shadow:      rgba(43,122,75,0.12);
  --tone-shadow-deep: rgba(26,84,53,0.18);

  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   28px;
  --radius-pill: 100px;

  --ff-display: 'Cormorant Garamond', serif;
  --ff-body:    'Nunito', sans-serif;

  --fw-regular:    400;
  --fw-semibold:   600;
  --fw-bold:       700;
  --fw-extrabold:  800;

  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--ff-body);
  font-weight: var(--fw-regular);
  color: var(--tone-text);
  background: var(--tone-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── TYPOGRAPHY SCALE ── */
.display-heading {
  font-family: var(--ff-display);
  font-weight: var(--fw-bold);
  line-height: 1.18;
  letter-spacing: -0.02em;
}

h1.display-heading { font-size: clamp(2.4rem, 5vw, 4rem); }
h2.display-heading { font-size: clamp(1.9rem, 3.5vw, 2.9rem); }
h3.display-heading { font-size: clamp(1.4rem, 2.5vw, 2rem); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tone-main);
  margin-bottom: 12px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 22px; height: 2px;
  background: var(--tone-cta);
  border-radius: 2px;
}

.body-text { font-size: 1.05rem; color: var(--tone-muted); line-height: 1.8; }
.body-large { font-size: 1.18rem; color: var(--tone-muted); line-height: 1.75; }

/* ── LAYOUT UTILITIES ── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow { max-width: 820px; }

section { padding: 96px 0; }
section.section--compact { padding: 64px 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-family: var(--ff-body);
  font-weight: var(--fw-bold);
  font-size: 1rem;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--tone-cta);
  color: var(--tone-white);
  padding: 15px 34px;
  box-shadow: 0 6px 24px var(--tone-shadow-deep);
}

.btn--primary:hover {
  background: var(--tone-cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px var(--tone-shadow-deep);
}

.btn--primary:active { transform: translateY(0); }

.btn--outline {
  background: transparent;
  color: var(--tone-main);
  border: 2px solid var(--tone-main);
  padding: 13px 30px;
}

.btn--outline:hover {
  background: var(--tone-main);
  color: var(--tone-white);
}

.btn--ghost {
  background: rgba(255,255,255,0.18);
  color: var(--tone-white);
  border: 1.5px solid rgba(255,255,255,0.4);
  padding: 13px 30px;
  backdrop-filter: blur(8px);
}

.btn--ghost:hover { background: rgba(255,255,255,0.3); }

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 16px 0;
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 12px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-mark {
  width: 40px; height: 40px;
  flex-shrink: 0;
}

.logo-wordmark {
  font-family: var(--ff-display);
  font-weight: var(--fw-bold);
  font-size: 1.45rem;
  letter-spacing: -0.02em;
  color: var(--tone-main-dark);
  line-height: 1;
}

.logo-wordmark span {
  color: var(--tone-cta);
}

.site-nav { display: flex; align-items: center; gap: 32px; }

.nav-link {
  font-size: 0.92rem;
  font-weight: var(--fw-semibold);
  color: var(--tone-muted);
  transition: color var(--transition);
}
.nav-link:hover { color: var(--tone-main); }

.header-cta-wrap { flex-shrink: 0; }

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.mobile-menu-btn span {
  display: block;
  width: 24px; height: 2px;
  background: var(--tone-main);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── HERO ── */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: linear-gradient(145deg, #e8f7ef 0%, #f5fbf7 50%, #eef9f3 100%);
  position: relative;
  overflow: hidden;
}

.hero-bg-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-bg-circle--large {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(90,184,122,0.12) 0%, transparent 70%);
  right: -200px; top: -100px;
}

.hero-bg-circle--small {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(184,232,203,0.25) 0%, transparent 70%);
  left: -60px; bottom: 100px;
}

.hero-leaf {
  position: absolute;
  pointer-events: none;
  opacity: 0.08;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

.hero-content { z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--tone-white);
  border: 1.5px solid var(--tone-border);
  border-radius: var(--radius-pill);
  padding: 7px 18px;
  font-size: 0.82rem;
  font-weight: var(--fw-semibold);
  color: var(--tone-main);
  margin-bottom: 24px;
  box-shadow: 0 2px 12px var(--tone-shadow);
}

.hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--tone-support);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}

.hero-heading { margin-bottom: 22px; color: var(--tone-main-dark); }

.hero-subtext {
  font-size: 1.12rem;
  color: var(--tone-muted);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.84rem;
  font-weight: var(--fw-semibold);
  color: var(--tone-muted);
}

.trust-item svg { flex-shrink: 0; }

/* Hero visual */
.hero-visual { position: relative; display: flex; justify-content: center; }

.hero-product-ring {
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(255,255,255,0.9), rgba(212,240,225,0.6));
  border: 2px solid rgba(184,232,203,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 20px 80px rgba(43,122,75,0.15);
}

.hero-product-ring::before {
  content: '';
  position: absolute;
  inset: 16px;
  border-radius: 50%;
  border: 1px dashed rgba(90,184,122,0.3);
}

.hero-product-img {
  width: 320px;
  height: 320px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 16px 40px rgba(26,84,53,0.18));
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-stat-card {
  position: absolute;
  background: var(--tone-white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: 0 8px 30px var(--tone-shadow);
  border: 1px solid var(--tone-border);
  font-size: 0.84rem;
  font-weight: var(--fw-semibold);
}

.hero-stat-card--a { left: -40px; top: 80px; }
.hero-stat-card--b { right: -20px; bottom: 120px; }

.stat-number {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: var(--fw-bold);
  color: var(--tone-main);
  line-height: 1;
}

.stat-label { color: var(--tone-muted); font-size: 0.78rem; 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: 28px 0;
}

.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: var(--fw-semibold);
  color: var(--tone-muted);
}

.trust-badge-icon {
  width: 38px; height: 38px;
  background: var(--tone-pastel);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ── FOR WHOM ── */
.forwhom-section { background: var(--tone-white); }

.forwhom-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 72px;
}

.forwhom-image-wrap { position: relative; }

.forwhom-image-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 60px var(--tone-shadow);
}

.forwhom-image-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 220px;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 4px solid var(--tone-white);
  box-shadow: 0 8px 30px var(--tone-shadow);
}

.forwhom-checklist { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }

.forwhom-check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.98rem;
  font-weight: var(--fw-semibold);
  color: var(--tone-text);
  line-height: 1.5;
}

.check-icon {
  width: 26px; height: 26px;
  background: var(--tone-pastel);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── BENEFITS CARDS ── */
.benefits-section { background: var(--tone-bg-alt); }

.benefits-header { text-align: center; margin-bottom: 56px; }
.benefits-header .body-text { max-width: 560px; margin: 12px auto 0; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.benefit-card {
  background: var(--tone-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--tone-border);
  transition: var(--transition);
  cursor: default;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px var(--tone-shadow);
  border-color: var(--tone-accent);
}

.benefit-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.benefit-card-body { padding: 20px; }

.benefit-card-icon {
  width: 42px; height: 42px;
  background: var(--tone-pastel);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}

.benefit-card-title {
  font-weight: var(--fw-bold);
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--tone-main-dark);
}

.benefit-card-text {
  font-size: 0.88rem;
  color: var(--tone-muted);
  line-height: 1.65;
}

/* ── PRODUCT SECTION ── */
.product-section { background: var(--tone-white); }

.product-inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  align-items: center;
  gap: 80px;
}

.product-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.product-bg-blob {
  width: 420px; height: 420px;
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  background: linear-gradient(135deg, var(--tone-pastel-alt) 0%, var(--tone-pastel) 100%);
  display: flex; align-items: center; justify-content: center;
}

.product-bottle-img {
  width: 260px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 50px rgba(26,84,53,0.22));
  position: relative;
  z-index: 1;
}

.product-features-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
}

.product-feature-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feat-num {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: var(--fw-bold);
  color: var(--tone-accent);
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
}

.feat-body {}
.feat-title { font-weight: var(--fw-bold); color: var(--tone-main-dark); margin-bottom: 4px; font-size: 1rem; }
.feat-text { font-size: 0.9rem; color: var(--tone-muted); line-height: 1.6; }

.product-price-block {
  margin-top: 36px;
  background: var(--tone-pastel);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.price-tag {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price-currency {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: var(--fw-bold);
  color: var(--tone-main);
}

.price-amount {
  font-family: var(--ff-display);
  font-size: 2.8rem;
  font-weight: var(--fw-bold);
  color: var(--tone-main-dark);
  line-height: 1;
}

.price-note { font-size: 0.8rem; color: var(--tone-muted); margin-top: 4px; }

/* ── HOW IT WORKS ── */
.howitworks-section {
  background: linear-gradient(160deg, var(--tone-main-dark) 0%, var(--tone-main) 100%);
  position: relative;
  overflow: hidden;
}

.howitworks-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.howitworks-header { text-align: center; margin-bottom: 60px; }
.howitworks-header .display-heading { color: var(--tone-white); }
.howitworks-header .body-text { color: rgba(255,255,255,0.65); max-width: 520px; margin: 14px auto 0; }
.howitworks-header .section-label { color: var(--tone-accent); }
.howitworks-header .section-label::before { background: var(--tone-accent); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.step-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.step-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}

.step-number {
  font-family: var(--ff-display);
  font-size: 4rem;
  font-weight: var(--fw-bold);
  color: rgba(184,232,203,0.25);
  line-height: 1;
  margin-bottom: 16px;
}

.step-icon-wrap {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}

.step-title {
  font-size: 1.18rem;
  font-weight: var(--fw-bold);
  color: var(--tone-white);
  margin-bottom: 10px;
}

.step-text { font-size: 0.92rem; color: rgba(255,255,255,0.65); line-height: 1.7; }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--tone-bg-alt); }

.testimonials-header { text-align: center; margin-bottom: 52px; }
.testimonials-header .body-text { max-width: 500px; margin: 12px auto 0; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.review-card {
  background: var(--tone-white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid var(--tone-border);
  position: relative;
  transition: var(--transition);
}

.review-card:hover { box-shadow: 0 12px 40px var(--tone-shadow); transform: translateY(-4px); }

.review-quote-mark {
  font-family: var(--ff-display);
  font-size: 5rem;
  font-weight: var(--fw-bold);
  color: var(--tone-pastel-alt);
  line-height: 0.6;
  margin-bottom: 16px;
  display: block;
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
}

.review-text {
  font-size: 0.96rem;
  color: var(--tone-muted);
  line-height: 1.75;
  margin-bottom: 22px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--tone-border);
}

.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tone-accent) 0%, var(--tone-support) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: var(--fw-bold);
  color: var(--tone-white);
  flex-shrink: 0;
}

.review-name { font-weight: var(--fw-bold); font-size: 0.95rem; color: var(--tone-text); }
.review-meta { font-size: 0.8rem; color: var(--tone-muted); }

/* ── ORDER SECTION ── */
.order-section {
  background: var(--tone-white);
  position: relative;
}

.order-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 80px;
}

.order-copy { }
.order-copy .body-large { margin-top: 14px; margin-bottom: 28px; }

.order-guarantee-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: var(--fw-semibold);
  color: var(--tone-text);
}

.g-icon {
  width: 32px; height: 32px;
  background: var(--tone-pastel);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* Order form card */
.order-form-card {
  background: var(--tone-bg);
  border: 2px solid var(--tone-border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: 0 8px 40px var(--tone-shadow);
}

.form-header { margin-bottom: 28px; }
.form-header-title {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: var(--fw-bold);
  color: var(--tone-main-dark);
  margin-bottom: 6px;
}

.form-header-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.form-price-label { font-size: 0.85rem; color: var(--tone-muted); }
.form-price-val {
  font-family: var(--ff-display);
  font-size: 1.9rem;
  font-weight: var(--fw-bold);
  color: var(--tone-main);
}

.order-form { display: flex; flex-direction: column; gap: 16px; }

.form-field { display: flex; flex-direction: column; gap: 6px; }

.form-label {
  font-size: 0.84rem;
  font-weight: var(--fw-bold);
  color: var(--tone-main-dark);
  letter-spacing: 0.02em;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  background: var(--tone-white);
  border: 1.5px solid var(--tone-border);
  border-radius: var(--radius-sm);
  font-family: var(--ff-body);
  font-size: 0.96rem;
  color: var(--tone-text);
  transition: var(--transition);
  outline: none;
}

.form-input:focus {
  border-color: var(--tone-support);
  box-shadow: 0 0 0 3px rgba(90,184,122,0.15);
}

.form-input::placeholder { color: #aabfb5; }

.form-submit-btn {
  width: 100%;
  justify-content: center;
  padding: 18px 24px;
  font-size: 1.05rem;
  margin-top: 8px;
  box-shadow: 0 8px 28px rgba(40,160,96,0.35);
}

.form-submit-btn:hover {
  box-shadow: 0 12px 36px rgba(40,160,96,0.45);
}

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--tone-muted);
  margin-top: 10px;
  line-height: 1.6;
}

/* ── FAQ ── */
.faq-section { background: var(--tone-bg-alt); }
.faq-header { text-align: center; margin-bottom: 52px; }
.faq-header .body-text { max-width: 480px; margin: 12px auto 0; }

.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--tone-white);
  border: 1px solid var(--tone-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open { border-color: var(--tone-support); box-shadow: 0 4px 20px var(--tone-shadow); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  text-align: left;
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: var(--fw-bold);
  color: var(--tone-main-dark);
  transition: var(--transition);
}

.faq-question:hover { color: var(--tone-main); }

.faq-chevron {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--tone-pastel);
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--transition);
}

.faq-item.open .faq-chevron { transform: rotate(180deg); background: var(--tone-accent); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  padding: 0 24px;
}

.faq-answer-text {
  padding-bottom: 20px;
  font-size: 0.95rem;
  color: var(--tone-muted);
  line-height: 1.75;
}

.faq-item.open .faq-answer { max-height: 400px; }

/* ── CONTACT SECTION ── */
.contact-section { background: var(--tone-white); padding: 72px 0; }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  text-align: center;
}

.contact-card {
  padding: 28px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--tone-border);
  transition: var(--transition);
}

.contact-card:hover { background: var(--tone-pastel); border-color: var(--tone-accent); }

.contact-icon-wrap {
  width: 56px; height: 56px;
  background: var(--tone-pastel);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}

.contact-card-title { font-weight: var(--fw-bold); font-size: 1rem; color: var(--tone-main-dark); margin-bottom: 6px; }
.contact-card-text  { font-size: 0.9rem; color: var(--tone-muted); line-height: 1.65; }
.contact-card-link  { font-size: 0.9rem; color: var(--tone-main); font-weight: var(--fw-semibold); }
.contact-card-link:hover { text-decoration: underline; }

/* ── FOOTER ── */
.site-footer {
  background: var(--tone-main-dark);
  padding: 56px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 44px;
}

.footer-brand {}
.footer-logo-wrap { margin-bottom: 14px; }
.footer-logo-name {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: var(--fw-bold);
  color: var(--tone-white);
}
.footer-logo-name span { color: var(--tone-accent); }

.footer-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 16px;
}

.footer-contact-mini { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.7; }
.footer-contact-mini a { color: rgba(255,255,255,0.7); }
.footer-contact-mini a:hover { color: var(--tone-accent); }

.footer-col-title {
  font-size: 0.78rem;
  font-weight: var(--fw-extrabold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}

.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-link {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-link:hover { color: var(--tone-accent); }

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 28px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer-disclaimer {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  max-width: 600px;
  line-height: 1.6;
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26,46,36,0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(184,232,203,0.2);
  padding: 18px 0;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.cookie-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  flex: 1;
  min-width: 240px;
}

.cookie-text a { color: var(--tone-accent); text-decoration: underline; }

.cookie-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }

.cookie-btn {
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.86rem;
  font-weight: var(--fw-bold);
  border: none;
  cursor: pointer;
  font-family: var(--ff-body);
  transition: var(--transition);
}

.cookie-btn--accept {
  background: var(--tone-cta);
  color: var(--tone-white);
}
.cookie-btn--accept:hover { background: var(--tone-cta-hover); }

.cookie-btn--decline {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1.5px solid rgba(255,255,255,0.2);
}
.cookie-btn--decline:hover {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
}

/* ── MOBILE NAV ── */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.98);
  z-index: 850;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-nav-overlay.active { display: flex; }
.mobile-nav-overlay .nav-link { font-size: 1.3rem; }

.mobile-nav-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none; border: none; cursor: pointer;
  font-size: 1.8rem;
  color: var(--tone-main);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-product-ring { width: 380px; height: 380px; }
  .hero-product-img { width: 260px; height: 260px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .hero-section { padding: 100px 0 60px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .hero-product-ring { width: 280px; height: 280px; }
  .hero-product-img { width: 200px; height: 200px; }
  .hero-stat-card--a, .hero-stat-card--b { display: none; }
  .forwhom-inner { grid-template-columns: 1fr; gap: 40px; }
  .forwhom-image-accent { display: none; }
  .forwhom-image-main { height: 320px; }
  .steps-grid { grid-template-columns: 1fr; gap: 20px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .order-inner { grid-template-columns: 1fr; gap: 40px; }
  .product-inner { grid-template-columns: 1fr; gap: 40px; }
  .product-bg-blob { width: 300px; height: 300px; }
  .product-bottle-img { width: 200px; }
  .contact-inner { grid-template-columns: 1fr; gap: 16px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .trust-strip-inner { gap: 22px; }
  .site-nav, .header-cta-wrap { display: none; }
  .mobile-menu-btn { display: flex; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .order-form-card { padding: 28px 22px; }
}

@media (max-width: 480px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; }
  .hero-trust-row { gap: 14px; }
}

/* ── ANIMATIONS ── */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
