/* ============================================================
   ESKVITA FLEX — Main Stylesheet
   Architecture: BEM + Utility Helpers
   Variable Family: --tone-* / --surface-* / --text-*
   ============================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Nunito+Sans:wght@300;400;600;700&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Brand Colors */
  --tone-main:        #27A882;
  --tone-main-dark:   #1E8A6A;
  --tone-main-light:  #DFF5EF;
  --tone-support:     #4ABFA3;
  --tone-cta:         #FF7A2F;
  --tone-cta-dark:    #E5621A;
  --tone-cta-light:   #FFF0E8;
  --tone-accent:      #4A90D9;
  --tone-warm:        #FFD166;

  /* Surfaces */
  --surface-base:     #F7FAF9;
  --surface-card:     #FFFFFF;
  --surface-muted:    #EEF7F4;
  --surface-border:   #D8EDE8;

  /* Text */
  --text-heading:     #132820;
  --text-body:        #3A5A52;
  --text-muted:       #6A8C82;
  --text-white:       #FFFFFF;

  /* Typography */
  --font-head:        'Outfit', sans-serif;
  --font-body:        'Nunito Sans', sans-serif;

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

  /* Radii */
  --radius-sm:   0.5rem;
  --radius-md:   1rem;
  --radius-lg:   1.75rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-card:   0 4px 24px rgba(39,168,130,0.10);
  --shadow-hover:  0 8px 36px rgba(39,168,130,0.18);
  --shadow-cta:    0 6px 24px rgba(255,122,47,0.28);

  /* Transitions */
  --ease-main: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--surface-base);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.t-heading { font-family: var(--font-head); color: var(--text-heading); }
.t-label {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tone-main);
}
.t-muted { color: var(--text-muted); }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.wrap {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.wrap--narrow { max-width: 820px; }
.wrap--wide   { max-width: 1340px; }

.section-pad    { padding: var(--sp-xl) 0; }
.section-pad--lg { padding: var(--sp-2xl) 0; }
.section-pad--sm { padding: var(--sp-lg) 0; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(247,250,249,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--surface-border);
  transition: box-shadow 0.3s var(--ease-main);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(39,168,130,0.10); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.logo-block { display: flex; align-items: center; gap: 0.6rem; }
.logo-block__icon { flex-shrink: 0; }
.logo-block__name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--text-heading);
  letter-spacing: -0.02em;
}
.logo-block__name span { color: var(--tone-main); }

/* Nav */
.header__nav { display: flex; align-items: center; gap: 2rem; }
.header__nav a {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-body);
  transition: color 0.2s;
}
.header__nav a:hover { color: var(--tone-main); }

.header__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  background: var(--tone-cta);
  color: var(--text-white);
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  transition: background 0.22s, transform 0.22s, box-shadow 0.22s;
  box-shadow: var(--shadow-cta);
}
.header__cta-btn:hover {
  background: var(--tone-cta-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(255,122,47,0.36);
}

/* Mobile menu toggle */
.header__menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.header__menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-heading);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  background: linear-gradient(135deg, #F0FAF7 0%, #E8F7F2 40%, #FFF5EE 100%);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(39,168,130,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,122,47,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 5rem 0 4rem;
  position: relative;
  z-index: 1;
}

.hero__label { margin-bottom: 1rem; }

.hero__heading {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--text-heading);
  letter-spacing: -0.03em;
  margin-bottom: 1.2rem;
}
.hero__heading em {
  font-style: normal;
  color: var(--tone-main);
}

.hero__subtext {
  font-size: 1.1rem;
  color: var(--text-body);
  max-width: 460px;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2.4rem;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  background: var(--surface-card);
  border: 1.5px solid var(--surface-border);
  border-radius: var(--radius-full);
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-body);
  box-shadow: 0 2px 8px rgba(39,168,130,0.07);
}
.hero__badge-icon { color: var(--tone-main); font-size: 1rem; }

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius-full);
  background: var(--tone-cta);
  color: var(--text-white);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.25s var(--ease-main);
  box-shadow: var(--shadow-cta);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--tone-cta-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(255,122,47,0.38);
}
.btn-primary--lg { padding: 1.1rem 2.8rem; font-size: 1.08rem; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius-full);
  border: 2px solid var(--tone-main);
  color: var(--tone-main);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.25s var(--ease-main);
}
.btn-secondary:hover {
  background: var(--tone-main);
  color: var(--text-white);
  transform: translateY(-2px);
}

.hero__note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 1rem;
}
.hero__note svg { color: var(--tone-main); flex-shrink: 0; }

/* Hero image side */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero__img-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.hero__img-main {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(39,168,130,0.18);
  object-fit: cover;
  aspect-ratio: 4/5;
}

.hero__float-card {
  position: absolute;
  background: var(--surface-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hover);
  padding: 0.9rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.hero__float-card--top {
  top: 1.5rem;
  left: -2rem;
  animation: floatCard 4s ease-in-out infinite;
}
.hero__float-card--bot {
  bottom: 2rem;
  right: -1.5rem;
  animation: floatCard 4s ease-in-out infinite 1.5s;
}
.hero__float-card__icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--tone-main-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tone-main);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.hero__float-card__text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-heading);
}
.hero__float-card__text span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

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

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--tone-main);
  padding: 1.4rem 0;
}
.trust-strip__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255,255,255,0.92);
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
}
.trust-strip__item svg { color: var(--tone-warm); flex-shrink: 0; }
.trust-strip__sep {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.3);
}

/* ============================================================
   FOR WHOM SECTION
   ============================================================ */
.for-whom {
  background: var(--surface-card);
}
.for-whom__head {
  text-align: center;
  margin-bottom: var(--sp-lg);
}
.for-whom__head .t-label { margin-bottom: 0.7rem; }
.for-whom__heading {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 800;
  color: var(--text-heading);
  letter-spacing: -0.025em;
  margin-bottom: 0.9rem;
}
.for-whom__subtext {
  max-width: 560px;
  margin: 0 auto;
  color: var(--text-body);
  font-size: 1.05rem;
}

.for-whom__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.for-whom__img-col { position: relative; }
.for-whom__img-main {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow-card);
}
.for-whom__img-secondary {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 45%;
  border-radius: var(--radius-md);
  aspect-ratio: 1/1;
  object-fit: cover;
  border: 4px solid var(--surface-card);
  box-shadow: var(--shadow-hover);
}

.for-whom__list-col { padding-left: 1rem; }
.for-whom__list-head {
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.check-list { display: flex; flex-direction: column; gap: 1rem; }
.check-list__item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}
.check-list__icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--tone-main-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.15rem;
}
.check-list__icon svg { color: var(--tone-main); width: 14px; height: 14px; }
.check-list__text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.2rem;
}
.check-list__text span {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ============================================================
   BENEFITS GRID
   ============================================================ */
.benefits {
  background: var(--surface-base);
}
.benefits__head {
  text-align: center;
  margin-bottom: var(--sp-lg);
}
.benefits__heading {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 800;
  color: var(--text-heading);
  letter-spacing: -0.025em;
  margin-bottom: 0.8rem;
}
.benefits__subtext {
  max-width: 520px;
  margin: 0 auto;
  color: var(--text-body);
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.benefit-card {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--surface-border);
  transition: transform 0.26s var(--ease-main), box-shadow 0.26s var(--ease-main);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--tone-main);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-main);
}
.benefit-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.benefit-card:hover::before { transform: scaleX(1); }

.benefit-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--tone-main-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--tone-main);
  font-size: 1.5rem;
}
.benefit-card__title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.5rem;
}
.benefit-card__desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.benefit-card__illustration {
  width: 100%;
  margin-top: auto;
  padding-top: 1.2rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  line-height: 0;
}
.benefit-card__illustration svg {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s var(--ease-main);
}
.benefit-card:hover .benefit-card__illustration svg {
  transform: scale(1.03);
}

/* ============================================================
   PRODUCT SECTION
   ============================================================ */
.product-block {
  background: linear-gradient(160deg, #F0FAF7 0%, #FAFAF7 60%);
}
.product-block__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.product-block__visual { position: relative; text-align: center; }
.product-block__img {
  max-width: 380px;
  margin: 0 auto;
  filter: drop-shadow(0 20px 50px rgba(39,168,130,0.22));
  transition: transform 0.5s var(--ease-main);
}
.product-block__img:hover { transform: scale(1.03) rotate(-1deg); }

.product-block__badge-ring {
  position: absolute;
  top: 0;
  right: 0;
  width: 90px;
  height: 90px;
}

.product-block__label { margin-bottom: 0.8rem; }
.product-block__heading {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--text-heading);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  line-height: 1.1;
}
.product-block__heading span { color: var(--tone-main); }

.product-block__desc {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 2rem;
  line-height: 1.75;
}

.product-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin-bottom: 2rem;
}
.product-spec {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 0.9rem;
  background: var(--surface-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--surface-border);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-body);
}
.product-spec svg { color: var(--tone-main); flex-shrink: 0; }

.product-price-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.6rem;
}
.product-price-main {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--tone-cta);
}
.product-price-unit {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}
.product-price-tag {
  padding: 0.35rem 0.9rem;
  background: var(--tone-cta-light);
  border-radius: var(--radius-full);
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--tone-cta);
}

/* ============================================================
   HOW TO USE — STEPS
   ============================================================ */
.how-to-use {
  background: var(--surface-card);
}
.how-to-use__head {
  text-align: center;
  margin-bottom: var(--sp-lg);
}
.how-to-use__heading {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 800;
  color: var(--text-heading);
  letter-spacing: -0.025em;
  margin-bottom: 0.8rem;
}
.how-to-use__subtext { max-width: 500px; margin: 0 auto; color: var(--text-body); }

.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.steps-row::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: var(--surface-border);
  z-index: 0;
}

.step-item { position: relative; z-index: 1; text-align: center; }
.step-item__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--tone-main);
  color: var(--text-white);
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 16px rgba(39,168,130,0.3);
}
.step-item__title {
  font-family: var(--font-head);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.4rem;
}
.step-item__desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.55; }

/* ============================================================
   LIFESTYLE CARDS
   ============================================================ */
.lifestyle-section {
  background: var(--surface-base);
}
.lifestyle-section__head {
  text-align: center;
  margin-bottom: var(--sp-lg);
}
.lifestyle-section__heading {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 800;
  color: var(--text-heading);
  letter-spacing: -0.025em;
  margin-bottom: 0.8rem;
}
.lifestyle-section__subtext { max-width: 520px; margin: 0 auto; color: var(--text-body); }

.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.lifestyle-card {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--surface-border);
  transition: transform 0.26s var(--ease-main), box-shadow 0.26s var(--ease-main);
}
.lifestyle-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.lifestyle-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.lifestyle-card__body { padding: 1.3rem; }
.lifestyle-card__icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--tone-main-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tone-main);
  margin-bottom: 0.8rem;
}
.lifestyle-card__title {
  font-family: var(--font-head);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.4rem;
}
.lifestyle-card__desc { font-size: 0.84rem; color: var(--text-muted); line-height: 1.55; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: linear-gradient(135deg, var(--tone-main-light) 0%, #FFF5EE 100%);
}
.testimonials__head {
  text-align: center;
  margin-bottom: var(--sp-lg);
}
.testimonials__heading {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 800;
  color: var(--text-heading);
  letter-spacing: -0.025em;
  margin-bottom: 0.8rem;
}
.testimonials__subtext { max-width: 500px; margin: 0 auto; color: var(--text-body); }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.review-card {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(39,168,130,0.1);
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--font-head);
  font-size: 4rem;
  line-height: 1;
  color: var(--tone-main-light);
  font-weight: 800;
}
.review-card__stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
  color: var(--tone-warm);
}
.review-card__text {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1.4rem;
  font-style: italic;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  border-top: 1px solid var(--surface-border);
  padding-top: 1rem;
}
.review-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--tone-main-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--tone-main);
  font-size: 1rem;
  flex-shrink: 0;
}
.review-card__name {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-heading);
}
.review-card__meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* ============================================================
   ORDER SECTION
   ============================================================ */
.order-section {
  background: var(--surface-card);
}
.order-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.order-section__info .t-label { margin-bottom: 0.8rem; }
.order-section__heading {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--text-heading);
  letter-spacing: -0.025em;
  margin-bottom: 1.1rem;
  line-height: 1.2;
}
.order-section__desc {
  font-size: 1.02rem;
  color: var(--text-body);
  margin-bottom: 2rem;
  line-height: 1.75;
}

.order-guarantee-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.order-guarantee-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.92rem;
  color: var(--text-body);
}
.order-guarantee-item svg { color: var(--tone-main); flex-shrink: 0; }

/* Order form */
.order-form-wrap {
  background: var(--surface-base);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  border: 1px solid var(--surface-border);
  box-shadow: var(--shadow-card);
}
.order-form-wrap__title {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 0.4rem;
}
.order-form-wrap__price-row {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 1.8rem;
}
.order-form-wrap__price {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--tone-cta);
}
.order-form-wrap__price-note { font-size: 0.85rem; color: var(--text-muted); }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}
.form-group label {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-body);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--surface-border);
  border-radius: var(--radius-md);
  background: var(--surface-card);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-heading);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--tone-main);
  box-shadow: 0 0 0 3px rgba(39,168,130,0.12);
}
.form-group textarea { resize: vertical; min-height: 90px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-submit-btn {
  width: 100%;
  padding: 1rem;
  border-radius: var(--radius-full);
  background: var(--tone-cta);
  color: var(--text-white);
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  transition: all 0.25s var(--ease-main);
  box-shadow: var(--shadow-cta);
  margin-top: 0.4rem;
}
.form-submit-btn:hover {
  background: var(--tone-cta-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(255,122,47,0.4);
}

.form-consent {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.9rem;
  line-height: 1.5;
  text-align: center;
}
.form-consent a {
  color: var(--tone-main);
  text-decoration: underline;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  background: var(--surface-base);
}
.faq-section__head {
  text-align: center;
  margin-bottom: var(--sp-lg);
}
.faq-section__heading {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 800;
  color: var(--text-heading);
  letter-spacing: -0.025em;
  margin-bottom: 0.8rem;
}
.faq-section__subtext { max-width: 500px; margin: 0 auto; color: var(--text-body); }

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.faq-item {
  background: var(--surface-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--surface-border);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item.is-open { box-shadow: var(--shadow-card); }

.faq-item__trigger {
  width: 100%;
  padding: 1.3rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-heading);
  transition: color 0.2s;
}
.faq-item__trigger:hover { color: var(--tone-main); }
.faq-item.is-open .faq-item__trigger { color: var(--tone-main); }

.faq-item__icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--surface-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.3s var(--ease-main);
}
.faq-item.is-open .faq-item__icon {
  background: var(--tone-main-light);
  transform: rotate(45deg);
}
.faq-item__icon svg { color: var(--text-body); width: 14px; height: 14px; transition: color 0.2s; }
.faq-item.is-open .faq-item__icon svg { color: var(--tone-main); }

.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-main), padding 0.3s;
}
.faq-item.is-open .faq-item__body { max-height: 400px; }
.faq-item__body-inner {
  padding: 0 1.5rem 1.4rem;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.75;
  border-top: 1px solid var(--surface-border);
  padding-top: 1rem;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  background: var(--surface-card);
}
.contact-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-section__heading {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 2.5vw, 2.3rem);
  font-weight: 800;
  color: var(--text-heading);
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}
.contact-section__desc {
  color: var(--text-body);
  margin-bottom: 2rem;
  line-height: 1.75;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1rem 1.2rem;
  background: var(--surface-base);
  border-radius: var(--radius-md);
  border: 1px solid var(--surface-border);
}
.contact-detail__icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--tone-main-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tone-main);
  flex-shrink: 0;
}
.contact-detail__label {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.15rem;
}
.contact-detail__value {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-heading);
}
.contact-detail__value a { color: var(--tone-main); }

/* Disclaimer note */
.disclaimer-note {
  background: var(--surface-muted);
  border-left: 3px solid var(--tone-support);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.1rem 1.4rem;
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--text-heading);
  color: rgba(255,255,255,0.7);
}
.footer__main {
  padding: 3.5rem 0 2.5rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
}
.footer__brand .logo-block__name { color: #fff; }
.footer__brand .logo-block__name span { color: var(--tone-support); }
.footer__brand-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer__col-title {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer__links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--tone-support); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer__legal-links {
  display: flex;
  gap: 1.5rem;
}
.footer__legal-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer__legal-links a:hover { color: rgba(255,255,255,0.8); }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--text-heading);
  color: rgba(255,255,255,0.85);
  padding: 1.2rem 0;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-main);
}
.cookie-banner.is-visible { transform: translateY(0); }

.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-banner__text { font-size: 0.88rem; line-height: 1.6; flex: 1; min-width: 200px; }
.cookie-banner__text a { color: var(--tone-support); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 0.75rem; flex-shrink: 0; flex-wrap: wrap; }

.cookie-btn {
  padding: 0.6rem 1.3rem;
  border-radius: var(--radius-full);
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  transition: all 0.22s;
}
.cookie-btn--accept {
  background: var(--tone-main);
  color: #fff;
}
.cookie-btn--accept:hover { background: var(--tone-main-dark); }
.cookie-btn--reject {
  background: transparent;
  color: rgba(255,255,255,0.65);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.cookie-btn--reject:hover { border-color: rgba(255,255,255,0.6); color: #fff; }
.cookie-btn--settings {
  background: transparent;
  color: rgba(255,255,255,0.55);
  text-decoration: underline;
  font-size: 0.8rem;
}

/* ============================================================
   MOBILE NAV OVERLAY
   ============================================================ */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(19,40,32,0.96);
  z-index: 800;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  backdrop-filter: blur(10px);
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--tone-support); }
.mobile-nav .btn-primary { font-size: 1.1rem; }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-page-hero {
  background: linear-gradient(135deg, var(--tone-main-light) 0%, #F7FAF9 100%);
  padding: 3rem 0 2.5rem;
  border-bottom: 1px solid var(--surface-border);
}
.legal-page-hero .t-label { margin-bottom: 0.6rem; }
.legal-page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  color: var(--text-heading);
  letter-spacing: -0.025em;
}
.legal-page-hero .meta {
  margin-top: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.legal-content {
  padding: 3rem 0 5rem;
  max-width: 820px;
}
.legal-content h2 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-heading);
  margin: 2rem 0 0.8rem;
}
.legal-content h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-heading);
  margin: 1.5rem 0 0.6rem;
}
.legal-content p { margin-bottom: 1rem; font-size: 0.95rem; line-height: 1.8; color: var(--text-body); }
.legal-content ul { margin: 0.5rem 0 1rem 1.5rem; }
.legal-content ul li { font-size: 0.95rem; line-height: 1.8; color: var(--text-body); margin-bottom: 0.4rem; list-style: disc; }
.legal-content a { color: var(--tone-main); text-decoration: underline; }
.legal-content .update-box {
  background: var(--surface-muted);
  border-radius: var(--radius-md);
  padding: 1rem 1.3rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  border-left: 3px solid var(--tone-main);
}

/* ============================================================
   SUCCESS PAGE
   ============================================================ */
.success-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--tone-main-light) 0%, #FAFAF7 60%);
  padding: 2rem;
  text-align: center;
}
.success-card {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  max-width: 540px;
  width: 100%;
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--surface-border);
}
.success-card__icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--tone-main-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.8rem;
  color: var(--tone-main);
}
.success-card h1 {
  font-family: var(--font-head);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 0.9rem;
  letter-spacing: -0.025em;
}
.success-card p {
  color: var(--text-body);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 1.8rem;
}
.success-card__steps {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2rem;
  text-align: left;
}
.success-card__step {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: var(--text-body);
}
.success-card__step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--tone-main);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-main), transform 0.65s var(--ease-main);
}
.reveal.is-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; }

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

  .product-block__inner { grid-template-columns: 1fr; text-align: center; }
  .product-block__img { max-width: 280px; }
  .product-specs { grid-template-columns: repeat(2, 1fr); max-width: 420px; margin: 0 auto 2rem; }
  .product-price-row { justify-content: center; }
  .product-block__visual { margin-bottom: 1rem; }

  .for-whom__grid { grid-template-columns: 1fr; }
  .for-whom__img-secondary { display: none; }

  .order-section__inner { grid-template-columns: 1fr; }
  .contact-section__inner { grid-template-columns: 1fr; }

  .testimonials__grid { grid-template-columns: 1fr 1fr; }

  .footer__main { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  .header__nav,
  .header__cta-btn { display: none; }
  .header__menu-toggle { display: flex; }

  .hero__inner {
    grid-template-columns: 1fr;
    padding: 3rem 0 2.5rem;
    text-align: center;
  }
  .hero__badges { justify-content: center; }
  .hero__actions { justify-content: center; }
  .hero__note { justify-content: center; }
  .hero__visual { order: -1; margin-bottom: 1.5rem; }
  .hero__float-card--top,
  .hero__float-card--bot { display: none; }

  .benefits__grid { grid-template-columns: 1fr 1fr; }
  .lifestyle-grid { grid-template-columns: 1fr 1fr; }
  .steps-row { grid-template-columns: 1fr 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }

  .footer__main { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .footer__legal-links { flex-wrap: wrap; gap: 1rem; }

  .form-row { grid-template-columns: 1fr; }
  .order-form-wrap { padding: 1.5rem; }

  .trust-strip__sep { display: none; }
  .trust-strip__list { gap: 1rem; }
}

@media (max-width: 480px) {
  .benefits__grid { grid-template-columns: 1fr; }
  .lifestyle-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr; }
  .cookie-banner__inner { flex-direction: column; align-items: flex-start; }
}
