/* ============================================================
   RubVita — style.css
   Architecture : BEM + utility helpers
   Tokens       : --tone-main / --tone-support / --tone-cta
   Typography   : Nunito (headings) + Source Sans 3 (body)
   Palette      : Light pastel greens + rich forest green
   ============================================================ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text-primary);
  background: var(--tone-pale);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img   { max-width: 100%; height: auto; display: block; }
a     { color: var(--tone-main); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--tone-cta); }
ul    { list-style: none; }

/* ── TOKENS ── */
:root {
  --tone-main    : #2A6E49;
  --tone-support : #5DAA72;
  --tone-cta     : #1B5237;
  --tone-accent  : #A8D9B8;
  --tone-pale    : #F5FAF7;
  --tone-light   : #E6F4EC;
  --tone-card    : #EEF8F3;
  --tone-gold    : #C89630;

  --text-primary   : #182B20;
  --text-secondary : #3E6348;
  --text-muted     : #7A9882;
  --text-on-dark   : #F0FAF4;

  --white        : #FFFFFF;
  --border-soft  : #CCEADB;
  --border-card  : #D8EDDF;

  --shadow-xs : 0 1px  4px rgba(30,80,55,.06);
  --shadow-sm : 0 3px 14px rgba(30,80,55,.09);
  --shadow-md : 0 8px 32px rgba(30,80,55,.12);
  --shadow-lg : 0 20px 60px rgba(30,80,55,.16);

  --radius-xs   : 6px;
  --radius-sm   : 10px;
  --radius-md   : 16px;
  --radius-lg   : 24px;
  --radius-xl   : 32px;
  --radius-pill : 100px;

  --container-max : 1180px;
  --container-pad : 1.25rem;

  --ease-out : cubic-bezier(.22,.68,0,1.2);
  --t-fast   : .18s ease;
  --t-base   : .28s ease;
  --t-slow   : .45s ease;
}

/* ── SHARED CONTAINERS ── */
.hero-wrap, .stats-wrap, .product-wrap,
.audience-wrap, .benefits-wrap, .steps-wrap,
.trust-wrap, .reviews-wrap, .order-wrap,
.faq-wrap, .contact-wrap, .footer-wrap {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* ── EYEBROW LABEL ── */
.eyebrow {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--tone-support);
  background: var(--tone-light);
  padding: .28rem .9rem;
  border-radius: var(--radius-pill);
  margin-bottom: .9rem;
}
.eyebrow--inv {
  background: rgba(255,255,255,.15);
  color: var(--tone-accent);
}

/* ── BUTTONS ── */
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  background: var(--tone-main);
  padding: .82rem 2.2rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(42,110,73,.3);
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  white-space: nowrap;
}
.btn-pill:hover   { background: var(--tone-cta); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(42,110,73,.38); color: var(--white); }
.btn-pill:active  { transform: translateY(0); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-size: .97rem;
  font-weight: 700;
  color: var(--tone-main);
  background: transparent;
  padding: .78rem 1.8rem;
  border-radius: var(--radius-pill);
  border: 2px solid var(--tone-main);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--t-fast);
}
.btn-outline:hover { background: var(--tone-main); color: var(--white); }

/* ── COOKIE BANNER ── */
.cookie-bar {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 9999;
  background: var(--white);
  border-top: 2px solid var(--border-soft);
  box-shadow: 0 -4px 24px rgba(30,80,55,.12);
  transition: transform var(--t-base);
}
.cookie-bar.is-hidden { transform: translateY(110%); }
.cookie-bar__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding: 1rem var(--container-pad);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-bar__text { flex: 1 1 280px; font-size: .87rem; color: var(--text-secondary); line-height: 1.55; }
.cookie-bar__text a { color: var(--tone-main); font-weight: 600; text-decoration: underline; }
.cookie-bar__actions { display: flex; gap: .7rem; flex-shrink: 0; }
.cookie-bar__btn {
  font-family: 'Nunito', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  padding: .5rem 1.35rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: all var(--t-fast);
}
.cookie-bar__btn--accept  { background: var(--tone-main); color: var(--white); }
.cookie-bar__btn--accept:hover  { background: var(--tone-cta); }
.cookie-bar__btn--decline { background: var(--tone-light); color: var(--text-secondary); }
.cookie-bar__btn--decline:hover { background: var(--border-soft); }

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(245,250,247,.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
  transition: box-shadow var(--t-fast);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.site-header__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
  height: 68px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.site-header__logo { flex-shrink: 0; line-height: 0; }
.site-header__nav { flex: 1; }
.site-header__nav-list {
  display: flex;
  align-items: center;
  gap: .2rem;
  justify-content: center;
}
.nav-link {
  font-family: 'Nunito', sans-serif;
  font-size: .91rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: .42rem .85rem;
  border-radius: var(--radius-sm);
  transition: all var(--t-fast);
  white-space: nowrap;
}
.nav-link:hover { color: var(--tone-main); background: var(--tone-light); }
.site-header__cta {
  flex-shrink: 0;
  font-family: 'Nunito', sans-serif;
  font-size: .88rem;
  font-weight: 800;
  color: var(--white);
  background: var(--tone-main);
  padding: .52rem 1.35rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: all var(--t-fast);
  white-space: nowrap;
}
.site-header__cta:hover { background: var(--tone-cta); color: var(--white); transform: translateY(-1px); }

.site-header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .38rem;
  border-radius: var(--radius-xs);
  margin-left: auto;
}
.site-header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--tone-main);
  border-radius: 2px;
  transition: all var(--t-fast);
}
.site-header__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header__burger.is-open span:nth-child(2) { opacity: 0; }
.site-header__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero-section {
  padding: 5rem 0 4.5rem;
  background: linear-gradient(135deg, var(--white) 0%, var(--tone-pale) 55%, var(--tone-light) 100%);
  overflow: hidden;
  position: relative;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -100px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, var(--tone-accent) 0%, transparent 68%);
  opacity: .18;
  pointer-events: none;
}
.hero-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; position: relative; z-index: 1; }

.hero-content__eyebrow {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--tone-support);
  background: var(--tone-light);
  padding: .28rem .9rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.1rem;
}
.hero-content__title {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.13;
  letter-spacing: -.025em;
  margin-bottom: 1.1rem;
}
.hero-content__desc {
  font-size: 1.06rem;
  color: var(--text-secondary);
  line-height: 1.72;
  max-width: 480px;
  margin-bottom: 1.6rem;
}
.hero-content__chips { display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: 2rem; }
.hero-chip {
  font-family: 'Nunito', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  color: var(--tone-main);
  background: var(--tone-light);
  border: 1px solid var(--border-soft);
  padding: .28rem .85rem;
  border-radius: var(--radius-pill);
}
.hero-content__actions { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem; flex-wrap: wrap; }
.hero-content__note { font-size: .8rem; color: var(--text-muted); }

.hero-visual { position: relative; }
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-img-frame img { width: 100%; height: 480px; object-fit: cover; display: block; }
.hero-float-card {
  position: absolute;
  bottom: 1.6rem;
  left: -1.8rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: .9rem 1.2rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: 'Nunito', sans-serif;
  max-width: calc(100% + 1.8rem);
  white-space: nowrap;
  z-index: 2;
}
.hero-float-card__icon { font-size: 1.65rem; }
.hero-float-card strong { display: block; font-size: 1rem; font-weight: 900; color: var(--text-primary); }
.hero-float-card span  { font-size: .77rem; color: var(--text-muted); }

/* ── STATS STRIP ── */
.stats-strip { background: var(--tone-main); padding: 2.5rem 0; }
.stats-wrap {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.stat-item { text-align: center; flex: 1 1 160px; }
.stat-item__num {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: .28rem;
}
.stat-item__lbl { display: block; font-size: .84rem; color: var(--tone-accent); }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.2); flex-shrink: 0; }

/* ── PRODUCT ── */
.product-section { padding: 6rem 0; background: var(--white); }
.product-wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: center; }

.product-visual { position: relative; }
.product-img-bg {
  position: relative;
  background: var(--tone-pale);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-img-bg img {
  max-height: 380px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 34px rgba(42,110,73,.2));
  transition: transform var(--t-base);
}
.product-img-bg img:hover { transform: scale(1.03); }
.product-popular-tag {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--tone-gold);
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .28rem .85rem;
  border-radius: var(--radius-pill);
}

.product-info__title {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: .9rem;
}
.product-info__desc { font-size: 1rem; color: var(--text-secondary); line-height: 1.72; margin-bottom: 1.8rem; }
.product-features { display: flex; flex-direction: column; gap: .95rem; margin-bottom: 2rem; }
.product-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: .9rem 1.1rem;
  background: var(--tone-pale);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  transition: box-shadow var(--t-fast);
}
.product-feature:hover { box-shadow: var(--shadow-xs); }
.product-feature__icon { font-size: 1.3rem; flex-shrink: 0; margin-top: .1rem; }
.product-feature strong {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: .93rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: .2rem;
}
.product-feature span { font-size: .85rem; color: var(--text-muted); line-height: 1.5; }

/* ── AUDIENCE ── */
.audience-section { padding: 6rem 0; background: var(--tone-pale); }
.audience-header { text-align: center; margin-bottom: 3rem; }
.section-heading {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: .8rem;
}
.section-sub { font-size: 1.02rem; color: var(--text-secondary); max-width: 540px; margin-inline: auto; line-height: 1.7; }

.audience-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 1.5rem; }
.audience-img-card { border-radius: var(--radius-lg); overflow: hidden; position: relative; box-shadow: var(--shadow-md); }
.audience-img-card img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }
.audience-img-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.2rem 1.4rem;
  background: linear-gradient(to top, rgba(20,60,35,.72), transparent);
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-size: .91rem;
  font-weight: 600;
  font-style: italic;
}
.audience-right { display: flex; flex-direction: column; gap: 1.2rem; }
.audience-small-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.audience-small-img img { width: 100%; height: 200px; object-fit: cover; }
.audience-text-panel {
  background: var(--white);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  flex: 1;
}
.audience-text-panel h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: .55rem;
}
.audience-text-panel p { font-size: .9rem; color: var(--text-secondary); margin-bottom: .9rem; line-height: 1.65; }
.audience-checklist { display: flex; flex-direction: column; gap: .38rem; }
.audience-checklist li { font-family: 'Nunito', sans-serif; font-size: .87rem; font-weight: 600; color: var(--tone-main); }

/* ── BENEFITS (3 CARDS) ── */
.benefits-section { padding: 6rem 0; background: var(--white); }
.benefits-header { text-align: center; margin-bottom: 3.5rem; }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }

.benefit-card {
  background: var(--tone-pale);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.benefit-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.benefit-card__img-slot { overflow: hidden; height: 202px; flex-shrink: 0; }
.benefit-card__img-slot img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--t-slow);
}
.benefit-card:hover .benefit-card__img-slot img { transform: scale(1.04); }
.benefit-card__body { padding: 1.4rem 1.5rem 1.7rem; flex: 1; display: flex; flex-direction: column; }
.benefit-card__ico   { font-size: 1.5rem; display: block; margin-bottom: .55rem; }
.benefit-card__name  { font-family: 'Nunito', sans-serif; font-size: 1.05rem; font-weight: 800; color: var(--text-primary); margin-bottom: .5rem; }
.benefit-card__copy  { font-size: .89rem; color: var(--text-secondary); line-height: 1.65; flex: 1; }

/* ── HOW IT WORKS ── */
.steps-section { padding: 6rem 0; background: var(--tone-pale); }
.steps-header  { text-align: center; margin-bottom: 3.5rem; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 2.1rem;
  left: calc(12.5% + 1.5rem);
  right: calc(12.5% + 1.5rem);
  height: 2px;
  background: linear-gradient(to right, var(--tone-accent), var(--tone-support));
  z-index: 0;
}
.step-card {
  position: relative;
  z-index: 1;
  background: var(--white);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.4rem 1.6rem;
  text-align: center;
  transition: box-shadow var(--t-base), transform var(--t-base);
}
.step-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px; height: 50px;
  background: var(--tone-main);
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 900;
  border-radius: 50%;
  margin: 0 auto .95rem;
}
.step-card h3 { font-family: 'Nunito', sans-serif; font-size: .98rem; font-weight: 800; color: var(--text-primary); margin-bottom: .5rem; }
.step-card p  { font-size: .87rem; color: var(--text-muted); line-height: 1.6; }

/* ── TRUST BAND ── */
.trust-section {
  padding: 5.5rem 0;
  background: linear-gradient(135deg, var(--tone-main) 0%, #1B5035 100%);
  position: relative;
  overflow: hidden;
}
.trust-section::before {
  content: '';
  position: absolute;
  top: -120px; left: -120px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(255,255,255,.05) 0%, transparent 68%);
  pointer-events: none;
}
.trust-wrap { position: relative; z-index: 1; text-align: center; }
.trust-heading {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 2.8rem;
}
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.trust-item {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.4rem;
  text-align: center;
  transition: background var(--t-fast), transform var(--t-fast);
}
.trust-item:hover { background: rgba(255,255,255,.14); transform: translateY(-3px); }
.trust-item__ico  { font-size: 2rem; display: block; margin-bottom: .75rem; }
.trust-item h3    { font-family: 'Nunito', sans-serif; font-size: .97rem; font-weight: 800; color: var(--white); margin-bottom: .45rem; }
.trust-item p     { font-size: .85rem; color: var(--tone-accent); line-height: 1.62; }

/* ── REVIEWS ── */
.reviews-section { padding: 6rem 0; background: var(--white); }
.reviews-header   { text-align: center; margin-bottom: 3.5rem; }
.reviews-grid     { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }

.review-card {
  background: var(--tone-pale);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  transition: box-shadow var(--t-base);
}
.review-card--highlight {
  background: var(--tone-light);
  border-color: var(--tone-accent);
  box-shadow: var(--shadow-sm);
}
.review-card:hover { box-shadow: var(--shadow-md); }
.review-stars { color: var(--tone-gold); font-size: 1.08rem; letter-spacing: .05em; margin-bottom: .85rem; }
.review-quote {
  font-size: .93rem;
  color: var(--text-secondary);
  line-height: 1.72;
  font-style: italic;
  margin-bottom: 1.2rem;
  border: none; padding: 0;
}
.review-author { display: flex; align-items: center; gap: .78rem; }
.review-avatar {
  width: 40px; height: 40px;
  background: var(--tone-main);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-size: .77rem; font-weight: 800;
  flex-shrink: 0;
}
.review-author strong { display: block; font-family: 'Nunito', sans-serif; font-size: .91rem; font-weight: 800; color: var(--text-primary); }
.review-author span   { font-size: .79rem; color: var(--text-muted); }

/* ── ORDER ── */
.order-section { padding: 6rem 0; background: linear-gradient(135deg, var(--tone-pale) 0%, var(--tone-light) 100%); }
.order-wrap    { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: start; }

.order-info__title {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 1.8rem;
}
.order-product-preview {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: var(--white);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.4rem;
  margin-bottom: 1.6rem;
  box-shadow: var(--shadow-xs);
}
.order-product-preview img { width: 80px; height: 80px; object-fit: contain; flex-shrink: 0; }
.order-product-preview h3 { font-family: 'Nunito', sans-serif; font-size: .98rem; font-weight: 800; color: var(--text-primary); margin-bottom: .2rem; }
.order-product-preview p  { font-size: .83rem; color: var(--text-muted); margin-bottom: .5rem; }
.order-price { display: flex; align-items: baseline; gap: .6rem; flex-wrap: wrap; }
.order-price__amt  { font-family: 'Nunito', sans-serif; font-size: 1.4rem; font-weight: 900; color: var(--tone-main); }
.order-price__note { font-size: .77rem; color: var(--text-muted); }
.order-guarantees  { display: flex; flex-direction: column; gap: .5rem; }
.order-guarantees li { font-family: 'Nunito', sans-serif; font-size: .9rem; font-weight: 600; color: var(--tone-main); }

.order-form-card {
  background: var(--white);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 2.2rem 2rem;
  box-shadow: var(--shadow-md);
}
.order-form-card__title {
  font-family: 'Nunito', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-soft);
}
.field-group { margin-bottom: 1.1rem; }
.field-label {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: .84rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: .38rem;
}
.field-input {
  width: 100%;
  padding: .74rem 1rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  color: var(--text-primary);
  background: var(--tone-pale);
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  appearance: none;
}
.field-input:focus {
  border-color: var(--tone-support);
  box-shadow: 0 0 0 3px rgba(93,170,114,.18);
  background: var(--white);
}
.field-input--textarea { resize: vertical; min-height: 78px; }
.field-input--select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232A6E49' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .88rem 1rem;
  background: var(--tone-light);
  border-radius: var(--radius-sm);
  margin-bottom: 1.2rem;
  font-family: 'Nunito', sans-serif;
}
.form-total span  { font-size: .94rem; font-weight: 600; color: var(--text-secondary); }
.form-total strong{ font-size: 1.3rem; font-weight: 900; color: var(--tone-main); }
.form-submit { width: 100%; font-size: 1.04rem; padding: 1rem; margin-bottom: 1rem; }
.form-legal  { font-size: .77rem; color: var(--text-muted); text-align: center; line-height: 1.5; }
.form-legal a{ color: var(--tone-support); }

/* ── FAQ ── */
.faq-section { padding: 6rem 0; background: var(--white); }
.faq-header  { text-align: center; margin-bottom: 3rem; }
.faq-list    { max-width: 780px; margin-inline: auto; display: flex; flex-direction: column; gap: .8rem; }

.faq-item {
  background: var(--tone-pale);
  border: 1.5px solid var(--border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--t-fast);
}
.faq-item:has(.faq-body:not([hidden])) { border-color: var(--tone-accent); box-shadow: var(--shadow-xs); }
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Nunito', sans-serif;
  font-size: .97rem;
  font-weight: 700;
  color: var(--text-primary);
  transition: color var(--t-fast);
}
.faq-trigger:hover { color: var(--tone-main); }
.faq-icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  background: var(--tone-light);
  color: var(--tone-main);
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  transition: transform var(--t-base), background var(--t-fast);
}
.faq-trigger[aria-expanded="true"] .faq-icon { transform: rotate(45deg); background: var(--tone-main); color: var(--white); }
.faq-body { padding: 0 1.4rem 1.2rem; font-size: .91rem; color: var(--text-secondary); line-height: 1.72; }
.faq-body[hidden] { display: none; }
.faq-body a { color: var(--tone-main); font-weight: 600; }

/* ── CONTACT ── */
.contact-section { padding: 5.5rem 0; background: var(--tone-pale); }
.contact-card {
  background: var(--white);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3.5rem;
  box-shadow: var(--shadow-sm);
}
.contact-title { font-family: 'Nunito', sans-serif; font-size: clamp(1.5rem, 2.8vw, 2.1rem); font-weight: 900; color: var(--text-primary); margin-bottom: .7rem; }
.contact-info-text { font-size: .94rem; color: var(--text-secondary); margin-bottom: 1.8rem; line-height: 1.65; }
.contact-details { display: flex; flex-direction: column; gap: 1.1rem; }
.contact-row { display: flex; align-items: flex-start; gap: .8rem; }
.contact-row__ico { font-size: 1.18rem; flex-shrink: 0; margin-top: .05rem; }
.contact-row strong { display: block; font-family: 'Nunito', sans-serif; font-size: .84rem; font-weight: 800; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .2rem; }
.contact-row span, .contact-row a { font-size: .93rem; color: var(--text-secondary); }
.contact-row a:hover { color: var(--tone-main); }

.contact-cta-panel {
  background: linear-gradient(135deg, var(--tone-main) 0%, #1B5035 100%);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  justify-content: center;
}
.contact-cta-panel h3  { font-family: 'Nunito', sans-serif; font-size: 1.3rem; font-weight: 900; color: var(--white); }
.contact-cta-panel p   { font-size: .89rem; color: var(--tone-accent); line-height: 1.62; }
.contact-cta-panel .btn-pill { background: var(--white); color: var(--tone-main); box-shadow: none; }
.contact-cta-panel .btn-pill:hover { background: var(--tone-pale); }
.contact-disclaimer { font-size: .74rem !important; color: rgba(168,217,184,.72) !important; line-height: 1.5 !important; }

/* ── FOOTER ── */
.site-footer { background: #101E15; color: rgba(255,255,255,.72); padding: 3.5rem 0 2rem; }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-tagline  { font-size: .88rem; color: rgba(255,255,255,.55); margin-top: .8rem; margin-bottom: .4rem; }
.footer-addr     { font-size: .78rem; color: rgba(255,255,255,.38); line-height: 1.65; }
.footer-col h4   {
  font-family: 'Nunito', sans-serif;
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.88);
  margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: .48rem; }
.footer-links a   { font-size: .87rem; color: rgba(255,255,255,.52); transition: color var(--t-fast); }
.footer-links a:hover { color: var(--tone-accent); }
.footer-contact-info p { font-size: .87rem; color: rgba(255,255,255,.52); margin-bottom: .38rem; }
.footer-contact-info a { color: rgba(255,255,255,.52); transition: color var(--t-fast); }
.footer-contact-info a:hover { color: var(--tone-accent); }
.footer-bottom    { text-align: center; }
.footer-disclaimer { font-size: .77rem; color: rgba(255,255,255,.32); line-height: 1.72; max-width: 700px; margin-inline: auto; margin-bottom: 1rem; }
.footer-copy       { font-size: .81rem; color: rgba(255,255,255,.42); }

@media (max-width: 480px) {
  .hero-content__actions { flex-direction: column; align-items: center; }
  .hero-content__actions .btn-pill,
  .hero-content__actions .btn-outline { width: 100%; max-width: 320px; justify-content: center; }
  .hero-float-card { white-space: normal; text-align: left; font-size: .85rem; padding: .7rem 1rem; }
  .stats-wrap { padding-inline: var(--container-pad); }
  .stat-item  { flex: 1 1 100%; }
  .form-submit { font-size: .97rem; padding: .9rem; }
  .contact-cta-panel .btn-pill { width: 100%; text-align: center; }
}
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── LEGAL PAGES ── */
.legal-wrap { max-width: 820px; margin-inline: auto; padding-inline: var(--container-pad); }
.legal-page  { padding: 4rem 0 6rem; background: var(--tone-pale); min-height: 100vh; }
.legal-head  { margin-bottom: 2.5rem; padding-bottom: 1.5rem; border-bottom: 2px solid var(--border-soft); }
.legal-head h1 { font-family: 'Nunito', sans-serif; font-size: 2.1rem; font-weight: 900; color: var(--text-primary); margin-bottom: .4rem; }
.legal-head p  { font-size: .87rem; color: var(--text-muted); }
.legal-body h2 { font-family: 'Nunito', sans-serif; font-size: 1.22rem; font-weight: 800; color: var(--text-primary); margin: 2rem 0 .7rem; }
.legal-body p, .legal-body li { font-size: .94rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: .65rem; }
.legal-body ul { padding-left: 1.5rem; list-style: disc; }
.legal-body a  { color: var(--tone-main); }
.legal-back    { margin-top: 2.5rem; }

/* ── SUCCESS PAGE ── */
.success-page {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 3rem 1.5rem;
  background: linear-gradient(135deg, var(--tone-pale) 0%, var(--tone-light) 100%);
}
.success-card {
  background: var(--white);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 3.5rem 3rem;
  max-width: 520px; width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.success-ico {
  width: 80px; height: 80px;
  background: var(--tone-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1.5rem;
}
.success-card h1 { font-family: 'Nunito', sans-serif; font-size: 1.9rem; font-weight: 900; color: var(--text-primary); margin-bottom: .8rem; }
.success-card p  { font-size: 1rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: .55rem; }
.success-details { background: var(--tone-pale); border-radius: var(--radius-md); padding: 1.2rem 1.4rem; margin: 1.5rem 0; text-align: left; }
.success-details p { font-size: .9rem; margin-bottom: .3rem; }
.success-details strong { color: var(--tone-main); }
.success-back { margin-top: 1.8rem; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .steps-grid  { grid-template-columns: repeat(2,1fr); }
  .steps-grid::before { display: none; }
  .trust-grid  { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 900px) {
  .hero-wrap           { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .hero-content__desc  { margin-inline: auto; }
  .hero-content__chips { justify-content: center; }
  .hero-content__actions { justify-content: center; }
  .hero-float-card     {
    left: 50%;
    transform: translateX(-50%);
    bottom: 1rem;
    white-space: nowrap;
    max-width: calc(100% - 2rem);
  }
  .product-wrap        { grid-template-columns: 1fr; gap: 2.5rem; }
  .audience-grid       { grid-template-columns: 1fr; }
  /* Benefits — 2 cols; lone third card centered */
  .benefits-grid       { grid-template-columns: 1fr 1fr; }
  .benefits-grid .benefit-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: calc(50% - .9rem);
    margin-inline: auto;
  }
  /* Reviews — 2 cols on tablet; lone third card centered */
  .reviews-grid        { grid-template-columns: 1fr 1fr; max-width: 100%; }
  .reviews-grid .review-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: calc(50% - .9rem);
    margin-inline: auto;
  }
  .order-wrap          { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-card        { grid-template-columns: 1fr; gap: 2rem; }
  .footer-top          { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .site-header__nav,
  .site-header__cta { display: none; }
  .site-header__burger { display: flex; }
  .site-header__nav.is-open {
    display: flex;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-soft);
    box-shadow: var(--shadow-md);
    z-index: 899;
    padding: 1rem var(--container-pad) 1.5rem;
  }
  .site-header__nav.is-open .site-header__nav-list  { flex-direction: column; align-items: flex-start; gap: .25rem; }
  .site-header__nav.is-open .nav-link               { display: block; width: 100%; padding: .68rem 1rem; font-size: 1rem; }
  .stats-wrap { flex-direction: column; gap: 1.2rem; text-align: center; }
  .stat-divider { width: 60px; height: 1px; }
  .hero-section { padding: 3.5rem 0 3rem; }
}

@media (max-width: 600px) {
  .benefits-grid  { grid-template-columns: 1fr; }
  .benefits-grid .benefit-card:last-child:nth-child(odd) { grid-column: auto; max-width: 100%; }
  .steps-grid     { grid-template-columns: 1fr; }
  .trust-grid     { grid-template-columns: 1fr; }
  .reviews-grid   { grid-template-columns: 1fr; max-width: 100%; }
  .reviews-grid .review-card:last-child:nth-child(odd) { grid-column: auto; max-width: 100%; }
  .contact-card   { padding: 1.8rem 1.4rem; }
  .contact-cta-panel { padding: 1.6rem 1.2rem; }
  .footer-top     { grid-template-columns: 1fr; gap: 2rem; }
  .order-form-card { padding: 1.5rem 1.2rem; }
  .order-product-preview { flex-direction: column; text-align: center; align-items: center; }
  .order-product-preview img { width: 100px; height: 100px; }
  .order-price { justify-content: center; }
  .order-guarantees { text-align: left; }
  .product-img-bg { padding: 2rem; }
  .success-card   { padding: 2.2rem 1.5rem; }
  .field-input--textarea { min-height: 64px; }
  .cookie-bar__inner { flex-direction: column; gap: 1rem; align-items: flex-start; }
  .cookie-bar__actions { width: 100%; justify-content: flex-end; }
}
