/* ============================================================
   INSUNORM — Tonvita Hrvatska
   CSS Architecture: Section-scoped semantic
   Variable Style: --brand / --brand-alt / --highlight
   Typography: Cormorant Garamond + DM Sans
   Palette: Dark forest green + Rich emerald + Pastel mint
   Generated: 28.04.2026
   ============================================================ */

/* === CUSTOM PROPERTIES === */
:root {
  /* Brand palette */
  --brand-deep:        #0a1f14;
  --brand-forest:      #0f2318;
  --brand-dark:        #1a3a2a;
  --brand-mid:         #2d6e4e;
  --brand-alt:         #3a8a62;
  --brand-highlight:   #5edd8a;
  --brand-soft:        #a8e6c3;
  --brand-pastel:      #d4f5e4;
  --brand-whisper:     #f0faf5;

  /* Neutrals */
  --neutral-100:       #ffffff;
  --neutral-95:        #f8faf9;
  --neutral-90:        #ecf5f0;
  --neutral-80:        #d0ddd6;
  --neutral-50:        #7a9489;
  --neutral-30:        #3a4f45;
  --neutral-10:        #141f1a;

  /* Text */
  --text-primary:      #f0faf5;
  --text-body:         #cce8d9;
  --text-muted:        #7aaa90;
  --text-dark:         #0f2318;
  --text-dark-body:    #2a4035;

  /* Spacing scale */
  --space-xs:   0.375rem;
  --space-sm:   0.75rem;
  --space-md:   1.25rem;
  --space-lg:   2rem;
  --space-xl:   3.5rem;
  --space-2xl:  6rem;
  --space-3xl:  9rem;

  /* Radius */
  --radius-sm:  6px;
  --radius-md:  14px;
  --radius-lg:  24px;
  --radius-xl:  40px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-card:    0 4px 24px rgba(0,0,0,0.18);
  --shadow-hover:   0 8px 40px rgba(0,0,0,0.28);
  --shadow-glow:    0 0 40px rgba(94, 221, 138, 0.15);

  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Max widths */
  --max-content: 1160px;
  --max-narrow:  780px;
}

/* === RESET & BASE === */
*, *::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: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  color: var(--text-dark-body);
  background-color: var(--neutral-95);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--brand-alt);
  text-decoration: none;
  transition: color 0.2s var(--ease-smooth);
}

a:hover { color: var(--brand-highlight); }

button { cursor: pointer; border: none; background: none; font-family: inherit; }

ul { list-style: none; }

address { font-style: normal; }

/* === TYPOGRAPHY HELPERS === */
.section-label {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-highlight);
  margin-bottom: var(--space-sm);
}

.section-label--light { color: var(--brand-soft); }

.section-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--brand-dark);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.section-heading--light { color: var(--neutral-100); }

.section-subheading {
  font-size: 1.05rem;
  color: var(--neutral-50);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.section-subheading--light { color: var(--brand-soft); }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s var(--ease-smooth);
  white-space: nowrap;
  border-radius: var(--radius-pill);
}

.btn--primary {
  background: linear-gradient(135deg, var(--brand-mid) 0%, var(--brand-highlight) 100%);
  color: var(--brand-deep);
  padding: 0.85rem 2rem;
  font-size: 0.95rem;
  box-shadow: 0 4px 20px rgba(94, 221, 138, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(94, 221, 138, 0.45);
  color: var(--brand-deep);
}

.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  padding: 0.85rem 1.5rem;
  font-size: 0.9rem;
  border: 1.5px solid rgba(94, 221, 138, 0.35);
}

.btn--ghost:hover {
  border-color: var(--brand-highlight);
  color: var(--brand-highlight);
  background: rgba(94, 221, 138, 0.06);
}

.btn--md { padding: 0.72rem 1.6rem; font-size: 0.9rem; }
.btn--lg { padding: 1rem 2.4rem; font-size: 1rem; }
.btn--xl { padding: 1.1rem 2.8rem; font-size: 1.05rem; width: 100%; justify-content: center; }

/* === COOKIE BANNER === */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--brand-deep);
  border-top: 2px solid var(--brand-mid);
  padding: var(--space-md) var(--space-lg);
  transform: translateY(0);
  transition: transform 0.3s var(--ease-smooth);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
}

.cookie-bar.hidden {
  transform: translateY(110%);
  pointer-events: none;
}

.cookie-bar__inner {
  max-width: var(--max-content);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.cookie-bar__text {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  flex: 1;
  min-width: 260px;
}

.cookie-bar__icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }

.cookie-bar__text p {
  font-size: 0.84rem;
  color: var(--brand-soft);
  line-height: 1.55;
}

.cookie-bar__text a {
  color: var(--brand-highlight);
  text-decoration: underline;
}

.cookie-bar__actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}

.cookie-bar__btn {
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-pill);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.cookie-bar__btn--accept {
  background: var(--brand-highlight);
  color: var(--brand-deep);
  border: 1.5px solid var(--brand-highlight);
}

.cookie-bar__btn--accept:hover { background: var(--brand-soft); }

.cookie-bar__btn--decline {
  background: transparent;
  color: var(--brand-soft);
  border: 1.5px solid rgba(168, 230, 195, 0.35);
}

.cookie-bar__btn--decline:hover {
  border-color: var(--brand-soft);
  color: var(--neutral-100);
}

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 31, 20, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(94, 221, 138, 0.1);
  transition: background 0.3s var(--ease-smooth), box-shadow 0.3s;
}

.site-header.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

.site-header__container {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.site-header__logo-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.site-header__brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--neutral-100);
  line-height: 1;
}

.site-header__tagline {
  font-size: 0.65rem;
  color: var(--brand-soft);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.site-header__nav a {
  font-size: 0.88rem;
  color: var(--brand-soft);
  font-weight: 500;
  transition: color 0.2s;
  text-decoration: none;
}

.site-header__nav a:hover { color: var(--brand-highlight); }

.site-header__nav-cta {
  background: linear-gradient(135deg, var(--brand-mid), var(--brand-highlight));
  color: var(--brand-deep) !important;
  padding: 0.45rem 1.2rem;
  border-radius: var(--radius-pill);
  font-weight: 600 !important;
  font-size: 0.85rem;
}

.site-header__nav-cta:hover { transform: translateY(-1px); opacity: 0.9; }

.site-header__menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.site-header__menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brand-soft);
  border-radius: 2px;
  transition: all 0.25s;
}

.site-header__mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--brand-forest);
  border-top: 1px solid rgba(94,221,138,0.1);
  padding: var(--space-md) var(--space-lg);
  gap: var(--space-sm);
}

.site-header__mobile-nav a {
  color: var(--brand-soft);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(94,221,138,0.08);
  display: block;
}

.site-header__mobile-nav.open { display: flex; }

/* === HERO SECTION === */
.hero-section {
  position: relative;
  background: linear-gradient(160deg, var(--brand-deep) 0%, var(--brand-forest) 40%, var(--brand-dark) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 70px;
  overflow: hidden;
}

.hero-section__bg-decor {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(45, 110, 78, 0.2) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(94, 221, 138, 0.07) 0%, transparent 60%);
  pointer-events: none;
}

.hero-section__container {
  position: relative;
  z-index: 1;
  max-width: var(--max-content);
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.hero-section__eyebrow { margin-bottom: var(--space-md); }

.hero-section__badge {
  display: inline-block;
  background: rgba(94, 221, 138, 0.12);
  border: 1px solid rgba(94, 221, 138, 0.3);
  color: var(--brand-highlight);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.hero-section__heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--neutral-100);
  line-height: 1.1;
  margin-bottom: var(--space-md);
}

.hero-section__heading em {
  font-style: italic;
  color: var(--brand-highlight);
}

.hero-section__lead {
  font-size: 1.05rem;
  color: var(--brand-soft);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
  max-width: 500px;
}

.hero-section__trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.hero-section__trust-strip span {
  font-size: 0.8rem;
  color: var(--brand-highlight);
  font-weight: 600;
  letter-spacing: 0.03em;
}

.hero-section__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: var(--space-md);
}

.hero-section__disclaimer {
  font-size: 0.74rem;
  color: var(--text-muted);
  font-style: italic;
}

.hero-section__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-section__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow-hover), var(--shadow-glow);
  padding-bottom: 40px;
  padding-left: 30px;
}

.hero-section__img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}

.hero-section__product-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--brand-forest);
  border: 1.5px solid rgba(94, 221, 138, 0.25);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  box-shadow: var(--shadow-card);
  max-width: 220px;
}

.hero-section__product-badge img {
  width: 60px;
  height: auto;
  flex-shrink: 0;
  object-fit: contain;
}

.hero-section__product-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-section__product-info strong {
  color: var(--neutral-100);
  font-size: 0.95rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

.hero-section__product-info span {
  font-size: 0.74rem;
  color: var(--brand-soft);
}

/* === TRUST STRIP === */
.trust-strip {
  background: var(--brand-dark);
  border-top: 1px solid rgba(94,221,138,0.12);
  border-bottom: 1px solid rgba(94,221,138,0.12);
  padding: var(--space-md) var(--space-lg);
}

.trust-strip__container {
  max-width: var(--max-content);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-xl);
}

.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand-soft);
  letter-spacing: 0.03em;
}

/* === AUDIENCE SECTION === */
.audience-section {
  background: var(--neutral-95);
  padding: var(--space-3xl) var(--space-lg);
}

.audience-section__container {
  max-width: var(--max-content);
  margin: 0 auto;
}

.audience-section__intro {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.audience-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  margin-bottom: var(--space-2xl);
}

.audience-section__img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.audience-section__checklist {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.audience-section__checklist li {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.checklist-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: rgba(94, 221, 138, 0.12);
  border: 1.5px solid rgba(94, 221, 138, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-highlight);
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 3px;
}

.audience-section__checklist strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: 4px;
}

.audience-section__checklist p {
  font-size: 0.88rem;
  color: var(--neutral-50);
  line-height: 1.6;
}

.audience-section__disclaimer-note {
  margin-top: var(--space-lg);
  padding: var(--space-md);
  background: rgba(45,110,78,0.06);
  border-left: 3px solid var(--brand-alt);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.8rem;
  color: var(--neutral-50);
  font-style: italic;
}

.audience-section__wellness-block {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 280px;
}

.audience-section__wellness-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.audience-section__wellness-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,31,20,0.85) 0%, rgba(10,31,20,0.4) 60%, transparent 100%);
  display: flex;
  align-items: center;
  padding: var(--space-2xl);
}

.audience-section__quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: var(--neutral-100);
  max-width: 500px;
  line-height: 1.5;
  border-left: 3px solid var(--brand-highlight);
  padding-left: var(--space-lg);
}

/* === PRODUCT SECTION === */
.product-section {
  background: var(--brand-forest);
  padding: var(--space-3xl) var(--space-lg);
}

.product-section__container {
  max-width: var(--max-content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.product-section__img-frame {
  background: var(--brand-dark);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  border: 1px solid rgba(94,221,138,0.15);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  position: sticky;
  top: 90px;
}

.product-section__img {
  max-width: 260px;
  margin: 0 auto var(--space-lg);
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.3));
}

.product-section__img-detail {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.product-section__img-detail span {
  background: rgba(94,221,138,0.1);
  border: 1px solid rgba(94,221,138,0.2);
  color: var(--brand-highlight);
  padding: 0.28rem 0.7rem;
  border-radius: var(--radius-pill);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.product-section .section-heading { color: var(--neutral-100); }
.product-section .section-label { color: var(--brand-highlight); }

.product-section__intro-text {
  font-size: 1.05rem;
  color: var(--brand-soft);
  line-height: 1.75;
  margin-bottom: var(--space-md);
}

.product-section__body-text {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-xl);
}

.product-section__specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.product-spec-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(94,221,138,0.1);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: border-color 0.2s, background 0.2s;
}

.product-spec-card:hover {
  border-color: rgba(94,221,138,0.25);
  background: rgba(255,255,255,0.06);
}

.product-spec-card__icon {
  font-size: 1.4rem;
  display: block;
  margin-bottom: var(--space-xs);
}

.product-spec-card strong {
  display: block;
  font-size: 0.88rem;
  color: var(--brand-soft);
  font-weight: 600;
  margin-bottom: 4px;
}

.product-spec-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* === BENEFITS SECTION === */
.benefits-section {
  background: var(--neutral-95);
  padding: var(--space-3xl) var(--space-lg);
}

.benefits-section__container {
  max-width: var(--max-content);
  margin: 0 auto;
  text-align: center;
}

.benefits-section__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  text-align: left;
}

.benefit-card {
  background: var(--neutral-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border: 1px solid var(--neutral-90);
  transition: transform 0.25s var(--ease-smooth), box-shadow 0.25s;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.benefit-card__img-wrap {
  overflow: hidden;
  height: 180px;
}

.benefit-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease-smooth);
}

.benefit-card:hover .benefit-card__img { transform: scale(1.04); }

.benefit-card__body {
  padding: var(--space-md) var(--space-lg);
}

.benefit-card__number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-pastel);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.benefit-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: var(--space-xs);
}

.benefit-card__text {
  font-size: 0.82rem;
  color: var(--neutral-50);
  line-height: 1.65;
}

/* === ROUTINE SECTION === */
.routine-section {
  background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand-dark) 100%);
  padding: var(--space-3xl) var(--space-lg);
  position: relative;
  overflow: hidden;
}

.routine-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(94,221,138,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.routine-section__container {
  max-width: var(--max-content);
  margin: 0 auto;
}

.routine-section__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.routine-section__steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

.routine-step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(94,221,138,0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  max-width: 200px;
  flex: 1;
  min-width: 150px;
  transition: border-color 0.2s, background 0.2s;
}

.routine-step:hover {
  border-color: rgba(94,221,138,0.3);
  background: rgba(255,255,255,0.07);
}

.routine-step__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand-highlight);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.routine-step h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--neutral-100);
  margin-bottom: var(--space-xs);
}

.routine-step p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.routine-step__connector {
  color: var(--brand-highlight);
  font-size: 1.5rem;
  font-weight: 300;
  flex-shrink: 0;
}

.routine-section__note {
  background: rgba(94,221,138,0.06);
  border: 1px solid rgba(94,221,138,0.15);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  max-width: 700px;
  margin: 0 auto;
}

.routine-section__note p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* === REVIEWS SECTION === */
.reviews-section {
  background: var(--neutral-95);
  padding: var(--space-3xl) var(--space-lg);
}

.reviews-section__container {
  max-width: var(--max-content);
  margin: 0 auto;
  text-align: center;
}

.reviews-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  text-align: left;
  margin-bottom: var(--space-lg);
}

.review-card {
  background: var(--neutral-100);
  border: 1px solid var(--neutral-90);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.review-card--featured {
  background: var(--brand-dark);
  border-color: rgba(94,221,138,0.2);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.review-card__avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--brand-mid), var(--brand-highlight));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand-deep);
  flex-shrink: 0;
}

.review-card__avatar--alt {
  background: linear-gradient(135deg, var(--brand-alt), var(--brand-soft));
}

.review-card__avatar--c {
  background: linear-gradient(135deg, #4a9e7a, var(--brand-pastel));
}

.review-card__meta {
  flex: 1;
}

.review-card__meta strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand-dark);
}

.review-card--featured .review-card__meta strong { color: var(--neutral-100); }

.review-card__meta span {
  font-size: 0.76rem;
  color: var(--neutral-50);
}

.review-card--featured .review-card__meta span { color: var(--text-muted); }

.review-card__stars {
  color: #f5c518;
  font-size: 0.85rem;
  letter-spacing: 2px;
}

.review-card__text {
  font-size: 0.87rem;
  color: var(--neutral-50);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
  position: relative;
  padding-left: var(--space-md);
}

.review-card--featured .review-card__text { color: var(--brand-soft); }

.review-card__text::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -4px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--brand-highlight);
  line-height: 1;
}

.review-card__use-period {
  font-size: 0.74rem;
  color: var(--brand-alt);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.review-card--featured .review-card__use-period { color: var(--brand-highlight); }

.reviews-section__legal-note {
  font-size: 0.75rem;
  color: var(--neutral-50);
  font-style: italic;
}

/* === TRUST SECTION === */
.trust-section {
  background: var(--brand-forest);
  padding: var(--space-3xl) var(--space-lg);
  border-top: 1px solid rgba(94,221,138,0.1);
}

.trust-section__container {
  max-width: var(--max-content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--space-2xl);
  align-items: start;
}

.trust-section .section-heading { color: var(--neutral-100); }

.trust-section__text {
  font-size: 0.95rem;
  color: var(--brand-soft);
  line-height: 1.75;
  margin-bottom: var(--space-xl);
}

.trust-section__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.trust-pillar {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(94,221,138,0.1);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}

.trust-pillar__icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: var(--space-sm);
}

.trust-pillar h3 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brand-soft);
  margin-bottom: var(--space-xs);
}

.trust-pillar p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.trust-section__contact {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(94,221,138,0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

.trust-section__contact h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--neutral-100);
  margin-bottom: var(--space-lg);
}

.trust-section__contact-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.trust-section__contact-list li {
  display: flex;
  gap: 0.6rem;
  font-size: 0.84rem;
  color: var(--brand-soft);
}

.trust-section__contact-list li span:first-child { flex-shrink: 0; }

.trust-section__contact-list a {
  color: var(--brand-highlight);
}

/* === FAQ SECTION === */
.faq-section {
  background: var(--neutral-100);
  padding: var(--space-3xl) var(--space-lg);
}

.faq-section__container {
  max-width: var(--max-narrow);
  margin: 0 auto;
  text-align: center;
}

.faq-section__list {
  margin-top: var(--space-2xl);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--neutral-90);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--neutral-90);
}

.faq-item:last-child { border-bottom: none; }

.faq-item__trigger {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-xl);
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--brand-dark);
  transition: background 0.2s, color 0.2s;
}

.faq-item__trigger:hover {
  background: var(--neutral-95);
  color: var(--brand-mid);
}

.faq-item__trigger[aria-expanded="true"] {
  background: var(--brand-dark);
  color: var(--neutral-100);
}

.faq-item__icon {
  font-size: 1.2rem;
  font-weight: 400;
  flex-shrink: 0;
  color: var(--brand-highlight);
  transition: transform 0.2s;
  line-height: 1;
}

.faq-item__trigger[aria-expanded="true"] .faq-item__icon { transform: rotate(45deg); }

.faq-item__answer {
  padding: 0 var(--space-xl) var(--space-lg);
  background: var(--neutral-95);
}

.faq-item__answer p {
  font-size: 0.87rem;
  color: var(--neutral-50);
  line-height: 1.75;
}

.faq-item__answer a { color: var(--brand-alt); text-decoration: underline; }

/* === ORDER SECTION === */
.order-section {
  background: linear-gradient(160deg, var(--brand-forest) 0%, var(--brand-deep) 100%);
  padding: var(--space-3xl) var(--space-lg);
}

.order-section__container {
  max-width: var(--max-content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.order-section__offer-card {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(94,221,138,0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-top: var(--space-xl);
}

.order-section__offer-card img {
  width: 80px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.25));
}

.order-section__offer-details h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--neutral-100);
  margin-bottom: 4px;
}

.order-section__offer-details p {
  font-size: 0.78rem;
  color: var(--brand-soft);
  margin-bottom: var(--space-sm);
}

.order-section__price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.order-section__price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brand-highlight);
}

.order-section__price-note {
  font-size: 0.74rem;
  color: var(--text-muted);
}

.order-form {
  background: var(--neutral-100);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-2xl);
  box-shadow: var(--shadow-hover);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.order-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.order-form__field--full {
  grid-column: 1 / -1;
}

.order-form__field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark-body);
  letter-spacing: 0.02em;
}

.order-form__field input,
.order-form__field textarea {
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--neutral-90);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--neutral-95);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.order-form__field input:focus,
.order-form__field textarea:focus {
  border-color: var(--brand-mid);
  box-shadow: 0 0 0 3px rgba(45,110,78,0.1);
  background: var(--neutral-100);
}

.order-form__field textarea { resize: vertical; }

.order-form__consent {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.order-form__consent input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--brand-mid);
  width: 16px;
  height: 16px;
}

.order-form__consent label {
  font-size: 0.78rem;
  color: var(--neutral-50);
  line-height: 1.5;
}

.order-form__consent a { color: var(--brand-alt); text-decoration: underline; }

.order-form__submit {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.order-form__submit-note {
  font-size: 0.75rem;
  color: var(--neutral-50);
}

/* === FOOTER === */
.site-footer {
  background: var(--brand-deep);
  border-top: 1px solid rgba(94,221,138,0.1);
  padding: var(--space-2xl) var(--space-lg) var(--space-lg);
}

.site-footer__container {
  max-width: var(--max-content);
  margin: 0 auto;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(94,221,138,0.08);
  margin-bottom: var(--space-xl);
}

.site-footer__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
  text-decoration: none;
}

.site-footer__logo span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--neutral-100);
}

.site-footer__brand p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-md);
  max-width: 280px;
}

.site-footer__address {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.site-footer__links h3 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-soft);
  margin-bottom: var(--space-md);
}

.site-footer__links ul { display: flex; flex-direction: column; gap: 0.5rem; }

.site-footer__links li { font-size: 0.82rem; color: var(--text-muted); }

.site-footer__links a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.site-footer__links a:hover { color: var(--brand-highlight); }

.site-footer__disclaimer {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(94,221,138,0.08);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  margin-bottom: var(--space-lg);
}

.site-footer__disclaimer p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.site-footer__bottom p {
  font-size: 0.74rem;
  color: var(--text-muted);
}

/* === RESPONSIVE === */
@media (max-width: 1080px) {
  .benefits-section__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-section__container {
    grid-template-columns: 1fr;
  }

  .product-section__img-frame {
    position: static;
    max-width: 400px;
    margin: 0 auto;
  }

  .site-footer__top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .hero-section__container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: var(--space-xl);
  }

  .hero-section__visual { order: -1; }

  .hero-section__product-badge { left: 0; bottom: 0; transform: none; }

  .hero-section__lead { max-width: 100%; }
  .hero-section__actions { justify-content: center; }
  .hero-section__trust-strip { justify-content: center; }

  .audience-section__grid { grid-template-columns: 1fr; }

  .reviews-section__grid { grid-template-columns: 1fr; }

  .trust-section__container { grid-template-columns: 1fr; }
  .trust-section__pillars { grid-template-columns: 1fr; }

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

  .routine-section__steps { gap: var(--space-sm); }
  .routine-step__connector { display: none; }

  .site-header__nav { display: none; }
  .site-header__menu-toggle { display: flex; }

  .order-form {
    grid-template-columns: 1fr;
    padding: var(--space-lg);
  }

  .order-form__field--full { grid-column: 1; }
  .order-form__submit { grid-column: 1; }
  .order-form__consent { grid-column: 1; }
}

@media (max-width: 580px) {
  :root {
    --space-2xl: 3.5rem;
    --space-3xl: 5rem;
  }

  .benefits-section__cards { grid-template-columns: 1fr; }

  .trust-strip__container { gap: var(--space-lg); }

  .site-footer__top { grid-template-columns: 1fr; }
  .site-footer__bottom { flex-direction: column; text-align: center; }

  .hero-section__actions { flex-direction: column; width: 100%; }
  .hero-section__actions .btn { width: 100%; justify-content: center; }

  .product-section__specs-grid { grid-template-columns: 1fr; }
}

/* === UTILITY ANIMATIONS === */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-section__content > * {
  animation: fadeSlideUp 0.6s var(--ease-smooth) both;
}

.hero-section__eyebrow   { animation-delay: 0.1s; }
.hero-section__heading   { animation-delay: 0.2s; }
.hero-section__lead      { animation-delay: 0.3s; }
.hero-section__trust-strip { animation-delay: 0.4s; }
.hero-section__actions   { animation-delay: 0.5s; }
.hero-section__disclaimer { animation-delay: 0.6s; }
