/* ============================================================
   HEALTECH — Design System  v2.0
   Aesthetic: Clinical Luxury · White-dominant · Medical Authority
   Inspired by: Stylage · Karisma · MCcosmetics · Desirial
   Typography: Cormorant Garamond (display) + Inter (body)
   Mobile-first · WCAG AA
   ============================================================ */

/* ── 1. Design Tokens ──────────────────────────────────────── */
:root {
  /* Brand — overridden via inline <style> from DB */
  --color-primary:        #A134BC;
  --color-primary-hover:  #8B2AA0;
  --color-primary-light:  #C05FD8;
  --color-primary-pale:   #EDD6F7;
  --color-primary-ultra:  #FAF3FD;

  /* Gold accent */
  --color-gold:       #C9A84C;
  --color-gold-light: #F5E6C8;
  --color-gold-dark:  #9A7535;

  /* Neutrals — clinical luxury */
  --color-ink:         #0D0D18;   /* near-black for headlines */
  --color-charcoal:    #1C1C2E;
  --color-navy:        #0E1B3C;   /* authority/trust */
  --color-text:        #2D2D3A;
  --color-text-muted:  #6B7280;
  --color-text-light:  #9CA3AF;
  --color-border:      #E8E3EE;
  --color-border-soft: #F4F1F9;
  --color-white:       #FFFFFF;
  --color-off-white:   #FAFAFA;
  --color-cream:       #FAF7F2;   /* warm cream — Stylage-inspired */
  --color-hero-bg:     #F8F3FC;   /* very pale lavender hero bg */
  --color-dark:        #0D0D18;

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
  --font-heading:  'Poppins', sans-serif;
  --font-body:     'Inter', sans-serif;

  /* Fluid type */
  --fs-xs:   clamp(.7rem,  1.5vw, .75rem);
  --fs-sm:   clamp(.8rem,  2vw,   .875rem);
  --fs-base: clamp(.9rem,  2.5vw, 1rem);
  --fs-lg:   clamp(1rem,   3vw,   1.125rem);
  --fs-xl:   clamp(1.1rem, 3.5vw, 1.25rem);
  --fs-2xl:  clamp(1.2rem, 4vw,   1.5rem);
  --fs-3xl:  clamp(1.4rem, 5vw,   1.875rem);
  --fs-4xl:  clamp(1.6rem, 5.5vw, 2.25rem);
  --fs-5xl:  clamp(2rem,   7vw,   3rem);
  --fs-6xl:  clamp(2.5rem, 9vw,   3.75rem);

  --fw-normal: 400;
  --fw-medium: 500;
  --fw-semi:   600;
  --fw-bold:   700;
  --fw-extra:  800;

  /* Spacing */
  --space-section:    clamp(4rem, 9vw, 7rem);
  --space-section-sm: clamp(2.5rem, 5vw, 4.5rem);
  --container:        1240px;
  --container-px:     clamp(1rem, 5vw, 2rem);

  /* Radius — refined, not pill-heavy */
  --r-xs:   3px;
  --r-sm:   6px;
  --r-md:   10px;
  --r-lg:   16px;
  --r-xl:   24px;
  --r-2xl:  36px;
  --r-full: 9999px;

  /* Shadows — soft, premium */
  --shadow-xs:   0 1px 4px rgba(0,0,0,.05);
  --shadow-sm:   0 2px 10px rgba(0,0,0,.07);
  --shadow-md:   0 4px 24px rgba(0,0,0,.09);
  --shadow-lg:   0 8px 40px rgba(0,0,0,.11);
  --shadow-xl:   0 16px 60px rgba(0,0,0,.14);
  --shadow-card: 0 2px 14px rgba(0,0,0,.06), 0 1px 3px rgba(0,0,0,.04);
  --shadow-brand:0 6px 28px rgba(161,52,188,.22);

  /* Transitions */
  --t-fast:   .15s ease;
  --t-base:   .25s ease;
  --t-slow:   .4s ease;
  --t-spring: cubic-bezier(.34,1.56,.64,1);

  /* Header */
  --header-height: 80px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.65;
  overflow-x: hidden;
}

img, video, svg { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; font-size: inherit; line-height: inherit; }

@media (max-width: 768px) {
  input, textarea, select { font-size: 16px !important; }
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: var(--r-xs);
}

/* ── 3. Typography ─────────────────────────────────────────── */
h1, h2 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  color: var(--color-ink);
  letter-spacing: -.01em;
}

h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  line-height: 1.2;
  color: var(--color-charcoal);
}

h1 { font-size: clamp(2.8rem, 7vw, 5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h3 { font-size: var(--fs-2xl); }
h4 { font-size: var(--fs-xl); }

p { line-height: 1.75; }

.text-gradient {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gold {
  background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section eyebrow label */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
}

.section-label--gold { color: var(--color-gold-dark); }
.section-label--gold::before { background: var(--color-gold); }

/* ── 4. Layout ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.section { padding: var(--space-section) 0; }
.section--alt   { background: var(--color-cream); }
.section--light { background: var(--color-off-white); }
.section--brand { background: var(--color-hero-bg); }

/* Dark section: kept only for footer and optional dark callouts */
.section--dark  {
  background: var(--color-charcoal);
  color: var(--color-white);
}

.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(2.5rem, 6vw, 4rem);
}

.section__header h2 { margin-bottom: .75rem; }

.section__header p {
  color: var(--color-text-muted);
  font-size: var(--fs-lg);
  line-height: 1.7;
}

/* Responsive grids */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1rem, 3vw, 2rem); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 3vw, 2rem); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(.75rem, 2vw, 1.5rem); }

/* ── 5. Announcement Bar ───────────────────────────────────── */
.announcement-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  padding: .45rem 1rem;
  text-align: center;
  font-size: var(--fs-sm);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 36px;
}

.announcement-bar__link { color: white; font-weight: var(--fw-semi); text-decoration: underline; text-underline-offset: 2px; }
.announcement-bar__close {
  position: absolute; right: 1rem;
  background: none; border: none;
  color: rgba(255,255,255,.75); cursor: pointer;
  font-size: 1rem; line-height: 1;
  padding: .25rem; min-width: 24px; min-height: 24px;
}

/* ── 6. Navigation ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-slow), box-shadow var(--t-slow);
}

.nav--scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: 0 2px 20px rgba(0,0,0,.07);
}


.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
}

/* Logo — large and prominent */
.nav__logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
  text-decoration: none;
}

.nav__logo-img {
  height: 54px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  transition: opacity var(--t-base);
}

.nav__logo:hover .nav__logo-img { opacity: .88; }

.nav__logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: transform var(--t-base), box-shadow var(--t-base);
  box-shadow: 0 4px 14px rgba(161,52,188,.3);
}

.nav__logo:hover .nav__logo-icon { transform: scale(1.05); box-shadow: var(--shadow-brand); }

.nav__logo-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--color-ink);
  line-height: 1;
  letter-spacing: -.01em;
}

/* Nav links */
.nav__links {
  display: flex;
  align-items: center;
  gap: .1rem;
  list-style: none;
}

.nav__link {
  padding: .5rem 1rem;
  border-radius: var(--r-sm);
  font-family: var(--font-heading);
  font-weight: var(--fw-medium);
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  transition: all var(--t-base);
  white-space: nowrap;
  min-height: 44px;
  display: flex;
  align-items: center;
  letter-spacing: .01em;
}

.nav__link:hover { color: var(--color-primary); background: var(--color-primary-ultra); }
.nav__link.active { color: var(--color-primary); background: var(--color-primary-ultra); font-weight: var(--fw-semi); }

/* Actions */
.nav__actions { display: flex; align-items: center; gap: .625rem; flex-shrink: 0; }
.nav__cta { font-size: var(--fs-xs) !important; padding: .55rem 1.25rem !important; }

/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--color-border-soft);
  border-radius: var(--r-sm);
  padding: 3px;
}

.lang-switcher__btn {
  padding: .3rem .65rem;
  border-radius: calc(var(--r-sm) - 2px);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  color: var(--color-text-muted);
  transition: all var(--t-base);
  min-height: 28px;
  letter-spacing: .03em;
}

.lang-switcher__btn.active {
  background: white;
  color: var(--color-primary);
  box-shadow: var(--shadow-xs);
}

.lang-switcher--light { background: rgba(255,255,255,.15); }
.lang-switcher--light .lang-switcher__btn { color: rgba(255,255,255,.7); }
.lang-switcher--light .lang-switcher__btn.active { background: rgba(255,255,255,.2); color: white; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px; padding: .5rem;
  background: none; border: none; cursor: pointer;
}

.nav__hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--color-charcoal);
  border-radius: 2px;
  transition: all var(--t-base);
}

/* Mobile menu */
.nav__mobile {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(340px, 88vw);
  background: white;
  z-index: 1002;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.nav__mobile.open { transform: translateX(0); }

.nav__mobile-inner {
  padding: 1.5rem 1.5rem calc(env(safe-area-inset-bottom, 0px) + 2rem);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.nav__mobile-close {
  display: flex; flex-direction: column; gap: 0;
  align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: var(--color-border-soft);
  border: none; border-radius: var(--r-sm);
  cursor: pointer; margin-bottom: 2rem; align-self: flex-end;
}

.nav__mobile-close span {
  display: block; width: 18px; height: 2px;
  background: var(--color-charcoal); border-radius: 2px;
  transition: all var(--t-base);
}

.nav__mobile-close span:first-child { transform: rotate(45deg) translate(2px, 2px); }
.nav__mobile-close span:last-child  { transform: rotate(-45deg) translate(2px, -2px); }

.nav__mobile-link {
  display: block;
  padding: .875rem 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-ink);
  border-bottom: 1px solid var(--color-border-soft);
  transition: color var(--t-base), padding var(--t-base);
  animation: slideIn .3s ease forwards;
  opacity: 0;
  animation-delay: var(--delay, 0s);
}

.nav__mobile-link:hover { color: var(--color-primary); padding-left: .5rem; }

@keyframes slideIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.nav__mobile-footer {
  margin-top: auto;
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nav__mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
  backdrop-filter: blur(4px);
}

.nav__mobile-backdrop.open { opacity: 1; pointer-events: all; }

/* Mobile bottom CTA bar */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 970;
  padding: .45rem .875rem calc(.45rem + env(safe-area-inset-bottom));
  background: #111118;
  border-top: 1px solid rgba(255,255,255,.07);
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
  transition: transform .3s ease;
}

.mobile-cta-bar.bar-hidden { transform: translateY(100%); }

.mobile-cta-bar__btn {
  width: 100%;
  justify-content: center;
  padding: .5rem .75rem !important;
  font-size: .8rem !important;
  font-weight: 500 !important;
  min-height: 38px !important;
  border-radius: var(--r-sm) !important;
  letter-spacing: .02em !important;
}

.mobile-cta-bar__btn--store {
  background: rgba(255,255,255,.07) !important;
  color: rgba(255,255,255,.85) !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  box-shadow: none !important;
}
.mobile-cta-bar__btn--store:hover {
  background: rgba(255,255,255,.13) !important;
}

.mobile-cta-bar__btn--wa {
  background: #086551 !important;
  color: white !important;
  border: 1px solid #086551 !important;
  box-shadow: none !important;
}
.mobile-cta-bar__btn--wa:hover { background: #065544 !important; border-color: #065544 !important; }

/* ── 7. Divider ────────────────────────────────────────────── */
.divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 1.5rem 0;
}

/* ── 8. Highlights ─────────────────────────────────────────── */
.highlight {
  position: relative;
  color: var(--color-primary);
}

/* ── 9. Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .875rem 2rem;
  border-radius: var(--r-sm);           /* refined rectangle, not pill */
  font-family: var(--font-heading);
  font-weight: var(--fw-semi);
  font-size: var(--fs-sm);
  letter-spacing: .03em;
  line-height: 1.2;
  cursor: pointer;
  border: 1.5px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  transition: all var(--t-base);
  min-height: 48px;
  position: relative;
}

.btn:active { transform: scale(.98); }

.btn-primary {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
  box-shadow: 0 4px 18px rgba(161,52,188,.28);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  box-shadow: 0 6px 26px rgba(161,52,188,.38);
  transform: translateY(-1px);
}

.btn-secondary {
  background: white;
  color: var(--color-primary);
  border-color: var(--color-primary-pale);
  box-shadow: var(--shadow-card);
}

.btn-secondary:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary-ultra);
  transform: translateY(-1px);
}

/* Ghost: dark text/border for use on LIGHT backgrounds */
.btn-ghost {
  color: var(--color-ink);
  border-color: var(--color-border);
  background: white;
}

.btn-ghost:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-1px);
}

/* Ghost-light: for use on DARK backgrounds */
.btn-ghost-light {
  color: white;
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
}

.btn-ghost-light:hover {
  border-color: white;
  background: rgba(255,255,255,.16);
}

.btn-gold {
  background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(201,168,76,.35);
}

.btn-gold:hover { box-shadow: 0 6px 24px rgba(201,168,76,.5); transform: translateY(-1px); }

.btn-whatsapp {
  background: #086551;
  color: white;
  border-color: #086551;
  box-shadow: 0 4px 16px rgba(37,211,102,.25);
}

.btn-whatsapp:hover { background: #065544; border-color: #065544; }

.btn-lg  { padding: 1.1rem 2.5rem; font-size: var(--fs-base); min-height: 56px; }
.btn-sm  { padding: .55rem 1.25rem; font-size: var(--fs-xs); min-height: 40px; }
.btn-xs  { padding: .35rem .875rem; font-size: var(--fs-xs); min-height: 34px; }
.btn-full { width: 100%; }

/* ── 10. Hero Section — Clinical Luxury ───────────────────── */
.hero {
  min-height: 100svh;
  background: var(--color-hero-bg);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: clamp(6rem, 14vw, 9rem) 0 clamp(4rem, 9vw, 6rem);
}

/* Soft accent: large circle top-right, subtle */
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -8%;
  width: clamp(400px, 55vw, 800px);
  height: clamp(400px, 55vw, 800px);
  background: radial-gradient(circle, rgba(161,52,188,.07) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

/* Gold whisper bottom-left */
.hero::after {
  content: '';
  position: absolute;
  bottom: -12%;
  left: -5%;
  width: clamp(200px, 35vw, 500px);
  height: clamp(200px, 35vw, 500px);
  background: radial-gradient(circle, rgba(201,168,76,.06) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: white;
  border: 1px solid var(--color-primary-pale);
  color: var(--color-primary);
  padding: .4rem 1rem;
  border-radius: var(--r-full);
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-xs);
}

/* Headline — serif display */
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 600;
  color: var(--color-ink);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -.02em;
}

.hero__title .highlight {
  color: var(--color-primary);
  -webkit-text-fill-color: var(--color-primary);
}

.hero__subtitle {
  color: var(--color-text-muted);
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero__ctas {
  display: flex;
  gap: .875rem;
  flex-wrap: wrap;
  margin-bottom: 2.75rem;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: .45rem;
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
  font-family: var(--font-heading);
}

.hero__trust-item .icon { color: var(--color-primary); font-size: .9rem; }

/* Hero visual — clean product showcase */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__card-main {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--r-xl);
  padding: 2.25rem;
  width: 100%;
  max-width: 380px;
  position: relative;
  box-shadow: 0 8px 48px rgba(0,0,0,.10), 0 2px 12px rgba(0,0,0,.06);
}

/* Subtle brand accent top stripe */
.hero__card-main::before {
  content: '';
  position: absolute;
  top: 0; left: 2rem; right: 2rem;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-gold));
  border-radius: 0 0 2px 2px;
}

.hero__product-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: var(--color-primary-ultra);
  color: var(--color-primary);
  border: 1px solid var(--color-primary-pale);
  padding: .3rem .875rem;
  border-radius: var(--r-sm);
  font-family: var(--font-heading);
  font-size: .68rem;
  font-weight: var(--fw-bold);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero__product-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--color-hero-bg);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--r-lg);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__product-name {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: var(--fs-xl);
  color: var(--color-ink);
  margin-bottom: .4rem;
}

.hero__product-desc {
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
  margin-bottom: 1.25rem;
}

.hero__product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border-soft);
}

.hero__product-stars { color: var(--color-gold); letter-spacing: 2px; font-size: var(--fs-sm); }

.hero__product-price {
  font-family: var(--font-heading);
  font-weight: var(--fw-extra);
  font-size: var(--fs-2xl);
  color: var(--color-ink);
}

/* Float pills — white, refined */
.hero__float {
  position: absolute;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--r-md);
  padding: .6rem 1rem;
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  color: var(--color-text);
  white-space: nowrap;
  font-weight: var(--fw-semi);
  box-shadow: var(--shadow-sm);
}

.hero__float--tl { top: -16px; left: -48px; animation: floatY 4s ease-in-out infinite; }
.hero__float--br { bottom: 32px; right: -40px; animation: floatY 4s ease-in-out infinite 2s; }

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

/* ── 11. Trust / Statistics Bar ────────────────────────────── */
.trust-bar {
  background: white;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-top: 1px solid var(--color-border-soft);
  border-bottom: 1px solid var(--color-border-soft);
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  text-align: center;
}

.trust-bar__item {
  position: relative;
}

/* Vertical dividers between items */
.trust-bar__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 10%; bottom: 10%;
  width: 1px;
  background: var(--color-border);
}

.trust-bar__number {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.5rem, 5.5vw, 3.75rem);
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: .5rem;
  letter-spacing: -.02em;
}

.trust-bar__label {
  color: var(--color-text-muted);
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  letter-spacing: .03em;
}

/* ── 12. Feature Cards ─────────────────────────────────────── */
.feature-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  transition: all var(--t-slow);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-slow);
}

.feature-card:hover { border-color: var(--color-primary-pale); box-shadow: var(--shadow-md); transform: translateY(-5px); }
.feature-card:hover::before { transform: scaleX(1); }

.feature-card__icon {
  width: 56px; height: 56px;
  background: var(--color-hero-bg);
  border: 1px solid var(--color-primary-pale);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all var(--t-slow);
}

.feature-card:hover .feature-card__icon {
  background: var(--color-gold-light);
  border-color: var(--color-gold);
}

.feature-card__title {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-weight: var(--fw-semi);
  color: var(--color-charcoal);
  margin-bottom: .625rem;
}

.feature-card__text { color: var(--color-text-muted); font-size: var(--fs-sm); line-height: 1.75; }

/* ── 13. Module Cards — CLINICAL LUXURY ───────────────────── */
.modules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 3vw, 2rem);
}

/* Card 1 — E-commerce / Primary */
.module-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  padding: clamp(2.25rem, 5vw, 3.5rem);
  position: relative;
}

.module-card--primary {
  background: var(--color-hero-bg);
  border: 1.5px solid var(--color-primary-pale);
}

.module-card--primary::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
}

.module-card--secondary {
  background: var(--color-cream);
  border: 1.5px solid #E8DFC9;
}

.module-card--secondary::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold));
}

.module-card__label {
  display: inline-block;
  padding: .3rem .875rem;
  border-radius: var(--r-sm);
  font-family: var(--font-heading);
  font-size: .68rem;
  font-weight: var(--fw-bold);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.module-card--primary   .module-card__label { background: var(--color-primary-ultra); color: var(--color-primary); border: 1px solid var(--color-primary-pale); }
.module-card--secondary .module-card__label { background: var(--color-gold-light); color: var(--color-gold-dark); border: 1px solid #DBC98A; }

.module-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 600;
  color: var(--color-ink);
  margin-bottom: .875rem;
  line-height: 1.15;
}

.module-card__text {
  color: var(--color-text-muted);
  margin-bottom: 1.75rem;
  line-height: 1.75;
  font-size: var(--fs-sm);
}

.module-card__list {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: .625rem;
}

.module-card__list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--color-text);
  font-size: var(--fs-sm);
}

.module-card--primary   .module-card__list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--color-primary); flex-shrink: 0; }
.module-card--secondary .module-card__list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--color-gold); flex-shrink: 0; }

/* Override ghost button inside module cards */
.module-card--primary   .btn-ghost { color: var(--color-primary); border-color: var(--color-primary-pale); }
.module-card--primary   .btn-ghost:hover { background: var(--color-primary-ultra); border-color: var(--color-primary); }
.module-card--secondary .btn-ghost { color: var(--color-gold-dark); border-color: #DBC98A; }
.module-card--secondary .btn-ghost:hover { background: var(--color-gold-light); border-color: var(--color-gold); }

/* ── 14. Brand Cards ───────────────────────────────────────── */
.brand-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  text-align: center;
  transition: all var(--t-slow);
  cursor: pointer;
  box-shadow: var(--shadow-xs);
  display: block;
}

.brand-card:hover {
  border-color: var(--color-gold);
  box-shadow: 0 8px 36px rgba(201,168,76,.18);
  transform: translateY(-5px);
}

.brand-card__name {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: var(--fs-base);
  color: var(--color-charcoal);
  margin-bottom: .25rem;
}

.brand-card__category {
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  color: var(--color-gold-dark);
  font-weight: var(--fw-semi);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.brand-card__certified {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  margin-top: .75rem;
  font-size: .65rem;
  color: var(--color-text-light);
  letter-spacing: .04em;
}

/* ── 15. Testimonials ──────────────────────────────────────── */
.testimonial-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  position: relative;
  box-shadow: var(--shadow-xs);
  transition: all var(--t-slow);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--color-primary-pale);
  pointer-events: none;
}

.testimonial-card:hover { box-shadow: var(--shadow-lg); border-color: var(--color-primary-pale); transform: translateY(-3px); }

.testimonial-card__stars {
  color: var(--color-gold);
  letter-spacing: 2px;
  font-size: var(--fs-sm);
  margin-bottom: .875rem;
}

.testimonial-card__text {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.testimonial-card__author { display: flex; align-items: center; gap: .75rem; }

.testimonial-card__avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: white;
  font-family: var(--font-heading); font-weight: var(--fw-bold);
  flex-shrink: 0;
}

.testimonial-card__name  { font-weight: var(--fw-semi); font-size: var(--fs-sm); color: var(--color-charcoal); line-height: 1.2; }
.testimonial-card__role  { font-size: var(--fs-xs); color: var(--color-text-light); margin-top: .1rem; }

/* ── 16. FAQ ───────────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--r-md);
  margin-bottom: .5rem;
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow-xs);
  transition: border-color var(--t-base);
}

.faq-item.open { border-color: var(--color-primary-pale); box-shadow: 0 4px 16px rgba(161,52,188,.1); }

.faq-item__trigger {
  width: 100%;
  padding: 1.125rem 1.375rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: var(--font-heading);
  font-weight: var(--fw-semi);
  font-size: var(--fs-base);
  color: var(--color-charcoal);
  text-align: left; background: white; cursor: pointer; border: none;
  min-height: 60px; transition: background var(--t-base);
}

.faq-item.open .faq-item__trigger { background: var(--color-primary-ultra); }

.faq-item__icon {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: var(--color-hero-bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--color-primary);
  transition: all var(--t-base); font-weight: var(--fw-bold);
}

.faq-item.open .faq-item__icon { background: var(--color-primary); color: white; transform: rotate(45deg); }

.faq-item__body { max-height: 0; overflow: hidden; transition: max-height var(--t-slow), padding var(--t-slow); }
.faq-item.open .faq-item__body { max-height: 300px; }

.faq-item__content { padding: 0 1.375rem 1.25rem; color: var(--color-text-muted); line-height: 1.75; font-size: var(--fs-sm); }

/* ── 17. CTA Sections ──────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--color-ink) 0%, var(--color-navy) 100%);
  padding: var(--space-section) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(161,52,188,.12), transparent 65%);
  pointer-events: none;
}

.cta-section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
  position: relative;
  letter-spacing: -.01em;
}

.cta-section__text {
  color: rgba(255,255,255,.65);
  font-size: var(--fs-lg);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  position: relative;
  line-height: 1.75;
}

.cta-section__buttons {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative;
}

/* WhatsApp contact banner */
.whatsapp-section { padding: clamp(2rem, 5vw, 3.5rem) 0; }

.whatsapp-section__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: linear-gradient(135deg, #F0FDF4, #DCFCE7);
  border: 1px solid #BBF7D0;
  border-radius: var(--r-xl);
  padding: clamp(1.75rem, 4vw, 3rem);
}

.whatsapp-section__text h3 { font-size: clamp(1.3rem, 3.5vw, 2rem); color: #166534; margin-bottom: .4rem; }
.whatsapp-section__text p  { color: #15803D; font-size: var(--fs-lg); }

/* ── 18. Forms ─────────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }

.form-label { display: block; font-family: var(--font-heading); font-size: var(--fs-sm); font-weight: var(--fw-semi); color: var(--color-charcoal); margin-bottom: .4rem; }

.form-control {
  width: 100%;
  padding: .875rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--r-md);
  background: white;
  color: var(--color-text);
  font-size: 16px;
  transition: border-color var(--t-base), box-shadow var(--t-base);
  outline: none;
  -webkit-appearance: none; appearance: none;
}

.form-control:focus { border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(161,52,188,.1); }
.form-control::placeholder { color: var(--color-text-light); }
textarea.form-control { min-height: 130px; resize: vertical; }

/* ── 19. Cards / Badges ────────────────────────────────────── */
.card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--t-slow);
}

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

.badge {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .25rem .75rem; border-radius: var(--r-sm);
  font-family: var(--font-heading);
  font-size: var(--fs-xs); font-weight: var(--fw-semi); letter-spacing: .03em;
}

.badge-primary { background: var(--color-primary-ultra); color: var(--color-primary); }
.badge-gold    { background: var(--color-gold-light); color: var(--color-gold-dark); }
.badge-success { background: #F0FDF4; color: #15803D; }

/* ── 20. Page Hero (interior pages) ───────────────────────── */
.page-hero {
  background-color: var(--color-hero-bg);
  background-image:
    linear-gradient(180deg,
      rgba(250,247,255,.92) 0%,
      rgba(248,243,252,.86) 45%,
      rgba(250,247,255,.92) 100%),
    url('/assets/images/brands/mccosmetics/lifestyle-2.jpg');
  background-size: cover;
  background-position: center 18%;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--color-border);
  padding: clamp(5.5rem, 14vw, 9rem) 0 clamp(3rem, 7vw, 5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: clamp(300px,60vw,800px); height: clamp(300px,60vw,800px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(161,52,188,.07), transparent 65%);
  pointer-events: none;
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 600;
  color: var(--color-ink);
  position: relative; z-index: 1;
  letter-spacing: -.02em;
}

.page-hero__sub {
  color: var(--color-text-muted);
  font-size: var(--fs-lg);
  margin-top: .875rem;
  max-width: 600px; margin-left: auto; margin-right: auto;
  position: relative; z-index: 1;
  line-height: 1.75;
}

.breadcrumb {
  display: flex; align-items: center; gap: .5rem; justify-content: center;
  font-size: var(--fs-sm); color: var(--color-text-light);
  margin-bottom: 1.125rem;
  position: relative; z-index: 1;
}

.breadcrumb a { color: var(--color-primary); }

/* ── 21. Alert ─────────────────────────────────────────────── */
.alert {
  padding: .875rem 1.125rem;
  border-radius: var(--r-md);
  font-size: var(--fs-sm);
  margin-bottom: 1.25rem;
  display: flex; gap: .75rem; align-items: flex-start; line-height: 1.55;
}

.alert-success { background: #F0FDF4; color: #166534; border: 1px solid #BBF7D0; }
.alert-error   { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }
.alert-warn    { background: #FFFBEB; color: #92400E; border: 1px solid #FDE68A; }
.alert-info    { background: var(--color-primary-ultra); color: var(--color-charcoal); border: 1px solid var(--color-primary-pale); }

/* ── 22. Footer ────────────────────────────────────────────── */
.footer {
  padding: clamp(3.5rem, 9vw, 6rem) 0 0;
  color: rgba(255,255,255,.6);
  border-top: 1px solid rgba(0,0,0,.4);
  position: relative;
  isolation: isolate;
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 120% 60% at 50% 100%, rgba(0,0,0,.55) 0%, transparent 70%),
    linear-gradient(180deg, rgba(0,0,0,.32) 0%, transparent 28%, transparent 72%, rgba(0,0,0,.38) 100%);
}

.footer .container { position: relative; z-index: 1; }

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-bottom: clamp(2rem, 5vw, 3rem);
  border-bottom: 1px solid rgba(255,255,255,.09);
  margin-bottom: 1.5rem;
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 600;
  color: white; margin-bottom: .875rem;
  display: flex; align-items: center; gap: .5rem;
}

.footer__logo-img {
  height: 44px; width: auto; max-width: 160px;
  object-fit: contain; margin-bottom: .875rem; opacity: .92;
}

.footer__brand-desc { font-size: var(--fs-sm); line-height: 1.75; margin-bottom: 1.5rem; color: rgba(255,255,255,.45); }

.footer__social { display: flex; gap: .5rem; flex-wrap: wrap; }

.footer__social-btn {
  width: 38px; height: 38px; border-radius: var(--r-sm);
  background: rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: all var(--t-base); min-width: 38px;
}

.footer__social-btn:hover { background: var(--color-primary); transform: translateY(-2px); }

.footer__heading {
  font-family: var(--font-heading); font-weight: var(--fw-semi);
  font-size: var(--fs-xs); color: white;
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.25rem;
}

.footer__links { display: flex; flex-direction: column; gap: .5rem; }

.footer__link {
  font-size: var(--fs-sm); color: rgba(255,255,255,.45);
  transition: color var(--t-base);
  display: flex; align-items: center; gap: .5rem; min-height: 32px;
}

.footer__link:hover { color: var(--color-gold); }
.footer__link--nolink { cursor: default; }
.footer__link--nolink:hover { color: rgba(255,255,255,.45); }

.footer__brands-bar {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  padding: 1.25rem 0; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 1.25rem;
}

.footer__brands-label { font-size: var(--fs-xs); color: rgba(255,255,255,.3); letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.footer__brands-list  { display: flex; gap: .625rem; flex-wrap: wrap; }

.footer__brand-badge {
  font-size: var(--fs-xs); color: rgba(255,255,255,.45);
  border: 1px solid rgba(201,168,76,.2); padding: .25rem .875rem;
  border-radius: var(--r-sm); transition: all var(--t-base); letter-spacing: .04em;
}

.footer__brand-badge:hover { border-color: var(--color-gold); color: var(--color-gold); }

.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  font-size: var(--fs-xs); color: rgba(255,255,255,.3);
  flex-wrap: wrap; gap: .75rem; padding: 1.25rem 0;
}

.footer__bottom-links { display: flex; gap: 1rem; }
.footer__bottom-link  { color: rgba(255,255,255,.3); transition: color var(--t-base); }
.footer__bottom-link:hover { color: var(--color-gold); }

/* ── 23. WhatsApp Float ────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: clamp(1.5rem,3vw,2rem); right: clamp(1.25rem,3vw,2rem);
  z-index: 980;
  height: 44px; width: 162px; padding: 0 1.25rem;
  border-radius: 22px;
  display: flex; align-items: center; justify-content: center; gap: .45rem;
  background: #086551;
  color: white;
  white-space: nowrap;
  font-family: var(--font-heading);
  font-weight: 600; font-size: .85rem; letter-spacing: .02em;
  box-shadow: 0 4px 18px rgba(8,101,81,.45);
  transition: opacity .3s ease, transform .3s ease, background .2s ease, box-shadow .2s ease;
  text-decoration: none;
}

.wa-float:hover {
  background: #065544;
  box-shadow: 0 6px 24px rgba(8,101,81,.6);
}
.wa-float__icon { font-size: 1rem; line-height: 1; }

/* ── 24. Chatbot ───────────────────────────────────────────── */
.chatbot-trigger {
  position: fixed;
  bottom: calc(clamp(1.5rem,3vw,2rem) + 56px + .75rem);
  right: clamp(1.25rem,3vw,2rem);
  left: auto;
  z-index: 980;
  height: 44px; width: 162px; padding: 0 1.25rem;
  border-radius: 22px;
  background: var(--color-primary, #A134BC);
  color: white; font-size: .85rem; font-weight: 600; letter-spacing: .02em;
  display: flex; align-items: center; justify-content: center; gap: .45rem;
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(161,52,188,.35); cursor: pointer; border: none;
  transition: opacity .3s ease, transform .3s ease, background .2s ease, box-shadow .2s ease;
}

.chatbot-trigger:hover {
  background: var(--color-primary-hover, #8B2AA0);
  box-shadow: 0 6px 24px rgba(161,52,188,.48);
}

/* Desktop: floats hidden until mouse approaches bottom */
@media (min-width: 769px) {
  .wa-float, .chatbot-trigger {
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
  }
  .wa-float.float-visible, .chatbot-trigger.float-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

.chatbot-widget {
  position: fixed;
  bottom: calc(clamp(1rem,3vw,2rem) + 120px); right: clamp(1rem,3vw,2rem); left: auto;
  z-index: 979; width: min(340px, calc(100vw - 2rem));
  background: white; border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl); overflow: hidden;
  display: none; flex-direction: column;
  max-height: calc(100dvh - 160px);
}

.chatbot-widget.open { display: flex; }

.chatbot-header {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  padding: 1rem 1.125rem;
  display: flex; align-items: center; gap: .625rem;
}

.chatbot-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}

.chatbot-name   { font-weight: var(--fw-semi); color: white; font-size: var(--fs-sm); }

.chatbot-status {
  font-size: .7rem; color: rgba(255,255,255,.7);
  display: flex; align-items: center; gap: .3rem;
}

.chatbot-status::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: #4ADE80; flex-shrink: 0;
}

.chatbot-close {
  margin-left: auto; background: rgba(255,255,255,.15);
  border: none; color: white; width: 28px; height: 28px;
  border-radius: 50%; cursor: pointer; font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background var(--t-base);
}

.chatbot-close:hover { background: rgba(255,255,255,.3); }

.chatbot-messages {
  flex: 1; padding: .875rem; overflow-y: auto;
  display: flex; flex-direction: column; gap: .625rem;
  overscroll-behavior: contain;
}

.chat-msg { max-width: 82%; padding: .6rem .875rem; border-radius: var(--r-md); font-size: var(--fs-sm); line-height: 1.5; }
.chat-msg--bot  { background: var(--color-hero-bg); color: var(--color-charcoal); align-self: flex-start; border-bottom-left-radius: 4px; }
.chat-msg--user { background: var(--color-primary); color: white; align-self: flex-end; border-bottom-right-radius: 4px; }

.chatbot-options { padding: .625rem .875rem; display: flex; flex-direction: column; gap: .4rem; }

.chatbot-option {
  padding: .55rem .875rem; border: 1px solid var(--color-primary-pale);
  border-radius: var(--r-sm); font-size: .75rem; color: var(--color-primary);
  background: var(--color-primary-ultra); cursor: pointer; transition: all var(--t-base);
  text-align: left; min-height: 36px;
}

.chatbot-option:hover { background: var(--color-primary); color: white; border-color: var(--color-primary); }

.chatbot-input-row { padding: .625rem; border-top: 1px solid var(--color-border); display: flex; gap: .4rem; }

.chatbot-input {
  flex: 1; padding: .55rem .875rem;
  border: 1.5px solid var(--color-border); border-radius: var(--r-full);
  font-size: 16px; outline: none; min-width: 0;
}

.chatbot-input:focus { border-color: var(--color-primary); }

.chatbot-send {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--color-primary); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; cursor: pointer; border: none;
  transition: background var(--t-base); flex-shrink: 0;
}

.chatbot-send:hover { background: var(--color-primary-hover); }

/* ── 25. Team photo card ───────────────────────────────────── */
.team-photo {
  width: 100%;
  height: 320px;
  overflow: hidden;
  background: #E8EAF0;
  position: relative;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 8%;
  transition: transform .5s ease;
}

.team-photo:hover img { transform: scale(1.03); }

@media (max-width: 768px) {
  .team-photo { height: 260px; }
}

@media (max-width: 480px) {
  .team-photo { height: 220px; }
}

/* ── 25. Animations ────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.fade-up.visible { opacity: 1; transform: translateY(0); }
.stagger > * { transition-delay: calc(var(--i, 0) * 90ms); }

/* ── 26. Responsive — Tablet ───────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero__card-main { max-width: 340px; }
}

/* ── 27. Responsive — Mobile ───────────────────────────────── */
@media (max-width: 768px) {
  .nav__links, .nav__actions .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .nav__actions .lang-switcher { display: flex; }

  .hero { min-height: 100svh; padding-top: calc(var(--header-height) + 1.5rem); padding-bottom: 7rem; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .hero__title { font-size: clamp(2.4rem, 9vw, 3.5rem); }
  .hero__subtitle { font-size: var(--fs-base); margin-bottom: 2rem; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .hero__trust { gap: .875rem; }

  .trust-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar__item:not(:last-child)::after { display: none; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .modules-grid { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__brands-bar { flex-direction: column; align-items: flex-start; gap: .75rem; }

  .whatsapp-section__inner { flex-direction: column; text-align: center; }
  .cta-section__buttons { flex-direction: column; align-items: center; }
  .cta-section__buttons .btn { width: 100%; max-width: 340px; }

  .mobile-cta-bar { display: grid; }
  .footer { padding-bottom: calc(4rem + env(safe-area-inset-bottom)); }
  .wa-float, .chatbot-trigger { display: none; }

  .page-hero { padding-top: calc(var(--header-height) + 1.5rem); }
}

/* ── 28. Responsive — Small Mobile ────────────────────────── */
@media (max-width: 480px) {
  :root { --container-px: .875rem; }

  .section-label { font-size: .65rem; }
  .feature-card { padding: 1.25rem; }
  .module-card  { padding: 1.5rem; }
  .brand-card   { padding: 1.25rem 1rem; }

  .trust-bar__grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .trust-bar__number { font-size: 2.5rem; }

  .faq-item__trigger { font-size: var(--fs-sm); padding: 1rem; }
  .testimonial-card { padding: 1.25rem; }
  .testimonial-card::before { font-size: 3.5rem; }
}

/* ── 29. Print ─────────────────────────────────────────────── */
@media print {
  .nav, .wa-float, .chatbot-trigger, .chatbot-widget, .mobile-cta-bar { display: none !important; }
  body { padding-top: 0 !important; }
  .hero { min-height: auto; background: none; color: black; }
}

/* ══════════════════════════════════════════════════════════════
   30. HERO SLIDER (Revolution-style)
══════════════════════════════════════════════════════════════ */
.hero-slider {
  position: relative;
  width: 100%;
  height: 680px;
  overflow: hidden;
  background: #08051A;
  margin-top: 0;
}

/* Each slide stacked, fade transition */
.hs-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  transition: opacity .9s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.hs-slide.active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}

/* Background layer — Ken Burns zoom */
.hs-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  will-change: transform;
}
.hs-slide.active .hs-bg {
  animation: hs-kb 9s ease forwards;
}
@keyframes hs-kb {
  from { transform: scale(1); }
  to   { transform: scale(1.07); }
}

/* Gradient overlay — text readability */
.hs-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(5,3,15,.82) 0%,
    rgba(5,3,15,.52) 48%,
    rgba(5,3,15,.12) 100%
  );
  z-index: 1;
}

/* Content area */
/* Content layer — absolute, fills entire slide */
.hs-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 48px 6% 80px;
}

/* Glass panel — blurred box behind the text */
.hs-glass {
  background: rgba(5, 3, 18, 0.52);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 18px;
  padding: 2.75rem 3rem;
  max-width: 660px;
  width: 100%;
  /* Entrance animation for the whole panel */
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease .1s, transform .7s ease .1s;
}
.hs-slide.active .hs-glass {
  opacity: 1;
  transform: translateY(0);
}

/* Brand badge */
.hs-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgba(161,52,188,.28);
  border: 1px solid rgba(161,52,188,.55);
  color: #D090E8;
  padding: .38rem 1rem;
  border-radius: 30px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  width: fit-content;
  margin-bottom: 1.4rem;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s ease .3s, transform .55s ease .3s;
}
.hs-slide.active .hs-badge {
  opacity: 1;
  transform: translateY(0);
}

/* Headline — BIG, white, bold */
.hs-title {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 1.2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease .45s, transform .6s ease .45s;
}
.hs-title em {
  font-style: normal;
  color: #C97BE8;
}
.hs-slide.active .hs-title { opacity: 1; transform: translateY(0); }

/* Subtitle */
.hs-sub {
  font-size: clamp(.9rem, 1.6vw, 1.05rem);
  color: rgba(255,255,255,.82);
  line-height: 1.75;
  margin: 0 0 2rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease .6s, transform .6s ease .6s;
}
.hs-slide.active .hs-sub { opacity: 1; transform: translateY(0); }

/* CTA row */
.hs-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s ease .75s, transform .6s ease .75s;
}
.hs-slide.active .hs-ctas { opacity: 1; transform: translateY(0); }

/* Navigation arrows */
.hs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.3);
  background: rgba(8,5,25,.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s ease;
  outline: none;
  padding: 0;
}
.hs-arrow:hover {
  background: var(--color-primary, #A134BC);
  border-color: var(--color-primary, #A134BC);
  transform: translateY(-50%) scale(1.1);
}
.hs-arrow--prev { left: 2.5%; }
.hs-arrow--next { right: 2.5%; }

/* Dot indicators */
.hs-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: .55rem;
  align-items: center;
}
.hs-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all .35s ease;
}
.hs-dot.active {
  width: 32px;
  background: #fff;
}

/* Progress bar */
.hs-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--color-primary, #A134BC);
  z-index: 10;
}
.hs-progress.hs-running {
  transition: width 8s linear;
  width: 100%;
}

/* ── Mobile adjustments ───────────────────────────────── */
@media (max-width: 768px) {
  .hero-slider { height: 580px; }
  .hs-content {
    align-items: flex-start;
    justify-content: flex-end;
    padding: 0 1.1rem 85px;
    padding-top: 0;
  }
  .hs-glass {
    padding: 1.75rem 1.5rem;
    border-radius: 14px;
    max-width: 100%;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
  .hs-badge { margin-bottom: .85rem; }
  .hs-sub { font-size: .875rem; }
  .hs-arrow { width: 40px; height: 40px; font-size: 1rem; }
  .hs-arrow--prev { left: 1%; }
  .hs-arrow--next { right: 1%; }
}
@media (max-width: 480px) {
  .hero-slider { height: 520px; }
  .hs-glass { padding: 1.5rem 1.25rem; }
  .hs-ctas .btn-lg { padding: .7rem 1.3rem; font-size: .875rem; }
  .hs-ctas { gap: .6rem; }
}
