/* =====================================================================
   VICTORY GLOBALCARE - Premium one-pager styles
   Palette: Brand Orange + Royal Navy, fresh teal accent
   Fonts: Sora (display) + Inter (body)
   ===================================================================== */

/* ----------------------------- Tokens ----------------------------- */
:root {
  /* Brand colour */
  --orange: #0d9488;
  --orange-light: #14b8a6;
  --orange-soft: #d6f5f1;
  --orange-deep: #0f766e;
  --navy: #0e2a6b;
  --navy-700: #15347f;
  --blue: #0c6fb3;
  --teal: #10b6a8;
  --rose: #f0567a;
  --violet: #7c5cff;

  /* Neutrals */
  --ink: #0c1838;
  --ink-soft: #243059;
  --muted: #5b6b8c;
  --muted-light: #8896b3;
  --line: #e6ecf8;
  --line-soft: #eef3fc;

  /* Surfaces */
  --bg: #ffffff;
  --bg-soft: #f5f8ff;
  --bg-tint: #eef3ff;
  --glass: rgba(255, 255, 255, 0.72);

  /* Gradients */
  --grad-brand: linear-gradient(118deg, #0d9488 0%, #14b8a6 100%);
  --grad-brand-soft: linear-gradient(118deg, #0ea89b 0%, #2dd4bf 100%);
  --grad-blue: linear-gradient(125deg, #0a5a74 0%, #0c74c0 100%);
  --grad-text: linear-gradient(100deg, #0f766e 0%, #14b8a6 100%);
  --grad-dark: linear-gradient(150deg, #06424e 0%, #0a5a74 50%, #0b568f 100%);

  /* Shadows */
  --sh-sm: 0 2px 10px rgba(14, 42, 107, 0.06);
  --sh-md: 0 14px 36px rgba(14, 42, 107, 0.09);
  --sh-lg: 0 30px 70px rgba(14, 42, 107, 0.14);
  --sh-orange: 0 18px 40px rgba(20, 184, 166, 0.3);
  --sh-blue: 0 18px 44px rgba(45, 107, 228, 0.26);

  /* Radii */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 34px;
  --r-pill: 999px;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --container: 1200px;
  --header-h: 84px;

  /* Fonts */
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

/* ----------------------------- Reset ------------------------------ */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 14px);
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; font-size: 1rem; }
ul, ol { list-style: none; padding: 0; }
address { font-style: normal; }
:focus-visible { outline: 3px solid rgba(45, 107, 228, 0.5); outline-offset: 3px; border-radius: 6px; }

/* ----------------------------- Layout ----------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 40px);
}

.section { padding-block: clamp(64px, 9vw, 120px); position: relative; }
.section--tint { background: linear-gradient(180deg, var(--bg-soft), #eaf1ff); }
.section--dark { background: var(--grad-dark); color: #fff; overflow: hidden; }

.section__head { max-width: 760px; margin: 0 auto clamp(36px, 5vw, 60px); text-align: center; }

/* ----------------------- Typography helpers ----------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-deep);
  background: linear-gradient(120deg, #e9fbf8, #d6f5f1);
  border: 1px solid #a7e8e0;
  padding: 7px 15px;
  border-radius: var(--r-pill);
}
.eyebrow--light {
  color: #a7e8e0;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}
.eyebrow__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.18);
  animation: pulseDot 2.4s ease-in-out infinite;
}

.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.85rem, 3.8vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: 16px;
}
.section__title--light { color: #fff; }

.section__lead {
  margin-top: 18px;
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  color: var(--muted);
  max-width: 60ch;
}
.section__lead--center { margin-inline: auto; }
.section__lead--light { color: rgba(255, 255, 255, 0.78); }

.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* Brighter teal highlight on dark backgrounds (hero + dark sections) */
.hero .grad-text,
.section--dark .grad-text {
  background-image: linear-gradient(100deg, #2dd4bf 0%, #5eead4 100%);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  color: var(--orange-deep);
  transition: gap 0.3s var(--ease), color 0.3s;
}
.text-link svg { transition: transform 0.3s var(--ease); }
.text-link:hover { gap: 11px; color: var(--orange); }
.text-link:hover svg { transform: translateX(3px); }

/* ----------------------------- Buttons ---------------------------- */
.btn {
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 14px 26px;
  border-radius: var(--r-pill);
  color: var(--btn-fg);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s;
  isolation: isolate;
  white-space: nowrap;
}
.btn svg { transition: transform 0.35s var(--ease); }
.btn--primary { background: var(--grad-brand); box-shadow: var(--sh-orange); }
.btn--primary::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(118deg, #0ea89b, #2dd4bf);
  opacity: 0; transition: opacity 0.35s;
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 22px 48px rgba(20, 184, 166, 0.42); }
.btn--primary:hover::after { opacity: 1; }
.btn--primary:hover svg { transform: translateX(4px); }
.btn--ghost {
  color: var(--navy);
  background: #fff;
  border: 1.5px solid var(--line);
  box-shadow: var(--sh-sm);
}
.btn--ghost:hover { transform: translateY(-3px); border-color: var(--orange); color: var(--orange-deep); box-shadow: var(--sh-md); }
.btn--block { width: 100%; }

/* Shine sweep */
.btn::before {
  content: "";
  position: absolute; top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s var(--ease);
}
.btn:hover::before { left: 130%; }

/* --------------------------- Glass card --------------------------- */
.glass {
  background: var(--glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--sh-md);
}

/* ------------------------- Reveal on scroll ----------------------- */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}
[data-reveal="fade-up"] { transform: translateY(32px); }
[data-reveal="fade-right"] { transform: translateX(-42px); }
[data-reveal="fade-left"] { transform: translateX(42px); }
[data-reveal="zoom"] { transform: scale(0.9); }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }

/* ============================ PRELOADER ========================== */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  display: grid; place-items: center;
  background: var(--grad-dark);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader__mark { display: grid; justify-items: center; gap: 22px; animation: pop 0.6s var(--ease-bounce); }
.preloader__mark img { width: 200px; filter: brightness(0) invert(1); opacity: 0.95; }
.preloader__bar { width: 180px; height: 4px; border-radius: 999px; background: rgba(255, 255, 255, 0.18); overflow: hidden; }
.preloader__bar span {
  display: block; height: 100%; width: 40%;
  background: var(--grad-brand);
  border-radius: 999px;
  animation: load 1.1s var(--ease) infinite;
}

/* ========================= SCROLL PROGRESS ====================== */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: var(--grad-brand);
  z-index: 1200;
  box-shadow: 0 0 12px rgba(20, 184, 166, 0.6);
}

/* ============================ SKIP LINK ========================= */
.skip-link {
  position: fixed; top: -60px; left: 16px; z-index: 2000;
  background: var(--navy); color: #fff; padding: 10px 16px;
  border-radius: 0 0 10px 10px; font-weight: 600;
  transition: top 0.3s;
}
.skip-link:focus { top: 0; }

/* ============================== HEADER ========================== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: height 0.35s var(--ease), background 0.35s, box-shadow 0.35s, backdrop-filter 0.35s;
}
.header.is-stuck {
  height: 68px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(14, 42, 107, 0.08);
  border-bottom: 1px solid var(--line-soft);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; width: 100%; }
.brand__logo { height: 46px; width: auto; transition: height 0.35s var(--ease); }
.header.is-stuck .brand__logo { height: 38px; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav__link {
  position: relative;
  font-weight: 500; font-size: 0.95rem;
  color: var(--ink-soft);
  padding: 9px 14px; border-radius: var(--r-pill);
  transition: color 0.25s, background 0.25s;
}
.nav__link::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 2px; background: var(--grad-brand); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease);
}
.nav__link:hover { color: var(--orange-deep); }
.nav__link:hover::after,
.nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--orange-deep); }
.nav__link--cta {
  margin-left: 8px; color: #fff; background: var(--grad-brand);
  box-shadow: var(--sh-orange); font-weight: 600;
}
.nav__link--cta::after { display: none; }
.nav__link--cta:hover { color: #fff; transform: translateY(-2px); }
/* Header is transparent over the dark hero at the top -> use light links.
   Desktop only; the mobile drawer has a white background so its links stay dark.
   Reverts to dark automatically once the header turns sticky/white on scroll. */
@media (min-width: 961px) {
  .header:not(.is-stuck) .nav__link:not(.nav__link--cta) { color: rgba(255, 255, 255, 0.92); }
  .header:not(.is-stuck) .nav__link:not(.nav__link--cta):hover,
  .header:not(.is-stuck) .nav__link:not(.nav__link--cta).is-active { color: #ffffff; }
}

.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  width: 46px; height: 46px; border-radius: 12px;
  align-items: center; justify-content: center;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--sh-sm);
}
.nav-toggle span { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================== HERO =========================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding-top: calc(var(--header-h) + 30px);
  padding-bottom: 60px;
  overflow: hidden;
  background: #eef3fb url("../images/hero-poster.jpg") center center / cover no-repeat;
}
.hero__video {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
  pointer-events: none;
}
/* Light scrim keeps the headline readable over the hero video */
.hero__scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(100deg,
      rgba(5, 38, 56, 0.94) 0%,
      rgba(7, 52, 84, 0.82) 38%,
      rgba(7, 52, 84, 0.46) 62%,
      rgba(7, 52, 84, 0.16) 84%,
      rgba(7, 52, 84, 0) 100%),
    linear-gradient(0deg, rgba(5, 38, 56, 0.38) 0%, rgba(5, 38, 56, 0) 45%);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(14, 42, 107, 0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(14, 42, 107, 0.04) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 72%);
}
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(46px); opacity: 0.55;
  animation: blobMove 16s ease-in-out infinite;
}
.blob--1 { width: 420px; height: 420px; top: -80px; right: 4%; background: radial-gradient(circle, #ffd0a3, transparent 70%); }
.blob--2 { width: 480px; height: 480px; bottom: -120px; left: -60px; background: radial-gradient(circle, #bcd2ff, transparent 70%); animation-delay: -5s; }
.blob--3 { width: 320px; height: 320px; top: 40%; left: 45%; background: radial-gradient(circle, #b5f1ec, transparent 70%); animation-delay: -9s; }

.hero__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: minmax(0, 660px);
  align-items: center;
  width: 100%;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-top: 22px;
  color: #ffffff;
}
.hero__lead { margin-top: 22px; font-size: clamp(1.02rem, 1.5vw, 1.18rem); color: rgba(255, 255, 255, 0.86); max-width: 54ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero__trust {
  display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 34px;
}
.hero__trust li {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.9rem; font-weight: 500; color: rgba(255, 255, 255, 0.92);
}
.hero__trust svg { color: #4fd6c7; }

/* Hero visual */
.hero__visual { position: relative; height: clamp(420px, 46vw, 560px); }
.hero__orbit { position: absolute; inset: 0; display: grid; place-items: center; }
.orbit-ring { position: absolute; border-radius: 50%; border: 1.5px dashed rgba(45, 107, 228, 0.25); }
.orbit-ring--1 { width: 78%; height: 78%; animation: spin 28s linear infinite; }
.orbit-ring--2 { width: 100%; height: 100%; border-color: rgba(20, 184, 166, 0.22); animation: spin 40s linear infinite reverse; }
.orbit-dot { position: absolute; width: 14px; height: 14px; border-radius: 50%; box-shadow: var(--sh-sm); }
.orbit-dot--1 { background: var(--orange); top: 8%; left: 52%; animation: orbit 14s linear infinite; }
.orbit-dot--2 { background: var(--teal); bottom: 12%; left: 16%; animation: orbit 18s linear infinite reverse; }
.orbit-dot--3 { background: var(--blue); top: 40%; right: 4%; animation: orbit 22s linear infinite; }

.hero__card {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-3deg);
  width: clamp(220px, 24vw, 300px);
  background: #fff;
  border-radius: var(--r-xl);
  padding: 18px;
  box-shadow: var(--sh-lg);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: transform 0.4s var(--ease);
}
.hero__card img { border-radius: var(--r-lg); width: 100%; height: auto; object-fit: contain; }
.hero__pulse {
  position: absolute; left: 14px; right: 14px; bottom: 14px;
  background: rgba(14, 42, 107, 0.9); color: #6ff7c2;
  border-radius: 14px; padding: 8px 12px;
  backdrop-filter: blur(4px);
}
.hero__pulse svg { width: 100%; height: 32px; }
.hero__pulse polyline { animation: dash 2.2s linear infinite; stroke-dasharray: 240; }

.hero__chip {
  position: absolute; z-index: 3;
  display: flex; align-items: center; gap: 11px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 16px; padding: 11px 15px;
  box-shadow: var(--sh-md);
}
.hero__chip strong { display: block; font-family: var(--font-display); font-size: 0.92rem; color: var(--ink); line-height: 1.1; }
.hero__chip small { color: var(--muted); font-size: 0.76rem; }
.hero__chip-ico {
  display: grid; place-items: center; width: 38px; height: 38px;
  border-radius: 11px; font-family: var(--font-display); font-weight: 700;
  background: var(--grad-blue); color: #fff; font-size: 0.92rem;
}
.hero__chip-ico--teal { background: linear-gradient(135deg, #0fb5a8, #46d6c6); }
.hero__chip-ico--orange { background: var(--grad-brand); }
.hero__chip--a { top: 6%; left: -4%; }
.hero__chip--b { bottom: 16%; left: -8%; }
.hero__chip--c { bottom: 6%; right: -2%; }

.hero__scroll { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 3; }
.hero__scroll-mouse {
  display: block; width: 26px; height: 42px; border: 2px solid rgba(255, 255, 255, 0.55); border-radius: 14px; position: relative;
}
.hero__scroll-mouse::after {
  content: ""; position: absolute; top: 7px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; border-radius: 3px; background: var(--orange);
  animation: scrollWheel 1.6s ease-in-out infinite;
}

/* Floating helpers */
.float { animation: float 6s ease-in-out infinite; }
.float--slow { animation-duration: 8.5s; }
.float--fast { animation-duration: 4.5s; }

/* ============================= IMPACT =========================== */
.impact { background: var(--navy); position: relative; z-index: 3; }
.impact .container { transform: translateY(-50%); }
.impact__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: linear-gradient(120deg, #fff, #f7faff);
  border: 1px solid var(--line); border-radius: var(--r-xl);
  box-shadow: var(--sh-lg); overflow: hidden;
}
.impact__item {
  padding: clamp(24px, 3vw, 38px) 18px; text-align: center;
  border-right: 1px solid var(--line-soft);
  position: relative;
}
.impact__item::before {
  content: ""; position: absolute; top: 24px; bottom: 24px; right: -1px; width: 1px;
  background: linear-gradient(var(--orange), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.impact__item:hover::before { opacity: 0.4; }
.impact__item:last-child { border-right: none; }
.impact__num {
  display: block; font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.1rem); line-height: 1;
  background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.impact__label { display: block; margin-top: 8px; color: var(--muted); font-weight: 500; font-size: 0.92rem; }

/* Pull impact up over hero seam cleanly */
.impact { padding: 0; height: 0; }
.impact .container { position: relative; top: 0; }

/* ============================== ABOUT =========================== */
.about__inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(34px, 5vw, 72px); align-items: center; }
.about__media { position: relative; }
.about__media-card {
  border-radius: var(--r-xl); overflow: hidden; background: #fff;
  border: 1px solid var(--line); box-shadow: var(--sh-lg);
  padding: 22px; transition: transform 0.4s var(--ease);
}
.about__media-card img { border-radius: var(--r-lg); width: 100%; aspect-ratio: 1/1; object-fit: contain; background: var(--bg-soft); }
.about__media-badge {
  position: absolute; right: -14px; bottom: 26px;
  background: var(--grad-blue); color: #fff;
  padding: 14px 20px; border-radius: 16px; box-shadow: var(--sh-blue);
}
.about__media-badge strong { display: block; font-family: var(--font-display); font-size: 1.05rem; }
.about__media-badge span { font-size: 0.8rem; opacity: 0.85; }
.about__media-glow {
  position: absolute; inset: -10% -6% -6% -10%; z-index: -1; border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.18), transparent 65%);
  filter: blur(8px);
}
.about__pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 30px; }
.about__pillar {
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 22px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s;
}
.about__pillar:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: #a7e8e0; }
.about__pillar-ico {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 13px;
  background: var(--grad-brand); color: #fff; box-shadow: var(--sh-orange); margin-bottom: 14px;
}
.about__pillar h3 { font-family: var(--font-display); font-size: 1.12rem; }
.about__pillar p { margin-top: 7px; color: var(--muted); font-size: 0.94rem; }
.about .text-link { margin-top: 26px; }

/* ============================ WHY CHOOSE ======================== */
.why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.why__card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 28px 24px;
  position: relative; overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.4s;
}
.why__card::after {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px;
  background: var(--grad-brand); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.why__card:hover { transform: translateY(-10px); box-shadow: var(--sh-lg); border-color: transparent; }
.why__card:hover::after { transform: scaleX(1); }
.why__ico {
  display: grid; place-items: center; width: 58px; height: 58px; border-radius: 16px;
  background: linear-gradient(135deg, #e9fbf8, #c8f2ec); color: var(--orange-deep);
  margin-bottom: 18px; transition: transform 0.4s var(--ease-bounce);
}
.why__card:hover .why__ico { transform: rotate(-8deg) scale(1.08); }
.why__card h3 { font-family: var(--font-display); font-size: 1.15rem; }
.why__card p { margin-top: 9px; color: var(--muted); font-size: 0.93rem; }

/* ========================== CATEGORIES ========================== */
.cat__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cat__card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 30px 26px;
  position: relative; overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.4s;
}
.cat__card::before {
  content: ""; position: absolute; right: -40px; top: -40px; width: 130px; height: 130px;
  border-radius: 50%; background: radial-gradient(circle, rgba(20, 184, 166, 0.1), transparent 70%);
  transition: transform 0.5s var(--ease);
}
.cat__card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); border-color: #a7e8e0; }
.cat__card:hover::before { transform: scale(1.6); }
.cat__ico {
  display: grid; place-items: center; width: 60px; height: 60px; border-radius: 17px;
  color: #fff; margin-bottom: 18px; box-shadow: var(--sh-md);
  transition: transform 0.4s var(--ease-bounce);
}
.cat__card:hover .cat__ico { transform: translateY(-4px) rotate(6deg); }
.cat__ico--rose { background: linear-gradient(135deg, #f0567a, #ff85a1); }
.cat__ico--blue { background: linear-gradient(135deg, #2d6be4, #5b93ff); }
.cat__ico--violet { background: linear-gradient(135deg, #7c5cff, #a48bff); }
.cat__ico--orange { background: var(--grad-brand); }
.cat__ico--pink { background: linear-gradient(135deg, #e8569e, #ff8bc6); }
.cat__ico--teal { background: linear-gradient(135deg, #0fb5a8, #46d6c6); }
.cat__card h3 { font-family: var(--font-display); font-size: 1.18rem; position: relative; }
.cat__card p { margin-top: 9px; color: var(--muted); font-size: 0.92rem; position: relative; }
.cat__count {
  display: inline-block; margin-top: 16px; font-size: 0.78rem; font-weight: 600;
  color: var(--orange-deep); background: #e9fbf8; border: 1px solid #a7e8e0;
  padding: 4px 12px; border-radius: var(--r-pill); position: relative;
}

/* =========================== PRODUCTS =========================== */
.products__tools {
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between;
  margin-bottom: 34px;
}
.search {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--r-pill);
  padding: 12px 18px; flex: 1 1 320px; min-width: 260px; max-width: 460px;
  box-shadow: var(--sh-sm); transition: border-color 0.3s, box-shadow 0.3s;
}
.search:focus-within { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.12); }
.search svg { color: var(--muted-light); flex-shrink: 0; }
.search input { border: none; outline: none; width: 100%; background: none; color: var(--ink); }
.search__clear { width: 24px; height: 24px; border-radius: 50%; background: var(--line); color: var(--muted); font-size: 1.1rem; line-height: 1; display: grid; place-items: center; }
.search__clear:hover { background: var(--orange); color: #fff; }

.filters { display: flex; flex-wrap: wrap; gap: 9px; }
.filter {
  font-size: 0.86rem; font-weight: 600; color: var(--ink-soft);
  background: #fff; border: 1.5px solid var(--line);
  padding: 9px 16px; border-radius: var(--r-pill);
  transition: all 0.3s var(--ease);
}
.filter:hover { border-color: var(--orange); color: var(--orange-deep); transform: translateY(-2px); }
.filter.is-active { background: var(--grad-brand); color: #fff; border-color: transparent; box-shadow: var(--sh-orange); }

.products__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.product {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.45s var(--ease), box-shadow 0.45s, border-color 0.45s, opacity 0.4s;
  will-change: transform;
}
.product:hover { transform: translateY(-10px); box-shadow: var(--sh-lg); border-color: transparent; }
.product.is-hidden { display: none; }
.product__media {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
  background: linear-gradient(160deg, #f4f8ff, #e9f0ff);
  display: grid; place-items: center; padding: 14px;
}
.product__img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.6s var(--ease); }
.product:hover .product__img { transform: scale(1.07); }
.product__badges { position: absolute; top: 12px; left: 12px; right: 12px; display: flex; justify-content: space-between; gap: 8px; }
.product__cat {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--navy); background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(4px);
  padding: 5px 10px; border-radius: var(--r-pill); border: 1px solid var(--line);
}
.product__rx {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.04em;
  padding: 5px 10px; border-radius: var(--r-pill); color: #fff;
}
.product__rx--rx { background: linear-gradient(135deg, #0f766e, #14b8a6); }
.product__rx--nutra { background: linear-gradient(135deg, #0fb5a8, #46d6c6); }
.product__body { padding: 18px 20px 0; flex: 1; }
.product__name { font-family: var(--font-display); font-size: 1.16rem; color: var(--ink); }
.product__comp { margin-top: 6px; font-size: 0.84rem; font-weight: 600; color: var(--orange-deep); }
.product__desc { margin-top: 9px; font-size: 0.9rem; color: var(--muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product__foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 16px 20px 18px; }
.product__pack { font-size: 0.78rem; color: var(--muted-light); font-weight: 500; }
.product__btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display); font-weight: 600; font-size: 0.85rem; color: var(--orange-deep);
  transition: gap 0.3s;
}
.product__btn:hover { gap: 9px; }
.product__btn svg { transition: transform 0.3s; }
.product__btn:hover svg { transform: translateX(3px); }

.products__empty { text-align: center; color: var(--muted); margin-top: 30px; font-size: 1.02rem; }
.products__note {
  display: flex; align-items: flex-start; gap: 10px;
  margin-top: 34px; padding: 16px 20px; border-radius: var(--r-md);
  background: rgba(45, 107, 228, 0.06); border: 1px dashed rgba(45, 107, 228, 0.25);
  color: var(--ink-soft); font-size: 0.86rem; max-width: 820px; margin-inline: auto;
}
.products__note svg { color: var(--blue); flex-shrink: 0; margin-top: 2px; }

/* ========================== SPOTLIGHT =========================== */
.spotlight__inner { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(34px, 5vw, 76px); align-items: center; }
.spotlight__media { position: relative; display: grid; place-items: center; min-height: 380px; }
.spotlight__halo {
  position: absolute; width: 78%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.22), rgba(45, 107, 228, 0.12) 55%, transparent 72%);
  filter: blur(6px); animation: pulseHalo 5s ease-in-out infinite;
}
.spotlight__img { position: relative; width: clamp(220px, 26vw, 320px); height: auto; filter: drop-shadow(0 30px 50px rgba(14, 42, 107, 0.28)); }
.spotlight__tag {
  position: absolute; z-index: 2;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--sh-md);
  padding: 9px 16px; border-radius: var(--r-pill);
  font-family: var(--font-display); font-weight: 600; font-size: 0.86rem; color: var(--navy);
}
.spotlight__tag::before { content: ""; display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); margin-right: 8px; vertical-align: middle; }
.spotlight__tag--1 { top: 12%; left: 0; }
.spotlight__tag--2 { bottom: 16%; right: 2%; }
.spotlight__tag--2::before { background: var(--teal); }
.spotlight__list { margin-top: 26px; display: grid; gap: 12px; }
.spotlight__list li { display: flex; align-items: center; gap: 12px; font-weight: 500; color: var(--ink-soft); }
.spotlight__list svg { color: var(--teal); flex-shrink: 0; }
.spotlight__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

/* =========================== QUALITY ============================ */
.quality__bg { position: absolute; inset: 0; z-index: 0; }
.blob--q1 { width: 460px; height: 460px; top: -120px; right: -60px; background: radial-gradient(circle, rgba(20, 184, 166, 0.4), transparent 70%); opacity: 0.5; }
.blob--q2 { width: 520px; height: 520px; bottom: -160px; left: -80px; background: radial-gradient(circle, rgba(16, 182, 168, 0.5), transparent 70%); opacity: 0.5; }
.quality .container { position: relative; z-index: 1; }
.quality__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.quality__step {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r-lg); padding: 28px 24px;
  position: relative; overflow: hidden;
  transition: transform 0.4s var(--ease), background 0.4s, border-color 0.4s;
}
.quality__step:hover { transform: translateY(-8px); background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 179, 107, 0.5); }
.quality__step-no {
  font-family: var(--font-display); font-weight: 800; font-size: 2.4rem;
  background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent;
  opacity: 0.9;
}
.quality__step h3 { font-family: var(--font-display); font-size: 1.12rem; margin-top: 8px; color: #fff; }
.quality__step p { margin-top: 8px; color: rgba(255, 255, 255, 0.72); font-size: 0.9rem; }
.quality__badges { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 44px; }
.qbadge {
  font-family: var(--font-display); font-weight: 600; font-size: 0.88rem; color: #fff;
  padding: 11px 22px; border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex; align-items: center; gap: 9px;
  transition: transform 0.3s, background 0.3s;
}
.qbadge::before { content: "✓"; color: #6ff7c2; font-weight: 700; }
.qbadge:hover { transform: translateY(-3px); background: rgba(255, 255, 255, 0.14); }

/* ============================ PARTNER =========================== */
.partner__inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(34px, 5vw, 64px); align-items: center; }
.partner__perks { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 22px; margin: 28px 0 32px; }
.partner__perk { display: flex; align-items: center; gap: 11px; font-weight: 500; color: var(--ink-soft); font-size: 0.95rem; }
.partner__perk span {
  display: grid; place-items: center; width: 26px; height: 26px; flex-shrink: 0;
  border-radius: 50%; background: linear-gradient(135deg, #e7fbf3, #c9f4e6); color: #0a9c84; font-weight: 700; font-size: 0.85rem;
}
.partner__steps {
  background: var(--grad-dark); color: #fff; border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 42px); box-shadow: var(--sh-lg); position: relative; overflow: hidden;
}
.partner__steps::before {
  content: ""; position: absolute; right: -60px; top: -60px; width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.35), transparent 70%);
}
.partner__steps-title { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 22px; position: relative; }
.steps { display: grid; gap: 6px; position: relative; }
.step { display: flex; gap: 16px; padding: 14px 0; position: relative; }
.step:not(:last-child)::after { content: ""; position: absolute; left: 17px; top: 46px; bottom: -6px; width: 2px; background: linear-gradient(rgba(255, 179, 107, 0.6), rgba(255, 255, 255, 0.08)); }
.step__no {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 700;
  background: var(--grad-brand); color: #fff; box-shadow: var(--sh-orange); z-index: 1;
}
.step strong { font-family: var(--font-display); font-size: 1.02rem; }
.step p { color: rgba(255, 255, 255, 0.72); font-size: 0.9rem; margin-top: 2px; }

/* ===================== MOLECULE / BRAND FINDER ================= */
.finder__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.finder__row {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 18px 22px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s;
}
.finder__row:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: #a7e8e0; }
.finder__mol { min-width: 0; }
.finder__mol-name { display: block; font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; color: var(--ink); }
.finder__mol-sub { display: block; color: var(--muted); font-size: 0.84rem; margin-top: 2px; }
.finder__brands { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; flex-shrink: 0; }
.finder__brand {
  font-family: var(--font-display); font-weight: 600; font-size: 0.84rem; white-space: nowrap;
  color: var(--orange-deep); background: #e9fbf8; border: 1px solid #a7e8e0;
  padding: 8px 14px; border-radius: var(--r-pill);
  transition: all 0.3s var(--ease);
}
.finder__brand::after { content: " \2192"; opacity: 0.6; }
.finder__brand:hover { background: var(--grad-brand); color: #fff; border-color: transparent; transform: translateY(-2px); box-shadow: var(--sh-orange); }

/* ============================== FAQ ============================= */
.faq__inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(30px, 5vw, 64px); align-items: start; }
.faq__head { position: sticky; top: calc(var(--header-h) + 20px); }
.faq__list { display: grid; gap: 14px; }
.faq__item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 4px 22px; transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.faq__item[open] { border-color: #a7e8e0; box-shadow: var(--sh-md); }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 18px 0;
  font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.3rem; font-weight: 400;
  background: var(--bg-soft); color: var(--orange-deep); transition: transform 0.35s var(--ease), background 0.35s;
}
.faq__item[open] summary::after { transform: rotate(45deg); background: var(--grad-brand); color: #fff; }
.faq__body { overflow: hidden; }
.faq__body p { padding-bottom: 20px; color: var(--muted); font-size: 0.95rem; }
.faq__item[open] .faq__body { animation: revealDown 0.4s var(--ease); }

/* ============================ CONTACT =========================== */
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: start; }
.contact__list { display: grid; gap: 18px; margin-top: 30px; }
.contact__list li { display: flex; gap: 16px; align-items: flex-start; }
.contact__ico {
  display: grid; place-items: center; width: 48px; height: 48px; flex-shrink: 0; border-radius: 14px;
  background: linear-gradient(135deg, #e9fbf8, #c8f2ec); color: var(--orange-deep); box-shadow: var(--sh-sm);
}
.contact__list small { display: block; color: var(--muted-light); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; }
.contact__list a, .contact__list address, .contact__list span { font-weight: 600; color: var(--ink); font-size: 1rem; }
.contact__list a:hover { color: var(--orange-deep); }
.contact__list address { font-weight: 500; color: var(--ink-soft); line-height: 1.5; }

.contact__form { border-radius: var(--r-xl); padding: clamp(26px, 4vw, 40px); background: #fff; border: 1px solid var(--line); box-shadow: var(--sh-lg); }
.contact__form-title { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 20px; }
.field { margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label { display: block; font-size: 0.84rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: var(--r-md);
  background: var(--bg-soft); color: var(--ink); transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--orange); background: #fff; box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.1);
}
.field input.invalid, .field textarea.invalid { border-color: var(--rose); box-shadow: 0 0 0 4px rgba(240, 86, 122, 0.1); }
.field textarea { resize: vertical; }
.contact__form-note { margin-top: 14px; font-size: 0.8rem; color: var(--muted-light); text-align: center; }

/* ============================= FOOTER =========================== */
.footer { background: var(--grad-dark); color: rgba(255, 255, 255, 0.78); padding-top: clamp(54px, 7vw, 86px); }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
.footer__logo { height: 50px; width: auto; background: #fff; padding: 8px 12px; border-radius: 12px; margin-bottom: 18px; }
.footer__brand p { font-size: 0.92rem; line-height: 1.6; max-width: 38ch; }
.footer__wa {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 18px;
  background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 10px 18px; border-radius: var(--r-pill); font-weight: 600; color: #fff;
  transition: background 0.3s, transform 0.3s;
}
.footer__wa:hover { background: #1faf54; border-color: #1faf54; transform: translateY(-2px); }
.footer__col h4 { font-family: var(--font-display); color: #fff; font-size: 1.02rem; margin-bottom: 16px; }
.footer__col a, .footer__col address { display: block; color: rgba(255, 255, 255, 0.72); font-size: 0.92rem; margin-bottom: 11px; transition: color 0.25s, padding-left 0.25s; }
.footer__col a:hover { color: #5eead4; padding-left: 4px; }
.footer__bottom { padding: 22px 0 30px; display: grid; gap: 12px; }
.footer__bottom p { font-size: 0.84rem; }
.footer__disclaimer { color: rgba(255, 255, 255, 0.5); font-size: 0.78rem; line-height: 1.55; }

/* ====================== FLOATING ACTIONS ======================= */
.fab {
  position: fixed; right: 22px; z-index: 900;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center; color: #fff;
  box-shadow: var(--sh-lg); transition: transform 0.35s var(--ease), opacity 0.35s, visibility 0.35s;
}
.fab--wa { bottom: 22px; background: linear-gradient(135deg, #25d366, #1faf54); animation: pulseWa 2.6s ease-in-out infinite; }
.fab--wa:hover { transform: scale(1.1) translateY(-2px); }
.fab--top { bottom: 88px; background: var(--grad-blue); }
.fab--top:hover { transform: translateY(-4px); }
.fab--top[hidden] { opacity: 0; visibility: hidden; pointer-events: none; display: grid; }

/* ============================= MODAL ============================ */
.modal {
  position: fixed; inset: 0; z-index: 1500;
  display: grid; place-items: center; padding: 20px;
  opacity: 0; visibility: hidden; transition: opacity 0.35s, visibility 0.35s;
}
.modal.is-open { opacity: 1; visibility: visible; }
.modal__overlay { position: absolute; inset: 0; background: rgba(8, 18, 45, 0.6); backdrop-filter: blur(6px); }
.modal__dialog {
  position: relative; z-index: 1; width: min(880px, 100%); max-height: 90vh; overflow: auto;
  background: #fff; border-radius: var(--r-xl); box-shadow: var(--sh-lg);
  transform: translateY(30px) scale(0.96); opacity: 0; transition: transform 0.4s var(--ease), opacity 0.4s;
}
.modal.is-open .modal__dialog { transform: none; opacity: 1; }
.modal__close {
  position: absolute; top: 16px; right: 16px; z-index: 3;
  width: 40px; height: 40px; border-radius: 50%; font-size: 1.6rem; line-height: 1;
  background: rgba(255, 255, 255, 0.9); color: var(--ink); box-shadow: var(--sh-sm);
  transition: transform 0.3s, background 0.3s, color 0.3s;
}
.modal__close:hover { background: var(--orange); color: #fff; transform: rotate(90deg); }
.modal__content { display: grid; grid-template-columns: 0.9fr 1.1fr; }
.modal__media { background: linear-gradient(160deg, #f4f8ff, #e9f0ff); display: grid; place-items: center; padding: 30px; }
.modal__media img { width: 100%; max-height: 360px; object-fit: contain; filter: drop-shadow(0 20px 30px rgba(14, 42, 107, 0.18)); }
.modal__info { padding: clamp(26px, 4vw, 40px); }
.modal__badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.modal__title { font-family: var(--font-display); font-size: 1.7rem; line-height: 1.15; }
.modal__comp { margin-top: 8px; font-weight: 600; color: var(--orange-deep); }
.modal__desc { margin-top: 14px; color: var(--muted); }
.modal__sub { font-family: var(--font-display); font-weight: 600; font-size: 0.92rem; margin: 22px 0 10px; color: var(--ink); text-transform: uppercase; letter-spacing: 0.05em; }
.modal__uses { display: grid; gap: 9px; }
.modal__uses li { display: flex; gap: 10px; align-items: flex-start; color: var(--ink-soft); font-size: 0.94rem; }
.modal__uses li::before { content: ""; flex-shrink: 0; width: 8px; height: 8px; margin-top: 7px; border-radius: 50%; background: var(--grad-brand); }
.modal__meta { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }
.modal__meta div small { display: block; color: var(--muted-light); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.05em; }
.modal__meta div strong { font-family: var(--font-display); color: var(--ink); }
.modal__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }

/* ============================= TOAST =========================== */
.toast {
  position: fixed; left: 50%; bottom: 30px; transform: translate(-50%, 30px);
  background: var(--navy); color: #fff; padding: 14px 22px; border-radius: var(--r-pill);
  box-shadow: var(--sh-lg); z-index: 2000; font-weight: 500; font-size: 0.92rem;
  display: flex; align-items: center; gap: 10px;
  opacity: 0; visibility: hidden; transition: opacity 0.35s, transform 0.35s, visibility 0.35s;
  max-width: calc(100vw - 40px);
}
.toast.is-show { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.toast::before { content: "✓"; display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: #1faf54; font-size: 0.8rem; flex-shrink: 0; }

/* ==================== EMBEDDED FORMS (ProNxt) ================== */
/* Wrappers are plain containers. Each form's own .vtnv-panel is the single
   card, themed to match the site via shadow-DOM CSS in main.js. */
.pronxt-embed { width: 100%; min-height: 130px; }
.pronxt-embed iframe { width: 100% !important; border: 0; }
.partner__apply { margin-top: clamp(36px, 5vw, 60px); }

/* Newsletter band */
.updates { padding: clamp(46px, 6vw, 80px) 0; background: linear-gradient(120deg, #ffffff, #eaf1ff); border-top: 1px solid var(--line); }
.updates__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(26px, 4vw, 56px); align-items: center; }
.updates__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.5rem, 3vw, 2.2rem); color: var(--ink); margin-top: 12px; line-height: 1.12; letter-spacing: -0.02em; }
.updates__text p { color: var(--muted); margin-top: 12px; max-width: 46ch; }
@media (max-width: 860px) {
  .updates__inner { grid-template-columns: 1fr; }
}

/* ===== AUTHORISED DISTRIBUTION (Glenmark) — START =============== */
/* Delete this block (and the matching HTML section) to remove the strip. */
.partners { background: linear-gradient(180deg, #ffffff 0%, #eaf6f3 100%); }
.partners__inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
.partners__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.6rem, 3vw, 2.3rem); line-height: 1.14; letter-spacing: -0.02em; color: var(--ink); margin-top: 14px; }
.partners__text p { color: var(--muted); margin-top: 14px; max-width: 50ch; }
.partners__logos { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; }
.partners__logo {
  display: grid; place-items: center; min-width: 230px; min-height: 150px; padding: 22px 38px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--sh-md);
  font-family: var(--font-display); font-weight: 800; font-size: 1.9rem; letter-spacing: 0.01em; color: var(--ink);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.partners__logo:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.partners__logo img { max-width: 210px; max-height: 132px; object-fit: contain; display: block; }
@media (max-width: 860px) {
  .partners__inner { grid-template-columns: 1fr; text-align: center; }
  .partners__text p { margin-inline: auto; }
}
/* ===== AUTHORISED DISTRIBUTION (Glenmark) — END ================= */

/* =========================== KEYFRAMES ========================= */
@keyframes pulseDot { 0%, 100% { box-shadow: 0 0 0 0 rgba(20, 184, 166, 0.4); } 50% { box-shadow: 0 0 0 6px rgba(20, 184, 166, 0); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes blobMove { 0%, 100% { transform: translate(0, 0) scale(1); } 33% { transform: translate(30px, -24px) scale(1.08); } 66% { transform: translate(-22px, 18px) scale(0.95); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes orbit { from { transform: rotate(0) translateX(8px) rotate(0); } to { transform: rotate(360deg) translateX(8px) rotate(-360deg); } }
@keyframes dash { to { stroke-dashoffset: -240; } }
@keyframes load { 0% { transform: translateX(-120%); } 100% { transform: translateX(360%); } }
@keyframes pop { from { transform: scale(0.8); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@keyframes scrollWheel { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translate(-50%, 12px); } 100% { opacity: 0; } }
@keyframes pulseHalo { 0%, 100% { transform: scale(1); opacity: 0.85; } 50% { transform: scale(1.08); opacity: 1; } }
@keyframes pulseWa { 0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5), var(--sh-lg); } 50% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0), var(--sh-lg); } }
@keyframes revealDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
@keyframes pulseDot { 0%, 100% { box-shadow: 0 0 0 0 rgba(20, 184, 166, 0.45); } 50% { box-shadow: 0 0 0 7px rgba(20, 184, 166, 0); } }

/* =========================== RESPONSIVE ======================== */
@media (max-width: 1080px) {
  .why__grid, .quality__steps { grid-template-columns: repeat(2, 1fr); }
  .products__grid { grid-template-columns: repeat(3, 1fr); }
  .cat__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  :root { --header-h: 72px; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(330px, 84vw);
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 6px;
    background: #fff; padding: calc(var(--header-h) + 24px) 24px 30px;
    box-shadow: -20px 0 60px rgba(14, 42, 107, 0.16);
    transform: translateX(100%); transition: transform 0.4s var(--ease);
    overflow-y: auto;
  }
  .nav.is-open { transform: translateX(0); }
  .nav__link { padding: 14px 16px; border-radius: 12px; font-size: 1.02rem; }
  .nav__link::after { display: none; }
  .nav__link:hover, .nav__link.is-active { background: var(--bg-soft); }
  .nav__link--cta { margin: 8px 0 0; text-align: center; }
  .nav-toggle { display: flex; }

  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__lead { margin-inline: auto; }
  .hero__actions, .hero__trust { justify-content: center; }
  .hero__scrim { background: linear-gradient(180deg, rgba(6, 44, 70, 0.9) 0%, rgba(6, 44, 70, 0.82) 55%, rgba(6, 44, 70, 0.78) 100%); }

  .about__inner, .spotlight__inner, .partner__inner, .faq__inner, .contact__inner { grid-template-columns: 1fr; }
  .about__media { max-width: 460px; margin-inline: auto; }
  .spotlight__media { order: -1; }
  .faq__head { position: static; text-align: center; }
  .faq__head .section__lead { margin-inline: auto; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  /* stats card flows below the hero (no fragile -50% straddle on tall 2x2) */
  .impact { height: auto; background: transparent; padding: 0; }
  .impact .container { transform: none; margin-top: -34px; position: relative; z-index: 3; }
  .impact__grid { grid-template-columns: 1fr 1fr; }
  .impact__item:nth-child(2)::before { display: none; }
  .impact__item:nth-child(1), .impact__item:nth-child(2) { border-bottom: 1px solid var(--line-soft); }
  .why__grid, .quality__steps, .cat__grid, .products__grid, .finder__grid, .about__pillars, .partner__perks { grid-template-columns: 1fr; }
  .finder__row { flex-direction: column; align-items: flex-start; gap: 12px; }
  .finder__brands { justify-content: flex-start; }
  .products__tools { flex-direction: column; align-items: stretch; }
  /* reset row flex-basis so it isn't read as height in the column layout */
  .search { flex: 0 0 auto; width: 100%; max-width: none; }
  .filters { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 6px; -webkit-overflow-scrolling: touch; }
  .filter { flex-shrink: 0; }
  .modal__content { grid-template-columns: 1fr; }
  .modal__media { max-height: 280px; }
  .field-row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .hero__chip { padding: 9px 12px; }
  .hero__chip small { display: none; }
}

@media (max-width: 420px) {
  .hero__chip--b { display: none; }
}

/* ===================== REDUCED MOTION ========================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .float, .blob, .hero__pulse polyline, .orbit-ring, .orbit-dot { animation: none !important; }
  .hero__video { display: none !important; }
}
