/* ============================================================
   TELEHEALTH — Premium Clinical Wellness Design System
   Inspired by LifeMD & WeightWatchers
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap');

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  /* Primary — LifeMD/WW-matched clinical palette */
  --navy:           #000229;  /* LifeMD blue-900: near-black navy */
  --navy-mid:       #0e1a3d;
  --navy-soft:      #1D3557;
  --teal:           #0d835a;  /* LifeMD green CTA */
  --teal-dark:      #0e5e42;  /* LifeMD deep green */
  --teal-light:     #75d8b5;  /* LifeMD light green gradient */
  --teal-pale:      #e6f7f0;
  --green:          #0d835a;
  --green-dark:     #0e5e42;
  --coral:          #bc3737;
  --gold:           #FFB703;
  --gold-dark:      #FB8500;

  /* Neutrals — warm tones matching WW/LifeMD */
  --white:          #FFFFFF;
  --off-white:      #fef9f0;  /* WW warm-white (page bg) */
  --gray-50:        #f5f5f6;  /* LifeMD body bg */
  --gray-100:       #ebebee;  /* LifeMD borders */
  --gray-200:       #d4d4db;  /* LifeMD dividers */
  --gray-300:       #b0b0bb;
  --gray-400:       #8a8a99;
  --gray-500:       #6f707f;  /* LifeMD gray-800 text */
  --gray-600:       #4a4a5a;
  --gray-700:       #2D3748;
  --gray-800:       #1a1a2e;
  --gray-900:       #0D1117;

  /* Typography — LifeMD uses Manrope (variable, smooth, rounded) */
  --font-display: 'Manrope', system-ui, sans-serif;
  --font-body:    'Manrope', system-ui, sans-serif;

  /* Spacing scale */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* Border radius — LifeMD uses 24px sections, WW uses 30px */
  --r-sm:   4px;
  --r-md:   8px;
  --r-lg:   12px;
  --r-xl:   16px;
  --r-2xl:  24px;  /* LifeMD section radius */
  --r-3xl:  30px;  /* WW section radius */
  --r-full: 9999px;  /* Pill buttons (both sites use 100px/9999px) */

  /* Shadows — LifeMD-matched subtle depth */
  --shadow-xs:  0 1px 2px rgba(0,2,41,0.04);
  --shadow-sm:  0 2px 6px rgba(0,2,41,0.04), 0 1px 3px rgba(0,2,41,0.03);
  --shadow-md:  rgba(0,2,41,0.04) 0px 10px 24px 0px;  /* LifeMD nav shadow */
  --shadow-lg:  0 8px 24px rgba(0,2,41,0.08), 0 3px 10px rgba(0,2,41,0.04);
  --shadow-xl:  0 16px 48px rgba(0,2,41,0.12), 0 6px 20px rgba(0,2,41,0.06);
  --shadow-2xl: 0px 7px 110px rgba(0,2,41,0.14);  /* LifeMD mega-menu */
  --shadow-teal: 0 8px 32px rgba(13,131,90,0.25);
  --shadow-navy: 0 8px 32px rgba(0,2,41,0.30);

  /* Transitions — LifeMD uses 0.3-0.4s ease */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast:  150ms var(--ease-in-out);
  --t-base:  300ms var(--ease-out);
  --t-slow:  400ms ease-out;

  /* Layout — LifeMD: 1328px, WW: 1280px */
  --max-w: 1280px;
  --max-w-prose: 680px;
  --nav-h: 80px;
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--gray-50);  /* LifeMD warm gray page bg */
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video {
  max-width: 100%; height: auto; display: block;
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none; /* disables right-click save on images */
}
/* Re-enable pointer events on clickable images */
a img, button img { pointer-events: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── Typography — matches LifeMD 600 semibold, tight leading ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.1;  /* LifeMD: 110% */
  color: var(--navy);
  font-weight: 600;  /* LifeMD uses semibold, not bold */
  letter-spacing: -1px;  /* LifeMD: -1px on h1/h2 */
}
h1 { font-size: clamp(2.8rem, 5vw, 4.2rem); font-weight: 700; letter-spacing: -2px; }
h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); letter-spacing: -0.5px; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1rem; letter-spacing: 0; }
p  { color: var(--gray-500); line-height: 1.6; font-size: 1.125rem; /* LifeMD: 18px body */ }

/* ── Layout Primitives ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-8);
}
@media (max-width: 640px) { .container { padding: 0 var(--sp-5); } }

.section       { padding: 5rem 0; }  /* LifeMD: ~82px */
.section--lg   { padding: clamp(4rem, 8vw, 6rem) 0; }
.section--sm   { padding: var(--sp-16) 0; }
.section--gray { background: var(--white); border-radius: var(--r-2xl); margin: var(--sp-4); box-shadow: var(--shadow-xs); }
.section--navy { background: var(--navy); border-radius: var(--r-2xl); margin: var(--sp-4); color: white; }
.section--teal { background: var(--teal); border-radius: var(--r-2xl); margin: var(--sp-4); }

/* ── Image + Text Two-Column Grid ──────────────────────────── */
.img-text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: stretch;
}
.img-text-grid .img-col {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  min-height: 400px;
}
.img-text-grid .img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.img-text-grid .text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px) {
  .img-text-grid { grid-template-columns: 1fr; }
  .img-text-grid .img-col { min-height: 280px; }
}

/* ── Section Header ────────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--sp-16);
}
.section-header .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: var(--sp-4);
}
.section-header .eyebrow::before,
.section-header .eyebrow::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-200);
  width: 24px;
}
.section-header h2 { margin-bottom: var(--sp-4); }
.section-header p  { font-size: 1.05rem; }

/* ══ Buttons — Premium pill shape with depth & micro-interactions ══ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  padding: 1rem 2.25rem;
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.25s ease, box-shadow 0.3s ease, opacity 0.2s ease;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.btn:active { transform: scale(0.97); }

/* ── Primary — gradient green with glow ────────────────── */
.btn--primary {
  background: linear-gradient(135deg, #0d835a 0%, #5ba983 50%, #75d8b5 100%);
  background-size: 200% 200%;
  background-position: 0% 50%;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(13,131,90,0.25), 0 1px 3px rgba(13,131,90,0.15);
}
.btn--primary:hover {
  background-position: 100% 50%;
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(13,131,90,0.35), 0 2px 8px rgba(13,131,90,0.2);
}
.btn--primary::before { background: linear-gradient(135deg, #0a6e4a, #4dbd8e); }
.btn--primary:hover::before { opacity: 0.15; }

/* ── Navy — deep with soft glow ────────────────────────── */
.btn--navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(0,2,41,0.2), 0 1px 3px rgba(0,2,41,0.1);
}
.btn--navy:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,2,41,0.35), 0 2px 8px rgba(0,2,41,0.15);
  background: var(--navy-mid);
}

/* ── White — solid with subtle border ──────────────────── */
.btn--white {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.04);
}
.btn--white:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1), 0 0 0 1px rgba(0,0,0,0.04);
}

/* ── Outline — thin border, fills on hover ─────────────── */
.btn--outline {
  background: transparent;
  color: var(--navy);
  box-shadow: inset 0 0 0 1.5px var(--gray-200);
}
.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
  box-shadow: inset 0 0 0 1.5px var(--navy), 0 4px 16px rgba(0,2,41,0.2);
  transform: translateY(-3px);
}

/* ── Outline white — for dark backgrounds ──────────────── */
.btn--outline-white {
  background: transparent;
  color: var(--white);
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.35);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.7);
  transform: translateY(-2px);
}

/* ── Ghost — minimal, text-only feel ───────────────────── */
.btn--ghost {
  background: transparent;
  color: var(--gray-600);
  padding-left: var(--sp-4);
  padding-right: var(--sp-4);
}
.btn--ghost:hover { background: var(--gray-50); color: var(--navy); }

/* ── Green — vibrant accent ────────────────────────────── */
.btn--green {
  background: linear-gradient(135deg, #06D6A0 0%, #04A576 100%);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(6,214,160,0.3);
}
.btn--green:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(6,214,160,0.4);
}

/* ── Sizes ─────────────────────────────────────────────── */
.btn--xl  { padding: 1.125rem 2.75rem; font-size: 1.1rem; height: 56px; font-weight: 600; }
.btn--lg  { padding: 0.95rem 2.25rem; font-size: 1rem; }
.btn--sm  { padding: 0.55rem 1.4rem; font-size: 0.875rem; }
.btn--xs  { padding: 0.4rem 1rem; font-size: 0.78rem; }
.btn--full { width: 100%; }
.btn svg  { width: 16px; height: 16px; flex-shrink: 0; transition: transform 0.2s ease; }
.btn:hover svg { transform: translateX(3px); }

/* ══════════════════════════════════════════════════════════
   NAVIGATION — LifeMD-exact: fixed, white, rounded bottom,
   logo left, links + login pill + hamburger right
══════════════════════════════════════════════════════════ */

.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 10001;  /* LifeMD: 10001 */
  height: var(--nav-h);
  padding: 12px 0;  /* LifeMD: 12px top/bottom */
  background: var(--white);
  border-bottom-left-radius: var(--r-2xl);  /* LifeMD: 24px */
  border-bottom-right-radius: var(--r-2xl);
  box-shadow: rgba(0,2,41,0.04) 0px 10px 24px 0px;  /* LifeMD exact */
  transition: box-shadow 0.3s ease;
}
.site-nav.scrolled {
  box-shadow: rgba(0,2,41,0.08) 0px 10px 30px 0px;
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ── Logo ─────────────────────────────────────────────── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-mark {
  width: 34px; height: 34px;
  background: var(--navy);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-mark svg { color: var(--teal-light); width: 18px; height: 18px; }
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.5px;
}
.nav-logo-text span { color: var(--teal); }
.nav-logo img { height: 31px; width: 130px; object-fit: contain; }  /* LifeMD: 130x31 */

/* ── Nav links ────────────────────────────────────────── */
.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  list-style: none;
}
.nav-link {
  display: block;
  padding: 0.5rem var(--sp-4);
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active {
  color: var(--teal);
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-xl);
  padding: var(--sp-2);
  padding-top: calc(var(--sp-2) + 10px);
  margin-top: -10px;
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 0.6rem var(--sp-4);
  font-size: 0.9rem;
  border-radius: var(--r-lg);
  color: var(--gray-600);
  text-decoration: none;
  transition: all 0.2s ease;
}
.nav-dropdown-menu a:hover { background: var(--gray-50); color: var(--teal); }

/* ── Nav actions (right side) ─────────────────────────── */
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-shrink: 0;
}
.nav-cart-btn {
  position: relative;
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-full);
  color: var(--navy);
  text-decoration: none;
  transition: all 0.2s ease;
}
.nav-cart-btn:hover { background: var(--gray-50); }
.nav-cart-badge {
  position: absolute;
  top: 2px; right: 2px;
  width: 16px; height: 16px;
  background: var(--teal);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-login-btn {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}
.nav-login-btn:hover { color: var(--teal); }

/* ── Hamburger (LifeMD: 54px circle, 3 bars) ─────────── */
.nav-hamburger {
  display: none;  /* shown below 1024px */
  width: 54px; height: 54px;  /* LifeMD: 54px */
  border: 1px solid var(--gray-100);  /* LifeMD: #ebebee */
  border-radius: 100px;  /* LifeMD: 100px */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;  /* LifeMD: 6px */
  cursor: pointer;
  background: transparent;
  transition: all 0.3s ease;
}
.nav-hamburger:hover {
  border-color: var(--gray-200);
  background: var(--gray-50);
}
.nav-hamburger span {
  display: block;
  width: 18px; height: 1px;  /* LifeMD: 18px wide, 1px tall */
  background: var(--navy);
  transition: all 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile menu (slide-in panel) ─────────────────────── */
.mobile-menu {
  position: fixed;
  top: calc(var(--nav-h) + 12px);
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 24px);  /* LifeMD: calc(100% - 24px) */
  max-width: 1280px;
  background: var(--gray-50);  /* LifeMD: #f5f5f6 */
  border-radius: var(--r-2xl);  /* LifeMD: 24px */
  padding: var(--sp-8);
  box-shadow: 0px 7px 110px rgba(0,2,41,0.14);  /* LifeMD mega-menu shadow */
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease-out, top 0.4s ease-out;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
  top: calc(var(--nav-h) + 4px);  /* slides up slightly */
}
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.mobile-menu-link {
  display: block;
  padding: var(--sp-4) var(--sp-5);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  border-radius: var(--r-lg);
  transition: background 0.2s ease;
}
.mobile-menu-link:hover { background: var(--white); }
.mobile-menu-link--sub {
  padding-left: var(--sp-10);
  font-size: 1rem;
  color: var(--gray-500);
}
.mobile-menu-cta {
  display: block;
  padding: var(--sp-4) var(--sp-5);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  border-radius: var(--r-lg);
}
.mobile-menu-cta:hover { background: var(--white); }

/* ── Responsive: show hamburger, hide links ───────────── */
@media (max-width: 1024px) {
  .nav-menu { display: none; }
  .nav-hamburger { display: flex; }
}
@media (max-width: 640px) {
  .nav-login-wrap { display: none; }  /* hide login pill on very small */
  .nav-hamburger { width: 44px; height: 44px; }
}

/* ══════════════════════════════════════════════════════════
   HERO — Minimal premium split layout
   White/warm left content · Right full-bleed image
   Inspired by WeightWatchers / LifeMD clean aesthetic
══════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: min(100vh, 820px);
  margin-top: calc(var(--nav-h) + var(--sp-4));
  margin-left: var(--sp-4);
  margin-right: var(--sp-4);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: var(--r-2xl);
}

/* ── Hero background image ─────────────────────────────── */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(0, 2, 41, 0.82) 0%,
    rgba(0, 2, 41, 0.55) 45%,
    rgba(0, 2, 41, 0.08) 75%,
    transparent 100%
  );
}

/* ── Hero content ─────────────────────────────────────── */
.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-content {
  max-width: 560px;
  padding: 5rem 0;
}

/* Eyebrow label */
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: var(--sp-6);
}
.hero-label-dot {
  width: 6px; height: 6px;
  background: var(--teal-light);
  border-radius: 50%;
  animation: pulse-dot 2.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.4; }
}

/* Headline */
.hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--white);
  margin-bottom: var(--sp-6);
}
.hero h1 em {
  font-style: italic;
  color: var(--teal-light);
  font-weight: 600;
}

/* Sub */
.hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  margin-bottom: var(--sp-10);
  max-width: 460px;
}

/* CTA row */
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-bottom: var(--sp-12);
}

/* White button variant for hero */
.btn--white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn--white:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.2);
}

/* Social proof */
.hero-proof {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  padding-top: var(--sp-8);
  border-top: 1px solid rgba(255,255,255,0.15);
  flex-wrap: wrap;
}
.hero-proof-block {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.hero-proof-avatars {
  display: flex;
}
.hero-proof-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid rgba(0,2,41,0.6);
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 800;
  color: white;
  margin-left: -7px;
  flex-shrink: 0;
}
.hero-proof-avatars :first-child { margin-left: 0; }
.hero-proof-text { line-height: 1.35; }
.hero-proof-text strong { display: block; font-size: 0.875rem; font-weight: 700; color: var(--white); }
.hero-proof-text span   { font-size: 0.75rem; color: rgba(255,255,255,0.55); }

.hero-proof-divider { width: 1px; height: 28px; background: rgba(255,255,255,0.2); }

.hero-proof-rating { display: flex; align-items: center; gap: var(--sp-2); }
.hero-proof-stars  { display: flex; gap: 1px; }
.hero-proof-stars svg { width: 13px; height: 13px; fill: #FBBF24; color: #FBBF24; }
.hero-proof-rating-text strong { display: block; font-size: 0.875rem; font-weight: 700; color: var(--white); }
.hero-proof-rating-text span   { font-size: 0.75rem; color: rgba(255,255,255,0.55); }

/* ── Floating cards container ──────────────────────────── */
.hero-float-cards {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}
.hero-stat-card {
  position: absolute;
  bottom: var(--sp-8);
  right: var(--sp-8);
  pointer-events: all;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-radius: var(--r-2xl);
  padding: var(--sp-5) var(--sp-6);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  animation: floatUp 0.7s 0.4s both var(--ease-out);
}
@keyframes floatUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-stat-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, #0d835a, #75d8b5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.hero-stat-icon svg { width: 20px; height: 20px; }
.hero-stat-card strong { display: block; font-size: 0.9rem; font-weight: 700; color: var(--navy); }
.hero-stat-card span  { font-size: 0.72rem; color: var(--gray-500); margin-top: 2px; display: block; }

.hero-badge-card {
  position: absolute;
  top: var(--sp-8);
  right: var(--sp-8);
  pointer-events: all;
  background: var(--navy);
  border-radius: var(--r-full);
  padding: var(--sp-3) var(--sp-5);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  animation: floatUp 0.7s 0.6s both var(--ease-out);
}
.hero-badge-card svg { width: 16px; height: 16px; color: var(--teal-light); flex-shrink: 0; }
.hero-badge-card span {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
}

/* ── Mobile hero ───────────────────────────────────────── */
@media (max-width: 900px) {
  .hero {
    min-height: 600px;
    margin-top: calc(var(--nav-h) + var(--sp-3));
    margin-left: var(--sp-3);
    margin-right: var(--sp-3);
  }
  .hero-content { padding: 3rem 0; }
  .hero-stat-card { bottom: var(--sp-4); right: var(--sp-4); padding: var(--sp-4); }
  .hero-badge-card { top: var(--sp-4); right: var(--sp-4); }
}
@media (max-width: 540px) {
  .hero { min-height: 520px; margin-left: var(--sp-2); margin-right: var(--sp-2); border-radius: var(--r-xl); }
  .hero h1 { font-size: 2.4rem; letter-spacing: -1px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-stat-card { display: none; }
  .hero-badge-card { display: none; }
}

/* ── Trust Bar ─────────────────────────────────────────────── */
.trust-bar {
  background: var(--gray-50);
  border: none;
  padding: var(--sp-5) 0;
  margin-top: 20px;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-6);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-500);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.trust-item svg { width: 15px; height: 15px; color: var(--teal-dark); flex-shrink: 0; }
.trust-divider { width: 1px; height: 16px; background: var(--gray-200); }

/* ── Stat Strip ────────────────────────────────────────────── */
.stat-strip {
  background: var(--navy);
  padding: var(--sp-12) 0;
}
.stat-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-8);
  text-align: center;
}
.stat-strip-item {}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--teal);
  display: block;
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}
@media (max-width: 768px) {
  .stat-strip-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-8) var(--sp-6); }
}

/* ══ How It Works — Premium card layout ════════════════════ */
.hiw-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
}
.hiw-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-2xl);
  padding: var(--sp-8) var(--sp-6) var(--sp-8);
  transition: all 0.3s ease;
  overflow: hidden;
}
.hiw-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--teal);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.hiw-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-200);
}
.hiw-card:hover::before { opacity: 1; }

.hiw-card-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
  box-shadow: var(--shadow-sm);
}
.hiw-card-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gray-100);
  line-height: 1;
  margin-bottom: var(--sp-3);
  letter-spacing: -2px;
}
.hiw-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--sp-3);
  letter-spacing: -0.3px;
}
.hiw-card-desc {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
}

@media (max-width: 1024px) { .hiw-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .hiw-grid { grid-template-columns: 1fr; } }

/* ── Cards ─────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--r-2xl);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--t-base);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--gray-200);
}

/* ── Product Cards ─────────────────────────────────────────── */
.product-card {
  background: var(--white);
  border-radius: var(--r-2xl);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  transition: all var(--t-base);
  display: flex;
  flex-direction: column;
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--teal-light);
}
.product-card-img {
  height: 260px;
  overflow: hidden;
  position: relative;
}
.product-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.product-card:hover .product-card-img img { transform: scale(1.04); }
.product-badge {
  position: absolute;
  top: var(--sp-4); left: var(--sp-4);
  background: var(--navy);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--r-full);
}
.product-badge--rx    { background: var(--gold-dark); color: var(--white); }
.product-badge--sale  { background: var(--coral); color: var(--white); }
.product-badge--pop   { background: var(--teal-dark); color: var(--white); }

.product-card-body {
  padding: var(--sp-6) var(--sp-8);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card-cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: var(--sp-3);
}
.product-card h3 {
  font-size: 1.1rem;
  margin-bottom: var(--sp-3);
  color: var(--navy);
  flex: 1;
}
.product-card p {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: var(--sp-5);
  line-height: 1.65;
}
.product-price {
  display: flex;
  align-items: baseline;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}
.product-price-now {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
}
.product-price-was {
  font-size: 0.9rem;
  color: var(--gray-400);
  text-decoration: line-through;
}

/* ── Products Grid ─────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
}
.product-card-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--sp-2);
  line-height: 1.4;
}
.product-card-desc {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.65;
  flex: 1;
  margin-bottom: var(--sp-5);
}
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  margin-top: auto;
  padding-top: var(--sp-5);
  border-top: 1px solid var(--gray-100);
}
.product-card-price {
  display: flex;
  align-items: baseline;
  gap: var(--sp-2);
}
.price-sale {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.price-orig {
  font-size: 0.85rem;
  color: var(--gray-400);
  text-decoration: line-through;
}
.product-card-price span:only-child {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
@media (max-width: 1024px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .products-grid { grid-template-columns: 1fr; } }

/* ── Testimonials ──────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
}
@media (max-width: 768px) { .testimonials-grid { grid-template-columns: 1fr; } }

.testimonial-card {
  background: var(--white);
  border-radius: var(--r-2xl);
  padding: var(--sp-8) var(--sp-10);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: all var(--t-base);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--gray-200);
}
.testimonial-card::after {
  content: '\201C';
  position: absolute;
  top: var(--sp-5);
  right: var(--sp-8);
  font-family: Georgia, serif;
  font-size: 6rem;
  color: var(--navy);
  opacity: 0.05;
  line-height: 1;
  pointer-events: none;
}
.stars { display: flex; gap: 3px; }
.stars svg { width: 15px; height: 15px; fill: #FBBF24; color: #FBBF24; }

.testimonial-body { display: flex; flex-direction: column; gap: var(--sp-4); }

.testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--gray-700);
  font-style: italic;
  flex: 1;
  margin: 0;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
  padding-top: var(--sp-4);
  border-top: 1px solid var(--gray-100);
}
.testimonial-meta strong {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
}
.testimonial-result {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  background: rgba(13,131,90,0.08);
  border: 1px solid rgba(13,131,90,0.2);
  color: #0d835a;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.625rem;
  border-radius: var(--r-full);
  white-space: nowrap;
}

/* ── Testimonial with image ────────────────────────────────── */
.testimonial-img {
  width: 56px; height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gray-100);
  flex-shrink: 0;
}
.testimonial-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem; color: var(--white); flex-shrink: 0;
}
.testimonial-author-info strong { display: block; font-size: 0.875rem; font-weight: 700; color: var(--navy); }
.testimonial-author-info span   { font-size: 0.78rem; color: var(--gray-500); }

/* ── Blog Grid ─────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
}
@media (max-width: 1024px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .blog-grid { grid-template-columns: 1fr; } }

/* ── Blog Cards ────────────────────────────────────────────── */
.blog-card {
  background: var(--white);
  border-radius: var(--r-2xl);
  overflow: visible;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  cursor: pointer;
  clip-path: inset(0 0 0 0 round var(--r-2xl));
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--gray-200);
}
.blog-card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
  flex-shrink: 0;
  background: var(--gray-50);
}
.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.blog-card-img--placeholder {
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-50) 100%);
}
.blog-card:hover .blog-card-img { transform: scale(1.05); }
.blog-card-tag {
  position: absolute;
  top: var(--sp-4);
  left: var(--sp-4);
  background: var(--navy);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.625rem;
  border-radius: var(--r-full);
}
.blog-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 0.03em;
}
.blog-card-meta svg { flex-shrink: 0; }
.blog-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.45;
  margin: 0;
}
.blog-card-excerpt {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.7;
  flex: 1;
  margin: 0;
}
.read-more {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal-dark);
  margin-top: auto;
  padding-top: var(--sp-3);
  border-top: 1px solid var(--gray-100);
  transition: gap var(--t-fast);
  text-decoration: none;
}
.read-more:hover { gap: var(--sp-3); }
.read-more svg { width: 14px; height: 14px; }

/* ── Feature/Benefit Grid ──────────────────────────────────── */
.feature-card {
  padding: var(--sp-8);
  border-radius: var(--r-2xl);
  background: var(--white);
  border: 1px solid var(--gray-100);
  transition: all var(--t-base);
}
.feature-card:hover {
  border-color: var(--teal-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.feature-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-xl);
  background: rgba(0,180,216,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-dark);
  margin-bottom: var(--sp-5);
  transition: all var(--t-base);
}
.feature-card:hover .feature-icon {
  background: var(--navy);
  color: var(--teal);
  transform: scale(1.08);
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-card h3 { font-size: 1rem; margin-bottom: var(--sp-3); }
.feature-card p  { font-size: 0.875rem; }

/* ── CTA Section (service pages) ──────────────────────────── */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: var(--sp-24) 0;
}
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.92);
}
.cta-section .container {
  position: relative;
  z-index: 1;
}
.cta-content {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta-content h2 {
  color: var(--navy);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: var(--sp-4);
}
.cta-content p {
  color: var(--gray-600);
  font-size: 1.1rem;
  margin-bottom: var(--sp-8);
}
.cta-actions {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 480px) {
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 320px; }
}

/* ── CTA Banner ────────────────────────────────────────────── */
.cta-banner {
  background: var(--navy);
  border-radius: var(--r-3xl);
  padding: var(--sp-16) var(--sp-16);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-10);
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,180,216,0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; left: 30%;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(6,214,160,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-banner-content { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: var(--sp-4); font-size: clamp(1.6rem, 3vw, 2.4rem); }
.cta-banner p  { color: rgba(255,255,255,0.65); font-size: 1rem; margin-bottom: 0; max-width: 480px; }
.cta-banner-actions { display: flex; gap: var(--sp-4); flex-wrap: wrap; flex-shrink: 0; position: relative; z-index: 1; }
@media (max-width: 768px) {
  .cta-banner { flex-direction: column; text-align: center; padding: var(--sp-12) var(--sp-8); }
  .cta-banner-actions { justify-content: center; }
}

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-item {
  border: 1px solid var(--gray-100);
  border-radius: var(--r-xl);
  margin-bottom: var(--sp-3);
  overflow: hidden;
  transition: all var(--t-base);
}
.faq-item.open { border-color: var(--teal-light); box-shadow: var(--shadow-sm); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  padding: var(--sp-5) var(--sp-6);
  cursor: pointer;
  background: var(--white);
  transition: background var(--t-fast);
  user-select: none;
}
.faq-question:hover { background: var(--gray-50); }
.faq-item.open .faq-question { background: var(--off-white); }
.faq-question h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  font-family: var(--font-body);
}
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  flex-shrink: 0;
  transition: all var(--t-base);
}
.faq-item.open .faq-icon {
  background: var(--teal);
  color: var(--navy);
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding: 0 var(--sp-6) var(--sp-6);
  background: var(--off-white);
}
.faq-answer p, .faq-answer ul, .faq-answer li {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.75;
}
.faq-item.open .faq-answer { display: block; }

/* ── Page Hero ─────────────────────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + var(--sp-16)) 0 var(--sp-16);
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,180,216,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.page-hero .eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: var(--sp-4);
}
.page-hero h1 { color: var(--white); margin-bottom: var(--sp-5); }
.page-hero p  {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--sp-6);
  flex-wrap: wrap;
  justify-content: center;
}
.breadcrumb a { color: rgba(255,255,255,0.6); transition: color var(--t-fast); }
.breadcrumb a:hover { color: var(--teal-light); }
.breadcrumb-sep { color: rgba(255,255,255,0.3); }

/* ── Forms ─────────────────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-5);
}
.form-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.form-label .req { color: var(--coral); margin-left: 2px; }
.form-control {
  width: 100%;
  padding: 0.825rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-lg);
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  outline: none;
  transition: all var(--t-fast);
}
.form-control:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,180,216,0.12);
}
.form-control::placeholder { color: var(--gray-400); }
textarea.form-control { min-height: 130px; resize: vertical; }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238A9BAB' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.5rem;
}
.form-hint  { font-size: 0.75rem; color: var(--gray-400); }
.form-error { font-size: 0.75rem; color: var(--coral); }
.form-control.error { border-color: var(--coral); }

.checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  cursor: pointer;
}
.checkbox-wrap input[type="checkbox"] {
  width: 18px; height: 18px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--r-sm);
  appearance: none;
  background: var(--white);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 1px;
  transition: all var(--t-fast);
}
.checkbox-wrap input[type="checkbox"]:checked {
  background: var(--teal);
  border-color: var(--teal);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ── Quiz ──────────────────────────────────────────────────── */
.quiz-wrapper {
  min-height: calc(100vh - var(--nav-h));
  padding: calc(var(--nav-h) + var(--sp-16)) 0 var(--sp-24);
  background: var(--off-white);
}
.quiz-container { max-width: 640px; margin: 0 auto; }
.quiz-progress-wrap,
.quiz-progress-bar-wrap {
  background: var(--gray-100);
  border-radius: var(--r-full);
  height: 6px;
  margin-bottom: var(--sp-6);
  overflow: hidden;
}
.quiz-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--teal-dark) 0%, var(--teal) 100%);
  border-radius: var(--r-full);
  transition: width 0.55s var(--ease-out);
}
.quiz-step-label,
.quiz-step-info {
  margin-bottom: var(--sp-8);
}
.quiz-step-count {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--navy);
  padding: 0.3rem 0.875rem;
  border-radius: var(--r-full);
}
.quiz-card {
  background: var(--white);
  border-radius: var(--r-3xl);
  padding: var(--sp-12);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-100);
}
.quiz-card h2 { font-size: clamp(1.3rem, 3vw, 1.65rem); text-align: center; margin-bottom: var(--sp-3); }
.quiz-card .subtitle { text-align: center; color: var(--gray-500); font-size: 0.9rem; margin-bottom: var(--sp-8); }
.quiz-options { display: grid; gap: var(--sp-3); margin-bottom: var(--sp-8); }
.quiz-option {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  border: 2px solid var(--gray-100);
  border-radius: var(--r-xl);
  cursor: pointer;
  transition: all var(--t-fast);
  user-select: none;
  background: var(--white);
}
.quiz-option:hover   { border-color: var(--teal); background: rgba(0,180,216,0.03); }
.quiz-option.selected { border-color: var(--teal); background: rgba(0,180,216,0.06); }
.quiz-option-emoji   { font-size: 1.4rem; flex-shrink: 0; }
.quiz-option-text strong { display: block; font-size: 0.9rem; color: var(--navy); font-weight: 600; }
.quiz-option-text span   { font-size: 0.78rem; color: var(--gray-500); }
.quiz-option-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid var(--gray-300);
  flex-shrink: 0;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-fast);
}
.quiz-option.selected .quiz-option-check {
  background: var(--teal);
  border-color: var(--teal);
}
.quiz-option.selected .quiz-option-check::after {
  content: '';
  width: 8px; height: 8px;
  background: var(--navy);
  border-radius: 50%;
  display: block;
}
.quiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
}

/* ── Dashboard ─────────────────────────────────────────────── */
.dashboard-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: calc(100vh - var(--nav-h));
  margin-top: var(--nav-h);
}
.dashboard-sidebar {
  background: var(--navy);
  padding: var(--sp-8) 0;
  position: sticky;
  top: var(--nav-h);
  height: calc(100vh - var(--nav-h));
  overflow-y: auto;
}
.dashboard-nav-item {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: 0.7rem var(--sp-6);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: all var(--t-fast);
  border-right: 3px solid transparent;
}
.dashboard-nav-item:hover { background: rgba(255,255,255,0.06); color: var(--white); }
.dashboard-nav-item.active { background: rgba(0,180,216,0.1); color: var(--white); border-right-color: var(--teal); }
.dashboard-nav-item svg { width: 18px; height: 18px; flex-shrink: 0; }
.dashboard-main { background: var(--gray-50); padding: var(--sp-8); overflow-y: auto; }
.stat-card { background: var(--white); border-radius: var(--r-xl); padding: var(--sp-6); border: 1px solid var(--gray-100); }
.stat-card-value { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--navy); }
.stat-card-label { font-size: 0.82rem; color: var(--gray-500); margin-top: var(--sp-1); }

/* ── Checkout ──────────────────────────────────────────────── */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--sp-8);
  align-items: start;
}
.checkout-form-card, .order-summary-card {
  background: var(--white);
  border-radius: var(--r-2xl);
  padding: var(--sp-8);
  border: 1px solid var(--gray-100);
}
.order-summary-card { position: sticky; top: calc(var(--nav-h) + var(--sp-6)); }
.cart-item { display: flex; gap: var(--sp-4); padding: var(--sp-4) 0; border-bottom: 1px solid var(--gray-100); }
.cart-item-img { width: 64px; height: 64px; border-radius: var(--r-lg); object-fit: cover; flex-shrink: 0; }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 0.875rem; font-weight: 700; color: var(--navy); }
.cart-item-detail { font-size: 0.78rem; color: var(--gray-500); }
.cart-item-price { font-weight: 700; color: var(--teal-dark); font-size: 0.9rem; }

/* ── Badges & Tags ─────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  padding: 0.22rem 0.6rem;
  border-radius: var(--r-full);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge--teal   { background: var(--teal-dark); color: var(--white); }
.badge--navy   { background: var(--navy); color: var(--white); }
.badge--green  { background: #1a7a4a; color: var(--white); }
.badge--gold   { background: #b07d2a; color: var(--white); }
.badge--red    { background: #c0392b; color: var(--white); }
.badge--gray   { background: var(--gray-200); color: var(--gray-700); }
.badge--blue   { background: #1D3557; color: var(--white); }

/* ── Alerts ────────────────────────────────────────────────── */
.alert {
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--r-xl);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}
.alert--success { background: rgba(6,214,160,0.08); border: 1px solid rgba(6,214,160,0.25); color: #065f46; }
.alert--error   { background: rgba(255,107,107,0.08); border: 1px solid rgba(255,107,107,0.25); color: #9b1c1c; }
.alert--warning { background: rgba(255,183,3,0.08); border: 1px solid rgba(255,183,3,0.25); color: #78350f; }
.alert--info    { background: rgba(0,180,216,0.08); border: 1px solid rgba(0,180,216,0.2); color: #075985; }
.alert svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── Utility ───────────────────────────────────────────────── */
.text-teal    { color: var(--teal-dark); }
.text-navy    { color: var(--navy); }
.text-muted   { color: var(--gray-500); }
.text-white   { color: var(--white); }
.text-center  { text-align: center; }
.text-sm      { font-size: 0.875rem; }
.text-xs      { font-size: 0.78rem; }
.font-bold    { font-weight: 700; }
.font-black   { font-weight: 800; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-6); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-6); }
.grid-auto-3 { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: var(--sp-6); }
.grid-auto-4 { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: var(--sp-6); }

@media (max-width: 1024px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px)  {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: var(--sp-20) 0; }
  .checkout-layout { grid-template-columns: 1fr; }
  .order-summary-card { position: static; }
  .dashboard-layout { grid-template-columns: 1fr; }
  .dashboard-sidebar { position: static; height: auto; }
}

.divider { border: none; border-top: 1px solid var(--gray-100); margin: var(--sp-6) 0; }

.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ── Chat FAB ──────────────────────────────────────────────── */
.chat-fab {
  position: fixed;
  bottom: var(--sp-6);
  right: var(--sp-6);
  width: 56px; height: 56px;
  background: var(--navy);
  color: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-navy);
  z-index: 900;
  transition: all var(--t-base);
  cursor: pointer;
  border: 2px solid rgba(0,180,216,0.2);
}
.chat-fab:hover { background: var(--teal); color: var(--navy); transform: scale(1.08); }
.chat-fab svg { width: 24px; height: 24px; }
.chat-fab-badge {
  position: absolute;
  top: 0; right: 0;
  width: 14px; height: 14px;
  background: var(--coral);
  border-radius: 50%;
  border: 2px solid var(--white);
}

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding: var(--sp-24) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: var(--sp-12);
  margin-bottom: var(--sp-12);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
  margin-bottom: var(--sp-6);
}
.footer-logo-mark {
  width: 36px; height: 36px;
  background: rgba(0,180,216,0.12);
  border: 1px solid rgba(0,180,216,0.2);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
}
.footer-about {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--sp-6);
}
.footer-contact-line {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--sp-3);
}
.footer-contact-line svg { width: 15px; height: 15px; color: var(--teal); flex-shrink: 0; }
.footer-social {
  display: flex;
  gap: var(--sp-2);
  margin-top: var(--sp-6);
}
.social-btn {
  width: 34px; height: 34px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all var(--t-fast);
  text-decoration: none;
}
.social-btn:hover { background: var(--teal); border-color: var(--teal); color: var(--navy); }
.social-btn svg { width: 15px; height: 15px; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: var(--sp-5);
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: var(--sp-3); }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--t-fast);
  text-decoration: none;
}
.footer-links a:hover { color: var(--teal-light); }
.footer-newsletter-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--sp-4);
  line-height: 1.65;
}
.newsletter-form { display: flex; gap: var(--sp-2); }
.newsletter-input {
  flex: 1;
  padding: 0.7rem var(--sp-4);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  color: var(--white);
  font-size: 0.875rem;
  outline: none;
  font-family: var(--font-body);
  transition: border-color var(--t-fast);
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-input:focus { border-color: var(--teal); }
.footer-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-6);
}
/* ── Services page trust strip ────────────────────────────── */
.services-trust-strip {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
  padding: var(--sp-8) 0;
}
.services-trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.services-trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-10);
  border-right: 1px solid var(--gray-200);
  flex: 1;
  justify-content: center;
}
.services-trust-item:last-child { border-right: none; }
.services-trust-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-xl);
  background: rgba(13,131,90,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.services-trust-icon svg { width: 18px; height: 18px; color: var(--teal-dark); }
.services-trust-title { font-size: 0.875rem; font-weight: 700; color: var(--navy); }
.services-trust-sub   { font-size: 0.75rem; color: var(--gray-500); margin-top: 2px; }
@media (max-width: 768px) {
  .services-trust-inner { flex-wrap: wrap; }
  .services-trust-item  { flex: 0 0 50%; border-right: none; border-bottom: 1px solid var(--gray-200); justify-content: flex-start; }
  .services-trust-item:nth-child(odd) { border-right: 1px solid var(--gray-200); }
}

/* ── Services grid cards ───────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-8);
}
.service-card {
  background: var(--white);
  border-radius: var(--r-2xl);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--t-base);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--gray-200);
}
.service-card-img {
  position: relative;
  height: 240px;
  overflow: hidden;
  flex-shrink: 0;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.04); }
.service-card-badge {
  position: absolute;
  top: var(--sp-4);
  left: var(--sp-4);
}
.service-card-body {
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card-price {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--teal-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--sp-2);
}
.service-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--sp-3);
}
.service-card-desc {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: var(--sp-6);
}
.service-card-points {
  list-style: none;
  margin-bottom: var(--sp-8);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.service-card-points li {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.82rem;
  color: var(--gray-700);
  font-weight: 500;
}
.service-card-points li svg { color: var(--teal-dark); flex-shrink: 0; }
.service-card-btn { align-self: flex-start; }
@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card-img { height: 200px; }
}

/* ── Shop trust strip ──────────────────────────────────────── */
.shop-trust-strip {
  background: var(--navy);
  padding: var(--sp-10) 0;
}
.shop-trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-2);
}
.shop-trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  border-right: 1px solid rgba(255,255,255,0.08);
}
.shop-trust-item:last-child { border-right: none; }
.shop-trust-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-xl);
  background: rgba(0,180,216,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.shop-trust-icon svg {
  width: 20px;
  height: 20px;
  color: var(--teal);
}
.shop-trust-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.shop-trust-sub {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}
@media (max-width: 1024px) {
  .shop-trust-grid { grid-template-columns: repeat(3, 1fr); }
  .shop-trust-item:nth-child(3) { border-right: none; }
}
@media (max-width: 640px) {
  .shop-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .shop-trust-item:last-child { border-bottom: none; }
}

.footer-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  padding: 0.3rem 0.625rem;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.5);
}
.footer-trust-badge svg { width: 12px; height: 12px; color: var(--teal); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: var(--sp-5) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-bottom-links { display: flex; gap: var(--sp-6); }
.footer-bottom-links a { font-size: 0.78rem; color: rgba(255,255,255,0.35); transition: color var(--t-fast); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .newsletter-form { flex-direction: column; }
}

/* ── Spinner / Skeleton ────────────────────────────────────── */
.spinner {
  width: 22px; height: 22px;
  border: 2.5px solid var(--gray-200);
  border-top-color: var(--teal);
  border-radius: 50%;
  animation: spin 0.65s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.skeleton {
  background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-50) 50%, var(--gray-100) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: var(--r-md);
}
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

@media print {
  .site-nav, .site-footer, .chat-fab { display: none !important; }
  body { padding-top: 0; }
}
