/* ============================================================
   PEGASUS PHARMA — Design System
   Premium Pharmaceutical · Tanger · Maroc
   ============================================================ */

/* ──────────────────────────────────────────
   1. CSS Custom Properties
   ────────────────────────────────────────── */
:root {
  /* Pegasus identity: pharmaceutical blue, saffron gold, soft botanical violet */
  --navy:        #0056A8;
  --navy-mid:    #0A4584;
  --navy-light:  #D9EBFA;
  --navy-dark:   #06345F;
  --gold:        #D99A2B;
  --gold-light:  #FFF1D1;
  --gold-dark:   #A76E12;
  --gold-pale:   #FFF7E8;
  --saffron-red: #B0432B;
  --saffron-purple: #7D5FC7;
  --blue-pale:   #EEF7FF;

  /* Neutral greys for secondary labels (future products etc.) */
  --sage:        #6E6B64;
  --terracotta:  #8A857C;

  /* Neutrals — crisp white + soft warm off-white sections */
  --white:       #FFFFFF;   /* page / crisp surfaces */
  --grey-light:  #F5F2EB;   /* warm off-white alternating sections */
  --grey:        #E6E2D9;   /* borders */
  --grey-mid:    #CFC9BC;
  --text:        #161513;
  --text-body:   #3C3A35;
  --text-muted:  #6E6B64;

  /* Semantic */
  --success:     #2E5E3A;
  --warning:     #D99A2B;
  --error:       #9A3B2A;

  /* Typography — Visuelt Pro (Thorne) with Hanken Grotesk web fallback */
  --font-head:    'Visuelt Pro', 'Hanken Grotesk', system-ui, sans-serif;
  --font-heading: 'Visuelt Pro', 'Hanken Grotesk', system-ui, sans-serif;
  --font-body:    'Visuelt Pro', 'Hanken Grotesk', system-ui, sans-serif;

  /* Spacing scale */
  --space-xs:    4px;
  --space-sm:    8px;
  --space-md:    16px;
  --space-lg:    24px;
  --space-xl:    40px;
  --space-2xl:   64px;
  --space-3xl:   96px;
  --space-4xl:   128px;

  /* Layout */
  --max-width:   1280px;
  --container-pad: clamp(20px, 5vw, 80px);

  /* Radius */
  --radius-sm:   4px;
  --radius:      8px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-pill: 100px;

  /* Shadows */
  --shadow-xs:   0 1px 4px rgba(27,42,74,.06);
  --shadow-sm:   0 2px 12px rgba(27,42,74,.08);
  --shadow:      0 4px 24px rgba(27,42,74,.10);
  --shadow-lg:   0 12px 48px rgba(27,42,74,.14);
  --shadow-xl:   0 24px 80px rgba(27,42,74,.20);

  /* Transitions */
  --ease:        cubic-bezier(.25,.46,.45,.94);
  --trans:       .25s var(--ease);
  --trans-slow:  .45s var(--ease);

  /* Header */
  --header-h:    80px;
  --utility-h:   0px;
  --shell-h:     80px;
}

/* ──────────────────────────────────────────
   2. Reset & Base
   ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); font-weight: 700; line-height: 1.25; color: var(--text); }
.reg-mark {
  position: relative;
  top: -.5em;
  font-size: .42em;
  line-height: 0;
  vertical-align: baseline;
  margin-left: .025em;
  font-weight: inherit;
}

/* ──────────────────────────────────────────
   3. Layout Utilities
   ────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.section { padding: var(--space-3xl) 0; }
.section--sm { padding: var(--space-2xl) 0; }
.section--lg { padding: calc(var(--space-3xl) * 1.5) 0; }

.section--white  { background: var(--white); }
.section--grey   { background: var(--grey-light); }
.section--navy   { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%); color: var(--white); }
.section--navy .section-label,
.section--navy .section-title,
.section--navy .section-subtitle { color: var(--white); }

.grid { display: grid; }
.grid-2 { grid-template-columns: repeat(2, 1fr); gap: var(--space-xl); }
.grid-3 { grid-template-columns: repeat(3, 1fr); gap: var(--space-xl); }
.grid-4 { grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); }
.grid-auto { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--space-xl); }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }

.text-center { text-align: center; }
.text-left  { text-align: left; }

/* ──────────────────────────────────────────
   4. Section Headers
   ────────────────────────────────────────── */
.section-head { text-align: center; margin-bottom: var(--space-2xl); }
.section-head--left { text-align: left; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-md);
  letter-spacing: -.02em;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ──────────────────────────────────────────
   5. Typography Scale
   ────────────────────────────────────────── */
.h1 { font-size: clamp(2.2rem, 5vw, 4rem);    font-weight: 800; letter-spacing: -.03em; }
.h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; letter-spacing: -.02em; }
.h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 700; }
.h4 { font-size: clamp(1.1rem, 2vw, 1.35rem);  font-weight: 600; }

.lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-body);
}

.caption {
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ──────────────────────────────────────────
   6. Buttons
   ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 14px 32px;
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  transition: all var(--trans);
  white-space: nowrap;
  line-height: 1;
}

.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-primary {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  box-shadow: 0 10px 24px rgba(217,154,43,.24);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  box-shadow: 0 12px 30px rgba(167,110,18,.28);
  transform: translateY(-1px);
}

.btn-navy {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: #fff;
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: #fff;
}

.btn-sm { padding: 10px 22px; font-size: .8rem; }
.btn-lg { padding: 18px 44px; font-size: 1rem; }
.btn-xl { padding: 22px 56px; font-size: 1.05rem; letter-spacing: .06em; }

/* ──────────────────────────────────────────
   7. Header / Navigation
   ────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: auto;
  background: transparent;
  transition: transform var(--trans), background var(--trans), box-shadow var(--trans), border-color var(--trans);
}

.site-header.scrolled {
  background: rgba(6,52,95,.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 48px rgba(6,52,95,.22);
}

.site-header.header-light {
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header::after {
  content: '';
  position: absolute;
  left: var(--container-pad);
  right: var(--container-pad);
  bottom: 0;
  height: 1px;
  background: rgba(255,255,255,.12);
  transition: opacity var(--trans), background var(--trans);
}

.site-header.header-light::after {
  background: rgba(12,11,10,.08);
}

.site-header.scrolled::after,
.site-header.menu-open::after {
  opacity: 0;
}
.site-header.header-light .nav-link { color: var(--navy); }
.site-header.header-light .site-logo { filter: none; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  padding: 0 var(--container-pad);
  max-width: min(1520px, calc(100vw - 40px));
  margin: 0 auto;
  gap: clamp(18px, 2.4vw, 42px);
}

.site-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.site-logo .logo-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: .05em;
  color: #fff;
  line-height: 1;
}

.site-logo .logo-text span { color: inherit; font-weight: 400; }

.site-logo .logo-sub {
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  display: block;
  margin-top: 2px;
}

.site-logo img {
  height: 54px;
  width: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  margin-left: auto;
  position: relative;
}

.primary-nav__panel {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1vw, 16px);
  padding: 8px 10px 8px 16px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  transition: background var(--trans), border-color var(--trans), box-shadow var(--trans), transform var(--trans);
}

.site-header.scrolled .primary-nav__panel,
.site-header.header-light .primary-nav__panel,
.site-header.menu-open .primary-nav__panel {
  background: rgba(255,255,255,.94);
  border-color: rgba(12,11,10,.08);
  box-shadow: 0 18px 42px rgba(12,11,10,.08);
}

.site-header.scrolled .nav-link,
.site-header.scrolled .nav-cart,
.site-header.menu-open .nav-link,
.site-header.menu-open .nav-cart {
  color: var(--navy);
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  padding: 9px 11px;
  border-radius: var(--radius-pill);
  transition: color var(--trans), background var(--trans), transform var(--trans);
  letter-spacing: 0;
  line-height: 1.15;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--navy);
  background: var(--blue-pale);
  transform: translateY(-1px);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: var(--space-xs);
}

.nav-cart {
  position: relative;
  display: flex;
  align-items: center;
  padding: 8px;
  color: rgba(255,255,255,.85);
  border-radius: 999px;
  transition: color var(--trans), background var(--trans), transform var(--trans);
}
.nav-cart:hover {
  background: rgba(12,11,10,.06);
  transform: translateY(-1px);
}

.nav-cart svg { width: 20px; height: 20px; }

.cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 18px;
  height: 18px;
  background: var(--gold);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  opacity: 0;
  transform: scale(.6);
  transition: all var(--trans);
}
.cart-count.has-items {
  opacity: 1;
  transform: scale(1);
}

.nav-btn-pro {
  background: var(--navy);
  color: #fff !important;
  border: 1px solid rgba(0,86,168,.26);
  border-radius: var(--radius-pill) !important;
  padding: 10px 18px !important;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(0,86,168,.18);
  transition: all var(--trans);
}
.site-header.header-light .nav-btn-pro { border-color: var(--navy); }
.nav-btn-pro:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-1px);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  color: #fff;
  transition: background var(--trans), border-color var(--trans), color var(--trans);
}
.menu-toggle__label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.menu-toggle__icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle__icon span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,.85);
  border-radius: 2px;
  transition: all var(--trans);
}

.site-header.scrolled .menu-toggle,
.site-header.header-light .menu-toggle,
.site-header.menu-open .menu-toggle {
  background: rgba(255,255,255,.92);
  border-color: rgba(12,11,10,.08);
  color: var(--navy);
}

.site-header.scrolled .menu-toggle__icon span,
.site-header.header-light .menu-toggle__icon span,
.site-header.menu-open .menu-toggle__icon span {
  background: var(--navy);
}

.primary-nav.open .menu-toggle__icon span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.primary-nav.open .menu-toggle__icon span:nth-child(2) {
  opacity: 0;
}

.primary-nav.open .menu-toggle__icon span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ──────────────────────────────────────────
   8. Hero Sections
   ────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy-dark);
  overflow: hidden;
  padding-top: var(--shell-h);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(22,21,19,.12) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(46,71,128,.4) 0%, transparent 50%);
  pointer-events: none;
}

/* Golden grid lines overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(22,21,19,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22,21,19,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-4xl) var(--container-pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.hero__content {}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-xl);
}

.hero__eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: var(--space-xl);
}

.hero__title .accent { color: var(--gold); }

.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.65);
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: var(--space-2xl);
}

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

.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero__product-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(22,21,19,.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 4s ease-in-out infinite;
}

.hero__product-img {
  position: relative;
  z-index: 1;
  max-width: 420px;
  filter: drop-shadow(0 24px 64px rgba(0,0,0,.5));
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: .8; }
  50% { transform: scale(1.08); opacity: 1; }
}

/* Hero page (non-home) */
.hero-page {
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  background:
    radial-gradient(circle at 84% 12%, rgba(217,154,43,.22), transparent 34%),
    linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 72%, var(--saffron-purple) 145%);
  padding-top: var(--shell-h);
  overflow: hidden;
  position: relative;
}

.hero-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 100%, rgba(255,241,209,.15) 0%, transparent 52%);
}

.hero-page__inner {
  position: relative;
  z-index: 1;
  padding: var(--space-3xl) var(--container-pad) var(--space-2xl);
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero-page__label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.hero-page__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: var(--space-md);
}

.hero-page__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.6);
  max-width: 560px;
  line-height: 1.8;
}

/* ──────────────────────────────────────────
   9. Trust Strip
   ────────────────────────────────────────── */
.trust-strip {
  background: var(--navy-dark);
  border-top: 1px solid rgba(22,21,19,.2);
  border-bottom: 1px solid rgba(22,21,19,.2);
  padding: var(--space-lg) 0;
  overflow: hidden;
}

.trust-strip__inner {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: var(--space-xl);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255,255,255,.75);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.trust-badge svg,
.trust-badge .badge-icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
  flex-shrink: 0;
}

.trust-badge .badge-text strong {
  display: block;
  color: var(--white);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .06em;
}

.trust-badge .badge-text span {
  font-size: .7rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .08em;
}

/* ──────────────────────────────────────────
   10. Product Spotlight (Home)
   ────────────────────────────────────────── */
.product-spotlight {
  background: var(--white);
}

.product-spotlight__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.product-spotlight__visual {
  position: relative;
}

.product-spotlight__visual .product-glow-bg {
  position: absolute;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, var(--gold-pale) 0%, transparent 70%);
  border-radius: 50%;
  top: 10%;
  left: 10%;
}

.product-spotlight__img {
  position: relative;
  z-index: 1;
  max-width: 480px;
  margin: 0 auto;
  filter: drop-shadow(0 20px 60px rgba(27,42,74,.15));
}

.product-spotlight__badges {
  position: absolute;
  bottom: -20px;
  right: -20px;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  z-index: 2;
}

.product-badge {
  background: var(--navy);
  color: #fff;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-align: center;
  box-shadow: inset 0 -2px 0 rgba(217,154,43,.5);
}

.product-badge strong {
  display: block;
  font-size: 1.1rem;
  color: var(--gold);
}

.product-spotlight__content {}

.product-name {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.02em;
  margin-bottom: var(--space-sm);
}

.product-tagline {
  font-size: 1rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
}

.product-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: var(--space-xl);
}

.benefit-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--grey);
}

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

.benefit-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-dark);
}

.benefit-icon svg { width: 22px; height: 22px; }

.benefit-text strong {
  display: block;
  font-weight: 600;
  color: var(--navy);
  font-size: .95rem;
  margin-bottom: 2px;
}

.benefit-text span {
  font-size: .85rem;
  color: var(--text-muted);
}

.product-pricing {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.price-option {
  flex: 1;
  min-width: 150px;
  padding: var(--space-md) var(--space-lg);
  background: var(--grey-light);
  border: 2px solid var(--grey);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--trans);
  text-align: center;
}

.price-option:hover,
.price-option.selected {
  border-color: var(--gold);
  background: var(--gold-pale);
}

.price-option .format {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 4px;
}

.price-option .price {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  font-family: var(--font-head);
}

.price-option .price span {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* ──────────────────────────────────────────
   11. Benefits Grid Cards
   ────────────────────────────────────────── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-lg);
}

.benefit-card {
  background: var(--white);
  border: 1px solid var(--grey);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  transition: all var(--trans);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans);
}

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

.benefit-card:hover::before { transform: scaleX(1); }

.benefit-card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold-pale), #fff);
  border: 1px solid rgba(22,21,19,.2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  color: var(--gold-dark);
}

.benefit-card__icon svg { width: 28px; height: 28px; }

.benefit-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-sm);
  font-family: var(--font-head);
}

.benefit-card__text {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ──────────────────────────────────────────
   12. Science Section
   ────────────────────────────────────────── */
.science-block {
  background:
    radial-gradient(circle at 90% 12%, rgba(217,154,43,.16), transparent 30%),
    linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 76%, #0F63B7 100%);
  position: relative;
  overflow: hidden;
}

.science-block::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,241,209,.12) 0%, transparent 60%);
  pointer-events: none;
}

.science-block .section-label { color: var(--gold-light); }
.science-block .section-title { color: #fff; }
.science-block .section-subtitle { color: rgba(255,255,255,.6); }

.science-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.science-content {}

.science-compounds {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin: var(--space-2xl) 0;
}

.compound-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(22,21,19,.15);
  border-radius: var(--radius-lg);
}

.compound-icon {
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}

.compound-name {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: .05em;
  margin-bottom: 4px;
}

.compound-desc {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
}

.science-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.stat-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(22,21,19,.15);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  transition: all var(--trans);
}

.stat-card:hover {
  background: rgba(22,21,19,.08);
  border-color: rgba(22,21,19,.3);
}

.stat-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold);
  font-family: var(--font-head);
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ──────────────────────────────────────────
   13. How It Works
   ────────────────────────────────────────── */
.how-it-works { background: var(--grey-light); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 16.67%;
  right: 16.67%;
  height: 2px;
  background: linear-gradient(90deg, var(--grey) 0%, var(--gold) 50%, var(--grey) 100%);
}

.step-card {
  text-align: center;
  position: relative;
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--white);
  border: 2px solid var(--grey);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-xl);
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  position: relative;
  transition: all var(--trans);
}

.step-card:nth-child(2) .step-number {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  box-shadow: 0 8px 24px rgba(22,21,19,.4);
}

.step-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-sm);
}

.step-text {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 240px;
  margin: 0 auto;
}

/* ──────────────────────────────────────────
   14. Testimonials
   ────────────────────────────────────────── */
.testimonials { background: var(--white); }

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

.testimonial-card {
  background: var(--grey-light);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: var(--space-md);
  right: var(--space-xl);
  font-size: 5rem;
  color: var(--gold-pale);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--space-md);
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  fill: var(--gold);
}

.testimonial-text {
  font-size: .95rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-author .name {
  font-weight: 600;
  color: var(--navy);
  font-size: .9rem;
}

.testimonial-author .role {
  font-size: .78rem;
  color: var(--text-muted);
}

/* ──────────────────────────────────────────
   15. B2B Banner
   ────────────────────────────────────────── */
.b2b-banner {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.b2b-banner::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 100%;
  background: radial-gradient(ellipse at right, rgba(22,21,19,.12) 0%, transparent 60%);
}

.b2b-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2xl);
  position: relative;
  z-index: 1;
}

.b2b-banner__content {}

.b2b-banner__label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.b2b-banner__title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: var(--space-md);
  letter-spacing: -.02em;
}

.b2b-banner__text {
  font-size: 1rem;
  color: rgba(255,255,255,.6);
  max-width: 520px;
  line-height: 1.8;
}

.b2b-banner__action { flex-shrink: 0; }

/* ──────────────────────────────────────────
   16. Certifications
   ────────────────────────────────────────── */
.certs-strip {
  background: var(--grey-light);
  padding: var(--space-xl) 0;
}

.certs-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.cert-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  background: var(--white);
  border: 1px solid var(--grey);
  border-radius: var(--radius-lg);
  min-width: 120px;
  text-align: center;
  transition: all var(--trans);
}

.cert-badge:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.cert-badge svg,
.cert-badge .cert-icon {
  width: 36px;
  height: 36px;
  color: var(--gold-dark);
}

.cert-badge .cert-name {
  font-size: .75rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .05em;
  text-transform: uppercase;
}

.cert-badge .cert-sub {
  font-size: .65rem;
  color: var(--text-muted);
}

/* ──────────────────────────────────────────
   17. Legal Notices
   ────────────────────────────────────────── */
.legal-notice {
  background: #FDF9F0;
  border: 1px solid rgba(217,154,43,.42);
  border-radius: var(--radius);
  padding: var(--space-lg) var(--space-xl);
  margin: var(--space-2xl) 0;
}

.legal-notice__title {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold-dark);
  margin-bottom: var(--space-md);
}

.legal-notice ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.legal-notice ul li {
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.legal-notice ul li::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ──────────────────────────────────────────
   18. Product Page Specifics
   ────────────────────────────────────────── */
.product-hero {
  background: var(--grey-light);
  padding: var(--space-3xl) 0;
}

.product-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.product-gallery {
  position: relative;
}

.product-gallery__main {
  aspect-ratio: 1;
  background: #fff;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--grey);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.product-gallery__main img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
}

.product-gallery__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--gold-pale) 0%, #fff 60%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  color: var(--gold-dark);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -.01em;
}

.product-gallery__placeholder svg {
  width: 64px;
  height: 64px;
  opacity: .4;
}

.product-info {}

.product-info__name {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.02em;
  margin-bottom: var(--space-sm);
}

.product-info__tagline {
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-lg);
}

.product-info__desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: var(--space-xl);
}

/* Variant selector */
.variant-selector {
  margin-bottom: var(--space-xl);
}

.variant-label {
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.variant-options {
  display: flex;
  gap: var(--space-md);
}

.variant-option {
  flex: 1;
  padding: var(--space-md) var(--space-lg);
  background: var(--white);
  border: 2px solid var(--grey);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--trans);
  text-align: center;
}

.variant-option:hover,
.variant-option.active {
  border-color: var(--gold);
  background: var(--gold-pale);
}

.variant-option .v-qty {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.variant-option .v-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  font-family: var(--font-head);
}

.variant-option .v-price em {
  font-size: .85rem;
  font-weight: 500;
  font-style: normal;
  color: var(--text-muted);
}

.variant-option.active .v-qty { color: var(--gold-dark); }

/* Add to cart */
.add-to-cart-wrap {
  display: flex;
  gap: var(--space-md);
  align-items: center;
  margin-bottom: var(--space-xl);
}

.quantity-input {
  display: flex;
  align-items: center;
  border: 2px solid var(--grey);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.qty-btn {
  width: 44px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--trans);
}

.qty-btn:hover { background: var(--grey-light); }

.qty-number {
  width: 52px;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  background: transparent;
  color: var(--navy);
}

/* ──────────────────────────────────────────
   19. B2B / Pro Page
   ────────────────────────────────────────── */
.pro-advantages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

.pro-advantage-card {
  background: var(--white);
  border: 1px solid var(--grey);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  transition: all var(--trans);
}

.pro-advantage-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.pro-advantage-card .icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  margin-bottom: var(--space-lg);
}

.pro-advantage-card .icon-wrap svg { width: 26px; height: 26px; }

.pro-advantage-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-sm);
}

.pro-advantage-card p {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ──────────────────────────────────────────
   20. Forms
   ────────────────────────────────────────── */
.form-card {
  background: var(--white);
  border: 1px solid var(--grey);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.form-group label .req { color: var(--gold); margin-left: 2px; }

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: var(--grey-light);
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-size: .95rem;
  color: var(--text);
  transition: all var(--trans);
  outline: none;
}

.form-control:focus {
  background: #fff;
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(27,42,74,.08);
}

.form-control::placeholder { color: var(--grey-mid); }

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9L12 15L18 9' stroke='%236B7D90' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

.form-submit {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.form-note {
  font-size: .75rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.form-message {
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 500;
  display: none;
  margin-top: var(--space-md);
}

.form-message.success {
  background: #EEF8F3;
  border: 1px solid rgba(45,122,79,.2);
  color: var(--success);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.form-message.error {
  background: #FDF2F2;
  border: 1px solid rgba(192,57,43,.2);
  color: var(--error);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

/* ──────────────────────────────────────────
   21. Contact Page
   ────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-3xl);
  align-items: start;
}

.contact-info {}

.contact-info__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-xl);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--grey);
}

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

.contact-item .icon {
  width: 44px;
  height: 44px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  flex-shrink: 0;
}

.contact-item .icon svg { width: 20px; height: 20px; }

.contact-item .info strong {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-item .info a,
.contact-item .info span {
  font-size: .95rem;
  color: var(--text-body);
  line-height: 1.6;
}

.contact-item .info a:hover { color: var(--navy); }

/* ──────────────────────────────────────────
   22. Science Page
   ────────────────────────────────────────── */
.science-compound-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.science-compound-card {
  background: var(--white);
  border: 1px solid var(--grey);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  position: relative;
  overflow: hidden;
  transition: all var(--trans);
}

.science-compound-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
}

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

.science-compound-card .compound-label {
  font-family: 'Courier New', monospace;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.science-compound-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: var(--space-md);
}

.science-compound-card p {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Process timeline */
.process-timeline {
  position: relative;
  padding-left: var(--space-2xl);
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--navy) 100%);
}

.process-step {
  position: relative;
  padding: 0 0 var(--space-2xl) var(--space-2xl);
}

.process-step::before {
  content: '';
  position: absolute;
  left: -var(--space-2xl);
  left: calc(-1 * var(--space-2xl) + 12px);
  top: 6px;
  width: 16px;
  height: 16px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}

.process-step h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-sm);
}

.process-step p {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ──────────────────────────────────────────
   23. About Page
   ────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.value-card {
  padding: var(--space-xl);
  background: var(--grey-light);
  border-radius: var(--radius-xl);
  transition: all var(--trans);
}

.value-card:hover {
  background: var(--white);
  box-shadow: var(--shadow);
}

.value-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  margin-bottom: var(--space-md);
}

.value-icon svg { width: 24px; height: 24px; }

.value-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-sm);
}

.value-card p {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ──────────────────────────────────────────
   24. Footer
   ────────────────────────────────────────── */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.7);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.18) 18%, rgba(255,255,255,.18) 82%, transparent 100%);
}

.footer-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.52);
  margin-bottom: 14px;
}

.footer-kicker::before {
  content: '';
  width: 28px;
  height: 1px;
  background: rgba(255,255,255,.24);
}

.footer-main {
  padding: calc(var(--space-3xl) + 12px) 0 var(--space-2xl);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: var(--space-3xl);
}

.footer-brand .logo-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: .05em;
  color: #fff;
  margin-bottom: 4px;
}

.footer-brand .logo-text span { color: inherit; font-weight: 400; opacity: .75; }

.footer-brand .logo-sub {
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: var(--space-lg);
}

.footer-brand p {
  font-size: .875rem;
  line-height: 1.8;
  color: rgba(255,255,255,.5);
  max-width: 300px;
  margin-bottom: var(--space-xl);
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: all var(--trans);
}

.social-link svg { width: 18px; height: 18px; }

.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.footer-col h4 {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: rgba(255,255,255,.9);
  margin-bottom: var(--space-lg);
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: var(--space-sm); }

.footer-col ul li a {
  font-size: .875rem;
  color: rgba(255,255,255,.45);
  transition: color var(--trans);
}

.footer-col ul li a.is-muted {
  opacity: .42;
}

.footer-col ul li a:hover { color: #fff; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--gold-light);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item span {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
}

.footer-contact-item a {
  transition: color var(--trans);
}

.footer-contact-item a:hover {
  color: rgba(255,255,255,.88);
}

.footer-legal-notice {
  background: linear-gradient(180deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.02) 100%);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 18px 0;
  font-size: .75rem;
  color: rgba(255,255,255,.35);
  line-height: 1.8;
  text-align: center;
}

.footer-subgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-2xl);
}

.footer-note-card {
  padding: 20px 22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

.footer-note-card__label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.58);
}

.footer-note-card p {
  font-size: .84rem;
  line-height: 1.7;
  color: rgba(255,255,255,.48);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: var(--space-lg) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: .78rem;
  color: rgba(255,255,255,.3);
}
.footer-credit a {
  color: var(--gold-light);
  text-decoration: none;
  transition: color var(--trans);
}
.footer-credit a:hover { color: #fff; }
.footer-credit {
  color: rgba(255,255,255,.68) !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.footer-credit__heart {
  width: 14px;
  height: 14px;
  color: var(--gold-light);
  display: inline-block;
  vertical-align: -2px;
}
.footer-credit span[lang="ar"] {
  color: rgba(255,255,255,.5);
  font-size: .76rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-bottom nav { display: flex; gap: var(--space-lg); }

.footer-bottom nav a {
  font-size: .78rem;
  color: rgba(255,255,255,.3);
  transition: color var(--trans);
}

.footer-bottom nav a:hover { color: rgba(255,255,255,.7); }

/* ──────────────────────────────────────────
   25. Coming Soon Cards
   ────────────────────────────────────────── */
.coming-soon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.coming-soon-card {
  background: var(--grey-light);
  border: 2px dashed var(--grey);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.coming-soon-badge {
  display: inline-block;
  background: var(--navy);
  color: rgba(255,255,255,.7);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-lg);
}

.coming-soon-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: var(--space-sm);
}

.coming-soon-card p {
  font-size: .875rem;
  color: var(--text-muted);
}

/* ──────────────────────────────────────────
   26. Breadcrumb
   ────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  margin-bottom: var(--space-md);
}

.breadcrumb a { color: rgba(255,255,255,.4); transition: color var(--trans); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,.2); }

/* ──────────────────────────────────────────
   27. Page Template — Default
   ────────────────────────────────────────── */
.page-content {
  padding: var(--space-3xl) 0;
}

.page-content h2 { font-size: 1.8rem; color: var(--navy); margin: var(--space-xl) 0 var(--space-md); }
.page-content h3 { font-size: 1.3rem; color: var(--navy); margin: var(--space-lg) 0 var(--space-sm); }
.page-content p { margin-bottom: var(--space-md); }
.page-content ul { list-style: disc; padding-left: 20px; margin-bottom: var(--space-md); }
.page-content a { color: var(--navy); text-decoration: underline; }

/* ──────────────────────────────────────────
   28. WooCommerce Overrides
   ────────────────────────────────────────── */
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-error,
.woocommerce .woocommerce-info {
  border-top-color: var(--gold);
}

.woocommerce button.button,
.woocommerce input.button {
  background: var(--gold) !important;
  color: #fff !important;
  border-radius: var(--radius-pill) !important;
  font-family: var(--font-head) !important;
  font-weight: 600 !important;
  font-size: .85rem !important;
  letter-spacing: .04em !important;
  text-transform: uppercase !important;
  padding: 14px 28px !important;
  transition: all var(--trans) !important;
  border: none !important;
}

.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background: var(--gold-dark) !important;
  transform: translateY(-1px) !important;
}

.woocommerce .price { color: var(--navy) !important; font-family: var(--font-head) !important; }
.woocommerce .amount { font-weight: 700; }

.wc-block-components-button:not(.is-link),
.wc-block-components-button:not(.is-link):visited,
.wc-block-cart__submit-button,
.wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button {
  background: var(--gold) !important;
  color: #fff !important;
  border: 1px solid var(--gold) !important;
  border-radius: var(--radius-pill) !important;
  font-family: var(--font-head) !important;
  font-weight: 700 !important;
  letter-spacing: .04em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  min-height: 54px;
}

.wc-block-components-button:not(.is-link) span,
.wc-block-cart__submit-button span,
.wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button span {
  color: #fff !important;
}

.wc-block-components-button:not(.is-link):hover,
.wc-block-cart__submit-button:hover,
.wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button:hover {
  background: var(--gold-dark) !important;
  border-color: var(--gold-dark) !important;
}

/* ──────────────────────────────────────────
   29. Utility Classes
   ────────────────────────────────────────── */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

.divider {
  border: none;
  border-top: 1px solid var(--grey);
  margin: var(--space-2xl) 0;
}

.divider--gold { border-top-color: rgba(22,21,19,.3); }

.highlight {
  background: linear-gradient(180deg, transparent 60%, rgba(22,21,19,.2) 60%);
}

.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-muted { color: var(--text-muted); }

/* Scroll fade-in — additive entrance; content is visible by default
   so it is never permanently hidden if JS fails to run. */
.fade-in { opacity: 1; transform: none; }
.fade-in.visible { animation: pegasusFadeUp .6s var(--ease) backwards; }
@keyframes pegasusFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .fade-in.visible { animation: none; }
}

/* ──────────────────────────────────────────
   30. Responsive — Tablet
   ────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --header-h: 72px; }

  .grid-4  { grid-template-columns: repeat(2, 1fr); }
  .grid-3  { grid-template-columns: repeat(2, 1fr); }

  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__subtitle { margin: 0 auto var(--space-2xl); }
  .hero__actions { justify-content: center; }
  .hero__visual { display: none; }

  .science-grid { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .science-visual { grid-template-columns: repeat(4, 1fr); }

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

  .footer-main { grid-template-columns: 1fr 1fr; gap: var(--space-2xl); }

  .contact-grid { grid-template-columns: 1fr; }
  .b2b-banner__inner { flex-direction: column; text-align: center; }

  .steps-grid::before { display: none; }
  .steps-grid { grid-template-columns: 1fr; }

  .science-compound-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .pro-advantages { grid-template-columns: 1fr 1fr; }
  .coming-soon-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; gap: var(--space-lg); }

  /* Nav → hamburger from tablet down (prevents cramped wrapping nav) */
  .primary-nav .nav-links { display: none; }
  .menu-toggle { display: inline-flex; }
  .primary-nav { gap: 0; }
  .primary-nav__panel {
    position: fixed;
    top: calc(var(--utility-h) + 12px);
    left: 12px; right: 12px; bottom: 12px;
    display: flex; flex-direction: column; justify-content: space-between; align-items: stretch;
    padding: 96px 20px 20px;
    border-radius: 28px;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(12,11,10,.08);
    box-shadow: 0 24px 60px rgba(12,11,10,.18);
    opacity: 0; visibility: hidden; pointer-events: none;
    transform: translateY(-12px);
    transition: opacity var(--trans-slow), transform var(--trans-slow), visibility var(--trans);
  }
  .primary-nav.open .primary-nav__panel { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
  .primary-nav.open .nav-links {
    display: flex; flex-direction: column; position: fixed;
    top: calc(var(--utility-h) + 108px); left: 32px; right: 32px; gap: 6px; z-index: 1001;
  }
  .primary-nav.open .nav-link {
    display: flex; align-items: center; justify-content: space-between;
    color: var(--navy); font-size: 1.05rem; padding: 14px 18px;
    background: rgba(12,11,10,.03); border-radius: 18px; border-bottom: 0;
  }
  .primary-nav.open .nav-actions { margin-top: auto; padding-left: 0; flex-direction: column; align-items: stretch; gap: 12px; }
  .primary-nav.open .nav-cart,
  .primary-nav.open .nav-btn-pro { justify-content: center; width: 100%; }
}

/* ──────────────────────────────────────────
   31. Responsive — Mobile
   ────────────────────────────────────────── */
@media (max-width: 768px) {
  :root {
    --space-3xl: 64px;
    --space-2xl: 48px;
    --container-pad: 20px;
  }

  .primary-nav .nav-links { display: none; }
  .menu-toggle { display: inline-flex; }

  .primary-nav {
    gap: 0;
  }

  .primary-nav__panel {
    position: fixed;
    top: calc(var(--utility-h) + 12px);
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    padding: 96px 20px 20px;
    border-radius: 28px;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(12,11,10,.08);
    box-shadow: 0 24px 60px rgba(12,11,10,.18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity var(--trans-slow), transform var(--trans-slow), visibility var(--trans);
  }

  .primary-nav.open .primary-nav__panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: calc(var(--utility-h) + 108px);
    left: 32px;
    right: 32px;
    gap: 6px;
    z-index: 1001;
  }

  .primary-nav.open .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--navy);
    font-size: 1.05rem;
    padding: 14px 18px;
    background: rgba(12,11,10,.03);
    border-radius: 18px;
    border-bottom: 0;
  }

  .primary-nav.open .nav-actions {
    margin-top: auto;
    padding-left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .primary-nav.open .nav-cart,
  .primary-nav.open .nav-btn-pro {
    justify-content: center;
    width: 100%;
  }

  .footer-subgrid {
    grid-template-columns: 1fr;
  }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .science-compound-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .pro-advantages { grid-template-columns: 1fr; }
  .science-visual { grid-template-columns: repeat(2, 1fr); }

  .footer-main { grid-template-columns: 1fr; gap: var(--space-xl); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom nav { flex-wrap: wrap; justify-content: center; }

  .trust-strip__inner { gap: var(--space-lg); justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }

  .hero-page__title { font-size: 1.8rem; }
  .variant-options { flex-direction: column; }
  .add-to-cart-wrap { flex-direction: column; align-items: stretch; }

  .certs-grid { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }

  .product-spotlight__badges { position: static; flex-direction: row; flex-wrap: wrap; margin-top: var(--space-md); }
}

/* ════════════════════════════════════════
   §32 — FAQ PAGE
════════════════════════════════════════ */
.faq-section { background: var(--white); }
.container--narrow { max-width: 860px; }

.faq-categories { display: flex; flex-direction: column; gap: var(--space-3xl); }

.faq-category__title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--gold);
}

.faq-list { display: flex; flex-direction: column; gap: 4px; }

.faq-item {
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item.is-open { box-shadow: 0 4px 16px rgba(27,42,74,.08); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  width: 100%;
  padding: var(--space-lg) var(--space-xl);
  background: var(--white);
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  transition: background .15s;
}
.faq-question:hover { background: var(--grey-light); }
.faq-item.is-open .faq-question { background: rgba(22,21,19,.06); color: var(--gold-dark); }

.faq-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  transition: transform .25s;
  color: var(--gold);
}
.faq-item.is-open .faq-icon { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
}
.faq-item.is-open .faq-answer { max-height: 600px; }

.faq-answer > div {
  padding: 0 var(--space-xl) var(--space-xl);
  color: var(--text-body);
  line-height: 1.75;
}
.faq-answer ul { padding-left: 1.25rem; margin-top: .5rem; }
.faq-answer li { margin-bottom: .35rem; }
.faq-answer a { color: var(--gold-dark); text-decoration: underline; }

.faq-cta {
  margin-top: var(--space-3xl);
  padding: var(--space-2xl);
  background: var(--navy);
  border-radius: var(--radius-xl);
  text-align: center;
  color: var(--white);
}
.faq-cta p { font-size: 1.2rem; font-weight: 600; margin-bottom: var(--space-lg); }
.faq-cta__actions { display: flex; gap: var(--space-md); justify-content: center; flex-wrap: wrap; }

/* ════════════════════════════════════════
   §33 — WHATSAPP FLOAT BUTTON
════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 14px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: .9rem;
  font-weight: 600;
  transition: transform .2s, box-shadow .2s;
}
.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,.5);
  color: #fff;
}
.whatsapp-float svg { flex-shrink: 0; }
.whatsapp-float__label { white-space: nowrap; }

/* ════════════════════════════════════════
   §34 — HERO PAGE NAVY VARIANT
════════════════════════════════════════ */
.hero-page--navy {
  background:
    radial-gradient(circle at 84% 12%, rgba(217,154,43,.22), transparent 34%),
    linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 72%, var(--saffron-purple) 145%);
  color: var(--white);
}
.hero-page--navy .breadcrumb { color: rgba(255,255,255,.6); }
.hero-page--navy .breadcrumb a { color: rgba(255,255,255,.7); }
.hero-page--navy .breadcrumb span { color: rgba(255,255,255,.5); }
.hero-page--navy .hero-page__title { color: var(--white); }
.hero-page--navy .hero-page__sub { color: rgba(255,255,255,.8); margin-top: .75rem; font-size: 1.1rem; }

/* ════════════════════════════════════════
   §35 — HERO WITH BACKGROUND IMAGE
════════════════════════════════════════ */
.hero-has-bg {
  position: relative;
  background-size: cover;
  background-position: center 40%;
}
.hero-has-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(27,42,74,.85) 45%, rgba(27,42,74,.3) 100%);
}
.hero-has-bg .hero-content { position: relative; z-index: 1; }

/* ════════════════════════════════════════
   §36 — BLOG ARCHIVE & SINGLE
════════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(27,42,74,.1); }

.blog-card__img { width: 100%; height: 220px; object-fit: cover; display: block; }
.blog-card__img-placeholder {
  height: 220px;
  background: var(--grey-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}
.blog-card__body { padding: var(--space-xl); flex: 1; display: flex; flex-direction: column; }
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  font-size: .78rem;
}
.blog-card__cat {
  background: rgba(22,21,19,.1);
  color: var(--gold-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 3px 10px;
  border-radius: 100px;
  text-decoration: none;
}
.blog-card__date { color: var(--text-muted); }
.blog-card__title { font-size: 1.1rem; font-weight: 700; margin-bottom: var(--space-sm); flex: 1; }
.blog-card__title a { color: var(--navy); text-decoration: none; }
.blog-card__title a:hover { color: var(--gold-dark); }
.blog-card__excerpt { font-size: .88rem; color: var(--text-muted); line-height: 1.7; margin-bottom: var(--space-lg); }

.blog-pagination { display: flex; gap: 8px; justify-content: center; margin-top: var(--space-3xl); }
.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--grey-light);
  color: var(--navy);
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  transition: background .15s, color .15s;
}
.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current { background: var(--navy); color: #fff; border-color: var(--navy); }

/* Single post */
.blog-post-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--space-3xl);
  padding: var(--space-3xl) 0;
  align-items: start;
}
.blog-post__body { font-size: 1.05rem; line-height: 1.9; color: var(--text-body); }
.blog-post__body h2 { font-size: 1.5rem; color: var(--navy); margin: var(--space-2xl) 0 var(--space-lg); }
.blog-post__body h3 { font-size: 1.2rem; color: var(--navy); margin: var(--space-xl) 0 var(--space-md); }
.blog-post__body p { margin-bottom: var(--space-lg); }
.blog-post__body ul, .blog-post__body ol { padding-left: 1.5rem; margin-bottom: var(--space-lg); }
.blog-post__body li { margin-bottom: .5rem; }
.blog-post__body img { max-width: 100%; border-radius: var(--radius-lg); margin: var(--space-lg) 0; }
.blog-post__body blockquote {
  border: 1px solid rgba(217,154,43,.32);
  padding: var(--space-md) var(--space-xl);
  background: rgba(22,21,19,.06);
  border-radius: var(--radius-md);
  margin: var(--space-xl) 0;
  font-style: italic;
}
.blog-post__tags { margin-top: var(--space-xl); font-size: .85rem; color: var(--text-muted); display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.blog-post__tags a { background: var(--grey-light); padding: 4px 12px; border-radius: 100px; color: var(--navy); text-decoration: none; font-weight: 600; font-size: .78rem; }

.sidebar-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  position: sticky;
  top: 100px;
}
.sidebar-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: var(--space-md); }

@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-post-layout { grid-template-columns: 1fr; }
  .blog-post__sidebar { display: none; }
}

@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .faq-question { padding: var(--space-md) var(--space-lg); font-size: .95rem; }
  .faq-answer > div { padding: 0 var(--space-lg) var(--space-lg); }
  .whatsapp-float__label { display: none; }
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    padding: 12px;
    border-radius: 50%;
  }
  .whatsapp-float svg { width: 22px; height: 22px; }
}

/* ════════════════════════════════════════════════════════════
   §37 — THORNE-STYLE HOMEPAGE (Botanical)
   Clean grid · generous whitespace · thin borders
════════════════════════════════════════════════════════════ */

/* Utility bar */
.utility-bar {
  background: var(--navy-dark);
  color: rgba(255,255,255,.72);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 10px 0;
  font-weight: 500;
}
.utility-bar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.utility-bar__text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.utility-bar__link {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.35);
  transition: border-color var(--trans), color var(--trans);
}

.utility-bar__link:hover {
  color: rgba(255,255,255,.78);
  border-color: rgba(255,255,255,.18);
}

.cookie-banner {
  position: fixed;
  left: auto;
  right: 24px;
  bottom: 20px;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: min(720px, calc(100vw - 48px));
  padding: 12px 14px 12px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(12,11,10,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 22px 60px rgba(0,0,0,.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}

.page-template-page-kalmilider .cookie-banner { width: min(560px, calc(100vw - 48px)); }

.cookie-banner.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cookie-banner__content { min-width: 0; }

.cookie-banner__eyebrow {
  display: inline-block;
  margin-bottom: 3px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.52);
}

.cookie-banner__text {
  font-size: .78rem;
  color: rgba(255,255,255,.72);
  line-height: 1.45;
  text-wrap: pretty;
}

.cookie-banner__text a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-banner__secondary {
  min-height: 40px;
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.72);
  transition: background var(--trans), border-color var(--trans), color var(--trans);
}

.cookie-banner__secondary:hover {
  background: rgba(255,255,255,.06);
  color: #fff;
}

.cookie-banner__actions .btn {
  min-height: 40px;
  padding: 9px 18px;
}

.woocommerce-cart .whatsapp-float,
.woocommerce-checkout .whatsapp-float {
  display: none;
}

.woocommerce-cart .cookie-banner,
.woocommerce-checkout .cookie-banner {
  display: none;
}

/* ── HERO (launch homepage) ── */
.t-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.t-hero__scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(236,232,223,.16), transparent 28%),
    linear-gradient(120deg, rgba(12,11,10,.82) 0%, rgba(12,11,10,.68) 36%, rgba(12,11,10,.34) 100%);
}
.t-hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: clamp(132px, 16vw, 176px) var(--container-pad) clamp(40px, 6vw, 72px);
}
.t-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: end;
}
.t-hero__content { max-width: 680px; }
.t-kicker,
.t-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.t-kicker::before,
.t-hero__eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}
.t-head .t-kicker {
  color: var(--text-muted);
  justify-content: center;
}
.t-head .t-kicker::before { opacity: .5; }
.t-hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.7rem, 6vw, 5.25rem);
  font-weight: 700;
  line-height: .96;
  letter-spacing: -.04em;
  color: #fff;
  max-width: 720px;
  margin-bottom: 24px;
}
.t-hero__sub {
  font-size: 1.06rem;
  color: rgba(255,255,255,.82);
  max-width: 560px;
  line-height: 1.78;
  margin-bottom: 32px;
}
.t-hero__actions { margin-bottom: 34px; }
.t-hero__proofs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 780px;
}
.t-proof {
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius-lg);
  padding: 18px 18px 16px;
}
.t-proof strong,
.t-metric strong,
.t-stat-card strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 6px;
}
.t-proof span {
  display: block;
  font-size: .82rem;
  line-height: 1.55;
  color: rgba(255,255,255,.68);
}
.t-hero__panel {
  border: 1px solid rgba(255,255,255,.1);
  background: linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.04));
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
  border-radius: 28px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
}
.t-hero__panel-top,
.t-hero__panel-bottom { padding: 28px; }
.t-hero__panel-title {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  color: #fff;
  line-height: 1;
  letter-spacing: -.03em;
  margin-bottom: 14px;
}
.t-hero__panel-text {
  color: rgba(255,255,255,.72);
  font-size: .92rem;
  line-height: 1.75;
}
.t-hero__product {
  background:
    radial-gradient(circle at center, rgba(255,255,255,.18), transparent 58%),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.09));
  padding: 18px 28px 6px;
}
.t-hero__product img {
  width: min(100%, 280px);
  margin: 0 auto;
  filter: drop-shadow(0 18px 32px rgba(0,0,0,.22));
}
.t-hero__panel-bottom {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.t-stat-card {
  background: rgba(12,11,10,.28);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
}
.t-stat-card__label {
  display: block;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.52);
  margin-bottom: 10px;
}
.t-stat-card span:last-child {
  display: block;
  color: rgba(255,255,255,.66);
  font-size: .8rem;
  line-height: 1.55;
}
.t-hero__foot {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(28px, 4vw, 42px);
}
.t-value-card {
  background: rgba(255,255,255,.92);
  border-radius: var(--radius-xl);
  padding: 22px 22px 20px;
  box-shadow: var(--shadow);
}
.t-value-card .t-kicker {
  color: var(--navy);
  margin-bottom: 12px;
}
.t-value-card p {
  color: var(--text-body);
  font-size: .92rem;
  line-height: 1.75;
}

/* ── SECTION SCAFFOLD ── */
.t-section { padding: clamp(68px, 8vw, 112px) 0; }
.t-section--cream { background: linear-gradient(180deg, #faf8f3 0%, var(--grey-light) 100%); }
.t-section--white { background: var(--white); }
.t-section--forest {
  background:
    radial-gradient(circle at 82% 18%, rgba(217,154,43,.22), transparent 32%),
    linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 70%, var(--saffron-purple) 140%);
}
.t-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(36px, 4vw, 56px);
  padding: 0 var(--container-pad);
}
.t-head__title {
  font-size: clamp(1.95rem, 4vw, 3.35rem);
  font-weight: 700;
  letter-spacing: -.035em;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.02;
}
.t-head__title em { font-style: italic; color: var(--gold); font-weight: 600; }
.t-head__sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.78;
}
.t-section--forest .t-head__title { color: #fff; }
.t-section--forest .t-head__sub { color: rgba(255,255,255,.68); }

/* ── GAMME SHOWCASE ── */
.t-gamme {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.t-featured-product {
  display: grid;
  grid-template-columns: minmax(240px, .9fr) minmax(0, 1.1fr);
  gap: 24px;
  background: linear-gradient(180deg, #fff 0%, #faf8f3 100%);
  border: 1px solid var(--grey);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.t-featured-product__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background: radial-gradient(circle at center, rgba(22,21,19,.07), transparent 58%), var(--grey-light);
  min-height: 100%;
  padding: 28px;
}
.t-featured-product__media img {
  width: min(100%, 240px);
  filter: drop-shadow(0 18px 28px rgba(0,0,0,.12));
}
.t-featured-product__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.t-featured-product__body .t-kicker {
  color: var(--text-muted);
  margin-bottom: 14px;
}
.t-featured-product__body h3 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  line-height: 1;
  margin-bottom: 16px;
  color: var(--navy);
}
.t-featured-product__body p {
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 22px;
}
.t-featured-product__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 26px;
}
.t-checklist {
  display: grid;
  gap: 10px;
}
.t-checklist li {
  position: relative;
  padding-left: 28px;
  color: var(--text-body);
  line-height: 1.65;
  font-size: .92rem;
}
.t-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid currentColor;
}
.t-checklist li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: calc(.55em + 4px);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.t-products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.t-pcard__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
}
.t-pcard.is-featured { border: 2px solid var(--navy); }
.t-pcard.is-featured .t-pcard__media { background: linear-gradient(180deg, #fff 0%, var(--grey-light) 100%); }
.t-pcard {
  border: 1px solid var(--grey);
  border-radius: 24px;
  background: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  box-shadow: var(--shadow-xs);
}
.t-pcard:hover {
  border-color: var(--grey-mid);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.t-pcard__media {
  background: linear-gradient(180deg, #faf8f3 0%, var(--grey-light) 100%);
  padding: 30px 26px;
  text-align: center;
  position: relative;
  min-height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.t-pcard__media img { max-width: 165px; width: 100%; }
.t-pcard__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--navy);
  color: #fff;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: var(--radius-pill);
}
.t-pcard__soon {
  color: var(--navy-light);
  font-size: 2.6rem;
}
.t-pcard__body {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.t-pcard__name { font-family: var(--font-head); font-size: 1.04rem; font-weight: 700; color: var(--navy); }
.t-pcard__desc { font-size: .86rem; color: var(--text-muted); margin: 6px 0 14px; flex: 1; line-height: 1.7; }
.t-pcard__price { font-size: 1.16rem; font-weight: 700; color: var(--navy); }
.t-pcard__soon-label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--sage);
  margin-top: auto;
}
.t-pcard--soon .t-pcard__media {
  background: linear-gradient(180deg, #f9f7f2 0%, #f2efe8 100%);
}

/* ── CATEGORY TILES ── */
.t-tiles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.t-tile {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(22,21,19,.06);
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: var(--shadow-xs);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.t-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(22,21,19,.12);
}
.t-tile__img {
  height: 190px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 2rem;
}
.t-tile__body { padding: 20px 20px 22px; }
.t-tile__body .t-kicker {
  color: var(--text-muted);
  margin-bottom: 10px;
}
.t-tile__label { font-family: var(--font-head); font-size: 1.06rem; font-weight: 600; color: var(--navy); }

/* ── ENGAGEMENT ── */
.t-engage {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.t-engage__card {
  background: linear-gradient(180deg, #fff 0%, #fbfaf6 100%);
  border: 1px solid var(--grey);
  border-radius: 24px;
  padding: 18px;
}
.t-engage__img {
  height: 190px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  margin-bottom: 18px;
}
.t-engage__title {
  font-family: var(--font-head);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.t-engage__text { font-size: .88rem; color: var(--text-muted); line-height: 1.75; }

/* ── SPLIT SHOWCASE ── */
.t-split {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  align-items: stretch;
  background:
    radial-gradient(circle at 82% 18%, rgba(217,154,43,.18), transparent 30%),
    linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 62%, var(--saffron-purple) 150%);
}
.t-split__media {
  background-size: cover;
  background-position: center;
  background-color: var(--navy-dark);
  min-height: 560px;
}
.t-split__media--contain {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.t-split__body {
  padding: clamp(42px, 6vw, 88px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.t-split__eyebrow {
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
}
.t-split__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: .98;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: -.035em;
  max-width: 520px;
}
.t-split__text {
  font-size: .98rem;
  color: rgba(255,255,255,.74);
  line-height: 1.8;
  margin-bottom: 26px;
  max-width: 500px;
}
.t-checklist--light li { color: rgba(255,255,255,.86); }

/* ── SCIENCE CALLOUT ── */
.t-science-callout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.t-science-callout__content,
.t-science-callout__stats {
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(22,21,19,.08);
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow-xs);
}
.t-science-callout__content .t-head__title,
.t-science-callout__content .t-head__sub {
  text-align: left;
}
.t-science-callout__content .t-head__sub { margin-bottom: 28px; }
.t-science-callout__content .t-kicker {
  color: var(--text-muted);
  margin-bottom: 18px;
}
.t-science-callout__stats {
  display: grid;
  gap: 16px;
  align-content: center;
}
.t-metric {
  border: 1px solid var(--grey);
  border-radius: 20px;
  padding: 22px;
  background: #fff;
}
.t-metric strong {
  color: var(--navy);
  font-size: 2rem;
  margin-bottom: 4px;
}
.t-metric span {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: .9rem;
}

/* ── CERTIFIED BADGES ── */
.t-certs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.t-cert {
  text-align: center;
  border: 1px solid var(--grey);
  background: linear-gradient(180deg, #fff 0%, #faf8f3 100%);
  border-radius: 24px;
  padding: 28px 20px;
}
.t-cert__icon { color: var(--navy); margin-bottom: 14px; }
.t-cert__icon svg { width: 30px; height: 30px; margin: 0 auto; }
.t-cert__title { font-family: var(--font-head); font-size: 1.06rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.t-cert__sub { font-size: .82rem; color: var(--text-muted); line-height: 1.65; }

/* ── PRO BANNER ── */
.t-pro-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 30px;
  padding: clamp(28px, 4vw, 42px);
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
}
.t-pro-banner__copy .t-head__title,
.t-pro-banner__copy .t-head__sub {
  text-align: left;
}

/* ── BLOG TEASER ── */
.t-blog {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* ── RESPONSIVE ── */
@media (max-width: 1120px) {
  .t-hero__grid,
  .t-gamme,
  .t-science-callout,
  .t-split {
    grid-template-columns: 1fr;
  }
  .t-featured-product {
    grid-template-columns: 1fr;
  }
  .t-hero__proofs,
  .t-hero__foot,
  .t-engage,
  .t-certs,
  .t-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .t-tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .t-blog { grid-template-columns: 1fr; }
  .t-split__media { min-height: 360px; }
}
@media (max-width: 780px) {
  .t-hero {
    min-height: auto;
    align-items: stretch;
  }
  .t-hero__inner {
    padding-top: clamp(118px, 28vw, 148px);
  }
  .t-hero__proofs,
  .t-hero__panel-bottom,
  .t-hero__foot,
  .t-engage,
  .t-certs,
  .t-pro-banner {
    grid-template-columns: 1fr;
  }
  .t-tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .t-featured-product__meta {
    flex-direction: column;
    align-items: flex-start;
  }
  .t-pro-banner__copy .t-head__title,
  .t-pro-banner__copy .t-head__sub,
  .t-science-callout__content .t-head__title,
  .t-science-callout__content .t-head__sub {
    text-align: left;
  }
}
@media (max-width: 600px) {
  .t-hero__title { font-size: clamp(2.4rem, 14vw, 3.6rem); }
  .t-products { grid-template-columns: 1fr; max-width: 380px; }
  .t-tiles { grid-template-columns: 1fr; }
  .t-value-card,
  .t-featured-product,
  .t-science-callout__content,
  .t-science-callout__stats,
  .t-pro-banner {
    border-radius: 22px;
  }
  .t-pcard,
  .t-tile,
  .t-engage__card,
  .t-cert {
    border-radius: 20px;
  }
}

/* §37b — Header with always-visible utility bar */
.site-header .utility-bar { position: relative; z-index: 1; }
.site-header.header-light .utility-bar { background: var(--navy-dark); color: rgba(255,255,255,.72); }

@media (max-width: 768px) {
  .utility-bar__inner {
    justify-content: center;
  }

  .utility-bar__text {
    display: none;
  }

  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    max-width: none;
    display:grid;
    grid-template-columns:1fr auto;
    align-items:center;
    gap:8px;
    padding:10px;
    border-radius:16px;
  }

  .cookie-banner__eyebrow { display:none; }
  .cookie-banner__text { font-size:.72rem; line-height:1.35; }

  .cookie-banner__actions {
    width:auto;
    justify-content:flex-end;
    gap:6px;
  }

  .cookie-banner__actions .btn,
  .cookie-banner__secondary {
    flex:0 0 auto;
    min-height:40px;
    padding:8px 10px;
    text-align: center;
  }

  .t-hero__inner {
    padding-top: calc(var(--shell-h) + 18px);
  }
}

/* ════════════════════════════════════════════════════════════
   §38 — PREMIUM INTERACTIONS (lift · depth · zoom · reveal · sticky)
   Perf note: only transform / box-shadow / opacity are animated
   (compositor-friendly); no layout-triggering properties.
════════════════════════════════════════════════════════════ */

/* ── 1 · Card lift + diffused elegant shadow ── */
.t-pcard, .t-featured-product, .t-engage__card, .t-cert,
.t-value-card, .t-metric, .benefit-card, .value-card, .blog-card {
  transition: transform .45s cubic-bezier(.22,.61,.36,1),
              box-shadow .45s cubic-bezier(.22,.61,.36,1),
              border-color .3s ease;
}
.t-pcard:hover, .t-featured-product:hover, .t-engage__card:hover,
.t-cert:hover, .t-value-card:hover, .benefit-card:hover,
.value-card:hover, .blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(22,21,19,.07), 0 6px 14px rgba(22,21,19,.04);
  border-color: var(--grey);
}

/* ── 1b · Contained image zoom (real <img> inside clipped media) ── */
.t-pcard__media, .blog-card__img-link, .blog-card__img-placeholder,
.product-gallery__main { overflow: hidden; }
.t-pcard__media img, .blog-card__img,
.product-gallery__main img { transition: transform .5s ease-out; will-change: transform; }
.t-pcard:hover .t-pcard__media img,
.blog-card:hover .blog-card__img,
.product-gallery:hover .product-gallery__main img { transform: scale(1.04); }

/* bg-image tiles / engagement panels zoom */
.t-engage__img, .t-tile__img { transition: transform .55s ease-out; will-change: transform; }
.t-engage__card:hover .t-engage__img,
.t-tile:hover .t-tile__img { transform: scale(1.05); }

/* ── 2 · Product 3D pop on crisp white ── */
.t-pcard__media, .t-featured-product__media,
.t-hero__product, .product-gallery__main { background: #fff; }

.t-featured-product__media { overflow: visible; position: relative; }
.t-featured-product__media img,
.t-hero__product img {
  position: relative;
  z-index: 1;
  transition: transform .5s cubic-bezier(.22,.61,.36,1), filter .5s ease;
  filter: drop-shadow(0 16px 26px rgba(22,21,19,.20)) drop-shadow(0 5px 10px rgba(22,21,19,.10));
}
.t-featured-product:hover .t-featured-product__media img {
  transform: translateY(-10px) scale(1.03);
  filter: drop-shadow(0 32px 42px rgba(22,21,19,.26)) drop-shadow(0 10px 16px rgba(22,21,19,.12));
}
/* soft contact shadow under the packaging — simulates real-world physics */
.t-featured-product__media::after {
  content: '';
  position: absolute;
  left: 20%; right: 20%; bottom: 12px;
  height: 20px;
  background: radial-gradient(ellipse at center, rgba(22,21,19,.20), transparent 72%);
  filter: blur(5px);
  z-index: 0;
  transition: transform .5s ease, opacity .5s ease;
}
.t-featured-product:hover .t-featured-product__media::after {
  transform: scale(1.08) translateY(6px);
  opacity: .75;
}

/* ── 3 · Scroll reveal states (driven by theme.js) ── */
.js-reveal { opacity: 0; transform: translateY(22px); }
.js-reveal.is-in { animation: pegasusFadeUp .6s var(--ease) forwards; }

/* ── 4 · Sticky product gallery on the detail page ── */
@media (min-width: 992px) {
  .product-hero__grid { align-items: start; }
  .product-gallery {
    position: sticky;
    top: calc(var(--shell-h, 120px) + 24px);
    align-self: start;
  }
}

/* ── Reduced-motion: disable all of the above ── */
@media (prefers-reduced-motion: reduce) {
  .t-pcard, .t-featured-product, .t-engage__card, .t-cert, .t-value-card,
  .benefit-card, .value-card, .blog-card,
  .t-pcard__media img, .blog-card__img, .product-gallery__main img,
  .t-engage__img, .t-tile__img,
  .t-featured-product__media img { transition: none !important; }
  .js-reveal { opacity: 1; transform: none; }
  .js-reveal.is-in { animation: none; }
  .t-featured-product__media::after { transition: none; }
}

/* ════════════════════════════════════════════════════════════
   §39 — CERTIFICATIONS BAND (official embossed seals)
════════════════════════════════════════════════════════════ */
.t-certband__inner { max-width: 1020px; margin: 0 auto; padding: 0 var(--container-pad); }
.t-seals {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.t-seal {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}
.t-seal__medallion {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  border: 1px solid var(--grey-mid);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.t-seal__medallion::before {
  content: '';
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  border: 1px solid var(--grey);
}
.t-seal:hover .t-seal__medallion {
  transform: translateY(-5px);
  box-shadow: 0 18px 34px rgba(22,21,19,.09);
}
.t-seal__medallion svg { width: 36px; height: 36px; color: var(--navy); position: relative; z-index: 1; }
.t-seal__name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .03em;
  color: var(--navy);
}
.t-seal__desc { font-size: .78rem; color: var(--text-muted); max-width: 180px; line-height: 1.55; }
.t-certband__note {
  margin-top: 48px;
  padding-top: 30px;
  border-top: 1px solid var(--grey);
  text-align: center;
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.t-certband__note strong { color: var(--navy); font-weight: 600; }
@media (max-width: 760px) {
  .t-seals { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
}

/* ════════════════════════════════════════════════════════════
   §40 — LIGHT EDITORIAL HERO (bright, airy — color from the photo)
════════════════════════════════════════════════════════════ */
.t-hero2 {
  display: grid;
  grid-template-columns: 1.04fr 1fr;
  min-height: 90vh;
  background:
    radial-gradient(circle at 14% 24%, rgba(0,86,168,.08), transparent 34%),
    linear-gradient(180deg, #fff 0%, #fff 62%, var(--blue-pale) 100%);
  border-bottom: 1px solid var(--grey);
}
.t-cta-reassure {
  color: var(--navy);
  background: rgba(0,86,168,.06);
  border: 1px solid rgba(0,86,168,.12);
  border-radius: 16px;
  padding: 12px 14px;
  display: inline-flex;
  align-items: flex-start;
  gap: 9px;
  line-height: 1.55;
}
.t-cta-reassure svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--gold-dark);
  margin-top: .18em;
}
.t-problem {
  background:
    radial-gradient(circle at 15% 12%, rgba(0,86,168,.07), transparent 32%),
    linear-gradient(180deg, var(--blue-pale) 0%, #fff 48%, var(--gold-pale) 100%);
}
.t-problem__lead {
  max-width: 780px;
  margin: 0 auto 34px;
  padding: 0 var(--container-pad);
  text-align: center;
  color: var(--text-body);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.8;
}
.t-problem__lead em,
.t-problem__bridge span {
  color: var(--navy);
  font-style: normal;
  font-weight: 700;
}
.t-problem__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.t-scenario {
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(0,86,168,.13);
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 16px 38px rgba(6,52,95,.07);
}
.t-scenario__ico {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--saffron-purple);
  background: rgba(125,95,199,.1);
  margin-bottom: 18px;
}
.t-scenario__ico svg { width: 24px; height: 24px; }
.t-scenario__text {
  color: var(--text-body);
  line-height: 1.75;
  font-size: .96rem;
}
.t-scenario__text strong { color: var(--navy); font-weight: 700; }
.t-problem__bridge {
  margin: 36px auto 0;
  padding: 0 var(--container-pad);
  max-width: 720px;
  text-align: center;
  color: var(--text-muted);
  font-family: var(--font-head);
  font-size: clamp(1.32rem, 2.4vw, 2rem);
  line-height: 1.25;
}
.t-guarantee {
  background:
    linear-gradient(90deg, rgba(0,86,168,.08), rgba(217,154,43,.09)),
    var(--white);
}
.t-feedback-strip {
  background: linear-gradient(180deg, #fff 0%, var(--blue-pale) 100%);
}
.t-feedback-strip__track,
.t-products-grid,
.t-products-actions,
.t-method__grid,
.t-method__cta {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}
.t-feedback-strip__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(270px, 340px);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
}
.t-feedback-card {
  scroll-snap-align: start;
  overflow: hidden;
  border: 1px solid rgba(0,86,168,.12);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(6,52,95,.07);
}
.t-feedback-card__photo img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}
.t-feedback-card__body { padding: 18px; }
.t-feedback-card__body p {
  color: var(--text-body);
  line-height: 1.65;
  font-size: .9rem;
  margin-bottom: 16px;
}
.t-feedback-card__body strong {
  display: block;
  color: var(--navy);
  font-family: var(--font-head);
  font-size: .98rem;
}
.t-feedback-card__body span {
  color: var(--text-muted);
  font-size: .78rem;
}
.t-hero2__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--shell-h, 112px) + 32px) clamp(28px, 5vw, 84px) clamp(48px, 6vw, 88px);
  max-width: 760px;
  margin-left: auto;
}
.t-hero2 .t-kicker {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.t-hero2 .t-kicker::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.t-hero2__title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 4.8vw, 4.4rem);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -.025em;
  color: var(--navy);
  margin-bottom: 26px;
}
.t-hero2__title em { font-style: italic; font-weight: 500; color: var(--navy); }
.t-hero2__sub {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--text-body);
  max-width: 480px;
  margin-bottom: 38px;
}
.t-hero2__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.t-hero2__social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
  background: rgba(0,86,168,.06);
  border: 1px solid rgba(0,86,168,.12);
  border-radius: 18px;
  padding: 14px 16px;
}
.t-hero2__social-ico { color: var(--gold-dark); flex: 0 0 auto; }
.t-hero2__social-ico svg { width: 20px; height: 20px; display: block; }
.t-hero2__social-txt { font-size: .82rem; color: var(--text-muted); line-height: 1.4; }
.t-hero2__social-txt strong { color: var(--navy); font-weight: 600; }
.t-hero2__proofs {
  display: flex;
  gap: clamp(20px, 3vw, 48px);
  border-top: 1px solid rgba(0,86,168,.16);
  padding-top: 30px;
}
.t-hero2__proof strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 7px;
}
.t-hero2__proof span {
  font-size: .76rem;
  color: var(--text-muted);
  line-height: 1.45;
  display: block;
  max-width: 150px;
}
.t-hero2__media {
  background-size: cover;
  background-position: 66% center;
  background-color: var(--blue-pale);
}

/* ════════════════════════════════════════════════════════════
   §40B — PEGASUS ECOSYSTEM ARCHITECTURE
════════════════════════════════════════════════════════════ */
.t-ecosystem{
  background:
    radial-gradient(circle at 50% 18%,rgba(217,154,43,.1),transparent 32%),
    linear-gradient(180deg,#fff 0%,var(--blue-pale) 100%);
}
.t-ecosystem__map{
  max-width:var(--max-width);
  margin:0 auto;
  padding:0 var(--container-pad);
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(170px,.42fr) minmax(0,1fr);
  gap:22px;
  align-items:center;
}
.t-house{
  position:relative;
  min-height:360px;
  border:1px solid rgba(0,86,168,.13);
  border-radius:24px;
  padding:30px;
  background:rgba(255,255,255,.88);
  box-shadow:0 18px 44px rgba(6,52,95,.08);
  overflow:hidden;
}
.t-house::before{
  content:"";
  position:absolute;
  inset:0 0 auto;
  height:6px;
  background:var(--saffron-purple);
}
.t-house--move::before{background:var(--success);}
.t-house__label{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:18px;
  color:var(--gold-dark);
  font-size:.75rem;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.t-house--move .t-house__label{color:var(--success);}
.t-house h3{
  font-family:var(--font-head);
  font-size:clamp(1.65rem,2.7vw,2.35rem);
  line-height:1.04;
  color:var(--navy);
  margin:0 0 14px;
}
.t-house p{
  color:var(--text-body);
  line-height:1.75;
  margin:0 0 20px;
}
.t-house ul{display:grid;gap:9px;margin:0 0 24px;}
.t-house li{
  position:relative;
  padding-left:22px;
  color:var(--text-muted);
  font-size:.92rem;
  line-height:1.45;
}
.t-house li::before{
  content:"";
  position:absolute;
  left:0;
  top:.55em;
  width:8px;
  height:8px;
  border-radius:50%;
  background:currentColor;
}
.t-house__link{
  display:inline-flex;
  align-items:center;
  min-height:42px;
  padding:0 16px;
  border:1px solid rgba(0,86,168,.18);
  border-radius:999px;
  color:var(--navy);
  background:#fff;
  text-decoration:none;
  font-weight:700;
  font-size:.86rem;
}
.t-ecosystem__core{
  aspect-ratio:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:7px;
  border:1px solid rgba(217,154,43,.45);
  border-radius:50%;
  background:linear-gradient(180deg,#fff 0%,#fbf6ea 100%);
  color:var(--gold-dark);
  font-family:var(--font-head);
  font-weight:800;
  text-align:center;
  text-transform:uppercase;
  letter-spacing:.04em;
  box-shadow:0 14px 38px rgba(151,103,24,.12);
}
.t-ecosystem__core span{display:block;}
.t-ecosystem__pillars{
  max-width:var(--max-width);
  margin:22px auto 0;
  padding:0 var(--container-pad);
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}
.t-ecosystem__pillars article,
.t-pro-center__audiences article{
  border:1px solid rgba(0,86,168,.12);
  border-radius:18px;
  background:rgba(255,255,255,.82);
  padding:20px;
}
.t-ecosystem__pillars strong,
.t-pro-center__audiences strong{
  display:block;
  color:var(--navy);
  font-family:var(--font-head);
  font-size:1rem;
  margin-bottom:8px;
}
.t-ecosystem__pillars span,
.t-pro-center__audiences span{
  color:var(--text-muted);
  font-size:.9rem;
  line-height:1.65;
}

.t-products-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
}
.t-products-grid--single{grid-template-columns:minmax(0,520px);justify-content:center;}
.t-products-grid--ecosystem{grid-template-columns:repeat(2,minmax(0,1fr));}
.t-product-card{
  display:flex;
  flex-direction:column;
  min-height:100%;
  overflow:hidden;
  border:1px solid rgba(0,86,168,.12);
  border-radius:24px;
  background:#fff;
  text-decoration:none;
  box-shadow:0 16px 38px rgba(6,52,95,.07);
  transition:transform .22s,box-shadow .22s,border-color .22s;
}
.t-product-card:hover{
  transform:translateY(-3px);
  border-color:rgba(0,86,168,.22);
  box-shadow:0 22px 52px rgba(6,52,95,.11);
}
.t-product-card__media{
  min-height:270px;
  padding:28px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(180deg,#fff 0%,var(--blue-pale) 100%);
}
.t-product-card__media img{
  width:min(100%,260px);
  height:auto;
  filter:drop-shadow(0 18px 28px rgba(0,0,0,.13));
}
.t-product-card__media--icon{
  color:var(--success);
  background:
    radial-gradient(circle at 70% 22%,rgba(217,154,43,.16),transparent 30%),
    linear-gradient(180deg,#fff 0%,#eef7f0 100%);
}
.t-product-card__media--icon svg{width:min(48%,170px);}
.t-product-card__body{
  flex:1;
  display:flex;
  flex-direction:column;
  padding:24px;
}
.t-product-card__house{
  display:block;
  color:var(--gold-dark);
  font-size:.72rem;
  font-weight:800;
  letter-spacing:.15em;
  text-transform:uppercase;
  margin-bottom:9px;
}
.t-product-card--coming .t-product-card__house{color:var(--success);}
.t-product-card__meta{
  color:var(--text-muted);
  font-size:.84rem;
  line-height:1.45;
  margin-bottom:8px;
}
.t-product-card__name{
  color:var(--navy);
  font-family:var(--font-head);
  font-size:clamp(1.28rem,2.2vw,1.65rem);
  line-height:1.1;
  margin-bottom:12px;
}
.t-product-card__desc{
  color:var(--text-body);
  font-size:.96rem;
  line-height:1.68;
  margin-bottom:20px;
}
.t-product-card__cta{
  margin-top:auto;
  color:var(--navy);
  font-size:.88rem;
  font-weight:800;
}
.products-hero{
  padding:calc(var(--shell-h,112px) + 56px) var(--container-pad) 56px;
  text-align:center;
  background:
    radial-gradient(circle at 50% 20%,rgba(217,154,43,.12),transparent 34%),
    linear-gradient(180deg,#fff 0%,var(--blue-pale) 100%);
  border-bottom:1px solid var(--grey);
}
.products-hero__title{
  font-family:var(--font-head);
  font-size:clamp(2.4rem,5vw,4.3rem);
  line-height:1;
  letter-spacing:-.025em;
  color:var(--navy);
  margin:10px auto 16px;
}
.products-hero__sub{
  max-width:760px;
  margin:0 auto;
  color:var(--text-body);
  font-size:1.08rem;
  line-height:1.75;
}
.t-pro-center{
  background:
    radial-gradient(circle at 52% 12%,rgba(125,95,199,.12),transparent 32%),
    linear-gradient(180deg,#fff 0%,var(--blue-pale) 100%);
}
.t-pro-center__audiences{
  max-width:var(--max-width);
  margin:0 auto;
  padding:0 var(--container-pad);
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}

@media (max-width: 900px) {
  .t-hero2 { grid-template-columns: 1fr; min-height: 0; }
  .t-hero2__media {
    min-height: clamp(250px, 70vw, 340px);
    order: -1;
    margin-top: var(--shell-h, 80px);
    background-position: 70% center !important;
  }
  .t-hero2__text {
    margin: 0;
    padding: 44px var(--container-pad) 84px;
  }
  .t-ecosystem__map,
  .t-products-grid,
  .t-products-grid--ecosystem,
  .t-pro-center__audiences{grid-template-columns:1fr;}
  .t-ecosystem__core{
    width:min(220px,70vw);
    margin:0 auto;
    order:-1;
  }
  .t-ecosystem__pillars{grid-template-columns:1fr;}
}
@media (max-width: 520px) {
  body.home .whatsapp-float { display: none; }
  .t-hero2__media {
    min-height: 260px;
    background-position: 72% center !important;
  }
  .t-hero2 .t-kicker {
    justify-content: center;
    text-align: center;
  }
  .t-hero2__title,
  .t-hero2__sub,
  .t-cta-reassure,
  .t-hero2__social {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .t-hero2__sub { max-width: min(100%, 318px); }
  .t-hero2__actions { justify-content: center; }
  .t-hero2__proofs { flex-wrap: wrap; gap: 22px; }
  .t-problem__grid { grid-template-columns: 1fr; }
  .t-house{min-height:0;padding:24px 20px;border-radius:18px;}
  .t-product-card__media{min-height:220px;padding:22px;}
  .t-product-card__body{padding:22px 20px;}
  .products-hero{padding:calc(var(--shell-h,80px) + 34px) var(--container-pad) 42px;}
}

/* ════════════════════════════════════════════════════════════
   §41 — POLISH: touch targets (impeccable audit)
   Footer nav links and utility link reach ≥44px on touch devices.
════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .footer-col ul a,
  .footer-bottom nav a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }
  .utility-bar__link { display: inline-flex; align-items: center; min-height: 32px; }
}

/* ════════════════════════════════════════════════════════════
   §42 — BRAND LOGO (real pegasus mark from brand PDF)
════════════════════════════════════════════════════════════ */
.site-logo__img {
  height: 64px;
  width: auto;
  display: block;
}
/* Keep the light header light on scroll so the ink logo stays legible */
.site-header.header-light.scrolled { background: var(--white); box-shadow: 0 1px 0 var(--linen), 0 8px 28px rgba(22,21,19,.06); }
.site-header.header-light.scrolled .nav-link { color: var(--text-muted); }
.site-header.header-light.scrolled .nav-link:hover,
.site-header.header-light.scrolled .nav-link.active { color: var(--navy); }

.footer-logo__img {
  height: 50px;
  width: auto;
  display: block;
  margin-bottom: 14px;
}

@media (max-width: 768px) {
  .site-logo__img { height: 52px; }
}

/* ════════════════════════════════════════════════════════════
   §43 — SCIENCE PAGE: molecules, synapse, timeline, data-viz
   Mono line-art + one saffron-crimson accent. Scroll-drawn.
════════════════════════════════════════════════════════════ */
:root { --sci-red: #B0432B; --sci-line: #1C1B19; }

/* — Standardisation bars — */
.sci-bars { display: flex; flex-direction: column; gap: var(--space-lg); margin-top: var(--space-xl); }
.sci-bar__head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.sci-bar__name { font-family: var(--font-head); font-weight: 600; font-size: .92rem; color: var(--navy); }
.sci-bar__name small { font-family: var(--font-mono, monospace); font-weight: 400; color: var(--text-muted); letter-spacing: .02em; }
.sci-bar__val { font-family: var(--font-head); font-weight: 700; color: var(--sci-red); font-size: 1rem; }
.sci-bar__track { height: 8px; background: var(--grey); border-radius: 100px; overflow: hidden; }
.sci-bar__fill { height: 100%; width: var(--w, 60%); opacity:.42; background: linear-gradient(90deg, var(--navy), var(--sci-red)); border-radius: 100px; transition: opacity 1.3s cubic-bezier(.22,.61,.36,1); }
.sci-bars.in-view .sci-bar__fill { opacity:1; }
.sci-bar__note { margin: 8px 0 0; color: var(--text-muted); font-size: .82rem; line-height: 1.5; }
.sci-bridge {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 var(--space-xl);
}
.sci-bridge article,
.sci-compare__panel,
.sci-days article,
.sci-pathway article {
  border: 1px solid var(--grey);
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(18px, 2.2vw, 24px);
}
.sci-bridge span,
.sci-compare__panel span,
.sci-days strong,
.sci-pathway span {
  display: block;
  margin-bottom: 10px;
  color: #b8862b;
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.sci-bridge strong {
  display: block;
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 1rem;
  line-height: 1.35;
  margin-bottom: 8px;
}
.sci-bridge p,
.sci-compare li,
.sci-days p,
.sci-pathway p {
  color: var(--text-body);
  font-size: .9rem;
  line-height: 1.7;
  margin: 0;
}
.sci-compare {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(170px, .42fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}
.sci-compare__panel h3,
.sci-days h3,
.sci-pathway h3 {
  color: var(--navy);
  font-family: var(--font-head);
  font-size: 1.25rem;
  line-height: 1.2;
  margin-bottom: 14px;
}
.sci-compare__panel ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
}
.sci-compare__panel li {
  position: relative;
  padding-left: 22px;
}
.sci-compare__panel li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--navy);
}
.sci-compare__panel--saffron {
  border-color: rgba(176, 67, 43, .28);
  background: #fffaf8;
}
.sci-compare__panel--saffron li::before { background: var(--sci-red); }
.sci-compare__center {
  border: 1px solid var(--grey);
  border-radius: var(--radius-lg);
  background: var(--navy);
  color: #fff;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.sci-compare__center strong {
  font-family: var(--font-head);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--gold-light);
}
.sci-compare__center span {
  color: rgba(255,255,255,.72);
  font-size: .86rem;
  line-height: 1.6;
}
.sci-compare .section-subtitle,
.sci-days .section-subtitle { color: var(--text-body); }
.sci-logic-table {
  margin-top: 18px;
  border: 1px solid var(--grey);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
}
.sci-logic-table__row {
  display: grid;
  grid-template-columns: minmax(150px, .48fr) repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--grey);
}
.sci-logic-table__row:first-child { border-top: 0; }
.sci-logic-table__row > * {
  padding: 16px 18px;
  border-left: 1px solid var(--grey);
}
.sci-logic-table__row > *:first-child { border-left: 0; }
.sci-logic-table__row span {
  color: var(--navy);
  background: var(--grey-light);
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.sci-logic-table__row p {
  margin: 0;
  color: var(--text-body);
  font-size: .88rem;
  line-height: 1.65;
}
.sci-logic-table__row strong { color: var(--navy); }
.sci-compare__note {
  max-width: 820px;
  margin: 16px auto 0;
  color: var(--text-muted);
  font-size: .86rem;
  line-height: 1.65;
  text-align: center;
}
.sci-pathway {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 var(--space-xl);
}
.sci-pathway article {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
}
.sci-pathway h3 { color: #fff; font-size: 1.05rem; }
.sci-pathway p { color: rgba(255,255,255,.74); }
.sci-days {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.sci-days article { background: var(--white); }

/* — Molecule cards — */
.mol-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: var(--space-xl); }
.mol-card {
  background: var(--white);
  border: 1px solid var(--grey);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .3s;
}
.mol-card:hover { transform: translateY(-6px); box-shadow: 0 22px 44px rgba(22,21,19,.07); border-color: var(--grey-mid); }
.mol-stage {
  height: 150px;
  background: var(--grey-light);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-lg);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.mol-stage::after { /* faint grid paper */
  content:''; position:absolute; inset:0; opacity:.5;
  background-image: linear-gradient(var(--grey) 1px, transparent 1px), linear-gradient(90deg, var(--grey) 1px, transparent 1px);
  background-size: 22px 22px; mask-image: radial-gradient(circle at center, #000 40%, transparent 78%);
}
.mol-svg { width: 86%; height: 86%; position: relative; z-index: 1; overflow: visible; }
.mol-svg .ml {
  fill: none; stroke: var(--sci-line); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 300; stroke-dashoffset: 300;
}
.mol-svg.drawn .ml { animation: molDraw 1.5s cubic-bezier(.6,0,.3,1) forwards; }
.mol-svg .ml.d2 { animation-delay: .25s; } .mol-svg .ml.d3 { animation-delay: .5s; }
@keyframes molDraw { to { stroke-dashoffset: 0; } }
.mol-svg .atom { opacity: 0; transform-box: fill-box; transform-origin: center; }
.mol-svg.drawn .atom { animation: molPop .5s ease forwards; animation-delay: 1.1s; }
@keyframes molPop { from { opacity:0; transform: scale(.4);} to { opacity:1; transform: scale(1);} }
.mol-svg .atom.o { fill: var(--sci-red); }
.mol-svg .atom-label { font: 700 12px var(--font-head); fill: #fff; }
.mol-svg.drawn { } 
.mol-card__formula { font-family: var(--font-mono, ui-monospace, monospace); font-size: .74rem; letter-spacing: .04em; color: var(--sci-red); font-weight: 600; }
.mol-card__sub { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--text-muted); margin: 4px 0 10px; }
.mol-card h3 { font-size: 1.3rem; color: var(--navy); margin-bottom: 10px; }
.mol-card p { font-size: .86rem; color: var(--text-muted); line-height: 1.7; }

/* — Synapse diagram — */
.synapse-wrap { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-xl); padding: var(--space-xl); margin-bottom: var(--space-2xl); }
.synapse-svg { width: 100%; height: auto; display: block; }
.synapse-svg .sl { fill: none; stroke: rgba(255,255,255,.55); stroke-width: 2; }
.synapse-svg .sfill { fill: rgba(255,255,255,.06); stroke: rgba(255,255,255,.3); stroke-width: 1.5; }
.synapse-svg .recept { fill: none; stroke: var(--gold-light); stroke-width: 2.5; }
.synapse-svg .nt { fill: var(--sci-red); }
.synapse-svg .nt-travel { animation: ntTravel 3.4s cubic-bezier(.5,0,.5,1) infinite; }
.synapse-svg .nt-travel.t2 { animation-delay: .7s; } .synapse-svg .nt-travel.t3 { animation-delay: 1.4s; }
.synapse-svg .nt-travel.t4 { animation-delay: 2.1s; } .synapse-svg .nt-travel.t5 { animation-delay: 2.8s; }
@keyframes ntTravel {
  0% { transform: translate(0,0); opacity: 0; }
  12% { opacity: 1; }
  70% { transform: translate(120px, 30px); opacity: 1; }
  82%,100% { transform: translate(120px, 30px); opacity: 0; }
}
.synapse-svg .pulse { transform-box: fill-box; transform-origin: center; animation: synPulse 2.6s ease-in-out infinite; }
@keyframes synPulse { 0%,100%{opacity:.35} 50%{opacity:1} }
.synapse-svg .block-x { stroke: var(--sci-red); stroke-width: 3; stroke-linecap: round; }
.synapse-legend { display: flex; gap: var(--space-lg); flex-wrap: wrap; justify-content: center; margin-top: var(--space-lg); }
.synapse-legend span { display: inline-flex; align-items: center; gap: 8px; font-size: .78rem; color: rgba(255,255,255,.65); }
.synapse-legend i { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }

/* mechanism items with real icons */
.mech-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
.mech-item { display: flex; gap: var(--space-md); padding: var(--space-lg); background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-lg); transition: background .25s, border-color .25s, transform .25s; }
.mech-item:hover { background: rgba(176,67,43,.1); border-color: rgba(176,67,43,.3); transform: translateY(-3px); }
.mech-ico { width: 48px; height: 48px; flex-shrink: 0; border-radius: var(--radius); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; }
.mech-ico svg { width: 24px; height: 24px; stroke: var(--gold-light); fill: none; stroke-width: 1.7; }
.mech-item h4 { font-family: var(--font-head); font-size: 1rem; color: #fff; margin-bottom: 6px; }
.mech-item p { font-size: .84rem; color: rgba(255,255,255,.6); line-height: 1.65; }

/* — Animated process timeline — */
.sci-timeline { position: relative; padding-left: 0; }
.sci-track { position: relative; }
.sci-track::before { content:''; position: absolute; left: 19px; top: 8px; bottom: 8px; width: 2px; background: var(--grey); }
.sci-track::after { content:''; position: absolute; left: 19px; top: 8px; bottom:8px; width: 2px; background: var(--sci-red); transform-origin:top center; transform:scaleY(0); transition: transform 1.6s ease; }
.sci-track.in-view::after { transform:scaleY(1); }
.sci-node { position: relative; padding: 0 0 var(--space-2xl) 56px; }
.sci-node:last-child { padding-bottom: 0; }
.sci-node__dot { position: absolute; left: 8px; top: 2px; width: 24px; height: 24px; border-radius: 50%; background: var(--white); border: 2px solid var(--grey-mid); display: flex; align-items: center; justify-content: center; font: 700 .72rem var(--font-head); color: var(--text-muted); z-index: 1; transition: all .4s ease; }
.sci-node.lit .sci-node__dot { background: var(--navy); border-color: var(--navy); color: #fff; transform: scale(1.08); }
.sci-node h4 { font-family: var(--font-head); font-size: 1.05rem; color: var(--navy); margin-bottom: 8px; }
.sci-node p { font-size: .88rem; color: var(--text-muted); line-height: 1.7; }

@media (max-width: 900px) {
  .page-template-page-la-science .responsive-grid {
    grid-template-columns: 1fr !important;
  }
  .page-template-page-la-science .science-visual {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .mol-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .mech-grid { grid-template-columns: 1fr; }
  .sci-bridge,
  .sci-compare,
  .sci-pathway,
  .sci-days {
    grid-template-columns: 1fr;
  }
  .sci-logic-table__row {
    grid-template-columns: 1fr;
  }
  .sci-logic-table__row > * {
    border-left: 0;
    border-top: 1px solid var(--grey);
  }
  .sci-logic-table__row > *:first-child {
    border-top: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .mol-svg .ml { stroke-dashoffset: 0 !important; animation: none !important; }
  .mol-svg .atom { opacity: 1 !important; animation: none !important; }
  .synapse-svg .nt-travel, .synapse-svg .pulse { animation: none !important; }
  .sci-bars .sci-bar__fill { transition: none; }
  .sci-track::after { transition: none; }
}

/* ════════════════════════════════════════════════════════════
   §44 — SINGLE-PRODUCT BUY BLOCK (homepage "Commandez")
   One product now, two formats, direct add-to-cart.
════════════════════════════════════════════════════════════ */
.t-shop {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.t-shop__media {
  background: linear-gradient(180deg, #fff 0%, var(--grey-light) 100%);
  border: 1px solid var(--grey);
  border-radius: 28px;
  padding: clamp(28px, 4vw, 52px);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
}
.t-shop__media img {
  width: 100%;
  max-width: 400px;
  height: auto;
  mix-blend-mode: multiply;
}
.t-shop__panel { max-width: 480px; }
.t-shop .t-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 14px;
}
.t-shop__name {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  font-weight: 700; letter-spacing: -.02em; color: var(--navy);
  margin-bottom: 12px;
}
.t-shop__desc { color: var(--text-body); line-height: 1.8; margin-bottom: var(--space-xl); }
.t-opts { display: grid; gap: 14px; margin-bottom: var(--space-lg); }
.t-opt {
  border: 1px solid var(--grey);
  border-radius: 18px;
  padding: 18px 20px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative; background: var(--white);
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.t-opt:hover { border-color: var(--grey-mid); box-shadow: var(--shadow); transform: translateY(-2px); }
.t-opt--best { border: 2px solid var(--navy); }
.t-opt__badge {
  position: absolute; top: -10px; left: 18px;
  background: var(--navy); color: #fff;
  font-size: .62rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 11px; border-radius: 100px;
}
.t-opt__head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.t-opt__qty { font-family: var(--font-head); font-weight: 700; font-size: 1.08rem; color: var(--navy); }
.t-opt__note { font-size: .8rem; color: var(--text-muted); margin-top: 3px; }
.t-opt__price { font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; color: var(--navy); white-space: nowrap; }
.t-opt__price small { font-size: .78rem; font-weight: 600; color: var(--text-muted); }
.t-opt .btn { width: 100%; }
.t-opt__save {
  font-size: .8rem;
  font-weight: 600;
  color: #2f6b3d;
  margin: 4px 0 12px;
}
.t-shop__trust { display: flex; flex-wrap: wrap; gap: 16px; font-size: .8rem; color: var(--text-muted); margin-bottom: var(--space-md); }
.t-shop__more {
  display: inline-block; font-size: .88rem; color: var(--text-muted);
  border-bottom: 1px solid var(--grey-mid); padding-bottom: 2px; transition: color .2s, border-color .2s;
}
.t-shop__more:hover { color: var(--navy); border-color: var(--navy); }
@media (max-width: 900px) {
  .t-shop { grid-template-columns: 1fr; gap: var(--space-xl); }
  .t-shop__media { min-height: 280px; order: -1; }
  .t-shop__panel { max-width: none; }
}

/* ──────────────────────────────────────────
   32. Responsive hardening (mobile overflow guard)
   Fixes horizontal scroll on Home / Espace Pro / Contact.
   Root cause: CSS Grid `1fr` tracks = minmax(auto,1fr); the `auto`
   minimum refuses to shrink below children's min-content (long
   <select> options, long email strings, display headings), forcing
   tracks wider than the viewport. min-width:0 removes that floor.
   ────────────────────────────────────────── */
html { overflow-x: clip; }
body { overflow-x: clip; max-width: 100%; }

/* Media never forces overflow */
img, svg, video, canvas { max-width: 100%; }

/* Let grid/flex items shrink below their content's intrinsic min-width */
.t-split > *,
.t-science-callout > *,
.t-hero__grid > *,
.t-featured-product > *,
.responsive-grid > *,
.contact-grid > *,
.form-row > *,
.product-hero__grid > *,
.pro-advantages > *,
.benefits-grid > * { min-width: 0; }

/* Form controls (esp. <select> with long option labels) must not dictate width */
.form-control,
select.form-control,
input.form-control,
textarea.form-control { max-width: 100%; min-width: 0; }
select.form-control { text-overflow: ellipsis; }

/* Long unbroken strings (emails, URLs) wrap instead of pushing layout */
.contact-item .info a,
.footer-contact-item a { overflow-wrap: anywhere; word-break: break-word; }

@media (max-width: 768px) {
  /* Collapse two-up form rows fully */
  .form-row { grid-template-columns: 1fr; }
  /* Stacked grids: ensure single-column tracks can shrink */
  .responsive-grid { grid-template-columns: minmax(0, 1fr) !important; }
  /* Long French button labels must wrap instead of forcing horizontal scroll
     (e.g. "Envoyer ma Demande Professionnelle", "Documentation Scientifique") */
  .btn { white-space: normal; max-width: 100%; }
}

/* ──────────────────────────────────────────
   33. Thorne-grade type · mobile centering · bigger logo · readable footer
   ────────────────────────────────────────── */

/* Typography: 16 → 17px body, more generous supporting copy */
body { font-size: 1.0625rem; line-height: 1.75; }
.section-subtitle,
.hero-page__sub { font-size: 1.2rem; line-height: 1.8; }
.t-hero2__sub { font-size: 1.18rem; }
.benefit-card__text,
.t-engage__text,
.coming-soon-card p { font-size: 1rem; line-height: 1.75; }
.section-label { font-size: .82rem; letter-spacing: .14em; }

/* Logo tuned for the compact premium header */
.site-logo__img { height: 58px; }

/* Footer: bump every text size up one readable step */
.footer-brand p { font-size: .95rem; }
.footer-col h4 { font-size: .85rem; }
.footer-col ul li a { font-size: .95rem; }
.footer-contact-item span,
.footer-contact-item a { font-size: .95rem; }
.footer-note-card p { font-size: .92rem; }
.footer-note-card__label { font-size: .74rem; }
.footer-legal-notice { font-size: .82rem; line-height: 1.7; }
.footer-bottom p,
.footer-bottom nav a { font-size: .85rem; }

/* Utility bar now carries one centered message (Espace Pro link removed) */
.utility-bar__inner { justify-content: center; }

@media (max-width: 900px) {
  /* Center the hero on mobile */
  .t-hero2__text { align-items: center; text-align: center; }
  .t-hero2 .t-kicker { justify-content: center; }
  .t-hero2__sub { margin-left: auto; margin-right: auto; }
  .t-hero2__actions { justify-content: center; }
  .t-hero2__proofs { justify-content: center; flex-wrap: wrap; text-align: center; }
  .t-hero2__proof span { margin-left: auto; margin-right: auto; }
}

@media (max-width: 768px) {
  /* Subheads a touch smaller than desktop, body stays large */
  .section-subtitle,
  .hero-page__sub { font-size: 1.12rem; }
  .section-title { font-size: clamp(2rem, 7vw, 2.6rem); }
  .hero-page__title { font-size: clamp(2rem, 8vw, 2.6rem); }
  .site-logo__img { height: 64px; }

  /* Center section content on mobile */
  .section-head { text-align: center; }
  .section-subtitle { margin-left: auto; margin-right: auto; }

  /* Science callout fully centered (4th image) */
  .t-science-callout,
  .t-science-callout__content { text-align: center; }
  .t-science-callout__content { align-items: center; }
  .t-science-callout__stats { justify-items: center; max-width: 380px; margin-left: auto; margin-right: auto; }
  .t-metric { text-align: center; }

  /* CTA rows centered */
  .hero__actions { justify-content: center; display: flex; }
  .t-pro-banner__action { justify-content: center; display: flex; }
}

/* ──────────────────────────────────────────
   34. Mobile menu drawer fix + top-bar phone
   ────────────────────────────────────────── */

/* Top utility bar: delivery message (left) + click-to-call (right) */
.utility-bar__inner { justify-content: space-between; }
.utility-bar__phone {
  display: inline-flex; align-items: center; gap: 6px;
  color: #fff; text-decoration: none;
  font-size: .72rem; font-weight: 600; letter-spacing: .06em;
  white-space: nowrap; flex-shrink: 0;
  transition: color var(--trans);
}
.utility-bar__phone svg { width: 13px; height: 13px; }
.utility-bar__phone:hover { color: var(--gold-light); }
@media (max-width: 900px) {
  .utility-bar__text {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    letter-spacing: .04em;
    line-height: 1.35;
  }
}
@media (max-width: 768px) {
  .utility-bar__text { display: block; }                 /* override the original hide so the message shows */
}
@media (max-width: 600px) {
  .utility-bar { font-size: .68rem; }
  .utility-bar__more { display: none; }                 /* drop the long tail on phones */
  .utility-bar__inner { justify-content: center; gap: 14px; }
  .utility-bar__text {                                    /* let the short message show fully */
    display: block;
    white-space: normal; overflow: visible; text-overflow: clip;
    flex: 0 1 auto; letter-spacing: .04em;
  }
}

/* ── Open mobile menu = solid full-screen drawer, links in normal flow ── */
@media (max-width: 1024px) {
  .primary-nav.open .primary-nav__panel {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: auto; max-width: none; margin: 0;
    height: 100vh; height: 100dvh; min-height: 100vh;
    border: 0; border-radius: 0; box-shadow: none;
    background: #ffffff;                       /* fully opaque — no page bleed-through */
    padding: calc(var(--shell-h, 120px) + 20px) 24px 32px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 1190;
    display: flex; flex-direction: column;
    align-items: stretch; justify-content: flex-start;
    gap: 6px;
    opacity: 1; visibility: visible; transform: none;
  }
  /* links flow inside the drawer instead of being position:fixed over the page */
  .primary-nav.open .nav-links {
    position: static; inset: auto;
    top: auto; right: auto; bottom: auto; left: auto;
    width: 100%;
    display: flex; flex-direction: column; align-items: stretch; gap: 6px;
    z-index: auto;
  }
  .primary-nav.open .nav-links li { width: 100%; list-style: none; }
  .primary-nav.open .nav-link { width: 100%; justify-content: flex-start; }
  .primary-nav.open .nav-actions {
    position: static;
    width: 100%; margin-top: 18px; padding-left: 0;
    flex-direction: column; align-items: stretch; gap: 12px;
  }
  /* Espace Pro stays a dark CTA inside the drawer (don't inherit the light link bg) */
  .primary-nav.open .nav-btn-pro {
    background: var(--navy-dark);
    color: #fff !important;
    justify-content: center;
    text-align: center;
  }
  .primary-nav.open .nav-cart { justify-content: center; }
  /* keep logo + close (X) above the drawer so it can always be dismissed */
  .site-header { z-index: 1200; }
  .site-header .header-inner { position: relative; z-index: 1210; }
}

/* ════════════════════════════════════════════════════════════
   §42 — CRO: SOCIAL PROOF (AVIS) + MÉTHODE 90 JOURS
════════════════════════════════════════════════════════════ */
.t-reviews__rating {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; margin-top: 14px;
}
.t-reviews__rating .t-stars { color: #b8862b; font-size: 1.05rem; letter-spacing: .12em; }
.t-reviews__rating-txt { font-size: .9rem; color: var(--text-muted); }
.t-reviews__rating-txt strong { color: var(--navy); font-weight: 700; }

.t-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 12px;
}
.t-review {
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--grey);
  border-radius: 14px;
  padding: 28px 26px;
  box-shadow: var(--shadow, 0 1px 2px rgba(0,0,0,.04));
  transition: transform .25s ease, box-shadow .25s ease;
}
.t-review:hover { transform: translateY(-3px); box-shadow: 0 14px 38px rgba(0,0,0,.08); }
.t-review__stars { color: #b8862b; letter-spacing: .1em; font-size: .95rem; margin-bottom: 14px; }
.t-review__text {
  color: var(--text-body); line-height: 1.7; font-size: .98rem;
  flex: 1 0 auto; margin-bottom: 22px;
}
.t-review__foot { display: flex; align-items: center; gap: 12px; }
.t-review__avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--grey-light); color: var(--navy);
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: .85rem;
  flex: 0 0 auto;
}
.t-review__who { display: flex; flex-direction: column; line-height: 1.3; margin-right: auto; }
.t-review__who strong { color: var(--navy); font-weight: 600; font-size: .92rem; }
.t-review__who span { color: var(--text-muted); font-size: .76rem; }
.t-review__verif { color: #2f6b3d; font-size: .74rem; font-weight: 600; white-space: nowrap; }
.t-reviews__legal {
  text-align: center; color: var(--text-muted);
  font-size: .74rem; line-height: 1.6;
  max-width: 720px; margin: 34px auto 0;
}

/* Human visual proof: compact editorial rhythm before the technical sections. */
.t-human-proof{
  background:
    linear-gradient(180deg,#fff 0%,#f7fbff 54%,#fff 100%);
}
.t-human-proof .t-head{
  margin-bottom:clamp(24px,3vw,34px);
}
.t-human-proof__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 var(--container-pad, 24px);
  align-items: stretch;
}
.t-human-proof__card {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  border: 1px solid rgba(0,91,172,.13);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(6,52,95,.07);
}
.t-human-proof__card img {
  display: block;
  width: 100%;
  height: clamp(220px, 19vw, 286px);
  object-fit: cover;
  object-position: center;
  border-bottom: 1px solid rgba(0,91,172,.10);
}
.t-human-proof__card:nth-child(1) img{
  object-position: 50% 32%;
}
.t-human-proof__card:nth-child(2) img{
  object-position: 54% 44%;
}
.t-human-proof__card:nth-child(3) img{
  object-position: 56% 38%;
}
.t-human-proof__card div {
  display: flex;
  min-height: 218px;
  flex-direction: column;
  padding: 22px 22px 24px;
}
.t-human-proof__card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #b8862b;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.t-human-proof__card h3 {
  color: var(--navy);
  font-family: var(--font-head);
  font-size: clamp(1.22rem, 1.8vw, 1.5rem);
  line-height: 1.14;
  margin: 0 0 12px;
  text-wrap: balance;
}
.t-human-proof__card p {
  margin: 0;
  color: var(--text-body);
  font-size: .98rem;
  line-height: 1.62;
  max-width: 30ch;
}

/* ── Méthode 90 jours ── */
.t-method__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 12px;
}
.t-method__phase {
  position: relative;
  border: 1px solid var(--grey);
  border-radius: 14px;
  padding: 34px 30px 30px;
  background: var(--grey-light);
  overflow: hidden;
}
.t-method__num {
  font-family: var(--font-head); font-weight: 700;
  font-size: 3.4rem; line-height: 1;
  color: var(--grey); display: block; margin-bottom: 18px;
  letter-spacing: -.03em;
}
.t-method__days {
  display: inline-block;
  font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: #b8862b; margin-bottom: 10px;
}
.t-method__title {
  font-family: var(--font-head); font-weight: 700;
  font-size: 1.4rem; color: var(--navy); margin-bottom: 12px;
}
.t-method__text { color: var(--text-body); line-height: 1.7; font-size: .96rem; }
.t-method__cta {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 18px; margin-top: 40px;
}
.t-method__guarantee { color: var(--text-muted); font-size: .82rem; }

.t-method__grid--timeline {
  position: relative;
}
.t-method__grid--timeline::before {
  content: "";
  position: absolute;
  left: 16.5%;
  right: 16.5%;
  top: 44px;
  height: 2px;
  background: linear-gradient(90deg, rgba(217,154,43,.2), rgba(217,154,43,.72), rgba(217,154,43,.2));
  pointer-events: none;
}
.t-method__grid--timeline .t-method__phase {
  background: #fff;
}
.t-method__grid--timeline .t-method__num {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: var(--gold-pale);
  color: #b8862b;
  font-size: 2rem;
  letter-spacing: 0;
}

@media (max-width: 900px) {
  .t-reviews__grid, .t-method__grid, .t-human-proof__grid { grid-template-columns: 1fr; }
  .t-method__grid--timeline::before { display: none; }
  .t-human-proof__grid{
    max-width: 520px;
  }
  .t-human-proof__card img{
    height: clamp(230px, 62vw, 330px);
  }
  .t-human-proof__card div{
    min-height: auto;
  }
}
@media (min-width: 901px) and (max-width: 1100px) {
  .t-reviews__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ════════════════════════════════════════════════════════════
   §43 — HERO ENTRANCE CHOREOGRAPHY + AMBIENT LIFE
   One orchestrated page-load (brand permits it). Reduced-motion safe.
════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: no-preference) {
  .t-hero2__text > * { animation: heroRise .8s var(--ease, cubic-bezier(.22,1,.36,1)) backwards; }
  .t-hero2 .t-kicker { animation-delay: .05s; }
  .t-hero2__title    { animation-delay: .14s; }
  .t-hero2__sub      { animation-delay: .26s; }
  .t-hero2__actions  { animation-delay: .38s; }
  .t-hero2__social   { animation-delay: .48s; }
  .t-hero2__proofs   { animation-delay: .58s; }

  .t-hero2__media {
    animation:
      heroReveal 1.15s var(--ease, cubic-bezier(.22,1,.36,1)) backwards,
      heroDrift 26s ease-in-out 1.3s infinite alternate;
  }
}
@keyframes heroRise {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}
@keyframes heroReveal {
  from { opacity: 0; clip-path: inset(0 0 0 14%); }
  to   { opacity: 1; clip-path: inset(0 0 0 0); }
}
@keyframes heroDrift {
  from { background-position: 66% 50%; }
  to   { background-position: 70% 46%; }
}
@media (max-width: 900px) {
  .t-hero2__media { animation: heroReveal 1.15s var(--ease, cubic-bezier(.22,1,.36,1)) backwards !important; }
}

/* Method phases come alive on hover (matches card-lift language) */
.t-method__phase {
  transition: transform .3s var(--ease, cubic-bezier(.22,1,.36,1)),
              box-shadow .3s var(--ease, cubic-bezier(.22,1,.36,1)),
              border-color .3s ease;
}
.t-method__phase:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(0,0,0,.08);
  border-color: var(--grey-mid, #d8d3c7);
}
.t-method__num { transition: color .35s ease; }
.t-method__phase:hover .t-method__num { color: #d8b878; }

@media (prefers-reduced-motion: reduce) {
  .t-hero2__text > *, .t-hero2__media { animation: none !important; }
  .t-method__phase { transition: none; }
}

/* ════════════════════════════════════════════════════════════
   §44 — KALMILIDER LANDING PAGE (converting, COD)
════════════════════════════════════════════════════════════ */
.lp-kicker{font-family:var(--font-body);font-size:.72rem;font-weight:600;letter-spacing:.2em;text-transform:uppercase;color:var(--text-muted);display:inline-flex;align-items:center;gap:12px;margin-bottom:18px;}
.lp-kicker::before{content:'';width:28px;height:1px;background:var(--gold);}

.lp-promobar{
  margin-top:var(--shell-h,112px);
  background:var(--navy);
  color:var(--gold-light);
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:10px var(--container-pad,24px);
  font-size:.78rem;
  letter-spacing:.04em;
  text-transform:uppercase;
}
.lp-promobar strong{color:#fff;font-weight:700;}
.lp-promobar span{color:rgba(255,255,255,.68);}

/* Hero */
.lp-hero{display:grid;grid-template-columns:1fr 1.05fr;gap:clamp(24px,4vw,64px);max-width:1280px;margin:0 auto;padding:clamp(40px,5vw,72px) var(--container-pad,24px);align-items:center;}
.lp-hero__media{position:relative;background:var(--white);border:1px solid var(--grey);border-radius:24px;padding:clamp(16px,2.5vw,32px);display:flex;align-items:center;justify-content:center;box-shadow:0 24px 60px rgba(0,0,0,.07);}
.lp-hero__img{width:100%;max-width:520px;height:auto;display:block;mix-blend-mode:multiply;}
.lp-hero__seal{position:absolute;left:18px;bottom:18px;display:flex;align-items:center;gap:10px;background:var(--navy);color:var(--gold-light);border-radius:14px;padding:11px 16px;font-size:.78rem;font-weight:600;line-height:1.25;box-shadow:var(--shadow,0 6px 20px rgba(0,0,0,.12));}
.lp-hero__seal svg{width:24px;height:24px;flex:0 0 auto;}
.lp-hero__seal small{font-weight:400;opacity:.7;font-size:.7rem;}
.lp-hero__panel .breadcrumb{margin-bottom:18px;}
.lp-hero__title{font-family:var(--font-head);font-size:clamp(2.1rem,3.6vw,3.4rem);font-weight:700;line-height:1.05;letter-spacing:-.025em;color:var(--navy);margin-bottom:18px;text-wrap:balance;}
.lp-hero__title em{font-style:italic;font-weight:500;}
.lp-hero__sub{font-size:1.06rem;line-height:1.7;color:var(--text-body);max-width:540px;margin-bottom:22px;}
.lp-rating{display:flex;align-items:center;gap:8px;flex-wrap:wrap;margin-bottom:22px;font-size:.9rem;color:var(--text-muted);}
.lp-rating strong{color:var(--navy);font-weight:700;}
.lp-rating .t-stars{color:#b8862b;font-size:1rem;letter-spacing:.1em;}
.lp-benefits{list-style:none;padding:0;margin:0 0 28px;display:grid;gap:11px;}
.lp-benefits li{position:relative;padding-left:30px;font-size:1rem;color:var(--text-body);line-height:1.4;}
.lp-benefits li::before{content:'';position:absolute;left:0;top:2px;width:20px;height:20px;border-radius:50%;background:#eef4ee;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%232f6b3d' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:center;}

/* Buy box */
.lp-buy{background:var(--white);border:1px solid var(--grey);border-radius:18px;padding:clamp(18px,2.4vw,26px);box-shadow:0 18px 50px rgba(0,0,0,.07);}
.lp-opts{display:grid;gap:12px;margin-bottom:18px;}
.lp-opt{position:relative;display:flex;align-items:center;gap:14px;border:1.5px solid var(--grey);border-radius:13px;padding:16px 18px;cursor:pointer;transition:border-color .2s,box-shadow .2s,background .2s;}
.lp-opt input{position:absolute;opacity:0;pointer-events:none;}
.lp-opt:hover{border-color:var(--grey-mid,#d8d3c7);}
.lp-opt:has(input:checked){border-color:var(--navy);background:#fcfbf8;box-shadow:0 0 0 1px var(--navy) inset;}
.lp-opt--best{border-color:var(--navy);}
.lp-opt__badge{position:absolute;top:-10px;left:16px;background:var(--navy);color:var(--gold-light);font-size:.66rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;padding:3px 10px;border-radius:100px;}
.lp-opt__main{display:flex;flex-direction:column;gap:2px;margin-right:auto;}
.lp-opt__name{font-family:var(--font-head);font-weight:700;font-size:1.05rem;color:var(--navy);}
.lp-opt__note{font-size:.78rem;color:var(--text-muted);}
.lp-opt__price{font-family:var(--font-head);font-weight:700;font-size:1.45rem;color:var(--navy);white-space:nowrap;}
.lp-opt__price small{font-size:.72rem;font-weight:600;color:var(--text-muted);}
.lp-opt__thumb{
  width:48px;
  height:48px;
  object-fit:contain;
  flex:0 0 48px;
  filter:drop-shadow(0 8px 12px rgba(22,21,19,.12));
}
.lp-cta{width:100%;justify-content:center;text-align:center;}
.lp-reassure{display:flex;flex-wrap:wrap;gap:8px 16px;justify-content:center;margin-top:14px;font-size:.78rem;color:var(--text-muted);}

/* Trust strip */
.lp-trust{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:var(--grey);border-top:1px solid var(--grey);border-bottom:1px solid var(--grey);}
.lp-trust__item{background:var(--grey-light);padding:22px 24px;text-align:center;display:flex;flex-direction:column;gap:3px;}
.lp-trust__item strong{font-family:var(--font-head);font-size:.98rem;color:var(--navy);}
.lp-trust__item span{font-size:.78rem;color:var(--text-muted);}

/* DAR LKALM priority: emotional wellbeing before physical relaxation */
.lp-emotional-priority{
  padding:clamp(56px,7vw,96px) var(--container-pad,24px);
  background:
    radial-gradient(circle at 18% 14%,rgba(125,95,199,.16),transparent 34%),
    radial-gradient(circle at 88% 80%,rgba(46,94,58,.13),transparent 32%),
    linear-gradient(180deg,#fff 0%,#fbf7fb 55%,#f2f8ef 100%);
  border-bottom:1px solid var(--grey);
}
.lp-emotional-priority__intro{
  max-width:880px;
  margin:0 auto 34px;
  text-align:center;
}
.lp-emotional-priority__grid{
  max-width:1120px;
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(145px,.36fr) minmax(0,1fr);
  gap:18px;
  align-items:center;
}
.lp-architecture{
  max-width:1120px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
}
.lp-architecture__card{
  position:relative;
  min-height:250px;
  padding:26px 22px;
  border:1px solid rgba(0,86,168,.14);
  border-radius:22px;
  background:#fff;
  box-shadow:0 18px 44px rgba(6,52,95,.07);
}
.lp-architecture__num{
  display:grid;
  place-items:center;
  width:42px;
  height:42px;
  border-radius:50%;
  background:linear-gradient(180deg,var(--blue),var(--navy));
  color:#fff;
  font-family:var(--font-head);
  font-weight:800;
  margin-bottom:20px;
}
.lp-architecture__card h3{
  color:var(--navy);
  font-family:var(--font-head);
  font-size:clamp(1.18rem,1.8vw,1.45rem);
  line-height:1.12;
  margin-bottom:12px;
}
.lp-architecture__card p{
  color:var(--text-body);
  line-height:1.68;
  font-size:.94rem;
}
.lp-emotional-priority__panel{
  min-height:420px;
  border:1px solid rgba(0,86,168,.12);
  border-radius:22px;
  padding:28px;
  background:#fff;
  box-shadow:0 18px 44px rgba(6,52,95,.07);
}
.lp-emotional-priority__panel--mind{
  border-color:rgba(125,95,199,.28);
  box-shadow:0 18px 44px rgba(125,95,199,.1);
}
.lp-emotional-priority__panel--body{
  border-color:rgba(46,94,58,.24);
  box-shadow:0 18px 44px rgba(46,94,58,.08);
}
.lp-emotional-priority__label{
  display:inline-flex;
  margin-bottom:16px;
  border-radius:999px;
  padding:6px 11px;
  background:rgba(125,95,199,.1);
  color:var(--saffron-purple);
  font-size:.72rem;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.lp-emotional-priority__panel--body .lp-emotional-priority__label{
  background:rgba(46,94,58,.1);
  color:var(--success);
}
.lp-emotional-priority__panel h3{
  color:var(--navy);
  font-family:var(--font-head);
  font-size:clamp(1.55rem,2.5vw,2.1rem);
  line-height:1.08;
  margin-bottom:14px;
}
.lp-emotional-priority__panel p{
  color:var(--text-body);
  line-height:1.75;
  margin-bottom:20px;
}
.lp-emotional-priority__panel ul{
  display:grid;
  gap:12px;
}
.lp-emotional-priority__panel li{
  position:relative;
  padding-left:24px;
  color:var(--text);
  font-weight:700;
  line-height:1.42;
}
.lp-emotional-priority__panel li::before{
  content:"";
  position:absolute;
  left:0;
  top:.48em;
  width:9px;
  height:9px;
  border-radius:50%;
  background:var(--saffron-purple);
}
.lp-emotional-priority__panel--body li::before{background:var(--success);}
.lp-emotional-priority__core{
  aspect-ratio:1;
  display:grid;
  place-items:center;
  align-content:center;
  gap:6px;
  border:1px solid rgba(217,154,43,.46);
  border-radius:50%;
  background:linear-gradient(180deg,#fff 0%,var(--gold-pale) 100%);
  color:var(--gold-dark);
  text-align:center;
  padding:18px;
  box-shadow:0 18px 42px rgba(151,103,24,.12);
}
.lp-emotional-priority__core span{
  font-size:.72rem;
  font-weight:800;
  letter-spacing:.1em;
  text-transform:uppercase;
  line-height:1.35;
}
.lp-emotional-priority__core strong{
  color:var(--navy);
  font-family:var(--font-head);
  font-size:1rem;
}
.lp-emotional-priority__note{
  max-width:760px;
  margin:28px auto 0;
  text-align:center;
  color:var(--navy);
  font-family:var(--font-head);
  font-size:clamp(1.2rem,2vw,1.6rem);
  line-height:1.35;
}

/* Stats band */
.lp-stats{display:grid;grid-template-columns:repeat(4,1fr);gap:clamp(20px,3vw,40px);max-width:1100px;margin:0 auto;padding:clamp(48px,6vw,80px) var(--container-pad,24px);}
.lp-stats__item{text-align:center;}
.lp-stats__item strong{display:block;font-family:var(--font-head);font-size:clamp(2.2rem,4vw,3rem);font-weight:700;color:var(--navy);letter-spacing:-.02em;line-height:1;margin-bottom:10px;}
.lp-stats__item span{font-size:.86rem;color:var(--text-muted);line-height:1.5;display:block;max-width:200px;margin:0 auto;}

/* Story + experts (split image/text) */
.lp-story,.lp-experts{display:grid;grid-template-columns:1fr 1fr;align-items:stretch;}
.lp-story__media,.lp-experts__media{background-size:cover;background-position:center;min-height:440px;}
.lp-story__body,.lp-experts__body{padding:clamp(40px,6vw,88px) clamp(28px,5vw,72px);display:flex;flex-direction:column;justify-content:center;background:var(--white);}
.lp-experts__body{background:var(--grey-light);}
.lp-story__title{font-family:var(--font-head);font-size:clamp(1.7rem,2.8vw,2.4rem);font-weight:700;letter-spacing:-.02em;color:var(--navy);margin:6px 0 18px;line-height:1.12;}
.lp-story__text{font-size:1.02rem;line-height:1.8;color:var(--text-body);margin-bottom:16px;max-width:560px;}
.lp-story__chips{display:flex;flex-wrap:wrap;gap:8px;margin-top:8px;}
.lp-story__chips span{background:var(--grey-light);border:1px solid var(--grey);color:var(--navy);font-size:.78rem;font-weight:600;padding:7px 13px;border-radius:100px;}
.lp-experts__body .lp-story__chips span{background:var(--white);}

.lp-life-proof{
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  align-items:stretch;
  background:#fff;
  border-top:1px solid var(--grey);
  border-bottom:1px solid var(--grey);
}
.lp-life-proof__media{
  min-height:420px;
  background:var(--grey-light);
}
.lp-life-proof__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 22%;
  display:block;
}
.lp-life-proof__body{
  padding:clamp(40px,6vw,86px) clamp(28px,5vw,72px);
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.lp-life-proof__steps{
  display:grid;
  gap:10px;
  max-width:520px;
  margin-top:8px;
}
.lp-life-proof__steps span{
  display:flex;
  align-items:center;
  min-height:44px;
  padding:10px 14px;
  border:1px solid var(--grey);
  border-radius:12px;
  background:var(--grey-light);
  color:var(--navy);
  font-weight:700;
  line-height:1.35;
}

.lp-pack{
  position:relative;
}
.lp-pack__thumb{
  display:block;
  width:78px;
  height:78px;
  object-fit:contain;
  margin:0 auto 10px;
  filter:drop-shadow(0 12px 16px rgba(22,21,19,.14));
}
.lp-standard-flow{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:1px;
  margin:22px 0 18px;
  overflow:hidden;
  border:1px solid var(--grey);
  border-radius:16px;
  background:var(--grey);
}
.lp-standard-flow div{
  min-height:118px;
  padding:18px 14px;
  background:#fbfaf6;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:18px;
}
.lp-standard-flow strong{
  font-family:var(--font-head);
  font-size:1.55rem;
  line-height:1;
  color:#b8862b;
}
.lp-standard-flow span{
  color:var(--navy);
  font-size:.83rem;
  font-weight:700;
  line-height:1.35;
}

/* Storytelling video slot */
.lp-video-plan{
  display:grid;
  grid-template-columns:1.04fr .96fr;
  align-items:stretch;
  background:
    radial-gradient(circle at 88% 20%, rgba(217,154,43,.18), transparent 32%),
    linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 76%, var(--saffron-purple) 145%);
  color:#fff;
  scroll-margin-top:calc(var(--shell-h,112px) + 20px);
}
.t-method,
.t-reviews{scroll-margin-top:calc(var(--shell-h,112px) + 20px);}
.lp-video-plan__media{
  position:relative;
  min-height:480px;
  background-size:cover;
  background-position:center;
}
.lp-video-plan__media::after{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(22,21,19,.08),rgba(22,21,19,.34));
}
.lp-video-plan__play{
  position:absolute;
  left:50%;
  top:50%;
  z-index:1;
  width:76px;
  height:76px;
  transform:translate(-50%,-50%);
  border-radius:50%;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.92);
  color:var(--navy);
  box-shadow:0 20px 48px rgba(0,0,0,.22);
}
.lp-video-plan__play svg{width:30px;height:30px;margin-left:4px;}
.lp-video-plan__body{
  padding:clamp(40px,6vw,88px) clamp(28px,5vw,72px);
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.lp-video-plan__body .lp-story__title{color:#fff;}
.lp-video-plan__body .lp-story__text{color:rgba(255,255,255,.72);}
.lp-video-steps{display:grid;gap:12px;margin:10px 0 18px;}
.lp-video-steps div{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:14px;
  align-items:center;
  padding:14px 0;
  border-top:1px solid rgba(255,255,255,.12);
}
.lp-video-steps strong{
  color:var(--gold-light);
  font-family:var(--font-head);
  font-size:1rem;
}
.lp-video-steps span{color:rgba(255,255,255,.84);line-height:1.55;}
.lp-video-plan__note{
  color:rgba(255,255,255,.5);
  font-size:.8rem;
  line-height:1.65;
  margin:0;
  max-width:520px;
}

/* Posology bar */
.lp-poso{background:linear-gradient(90deg,var(--navy-dark),var(--navy));display:flex;flex-wrap:wrap;justify-content:center;gap:clamp(24px,5vw,64px);padding:clamp(28px,3vw,40px) var(--container-pad,24px);}
.lp-poso__item{display:flex;align-items:center;gap:14px;}
.lp-poso__item svg{width:30px;height:30px;flex:0 0 auto;}
.lp-poso__item strong{display:block;color:#fff;font-size:.98rem;font-family:var(--font-head);}
.lp-poso__item span{font-size:.8rem;color:rgba(255,255,255,.55);}

/* FAQ */
.lp-faq{max-width:760px;}
.lp-faq__item{border-bottom:1px solid var(--grey);padding:6px 0;}
.lp-faq__item summary{list-style:none;cursor:pointer;padding:18px 36px 18px 0;position:relative;font-family:var(--font-head);font-weight:600;font-size:1.05rem;color:var(--navy);}
.lp-faq__item summary::-webkit-details-marker{display:none;}
.lp-faq__item summary::after{content:'+';position:absolute;right:6px;top:50%;transform:translateY(-50%);font-size:1.4rem;font-weight:400;color:var(--text-muted);transition:transform .25s;}
.lp-faq__item[open] summary::after{transform:translateY(-50%) rotate(45deg);}
.lp-faq__item p{padding:0 0 18px;color:var(--text-body);line-height:1.75;max-width:680px;}

/* Final CTA */
.lp-final{background:radial-gradient(circle at 50% 0%,rgba(217,154,43,.2),transparent 34%),linear-gradient(135deg,var(--navy-dark),var(--navy));text-align:center;padding:clamp(56px,7vw,104px) 0;}
.lp-final__title{font-family:var(--font-head);font-size:clamp(1.9rem,3.4vw,2.8rem);font-weight:700;color:#fff;letter-spacing:-.02em;margin:10px 0 14px;text-wrap:balance;}
.lp-final__sub{font-size:1.06rem;color:rgba(255,255,255,.62);max-width:540px;margin:0 auto 32px;line-height:1.7;}
.lp-final__pro{display:inline-block;margin-top:22px;color:rgba(255,255,255,.6);font-size:.85rem;}
.lp-final__pro:hover{color:#fff;}

@media (max-width:900px){
  .lp-hero{grid-template-columns:1fr;}
  .lp-hero__media{order:-1;}
  .lp-trust,.lp-stats{grid-template-columns:repeat(2,1fr);}
  .lp-emotional-priority__grid{grid-template-columns:1fr;}
  .lp-architecture{grid-template-columns:repeat(2,minmax(0,1fr));}
  .lp-emotional-priority__core{width:min(210px,64vw);margin:0 auto;order:-1;}
  .lp-emotional-priority__panel{min-height:0;}
  .lp-story,.lp-experts,.lp-video-plan,.lp-life-proof{grid-template-columns:1fr;}
  .lp-story__media,.lp-experts__media,.lp-video-plan__media{min-height:280px;order:-1;}
  .lp-life-proof__media{min-height:280px;order:-1;}
  .lp-standard-flow{grid-template-columns:repeat(2,minmax(0,1fr));}
  .lp-promobar{margin-top:var(--shell-h,96px);flex-direction:column;text-align:center;gap:4px;font-size:.7rem;}
}
@media (max-width:520px){
  .lp-trust,.lp-stats{grid-template-columns:1fr;}
  .lp-hero{padding:28px var(--container-pad,20px) 42px;}
  .lp-hero__media{padding:14px;border-radius:18px;}
  .lp-hero__img{max-width:300px;}
  .lp-hero__seal{left:14px;bottom:14px;padding:9px 12px;font-size:.72rem;border-radius:12px;}
  .lp-hero__title{font-size:clamp(1.92rem,9vw,2.42rem);}
  .lp-hero__sub{font-size:.98rem;line-height:1.62;}
  .lp-benefits li{font-size:.92rem;}
  .lp-opt{padding:15px 12px;gap:10px;}
  .lp-opt__thumb{width:42px;height:42px;flex-basis:42px;}
  .lp-opt__price{font-size:1.24rem;}
  .lp-video-plan__body{padding:42px var(--container-pad,24px);}
  .lp-standard-flow{grid-template-columns:1fr;}
  .lp-standard-flow div{min-height:96px;}
  .lp-architecture{grid-template-columns:1fr;}
}
@media (prefers-reduced-motion:reduce){
  .lp-faq__item summary::after{transition:none;}
}

/* ════════════════════════════════════════════════════════════
   §45 — KALMILIDER MOBILE FUNNEL POLISH
   Mobile is the primary buying surface for this page.
════════════════════════════════════════════════════════════ */
.lp-funnel{
  background:var(--white);
  padding:clamp(52px,7vw,92px) var(--container-pad,24px);
  border-bottom:1px solid var(--grey);
}
.lp-funnel__head{
  max-width:780px;
  margin:0 auto 34px;
  text-align:center;
}
.lp-funnel__head .lp-kicker{justify-content:center;}
.lp-funnel__head h2{
  font-family:var(--font-head);
  font-size:clamp(2rem,3.4vw,3rem);
  line-height:1.05;
  letter-spacing:-.025em;
  color:var(--navy);
  margin:0 0 16px;
  text-wrap:balance;
}
.lp-funnel__head p{
  font-size:1.08rem;
  line-height:1.75;
  color:var(--text-body);
  max-width:650px;
  margin:0 auto;
}
.lp-funnel__steps{
  max-width:1080px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.lp-funnel__steps article{
  background:var(--grey-light);
  border:1px solid var(--grey);
  border-radius:18px;
  padding:26px 24px;
}
.lp-funnel__steps span{
  display:block;
  color:#b8862b;
  font-family:var(--font-head);
  font-size:.86rem;
  font-weight:700;
  margin-bottom:12px;
}
.lp-funnel__steps h3{
  font-family:var(--font-head);
  color:var(--navy);
  font-size:1.25rem;
  margin:0 0 10px;
}
.lp-funnel__steps p{
  color:var(--text-body);
  line-height:1.65;
  margin:0;
}
.lp-mobile-sticky-cta{display:none;}
.page-template-page-kalmilider .footer-legal-notice{display:none;}

@media (max-width:900px){
  .lp-funnel__steps{grid-template-columns:1fr;}
}

@media (max-width:520px){
  .page-template-page-kalmilider{padding-bottom:78px;}
  .lp-promobar{padding:12px 18px;font-size:.72rem;line-height:1.5;}
  .lp-hero{padding:24px var(--container-pad,20px) 38px;}
  .lp-hero__img{max-width:280px;}
  .lp-hero__panel .breadcrumb{display:none;}
  .lp-kicker{font-size:.76rem;letter-spacing:.12em;line-height:1.45;margin-bottom:14px;}
  .lp-hero__title{font-size:clamp(2.16rem,10.2vw,2.72rem);line-height:1.02;margin-bottom:16px;}
  .lp-hero__sub{font-size:1.06rem;line-height:1.68;margin-bottom:20px;}
  .lp-rating{font-size:.98rem;margin-bottom:20px;}
  .lp-rating .t-stars{font-size:1.05rem;}
  .lp-benefits{gap:12px;margin-bottom:24px;}
  .lp-benefits li{font-size:1rem;line-height:1.5;}
  .lp-buy{padding:18px 14px;border-radius:16px;}
  .lp-opt{padding:16px 12px;}
  .lp-opt__name{font-size:1.04rem;}
  .lp-opt__note{font-size:.82rem;line-height:1.35;}
  .lp-opt__price{font-size:1.22rem;}
  .lp-cta{min-height:54px;font-size:.86rem;}
  .lp-reassure{font-size:.82rem;line-height:1.45;}
  .lp-trust__item{padding:20px 18px;}
  .lp-trust__item strong{font-size:1.04rem;}
  .lp-trust__item span{font-size:.86rem;}
  .lp-emotional-priority{padding:42px 20px;}
  .lp-emotional-priority__intro{text-align:left;margin-bottom:24px;}
  .lp-emotional-priority__panel{padding:22px 20px;border-radius:16px;}
  .lp-emotional-priority__panel h3{font-size:1.55rem;}
  .lp-emotional-priority__note{text-align:left;font-size:1.18rem;}
  .lp-funnel{padding:44px 20px;}
  .lp-funnel__head{text-align:left;margin-bottom:24px;}
  .lp-funnel__head .lp-kicker{justify-content:flex-start;}
  .lp-funnel__head h2{font-size:clamp(2rem,9vw,2.58rem);line-height:1.03;}
  .lp-funnel__head p{font-size:1.04rem;line-height:1.68;}
  .lp-funnel__steps{gap:12px;}
  .lp-funnel__steps article{padding:22px 20px;border-radius:14px;}
  .lp-funnel__steps h3{font-size:1.22rem;}
  .lp-funnel__steps p{font-size:.98rem;}
  .t-split__body{padding:44px 22px;text-align:left;align-items:flex-start;}
  .t-split__title{font-size:clamp(2.1rem,9vw,2.76rem);line-height:1.02;}
  .t-split__text{font-size:1.04rem;line-height:1.72;}
  .lp-stats{padding:42px 20px;gap:26px;}
  .lp-stats__item strong{font-size:2.45rem;}
  .lp-stats__item span{font-size:.95rem;}
  .section{padding:44px 0;}
  .benefits-grid{gap:14px;}
  .benefit-card{padding:22px 20px;border-radius:14px;}
  .section-title,.t-head__title{font-size:clamp(2rem,9vw,2.62rem);line-height:1.05;}
  .section-subtitle,.t-head__sub{font-size:1.04rem;line-height:1.7;}
  .benefit-card__title{font-size:1.18rem;}
  .benefit-card__text{font-size:1rem;line-height:1.68;}
  .lp-story__media,.lp-experts__media,.lp-video-plan__media{min-height:238px;}
  .lp-story__body,.lp-experts__body{padding:38px 22px;}
  .lp-life-proof__body{padding:38px 22px;}
  .lp-story__title{font-size:clamp(2rem,9vw,2.6rem);line-height:1.04;}
  .lp-story__text{font-size:1.04rem;line-height:1.72;}
  .lp-video-plan__body{padding:38px 22px;}
  .lp-video-steps span{font-size:1rem;}
  .t-method__grid,.t-reviews__grid{gap:16px;}
  .t-method__phase{padding:22px 20px;border-radius:14px;}
  .t-method__num{font-size:2.7rem;margin-bottom:12px;}
  .t-method__title{font-size:1.3rem;}
  .t-method__text{font-size:1rem;}
  .t-review--photo{border-radius:14px;}
  .t-review__photo{aspect-ratio:4 / 3.25;}
  .t-review__body{padding:20px 18px 22px;}
  .t-review--photo .t-review__text{font-size:1rem;line-height:1.7;}
  .lp-faq__item summary{font-size:1.08rem;line-height:1.35;}
  .lp-faq__item p{font-size:1rem;line-height:1.7;}
  .lp-final{padding:48px 20px;}
  .lp-final__title{font-size:clamp(2rem,9vw,2.55rem);line-height:1.04;}
  .lp-final__sub{font-size:1.04rem;line-height:1.65;}
  .lp-mobile-sticky-cta{
    position:fixed;
    left:12px;
    right:12px;
    bottom:10px;
    z-index:920;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    min-height:58px;
    padding:10px 16px;
    border-radius:16px;
    background:var(--navy);
    color:#fff;
    box-shadow:0 14px 38px rgba(0,0,0,.24);
    text-decoration:none;
  }
  .lp-mobile-sticky-cta span{font-size:.78rem;color:rgba(255,255,255,.62);}
  .lp-mobile-sticky-cta strong{font-size:.94rem;letter-spacing:.02em;text-transform:uppercase;}
  .page-template-page-kalmilider .whatsapp-float{display:none;}
}

@media (max-width:768px){
  .site-footer .container{padding-left:22px;padding-right:22px;}
  .footer-legal-notice{text-align:left;font-size:.8rem;line-height:1.6;padding:16px 0;}
  .footer-main{grid-template-columns:1fr;gap:20px;padding:34px 0 22px;text-align:left;}
  .footer-logo__img{height:58px;margin-bottom:10px;}
  .footer-brand p{font-size:.95rem;line-height:1.62;max-width:310px;}
  .footer-social{display:none;}
  .footer-col h4{font-size:.88rem;margin-bottom:10px;color:#fff;}
  .footer-col ul{display:grid;grid-template-columns:1fr 1fr;gap:4px 14px;}
  .footer-col ul li{margin-bottom:0;}
  .footer-col ul li a{font-size:.94rem;min-height:34px;display:inline-flex;align-items:center;}
  .footer-contact-item{gap:12px;margin-bottom:12px;}
  .footer-contact-item span,
  .footer-contact-item a{font-size:.95rem;line-height:1.5;}
  .footer-subgrid{grid-template-columns:1fr;gap:12px;padding-bottom:28px;}
  .footer-note-card{padding:16px;border-radius:14px;}
  .footer-note-card p{font-size:.9rem;line-height:1.55;}
  .footer-bottom{align-items:flex-start;gap:14px;padding:20px 0 28px;}
  .footer-bottom p{font-size:.9rem;line-height:1.5;}
  .footer-bottom nav{display:grid;gap:8px;}
  .footer-bottom nav a{font-size:.94rem;min-height:32px;display:flex;align-items:center;}
}

/* Points de vente page */
.pdv-hero{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(360px,.92fr);
  min-height:calc(82vh - var(--shell-h,112px));
  margin-top:var(--shell-h,112px);
  background:var(--white);
}
.pdv-hero__content{
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:clamp(42px,7vw,96px) clamp(24px,7vw,96px);
}
.pdv-hero h1{
  color:var(--navy);
  font-family:var(--font-head);
  font-size:clamp(2.6rem,5vw,5rem);
  line-height:.98;
  letter-spacing:-.02em;
  margin:0 0 18px;
}
.pdv-hero p{
  max-width:620px;
  color:var(--text-body);
  font-size:1.08rem;
  line-height:1.75;
  margin:0 0 28px;
}
.pdv-hero__actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.pdv-hero__media{
  min-height:520px;
  background-size:cover;
  background-position:center;
}
.pdv-locator{
  display:grid;
  grid-template-columns:minmax(320px,420px) minmax(0,1fr);
  gap:24px;
  max-width:1180px;
  margin:0 auto;
  padding:0 var(--container-pad,24px);
}
.pdv-locator__panel{
  border:1px solid rgba(0,86,168,.16);
  border-radius:22px;
  background:#fff;
  padding:clamp(24px,3vw,34px);
  box-shadow:0 18px 44px rgba(6,52,95,.07);
}
.pdv-locator__panel h2{
  color:var(--navy);
  font-family:var(--font-head);
  font-size:clamp(1.55rem,2.5vw,2rem);
  line-height:1.1;
  margin:0 0 12px;
}
.pdv-locator__panel p{
  color:var(--text-body);
  line-height:1.7;
  margin:0 0 24px;
}
.pdv-form{
  display:grid;
  gap:12px;
}
.pdv-form label{
  color:var(--navy);
  font-weight:800;
  font-size:.82rem;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.pdv-form input{
  min-height:54px;
  border:1px solid rgba(0,86,168,.18);
  border-radius:14px;
  padding:0 16px;
  font:inherit;
  color:var(--navy);
  background:#fff;
}
.pdv-form input:focus{
  outline:0;
  border-color:rgba(0,86,168,.5);
  box-shadow:0 0 0 4px rgba(0,86,168,.08);
}
.pdv-assurance{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:18px;
}
.pdv-assurance span{
  display:inline-flex;
  padding:7px 11px;
  border-radius:999px;
  background:rgba(217,154,43,.12);
  color:var(--navy);
  font-size:.76rem;
  font-weight:700;
}
.pdv-map{
  position:relative;
  min-height:520px;
  overflow:hidden;
  border:1px solid rgba(0,86,168,.14);
  border-radius:22px;
  background:
    radial-gradient(circle at 46% 24%, rgba(0,86,168,.12), transparent 18%),
    radial-gradient(circle at 38% 55%, rgba(217,154,43,.22), transparent 18%),
    linear-gradient(135deg,#f8fbfc 0%,#edf5f2 48%,#fbf4e5 100%);
}
.pdv-map::before{
  content:"";
  position:absolute;
  inset:44px 70px 70px;
  border:2px solid rgba(0,86,168,.18);
  border-radius:46% 54% 44% 56% / 40% 48% 52% 60%;
  transform:rotate(-8deg);
}
.pdv-map__pin{
  position:absolute;
  z-index:1;
  display:inline-flex;
  align-items:center;
  min-height:36px;
  padding:8px 12px;
  border-radius:999px;
  background:var(--navy);
  color:#fff;
  font-weight:800;
  font-size:.82rem;
  box-shadow:0 14px 28px rgba(0,0,0,.18);
}
.pdv-map__pin::before{
  content:"";
  width:9px;
  height:9px;
  border-radius:50%;
  background:var(--gold-light);
  margin-right:8px;
}
.pdv-map__pin--north{left:43%;top:20%;}
.pdv-map__pin--center{left:49%;top:42%;}
.pdv-map__pin--west{left:32%;top:50%;}
.pdv-map__copy{
  position:absolute;
  left:24px;
  right:24px;
  bottom:24px;
  display:grid;
  gap:6px;
  padding:clamp(18px,2.4vw,26px);
  border:1px solid rgba(255,255,255,.72);
  border-radius:18px;
  background:rgba(255,255,255,.9);
  backdrop-filter:blur(12px);
}
.pdv-map__copy strong{
  color:var(--navy);
  font-family:var(--font-head);
  font-size:clamp(1.2rem,2vw,1.55rem);
  line-height:1.15;
}
.pdv-map__copy span{
  color:var(--text-body);
  font-size:.92rem;
  line-height:1.5;
}
.pdv-pro-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
  max-width:940px;
  margin:0 auto 26px;
  padding:0 var(--container-pad,24px);
}
.pdv-pro-grid article{
  display:flex;
  align-items:center;
  gap:14px;
  padding:20px;
  border:1px solid var(--grey);
  border-radius:14px;
  background:#fff;
}
.pdv-pro-grid strong{
  width:42px;
  height:42px;
  flex:0 0 42px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:var(--navy);
  color:var(--gold-light);
  font-family:var(--font-head);
}
.pdv-pro-grid span{
  color:var(--navy);
  font-weight:800;
  line-height:1.35;
}
@media (max-width:900px){
  .pdv-hero,.pdv-locator{grid-template-columns:1fr;}
  .pdv-hero__media{min-height:320px;order:-1;}
  .pdv-locator{gap:16px;}
  .pdv-pro-grid{grid-template-columns:1fr;}
}
@media (max-width:520px){
  .pdv-hero{min-height:0;}
  .pdv-hero__content{padding:34px 22px 42px;}
  .pdv-hero__media{min-height:240px;}
  .pdv-hero h1{font-size:clamp(2.35rem,12vw,3.3rem);}
  .pdv-hero p{font-size:1rem;line-height:1.65;}
  .pdv-map{min-height:420px;}
  .pdv-map::before{inset:42px 36px 84px;}
  .pdv-map__pin--north{left:42%;top:18%;}
  .pdv-map__pin--center{left:46%;top:39%;}
  .pdv-map__pin--west{left:24%;top:49%;}
}
