/* =========================================================
   Beaukora Forte — style.css
   Palette: Pure light-green / dark-green only
   Light green: #a8d5b5 / #c8e6c9 / #e8f5e9
   Dark green:  #1b4332 / #2d6a4f / #40916c
   ========================================================= */

/* === DESIGN TOKENS === */
:root {
  /* Dark greens */
  --g-900: #0d2b1e;
  --g-800: #1b4332;
  --g-700: #2d6a4f;
  --g-600: #40916c;
  --g-500: #52b788;

  /* Light greens */
  --g-400: #74c69d;
  --g-300: #95d5b2;
  --g-200: #b7e4c7;
  --g-100: #d8f3dc;
  --g-50:  #f0faf3;
  --g-20:  #f8fdf9;

  /* Surfaces */
  --surface-0:    #ffffff;
  --surface-1:    #f5fbf6;
  --surface-2:    #e9f7ec;
  --surface-3:    #d0edda;
  --surface-hero: #e2f4e8;
  --surface-dark: #0d2b1e;
  --surface-mid:  #1b4332;

  /* Text */
  --text-primary:   #0d2b1e;
  --text-secondary: #2d5a3a;
  --text-muted:     #5a8a6a;
  --text-subtle:    #8db89a;
  --text-on-dark:   #d8f3dc;
  --text-on-dark-2: #95d5b2;

  /* Borders */
  --border-light:  #c8e6cd;
  --border-medium: #95d5b2;
  --border-strong: #52b788;

  /* CTA — saturated mid-green */
  --cta:          #2d6a4f;
  --cta-hover:    #1b4332;
  --cta-light:    #e2f4e8;
  --cta-shadow:   rgba(45, 106, 79, 0.30);

  /* Accent highlight — bright leaf green */
  --accent:       #40916c;
  --accent-light: #d8f3dc;

  /* Typography */
  --font-heading: 'PT Serif', Georgia, serif;
  --font-body:    'Open Sans', 'Helvetica Neue', sans-serif;

  /* Shape */
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-pill: 9999px;

  /* Shadows */
  --shadow-card:       0 2px 16px rgba(13, 43, 30, 0.07);
  --shadow-card-hover: 0 8px 32px rgba(13, 43, 30, 0.14);
  --shadow-btn:        0 4px 16px var(--cta-shadow);

  /* Spacing */
  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 1.75rem;
  --sp-lg: 3rem;
  --sp-xl: 5rem;

  --max-w: 1100px;
  --max-w-narrow: 740px;
  --ease: 0.22s ease;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--surface-0);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--g-700); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--g-600); }
address { font-style: normal; }

/* === SHARED TYPOGRAPHY === */
.section-kicker {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--g-700);
  margin-bottom: 0.6rem;
  background: var(--accent-light);
  padding: 0.25rem 0.7rem;
  border-radius: var(--r-pill);
}
.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.22;
  margin-bottom: 1rem;
}
.section-body {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 56ch;
  line-height: 1.72;
  margin-bottom: var(--sp-md);
}

/* === BUTTONS === */
.pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.82rem 2.1rem;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
  letter-spacing: 0.2px;
}
.pill-btn--primary {
  background: var(--cta);
  color: #fff;
  box-shadow: var(--shadow-btn);
}
.pill-btn--primary:hover {
  background: var(--cta-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 43, 30, 0.28);
}
.pill-btn--full { width: 100%; justify-content: center; }

/* === COOKIE BANNER === */
.cookie-notice {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--g-800);
  color: var(--text-on-dark);
  z-index: 9000;
  padding: 1.2rem var(--sp-sm);
  display: none;
  border-top: 3px solid var(--g-500);
}
.cookie-notice.is-visible { display: block; }
.cookie-notice__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: var(--sp-md);
  flex-wrap: wrap;
}
.cookie-notice__text {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  flex: 1;
  min-width: 240px;
}
.cookie-notice__text svg { flex-shrink: 0; margin-top: 2px; color: var(--g-300); }
.cookie-notice__text p { font-size: 0.85rem; line-height: 1.55; color: var(--g-100); }
.cookie-notice__text a { color: var(--g-300); text-decoration: underline; }
.cookie-notice__actions { display: flex; gap: 0.6rem; align-items: center; flex-wrap: wrap; }
.cookie-btn {
  padding: 0.5rem 1.2rem;
  border-radius: var(--r-pill);
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  transition: background var(--ease), color var(--ease);
}
.cookie-btn--primary { background: var(--g-600); color: #fff; }
.cookie-btn--primary:hover { background: var(--g-500); }
.cookie-btn--secondary { background: transparent; color: var(--g-200); border: 1.5px solid var(--g-200); }
.cookie-btn--secondary:hover { background: rgba(255,255,255,0.08); }

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  z-index: 800;
  transition: box-shadow var(--ease);
}
.site-header.is-scrolled {
  box-shadow: 0 2px 20px rgba(13, 43, 30, 0.10);
  border-bottom-color: var(--border-medium);
}
.site-header__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-sm);
  height: 68px;
  display: flex;
  align-items: center;
  gap: var(--sp-md);
}
.site-header__logo { flex-shrink: 0; }

.site-header__nav { display: flex; gap: 0.1rem; margin-left: auto; }
.site-header__nav .nav-link {
  padding: 0.4rem 0.9rem;
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--r-sm);
  transition: color var(--ease), background var(--ease);
}
.site-header__nav .nav-link:hover {
  color: var(--g-800);
  background: var(--surface-2);
}
.site-header__cta {
  margin-left: var(--sp-xs);
  padding: 0.5rem 1.4rem;
  background: var(--g-800);
  color: #fff;
  border-radius: var(--r-pill);
  font-size: 0.87rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background var(--ease), transform var(--ease);
}
.site-header__cta:hover { background: var(--g-900); color: #fff; transform: translateY(-1px); }

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 32px; height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
}
.nav-burger span {
  display: block;
  height: 2px;
  background: var(--g-800);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}

.site-header__mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--surface-0);
  border-top: 1px solid var(--border-light);
  padding: 0.75rem var(--sp-sm);
  gap: 0.2rem;
}
.site-header__mobile-nav.is-open { display: flex; }
.site-header__mobile-nav .nav-link {
  padding: 0.65rem 0.9rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--r-sm);
  transition: background var(--ease), color var(--ease);
}
.site-header__mobile-nav .nav-link:hover { background: var(--surface-2); color: var(--g-800); }
.mobile-cta-link {
  display: block;
  margin-top: 0.5rem;
  padding: 0.75rem 1.2rem;
  background: var(--g-800);
  color: #fff;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
}

/* === HERO SPLIT === */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
  background: linear-gradient(140deg, var(--g-50) 0%, var(--surface-hero) 60%, var(--g-100) 100%);
}
.hero-split__visual { position: relative; overflow: hidden; }
.hero-split__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-split__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,43,30,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.hero-split__visual-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--g-800);
  color: #fff;
  padding: 0.45rem 1rem;
  border-radius: var(--r-pill);
  font-size: 0.78rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  box-shadow: 0 4px 16px rgba(13,43,30,0.4);
  z-index: 2;
}

.hero-split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--sp-xl) var(--sp-lg);
}
.hero-split__kicker {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--g-700);
  margin-bottom: 0.8rem;
  background: var(--accent-light);
  padding: 0.25rem 0.7rem;
  border-radius: var(--r-pill);
  width: fit-content;
}
.hero-split__headline {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 700;
  color: var(--g-900);
  line-height: 1.18;
  margin-bottom: 1.1rem;
}
.hero-split__headline em {
  font-style: italic;
  color: var(--g-700);
}
.hero-split__body {
  font-size: 1.02rem;
  color: var(--text-secondary);
  line-height: 1.72;
  margin-bottom: 1.5rem;
  max-width: 44ch;
}
.hero-split__trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.8rem;
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #fff;
  border: 1.5px solid var(--border-medium);
  color: var(--text-secondary);
  font-size: 0.79rem;
  font-weight: 600;
  padding: 0.32rem 0.78rem;
  border-radius: var(--r-pill);
  box-shadow: 0 1px 4px rgba(13,43,30,0.06);
}
.hero-split__btn { align-self: flex-start; }
.hero-split__note {
  margin-top: 0.9rem;
  font-size: 0.79rem;
  color: var(--text-muted);
}
.hero-split__note a { color: var(--g-600); }

/* === TRUST STRIP === */
.trust-strip {
  background: linear-gradient(90deg, var(--g-800) 0%, var(--g-700) 100%);
  padding: 1.6rem var(--sp-sm);
}
.trust-strip__container {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.5rem 2rem;
  color: #fff;
}
.trust-strip__item div { display: flex; flex-direction: column; gap: 0.08rem; }
.trust-strip__item strong { font-size: 0.9rem; font-weight: 700; color: #fff; }
.trust-strip__item span { font-size: 0.77rem; color: var(--g-200); opacity: 0.8; }
.trust-strip__divider { width: 1px; height: 36px; background: rgba(255,255,255,0.15); }

/* === FOR WHOM === */
.for-whom {
  background: var(--surface-0);
  padding: var(--sp-xl) var(--sp-sm);
}
.for-whom__container { max-width: var(--max-w); margin: 0 auto; }
.for-whom__intro { text-align: center; margin-bottom: var(--sp-lg); }
.for-whom__intro .section-body { margin: 0 auto var(--sp-md); }
.for-whom__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.for-whom__card {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--surface-1);
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-card);
  transition: transform var(--ease), box-shadow var(--ease);
}
.for-whom__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.for-whom__card-img { width: 100%; height: 250px; object-fit: cover; }
.for-whom__card-body { padding: 1.5rem 1.6rem 1.8rem; }
.for-whom__card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--g-900);
  margin-bottom: 0.5rem;
}
.for-whom__card-body p { font-size: 0.91rem; color: var(--text-secondary); line-height: 1.65; }

/* === BENEFITS === */
.benefits-block {
  background: var(--surface-2);
  padding: var(--sp-xl) var(--sp-sm);
}
.benefits-block__container { max-width: var(--max-w); margin: 0 auto; text-align: center; }
.benefits-block__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: var(--sp-md);
  text-align: left;
}
.benefit-card {
  background: var(--surface-0);
  border-radius: var(--r-lg);
  border: 1.5px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--ease), box-shadow var(--ease);
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.benefit-card__img-wrap { overflow: hidden; }
.benefit-card__img { width: 100%; height: 160px; object-fit: cover; transition: transform 0.4s ease; }
.benefit-card:hover .benefit-card__img { transform: scale(1.04); }
.benefit-card__body { padding: 1.2rem 1.1rem 1.4rem; }
.benefit-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: var(--r-md);
  background: var(--surface-2);
  color: var(--g-700);
  margin-bottom: 0.7rem;
}
.benefit-card__body h3 {
  font-family: var(--font-heading);
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--g-900);
  margin-bottom: 0.4rem;
}
.benefit-card__body p { font-size: 0.84rem; color: var(--text-secondary); line-height: 1.62; }

/* === PRODUCT SECTION === */
.product-section {
  background: var(--g-900);
  padding: var(--sp-xl) var(--sp-sm);
  position: relative;
  overflow: hidden;
}
.product-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 440px; height: 440px;
  background: radial-gradient(circle, rgba(64, 145, 108, 0.18) 0%, transparent 68%);
  pointer-events: none;
}
.product-section::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(27, 67, 50, 0.4) 0%, transparent 70%);
  pointer-events: none;
}
.product-section__container {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-lg);
  align-items: center;
  position: relative;
  z-index: 1;
}
.product-section__visual { display: flex; flex-direction: column; align-items: center; gap: 1.75rem; }
.product-section__img-frame {
  background: rgba(255,255,255,0.04);
  border-radius: var(--r-xl);
  border: 1.5px solid rgba(149, 213, 178, 0.15);
  padding: 2.5rem;
  max-width: 300px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}
.product-section__img { width: 100%; height: auto; }
.product-section__stats-row { display: flex; gap: 1rem; justify-content: center; }
.product-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(64, 145, 108, 0.15);
  border-radius: var(--r-md);
  padding: 0.85rem 1.25rem;
  border: 1px solid rgba(149, 213, 178, 0.2);
  min-width: 74px;
}
.product-stat strong {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  color: var(--g-300);
  font-weight: 700;
}
.product-stat span { font-size: 0.72rem; color: rgba(216, 243, 220, 0.55); text-align: center; }

.product-section__info .section-kicker { color: var(--g-300); background: rgba(64,145,108,0.18); }
.product-section__info .section-heading { color: var(--text-on-dark); }
.product-section__info .section-body { color: rgba(216, 243, 220, 0.72); }

.product-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.8rem;
}
.product-feature-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.93rem;
  color: rgba(216, 243, 220, 0.82);
}

.product-section__disclaimer-note {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  background: rgba(64, 145, 108, 0.10);
  border: 1px solid rgba(149, 213, 178, 0.2);
  border-radius: var(--r-sm);
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  color: rgba(216, 243, 220, 0.55);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.product-section__info .pill-btn--primary {
  background: var(--g-600);
  box-shadow: 0 4px 16px rgba(64,145,108,0.4);
}
.product-section__info .pill-btn--primary:hover {
  background: var(--g-500);
  box-shadow: 0 8px 24px rgba(64,145,108,0.5);
}

/* === ROUTINE STEPS === */
.routine-steps {
  background: linear-gradient(150deg, var(--surface-3) 0%, var(--g-100) 100%);
  padding: var(--sp-xl) var(--sp-sm);
}
.routine-steps__container { max-width: var(--max-w); margin: 0 auto; text-align: center; }
.routine-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: var(--sp-md);
  text-align: left;
}
.routine-step {
  background: var(--surface-0);
  border-radius: var(--r-xl);
  padding: 2rem 1.6rem;
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-card);
  transition: transform var(--ease), box-shadow var(--ease);
}
.routine-step:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); }
.routine-step__num {
  display: block;
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--g-200);
  line-height: 1;
  margin-bottom: 0.6rem;
  user-select: none;
}
.routine-step h3 {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--g-900);
  margin-bottom: 0.5rem;
}
.routine-step p { font-size: 0.89rem; color: var(--text-secondary); line-height: 1.67; }

/* === REVIEWS === */
.reviews-section {
  background: var(--surface-0);
  padding: var(--sp-xl) var(--sp-sm);
}
.reviews-section__container { max-width: var(--max-w); margin: 0 auto; text-align: center; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: var(--sp-md);
  text-align: left;
}
.review-card {
  background: var(--surface-1);
  border-radius: var(--r-lg);
  padding: 1.6rem 1.3rem;
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: transform var(--ease), border-color var(--ease);
}
.review-card:hover { transform: translateY(-3px); border-color: var(--border-medium); }
.review-card__stars { color: var(--g-600); font-size: 1rem; letter-spacing: 1px; }
.review-card p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 0.89rem;
  color: var(--text-secondary);
  line-height: 1.67;
  flex: 1;
}
.review-card footer {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-top: 0.6rem;
  border-top: 1px solid var(--border-light);
}
.review-card footer strong { font-size: 0.87rem; color: var(--g-900); font-weight: 700; }
.review-card footer span { font-size: 0.76rem; color: var(--text-muted); }
.reviews-disclaimer {
  margin-top: 1.5rem;
  font-size: 0.77rem;
  color: var(--text-subtle);
  font-style: italic;
}

/* === FAQ === */
.faq-section {
  background: var(--surface-2);
  padding: var(--sp-xl) var(--sp-sm);
}
.faq-section__container {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
  text-align: center;
}
.faq-list {
  margin-top: var(--sp-md);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.faq-item {
  background: var(--surface-0);
  border-radius: var(--r-md);
  border: 1.5px solid var(--border-light);
  overflow: hidden;
  transition: border-color var(--ease);
}
.faq-item.is-open { border-color: var(--g-600); background: var(--g-50); }
.faq-item__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: var(--font-heading);
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--g-900);
  line-height: 1.4;
  transition: background var(--ease);
}
.faq-item__trigger:hover { background: var(--surface-1); }
.faq-item__arrow { flex-shrink: 0; color: var(--g-600); transition: transform var(--ease); }
.faq-item.is-open .faq-item__arrow { transform: rotate(180deg); }
.faq-item__answer { display: none; padding: 0 1.4rem 1.3rem; }
.faq-item.is-open .faq-item__answer { display: block; }
.faq-item__answer p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.72;
  border-top: 1px solid var(--border-light);
  padding-top: 0.9rem;
}

/* === ORDER SECTION === */
.order-section {
  background: linear-gradient(160deg, var(--surface-0) 0%, var(--surface-1) 100%);
  padding: var(--sp-xl) var(--sp-sm);
}
.order-section__container {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--sp-lg);
  align-items: center;
}
.order-section__intro .section-body { margin-bottom: 1.5rem; }

/* Product visual inside order section */
.order-section__product { display: flex; justify-content: center; }
.order-product-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.order-product-visual__img {
  width: 240px;
  height: 240px;
  object-fit: contain;
  filter: drop-shadow(0 12px 32px rgba(13, 43, 30, 0.18));
  transition: transform 0.35s ease, filter 0.35s ease;
}
.order-product-visual__img:hover {
  transform: translateY(-6px) scale(1.03);
  filter: drop-shadow(0 20px 40px rgba(13, 43, 30, 0.26));
}
.order-product-visual__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--g-800);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: var(--r-pill);
  box-shadow: 0 4px 14px rgba(13,43,30,0.22);
  letter-spacing: 0.3px;
}
.order-product-visual__badge svg { color: var(--g-300); }
.order-price-badge {
  display: inline-flex;
  flex-direction: column;
  gap: 0.18rem;
  background: var(--surface-2);
  border: 2px solid var(--border-strong);
  border-radius: var(--r-md);
  padding: 1.1rem 1.6rem;
  margin-top: 0.5rem;
}
.order-price-badge__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--g-600);
}
.order-price-badge__price {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--g-800);
}
.order-price-badge__note { font-size: 0.77rem; color: var(--text-muted); }

.order-form {
  background: var(--surface-0);
  border-radius: var(--r-xl);
  border: 1.5px solid var(--border-medium);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.order-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.3rem; }
.form-label { font-size: 0.81rem; font-weight: 600; color: var(--text-secondary); }
.form-label span { color: var(--g-700); }
.form-input {
  padding: 0.72rem 0.92rem;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--border-medium);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-primary);
  background: var(--surface-0);
  transition: border-color var(--ease), box-shadow var(--ease);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus {
  border-color: var(--g-600);
  box-shadow: 0 0 0 3px rgba(64, 145, 108, 0.14);
}
.form-input.is-error { border-color: #c0392b; }
.form-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='%232d6a4f' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.3rem;
  cursor: pointer;
}
.form-group--checkbox { flex-direction: row; align-items: flex-start; gap: 0.6rem; }
.form-checkbox {
  width: 18px; height: 18px;
  flex-shrink: 0;
  border: 1.5px solid var(--border-medium);
  border-radius: 4px;
  cursor: pointer;
  accent-color: var(--g-700);
  margin-top: 1px;
}
.form-checkbox-label { font-size: 0.81rem; color: var(--text-secondary); line-height: 1.52; cursor: pointer; }
.form-checkbox-label a { color: var(--g-700); text-decoration: underline; }
.form-error { font-size: 0.75rem; color: #c0392b; min-height: 1em; }
.order-form__submit { margin-top: 0.5rem; font-size: 1rem; padding: 0.95rem 2rem; }
.order-form__legal-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.52;
  margin-top: -0.2rem;
}

/* === SUPPORT === */
.support-section {
  background: var(--g-800);
  padding: var(--sp-xl) var(--sp-sm);
}
.support-section__container {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}
.support-section__container .section-kicker { color: var(--g-300); background: rgba(64,145,108,0.18); }
.support-section__container .section-heading { color: var(--text-on-dark); }
.support-section__container .section-body { color: var(--g-200); margin: 0 auto var(--sp-md); }
.support-contacts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 820px;
  margin: 0 auto;
  text-align: left;
}
.support-contact-card {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  background: rgba(255,255,255,0.05);
  border-radius: var(--r-md);
  padding: 1.3rem;
  border: 1.5px solid rgba(149, 213, 178, 0.15);
  color: var(--text-on-dark);
  text-decoration: none;
  transition: border-color var(--ease), background var(--ease);
}
.support-contact-card:hover {
  border-color: var(--g-400);
  background: rgba(255,255,255,0.08);
  color: var(--text-on-dark);
}
.support-contact-card svg { flex-shrink: 0; color: var(--g-400); margin-top: 2px; }
.support-contact-card div { display: flex; flex-direction: column; gap: 0.2rem; }
.support-contact-card strong { font-size: 0.84rem; color: var(--text-on-dark); font-weight: 700; }
.support-contact-card span { font-size: 0.87rem; color: var(--g-300); }

/* === FOOTER === */
.site-footer {
  background: var(--g-900);
  color: var(--text-on-dark);
  padding: var(--sp-lg) var(--sp-sm) var(--sp-sm);
  border-top: 2px solid rgba(64,145,108,0.2);
}
.site-footer__container { max-width: var(--max-w); margin: 0 auto; }
.site-footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: var(--sp-lg);
  padding-bottom: var(--sp-md);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: var(--sp-md);
}
.site-footer__brand p { font-size: 0.84rem; color: var(--g-200); opacity: 0.65; line-height: 1.65; margin-top: 0.8rem; }
.site-footer__links h3,
.site-footer__contact h3 {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--g-300);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}
.site-footer__links nav { display: flex; flex-direction: column; gap: 0.4rem; }
.site-footer__links nav a { font-size: 0.84rem; color: rgba(216,243,220,0.5); transition: color var(--ease); }
.site-footer__links nav a:hover { color: var(--g-300); }
.site-footer__contact address p { font-size: 0.84rem; color: rgba(216,243,220,0.5); margin-bottom: 0.3rem; }
.site-footer__contact address a { color: rgba(216,243,220,0.5); }
.site-footer__contact address a:hover { color: var(--g-300); }

.site-footer__disclaimer {
  background: rgba(64,145,108,0.08);
  border-radius: var(--r-sm);
  padding: 1rem 1.25rem;
  margin-bottom: var(--sp-md);
  border-left: 3px solid var(--g-700);
}
.site-footer__disclaimer p { font-size: 0.75rem; color: rgba(216,243,220,0.42); line-height: 1.68; }

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.site-footer__bottom p { font-size: 0.77rem; color: rgba(216,243,220,0.3); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .benefits-block__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .site-header__nav { display: none; }
  .site-header__cta { display: none; }
  .nav-burger { display: flex; }

  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-split__visual { height: 320px; }
  .hero-split__content { padding: var(--sp-lg) var(--sp-sm); }
  .hero-split__btn { align-self: stretch; justify-content: center; }

  .for-whom__grid { grid-template-columns: 1fr; }
  .routine-steps__grid { grid-template-columns: 1fr; }
  .product-section__container { grid-template-columns: 1fr; }
  .order-section__container { grid-template-columns: 1fr; }
  .order-section__product { order: -1; }
  .order-product-visual__img { width: 180px; height: 180px; }
  .support-contacts { grid-template-columns: 1fr; max-width: 420px; }
  .site-footer__top { grid-template-columns: 1fr; }
  .trust-strip__divider { display: none; }
  .trust-strip__item { padding: 0.6rem 1rem; }
}
@media (max-width: 640px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .benefits-block__grid { grid-template-columns: 1fr; }
  .order-form__row { grid-template-columns: 1fr; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; }
  .hero-split__trust-row { gap: 0.3rem; }
}
@media (max-width: 480px) {
  .hero-split__visual { height: 240px; }
  .product-section__stats-row { flex-wrap: wrap; justify-content: center; }
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-split__content > * { animation: fadeInUp 0.55s ease both; }
.hero-split__kicker    { animation-delay: 0.10s; }
.hero-split__headline  { animation-delay: 0.22s; }
.hero-split__body      { animation-delay: 0.34s; }
.hero-split__trust-row { animation-delay: 0.44s; }
.hero-split__btn       { animation-delay: 0.54s; }
.hero-split__note      { animation-delay: 0.62s; }
