/* ============================================================
   WELLZIO COMPLEX — Landing Page Stylesheet
   Architecture: Section-scoped semantic
   Token Family: --tone-main / --tone-support / --tone-cta
   Typography: Cormorant Garamond + Nunito
   Theme: Dark Forest · Natural Greens · Pastel Accents
   Generated: April 2026
============================================================ */

/* ---- RESET & BASE ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
img, video { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
address { font-style: normal; }
.not-italic { font-style: normal; }

/* ---- CSS TOKENS ------------------------------------------- */
:root {
  /* Backgrounds */
  --bg-base:        #0c1a09;
  --bg-surface:     #111f0e;
  --bg-card:        #182914;
  --bg-card-hover:  #1e3319;
  --bg-alt:         #0f1c0d;
  --bg-order:       #0b1709;

  /* Tone system */
  --tone-main:      #4a8055;
  --tone-support:   #386044;
  --tone-cta:       #5ec96e;
  --tone-cta-hover: #4ab85a;
  --tone-dim:       #2a5536;

  /* Pastel palette */
  --pastel-1:       #b4dbbf;
  --pastel-2:       #caebd4;
  --pastel-3:       #dff2e5;

  /* Text */
  --text-primary:   #e8f3ea;
  --text-secondary: #96bb9f;
  --text-muted:     #567a60;
  --text-on-cta:    #071209;

  /* Borders */
  --border-subtle:  #1c3020;
  --border-medium:  #264033;
  --border-accent:  #3a5e44;

  /* Shadows */
  --shadow-sm:   0 2px 12px rgba(0,0,0,.25);
  --shadow-card: 0 6px 28px rgba(0,0,0,.35);
  --shadow-lift: 0 12px 48px rgba(0,0,0,.45);

  /* Spacing */
  --space-xs:  .5rem;
  --space-sm:  1rem;
  --space-md:  1.75rem;
  --space-lg:  3rem;
  --space-xl:  5rem;
  --space-2xl: 8rem;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Nunito', 'Helvetica Neue', Arial, sans-serif;

  /* Radii */
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   22px;
  --r-xl:   32px;
  --r-pill: 999px;

  /* Transitions */
  --ease-out: cubic-bezier(.16,1,.3,1);
  --t-base:   .25s;
  --t-slow:   .45s;
}

/* ---- BODY ------------------------------------------------- */
body {
  background-color: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ---- LAYOUT HELPERS --------------------------------------- */
.section-container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--tone-cta);
  margin-bottom: var(--space-sm);
}
.section-eyebrow.light { color: var(--pastel-2); }

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}
.section-heading em { font-style: italic; color: var(--pastel-2); }
.section-heading.centered { text-align: center; }
.section-heading.light { color: #fff; }

.section-subtext {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: var(--space-lg);
}
.section-subtext.centered {
  text-align: center;
  margin-inline: auto;
}

/* ---- BUTTONS --------------------------------------------- */
.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--tone-cta);
  color: var(--text-on-cta);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  padding: .85rem 2rem;
  border-radius: var(--r-pill);
  transition: background var(--t-base) var(--ease-out),
              transform var(--t-base) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out);
  box-shadow: 0 4px 20px rgba(94,201,110,.25);
  white-space: nowrap;
}
.btn-cta-primary:hover {
  background: var(--tone-cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(94,201,110,.35);
}
.btn-cta-primary:active { transform: translateY(0); }
.btn-cta-primary.btn-full-width { width: 100%; justify-content: center; }

.btn-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--pastel-2);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: .85rem 1.75rem;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--border-accent);
  transition: border-color var(--t-base), background var(--t-base), color var(--t-base);
}
.btn-cta-ghost:hover {
  background: var(--bg-card);
  border-color: var(--tone-cta);
  color: var(--tone-cta);
}

.btn-header-cta {
  display: inline-flex;
  align-items: center;
  background: var(--tone-cta);
  color: var(--text-on-cta);
  font-size: .88rem;
  font-weight: 700;
  padding: .6rem 1.4rem;
  border-radius: var(--r-pill);
  transition: background var(--t-base), transform var(--t-base);
  white-space: nowrap;
}
.btn-header-cta:hover {
  background: var(--tone-cta-hover);
  transform: translateY(-1px);
}

/* ---- SCROLL REVEAL ---------------------------------------- */
.reveal-section,
.reveal-card {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.reveal-section.visible,
.reveal-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-card:nth-child(2) { transition-delay: .1s; }
.reveal-card:nth-child(3) { transition-delay: .2s; }
.reveal-card:nth-child(4) { transition-delay: .3s; }

/* ---- HEADER ---------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 1rem 0;
  background: transparent;
  transition: background var(--t-base), box-shadow var(--t-base),
              backdrop-filter var(--t-base), padding var(--t-base);
}
.site-header.scrolled {
  background: rgba(11,23,8,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(0,0,0,.4);
  padding: .65rem 0;
}
.header-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-shrink: 0;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -.01em;
}

.primary-nav { margin-left: auto; }
.nav-list {
  display: flex;
  gap: 2rem;
}
.nav-link {
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color var(--t-base);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--tone-cta);
  border-radius: var(--r-pill);
  transition: width var(--t-base) var(--ease-out);
}
.nav-link:hover { color: var(--tone-cta); }
.nav-link:hover::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color var(--t-base);
}
.header-phone:hover { color: var(--tone-cta); }

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .4rem;
}
.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: var(--r-pill);
  transition: transform .3s, opacity .3s;
}
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- HERO ------------------------------------------------ */
.hero-block {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 7rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(58,107,72,.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(13,65,30,.22) 0%, transparent 55%),
    var(--bg-base);
}
.hero-bg-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: .5;
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  width: 100%;
}

.hero-content { max-width: 560px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--tone-cta);
  margin-bottom: 1.25rem;
}
.eyebrow-dot {
  width: 8px; height: 8px;
  background: var(--tone-cta);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(.7); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}
.hero-headline em {
  font-style: italic;
  color: var(--pastel-2);
}

.hero-subtext {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.hero-delivery-note {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image-wrap {
  position: relative;
  width: min(440px, 90vw);
  height: min(440px, 90vw);
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image-halo {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(94,201,110,.12) 0%, transparent 70%);
  animation: hero-glow 4s ease-in-out infinite alternate;
}
@keyframes hero-glow {
  from { transform: scale(.95); opacity: .7; }
  to   { transform: scale(1.05); opacity: 1; }
}
.hero-product-img {
  position: relative;
  z-index: 2;
  width: 80%;
  height: 80%;
  object-fit: contain;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,.5));
  animation: float-product 6s ease-in-out infinite;
}
@keyframes float-product {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-12px); }
}
.hero-badge-float {
  position: absolute;
  bottom: 8%;
  right: 2%;
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--r-lg);
  padding: .8rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-card);
  z-index: 3;
  animation: float-product 6s ease-in-out infinite .5s;
}
.badge-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--tone-cta);
  line-height: 1;
}
.badge-label {
  font-size: .72rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
}
.hero-scroll-hint span {
  display: block;
  width: 2px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--tone-cta));
  border-radius: var(--r-pill);
  animation: scroll-hint 2s ease-in-out infinite;
}
@keyframes scroll-hint {
  0%,100% { opacity: 0; transform: scaleY(.4); transform-origin: top; }
  50%     { opacity: 1; transform: scaleY(1); }
}

/* Hero fade animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fade-in-up .8s var(--ease-out) .2s forwards;
}
.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  animation: fade-in-up .8s var(--ease-out) .4s forwards;
}
@keyframes fade-in-up {
  to { opacity: 1; transform: none; }
}

/* ---- TRUST STRIP ----------------------------------------- */
.trust-strip {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.4rem 0;
}
.trust-strip-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(.75rem, 3vw, 3rem);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .88rem;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: .02em;
}
.trust-icon { color: var(--tone-cta); flex-shrink: 0; }
.trust-divider {
  width: 1px;
  height: 22px;
  background: var(--border-subtle);
}

/* ---- ABOUT ---------------------------------------------- */
.about-block {
  padding-block: var(--space-2xl);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: center;
}
.about-text { max-width: 520px; }
.about-lead {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.about-body {
  font-size: .98rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.about-highlights {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 1.75rem;
}
.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-primary);
}
.highlight-item svg { color: var(--tone-cta); flex-shrink: 0; margin-top: .15rem; }

.about-image-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
}
.about-image-deco {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at 30% 70%, rgba(74,128,85,.2) 0%, transparent 60%);
  pointer-events: none;
}
.about-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--r-xl);
  border: 1px solid var(--border-subtle);
}

/* ---- PRODUCT --------------------------------------------- */
.product-block {
  padding-block: var(--space-2xl);
  background: var(--bg-surface);
  position: relative;
  overflow: hidden;
}
.product-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(58,107,72,.1) 0%, transparent 65%);
  pointer-events: none;
}
.product-header {
  margin-bottom: var(--space-xl);
}
.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.product-image-col {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-glow {
  position: absolute;
  width: 70%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(94,201,110,.15) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.product-main-img {
  position: relative;
  z-index: 2;
  width: 85%;
  max-width: 380px;
  object-fit: contain;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,.5));
  animation: float-product 6s ease-in-out infinite 1s;
}
.product-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
.product-feature-card {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  padding: 1rem 1.1rem;
  transition: border-color var(--t-base), transform var(--t-base);
}
.product-feature-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
}
.pf-icon {
  flex-shrink: 0;
  color: var(--tone-cta);
  background: rgba(94,201,110,.1);
  border-radius: var(--r-sm);
  padding: .5rem;
}
.product-feature-card div:last-child {
  display: flex;
  flex-direction: column;
}
.product-feature-card strong {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}
.product-feature-card span {
  font-size: .78rem;
  color: var(--text-muted);
  font-weight: 500;
}
.product-price-box {
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.5rem;
}
.price-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .4rem;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--tone-cta);
  line-height: 1.1;
}
.price-currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.price-note {
  font-size: .82rem;
  color: var(--text-muted);
  margin-top: .35rem;
}

/* ---- BENEFITS -------------------------------------------- */
.benefits-block {
  padding-block: var(--space-2xl);
}
.benefits-header { margin-bottom: var(--space-xl); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--t-base) var(--ease-out),
              border-color var(--t-base),
              box-shadow var(--t-base);
}
.benefit-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-lift);
}
.benefit-card-img-wrap {
  height: 200px;
  overflow: hidden;
}
.benefit-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-out);
}
.benefit-card:hover .benefit-card-img-wrap img { transform: scale(1.05); }
.benefit-card-body {
  padding: 1.5rem;
}
.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(94,201,110,.12);
  color: var(--tone-cta);
  border-radius: var(--r-md);
  margin-bottom: .9rem;
}
.benefit-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: .6rem;
  line-height: 1.2;
}
.benefit-text {
  font-size: .92rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ---- FOR WHOM -------------------------------------------- */
.for-whom-block {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.for-whom-bg-img {
  position: absolute;
  inset: 0;
}
.for-whom-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.for-whom-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
    rgba(10,24,8,.92) 0%,
    rgba(10,24,8,.75) 55%,
    rgba(10,24,8,.35) 100%);
}
.for-whom-block .section-container {
  position: relative;
  z-index: 2;
  padding-block: var(--space-2xl);
}
.for-whom-content {
  max-width: 580px;
}
.for-whom-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.for-whom-list li {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  line-height: 1.6;
}
.for-whom-list li svg { flex-shrink: 0; color: var(--tone-cta); margin-top: .15rem; }

/* ---- ROUTINE --------------------------------------------- */
.routine-block {
  padding-block: var(--space-2xl);
  background: var(--bg-surface);
}
.routine-header { margin-bottom: var(--space-xl); }
.routine-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.routine-step {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  position: relative;
  transition: border-color var(--t-base), transform var(--t-base);
}
.routine-step:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
}
.routine-connector {
  width: 3rem;
  height: 2px;
  background: linear-gradient(to right, var(--border-accent), var(--border-medium));
  flex-shrink: 0;
  align-self: center;
  margin-bottom: 1.5rem;
}
.step-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(94,201,110,.15);
  line-height: 1;
  margin-bottom: .75rem;
  letter-spacing: -.02em;
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: .65rem;
}
.step-text {
  font-size: .92rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ---- REVIEWS --------------------------------------------- */
.reviews-block {
  padding-block: var(--space-2xl);
}
.reviews-header { margin-bottom: var(--space-xl); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  transition: transform var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
}
.review-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-card);
}
.review-stars {
  font-size: 1.1rem;
  color: #f5c542;
  letter-spacing: .05em;
}
.review-quote p {
  font-size: .95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-top: auto;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--tone-support);
  color: var(--pastel-2);
  font-weight: 700;
  font-size: .88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-info strong {
  display: block;
  font-size: .92rem;
  color: var(--text-primary);
  font-weight: 700;
}
.review-info span {
  font-size: .8rem;
  color: var(--text-muted);
}
.reviews-trust-note {
  display: flex;
  align-items: center;
  gap: .6rem;
  justify-content: center;
  font-size: .82rem;
  color: var(--text-muted);
  font-weight: 600;
}
.reviews-trust-note svg { color: var(--tone-main); }

/* ---- ORDER SECTION --------------------------------------- */
.order-block {
  padding-block: var(--space-2xl);
  background: var(--bg-order);
  position: relative;
  overflow: hidden;
}
.order-bg-deco {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 10% 50%, rgba(58,107,72,.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 90% 20%, rgba(13,65,30,.15) 0%, transparent 55%);
  pointer-events: none;
}
.order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
  position: relative;
  z-index: 1;
}
.order-info { padding-top: .5rem; }
.order-price-display {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(94,201,110,.06);
  border: 1px solid rgba(94,201,110,.2);
  border-radius: var(--r-lg);
}
.order-price-amount {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--tone-cta);
  line-height: 1;
}
.order-price-amount span { font-size: 1.5rem; color: var(--text-secondary); }
.order-price-meta {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.order-price-meta span {
  font-size: .82rem;
  color: var(--text-secondary);
  font-weight: 500;
}
.order-perks {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  margin-bottom: 2rem;
}
.order-perks li {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .95rem;
  color: rgba(255,255,255,.85);
  font-weight: 500;
}
.order-perks li svg { color: var(--tone-cta); flex-shrink: 0; }
.order-product-thumb {
  width: 140px;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.4));
  animation: float-product 6s ease-in-out infinite 2s;
}

/* Form */
.order-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lift);
}
.form-card-heading {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: .4rem;
}
.form-card-sub {
  font-size: .9rem;
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
  line-height: 1.55;
}
.order-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-label {
  font-size: .84rem;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: .02em;
}
.required-mark { color: var(--tone-cta); }
.form-input {
  background: var(--bg-base);
  border: 1.5px solid var(--border-medium);
  border-radius: var(--r-md);
  padding: .8rem 1.1rem;
  font-family: var(--font-body);
  font-size: .96rem;
  color: var(--text-primary);
  transition: border-color var(--t-base), box-shadow var(--t-base);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-input::placeholder { color: var(--text-muted); }
.form-input:focus {
  border-color: var(--tone-cta);
  box-shadow: 0 0 0 3px rgba(94,201,110,.15);
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234a8055' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-select option { background: var(--bg-card); color: var(--text-primary); }
.form-textarea { resize: vertical; min-height: 80px; }
.form-submit-btn {
  margin-top: .5rem;
  font-size: 1.05rem;
}
.form-legal-note {
  font-size: .76rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.55;
}
.form-legal-note a {
  color: var(--tone-cta);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-legal-note a:hover { color: var(--pastel-1); }

/* ---- FAQ ------------------------------------------------- */
.faq-block {
  padding-block: var(--space-2xl);
  background: var(--bg-surface);
}
.faq-container { max-width: 780px; }
.faq-header { margin-bottom: var(--space-xl); }
.faq-list { display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--t-base);
}
.faq-item.open { border-color: var(--border-accent); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 1.5rem;
  text-align: left;
  cursor: pointer;
  transition: background var(--t-base);
}
.faq-question:hover { background: var(--bg-card-hover); }
.faq-question span:first-child {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.45;
}
.faq-icon {
  flex-shrink: 0;
  color: var(--tone-main);
  transition: transform .3s var(--ease-out);
}
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease-out), padding .3s;
}
.faq-answer:not([hidden]) {
  max-height: 400px;
  padding: 0 1.5rem 1.4rem;
}
.faq-answer[hidden] { display: block; }
.faq-answer p {
  font-size: .93rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ---- CONTACT --------------------------------------------- */
.contact-block {
  padding-block: var(--space-2xl);
}
.contact-header { margin-bottom: var(--space-xl); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .8rem;
  transition: border-color var(--t-base), transform var(--t-base);
}
.contact-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-3px);
}
.contact-icon {
  width: 56px;
  height: 56px;
  background: rgba(94,201,110,.1);
  color: var(--tone-cta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.contact-value {
  font-size: .92rem;
  color: var(--text-secondary);
  line-height: 1.65;
}
.contact-link {
  color: var(--pastel-1);
  font-weight: 600;
  transition: color var(--t-base);
}
.contact-link:hover { color: var(--tone-cta); }

/* ---- FOOTER ---------------------------------------------- */
.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
}
.footer-top { padding-block: var(--space-xl); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: clamp(1.5rem, 4vw, 3rem);
}
.footer-tagline {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: .85rem 0 1rem;
}
.footer-address {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.footer-col-heading {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}
.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: .7rem;
}
.footer-nav-list a {
  font-size: .88rem;
  color: var(--text-secondary);
  transition: color var(--t-base);
}
.footer-nav-list a:hover { color: var(--tone-cta); }
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: .7rem;
}
.footer-contact-list a,
.footer-contact-list li {
  font-size: .88rem;
  color: var(--text-secondary);
  transition: color var(--t-base);
}
.footer-contact-list a:hover { color: var(--tone-cta); }
.footer-bottom {
  background: var(--bg-alt);
  border-top: 1px solid var(--border-subtle);
  padding: 1.4rem 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-copy {
  font-size: .82rem;
  color: var(--text-muted);
  font-weight: 600;
  white-space: nowrap;
}
.footer-disclaimer-note {
  font-size: .76rem;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.65;
  opacity: .7;
}

/* ---- COOKIE BANNER --------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--bg-card);
  border-top: 1px solid var(--border-medium);
  box-shadow: 0 -4px 32px rgba(0,0,0,.5);
  transform: translateY(100%);
  transition: transform .45s var(--ease-out);
}
.cookie-banner:not([hidden]) {
  transform: translateY(0);
}
.cookie-banner[hidden] { display: block; visibility: hidden; }
.cookie-banner-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding: 1.4rem clamp(1.25rem, 5vw, 2.5rem);
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.cookie-text {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  flex: 1;
  min-width: 280px;
}
.cookie-icon { flex-shrink: 0; color: var(--tone-cta); margin-top: .1rem; }
.cookie-text p {
  font-size: .85rem;
  color: var(--text-secondary);
  line-height: 1.65;
}
.cookie-link {
  color: var(--tone-cta);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-link:hover { color: var(--pastel-1); }
.cookie-actions {
  display: flex;
  gap: .75rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.cookie-btn-accept {
  background: var(--tone-cta);
  color: var(--text-on-cta);
  font-size: .88rem;
  font-weight: 700;
  padding: .65rem 1.5rem;
  border-radius: var(--r-pill);
  transition: background var(--t-base), transform var(--t-base);
  white-space: nowrap;
}
.cookie-btn-accept:hover {
  background: var(--tone-cta-hover);
  transform: translateY(-1px);
}
.cookie-btn-reject {
  background: transparent;
  color: var(--text-secondary);
  font-size: .88rem;
  font-weight: 600;
  padding: .65rem 1.4rem;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--border-accent);
  transition: border-color var(--t-base), color var(--t-base);
  white-space: nowrap;
}
.cookie-btn-reject:hover {
  border-color: var(--text-secondary);
  color: var(--text-primary);
}

/* ---- LEGAL PAGES ----------------------------------------- */
.legal-page-wrap {
  max-width: 820px;
  margin-inline: auto;
  padding: 7rem clamp(1.25rem, 5vw, 2.5rem) 5rem;
}
.legal-page-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: .6rem;
}
.legal-page-date {
  font-size: .84rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
}
.legal-section {
  margin-bottom: 2.5rem;
}
.legal-section h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--pastel-2);
  margin-bottom: .85rem;
}
.legal-section p,
.legal-section li {
  font-size: .95rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: .6rem;
}
.legal-section ul,
.legal-section ol {
  padding-left: 1.5rem;
  list-style: disc;
}
.legal-section ol { list-style: decimal; }
.legal-section a {
  color: var(--tone-cta);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ---- SUCCESS PAGE ---------------------------------------- */
.success-page-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem clamp(1.25rem, 6vw, 3rem);
  background: var(--bg-base);
}
.success-check {
  width: 90px;
  height: 90px;
  background: rgba(94,201,110,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  border: 2px solid rgba(94,201,110,.3);
}
.success-check svg { color: var(--tone-cta); }
.success-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.success-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

/* ---- RESPONSIVE ------------------------------------------ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefits-grid {
    gap: 1.25rem;
  }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-delivery-note { justify-content: center; }
  .hero-visual { justify-content: center; }
  .hero-image-wrap { width: min(320px, 70vw); height: min(320px, 70vw); }
  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrap { max-height: 360px; overflow: hidden; }
  .about-img { height: 360px; }
  .product-showcase { grid-template-columns: 1fr; }
  .product-image-col { max-width: 300px; margin-inline: auto; }
  .order-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; gap: 1rem; }
  .routine-steps { flex-direction: column; gap: 1.5rem; }
  .routine-connector { display: none; }
  .primary-nav { display: none; }
  .primary-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    top: 64px;
    background: rgba(11,23,8,.98);
    backdrop-filter: blur(16px);
    z-index: 800;
    padding: 2rem;
    align-items: center;
    justify-content: center;
    gap: 0;
  }
  .primary-nav.open .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .primary-nav.open .nav-link { font-size: 1.5rem; }
  .mobile-menu-toggle { display: flex; }
  .header-phone { display: none; }
}

@media (max-width: 640px) {
  :root { --space-2xl: 5rem; --space-xl: 3.5rem; }
  .benefits-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .product-features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom-inner { flex-direction: column; gap: .75rem; }
  .order-form-card { padding: 1.75rem 1.25rem; }
  .trust-strip-inner { gap: 1rem; }
  .trust-divider { display: none; }
  .hero-badge-float { display: none; }
}

@media (max-width: 420px) {
  .contact-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-cta-ghost, .btn-cta-primary { width: 100%; justify-content: center; }
}

/* ---- PRINT ----------------------------------------------- */
@media print {
  .site-header, .cookie-banner, .hero-scroll-hint { display: none !important; }
  body { background: #fff; color: #111; }
  a { color: #000; }
}

/* ---- ACCESSIBILITY --------------------------------------- */
:focus-visible {
  outline: 2px solid var(--tone-cta);
  outline-offset: 3px;
  border-radius: 4px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .hero-product-img,
  .hero-badge-float,
  .order-product-thumb { animation: none; }
}
