/* ═══════════════════════════════════════════════════════════
   WYMEDRX — styles.css
   Design system, layout, components
   Fonts: Cormorant Garamond (display) · Outfit (body) · Syne (labels)
═══════════════════════════════════════════════════════════ */

/* ─── TOKENS ─── */
:root {
  --navy:    #0B2354;
  --navy2:   #163d8a;
  --dark:    #060f24;
  --teal:    #0abde3;
  --teal2:   #00a8d6;
  --green:   #10ac84;
  --pink:    #e91e63;
  --gold:    #f7b731;
  --white:   #ffffff;
  --off:     #f7f9ff;
  --gray:    #f0f3fb;
  --mid:     #e4e9f6;
  --text:    #1a1f3a;
  --muted:   #6b7499;

  --font-disp:  'Cormorant Garamond', Georgia, serif;
  --font-body:  'Outfit', system-ui, sans-serif;
  --font-label: 'Syne', system-ui, sans-serif;

  --radius-sm:  8px;
  --radius:     14px;
  --radius-lg:  22px;
  --radius-xl:  32px;

  --shadow-sm:  0 2px 12px rgba(11,35,84,0.06);
  --shadow:     0 8px 32px rgba(11,35,84,0.10);
  --shadow-lg:  0 20px 60px rgba(11,35,84,0.16);
  --shadow-xl:  0 32px 80px rgba(11,35,84,0.22);

  --transition: 0.3s cubic-bezier(0.16,1,0.3,1);
  --nav-h: 70px;
}

/* ─── RESET + BASE ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; }
button { border: none; cursor: pointer; font-family: var(--font-body); background: none; }
ul { list-style: none; }
strong { font-weight: 700; }
em { font-style: italic; }

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--gray); }
::-webkit-scrollbar-thumb { background: var(--navy2); border-radius: 3px; }

/* ─── NOISE OVERLAY ─── */
.noise-overlay {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ─── CURSOR ─── */
.cursor-dot {
  position: fixed; top: 0; left: 0; z-index: 10000; pointer-events: none;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal); transform: translate(-50%,-50%);
  transition: transform 0.05s;
}
.cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none;
  width: 30px; height: 30px; border-radius: 50%;
  border: 1.5px solid rgba(10,189,227,0.5);
  transform: translate(-50%,-50%);
  transition: width 0.25s, height 0.25s, border-color 0.2s, transform 0.12s;
}
.cursor-ring.hovered { width: 44px; height: 44px; border-color: rgba(10,189,227,0.8); }
@media (hover: none) { .cursor-dot, .cursor-ring { display: none; } }

/* ─── CONTAINER ─── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 2rem; }

/* ─── PAGE SYSTEM ─── */
.page { display: none; padding-top: var(--nav-h); }
.page.active { display: block; }

/* ─── NAV ─── */
#mainNav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: var(--nav-h);
  background: rgba(11,35,84,0.96);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 2rem;
  height: var(--nav-h); display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: white;
}
.nav-logo-mark {
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-text { display: flex; flex-direction: column; }
.nav-brand {
  font-family: var(--font-label); font-weight: 700; font-size: 1.15rem;
  letter-spacing: -0.3px; color: white; line-height: 1.2;
}
.nav-brand sup { font-size: 0.6em; }
.nav-tagline { font-size: 0.62rem; color: rgba(255,255,255,0.5); letter-spacing: 0.8px; font-weight: 500; }

.nav-links {
  display: flex; align-items: center; gap: 4px; list-style: none;
}
.nav-link {
  font-family: var(--font-label); font-size: 0.85rem; font-weight: 500;
  color: rgba(255,255,255,0.75); padding: 0.45rem 1rem;
  border-radius: var(--radius-sm); letter-spacing: 0.2px;
}
.nav-link:hover, .nav-link.active { color: white; background: rgba(255,255,255,0.1); }
.nav-link.nav-cta {
  background: var(--teal); color: white; padding: 0.45rem 1.25rem;
  border-radius: var(--radius-sm);
}
.nav-link.nav-cta:hover { background: var(--teal2); color: white; }

.nav-progress-bar {
  height: 2px; background: linear-gradient(90deg, var(--teal), var(--green));
  width: 0; transition: width 0.1s linear;
}

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 6px; background: none; border: none; cursor: pointer;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: white; border-radius: 2px; transition: 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── EYEBROW ─── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-label); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--teal);
  margin-bottom: 0.75rem;
}
.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--teal); flex-shrink: 0;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-label); font-size: 0.9rem; font-weight: 600;
  padding: 0.8rem 1.8rem; border-radius: var(--radius-sm);
  letter-spacing: 0.2px; white-space: nowrap;
}
.btn-primary {
  background: var(--teal); color: white;
  box-shadow: 0 4px 20px rgba(10,189,227,0.3);
}
.btn-primary:hover { background: var(--teal2); box-shadow: 0 8px 30px rgba(10,189,227,0.45); }
.btn-ghost {
  background: rgba(255,255,255,0.08); color: white;
  border: 1.5px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.4); }
.btn-outline-navy {
  background: transparent; color: var(--navy);
  border: 1.5px solid var(--mid); padding: 0.7rem 1.5rem;
  font-size: 0.85rem; border-radius: var(--radius-sm);
  font-family: var(--font-label); font-weight: 600;
}
.btn-outline-navy:hover { background: var(--navy); color: white; border-color: var(--navy); }

/* ─── SECTIONS ─── */
.section { padding: 6rem 0; }
.section--white { background: var(--white); }
.section--gray  { background: var(--gray); }
.section-head   { margin-bottom: 3.5rem; }
.text-center    { text-align: center; }
.text-center .section-desc { margin: 0 auto; }
.section-title {
  font-family: var(--font-disp); font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 600; color: var(--navy); line-height: 1.15; margin-bottom: 1rem;
}
.section-title em { color: var(--teal); font-style: italic; }
.section-desc {
  font-size: 1.02rem; color: var(--muted); line-height: 1.8; max-width: 560px;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: flex; align-items: center;
  background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 55%, #163d8a 100%);
  padding: 2rem 0;
}
.hero-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.35;
}
.hero-grid-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridPan 20s linear infinite;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center; position: relative; z-index: 2; width: 100%;
}
.hero-content { color: white; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-label); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--teal);
  background: rgba(10,189,227,0.1); border: 1px solid rgba(10,189,227,0.25);
  padding: 7px 16px; border-radius: 100px; margin-bottom: 1.75rem;
}
.hero-title {
  font-family: var(--font-disp); font-weight: 600;
  font-size: clamp(3rem, 6vw, 5.5rem); line-height: 1.06;
  margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: 4px;
}
.hero-line { display: block; }
.hero-line-accent { color: var(--teal); }
.hero-line-script {
  font-style: italic; color: rgba(255,255,255,0.6); font-size: 0.8em; margin-top: 4px;
}
.hero-desc {
  font-size: 1.05rem; line-height: 1.82; color: rgba(255,255,255,0.72);
  margin-bottom: 2.5rem; max-width: 460px;
}
.hero-desc strong { color: white; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats {
  display: flex; align-items: center; gap: 2rem;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat {
  display: flex; flex-direction: column; gap: 4px;
}
.hero-stat .counter,
.hero-stat span:first-child { font-family: var(--font-disp); font-size: 2rem; font-weight: 700; color: var(--teal); line-height: 1; }
.stat-suffix { font-family: var(--font-disp); font-size: 1.2rem; color: var(--teal); }
.stat-label {
  font-size: 0.68rem; font-family: var(--font-label); font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.5);
}
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }

/* Hero Visual */
.hero-visual {
  position: relative; height: 520px;
  display: flex; align-items: center; justify-content: center;
}
.hero-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.hero-orb-1 { width: 350px; height: 350px; background: radial-gradient(circle, rgba(10,189,227,0.2), transparent 70%); top: 10%; left: 50%; transform: translateX(-50%); }
.hero-orb-2 { width: 250px; height: 250px; background: radial-gradient(circle, rgba(108,92,231,0.18), transparent 70%); bottom: 5%; right: -5%; }
.hero-orb-3 { width: 180px; height: 180px; background: radial-gradient(circle, rgba(16,172,132,0.18), transparent 70%); top: 5%; left: -5%; }
.hcards-stack { position: relative; width: 300px; height: 380px; }
.hcard {
  position: absolute; width: 240px;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px; padding: 1.5rem; color: white;
}
.hcard.hcard-back  { top: 0; left: 0; transform: rotate(-6deg); z-index: 1; }
.hcard.hcard-mid   { top: 40px; right: 0; transform: rotate(2deg); z-index: 2; }
.hcard.hcard-front { bottom: 0; left: 20px; z-index: 3; }
.hcard-icon  { font-size: 2rem; margin-bottom: 0.75rem; }
.hcard-name  { font-family: var(--font-disp); font-size: 1.2rem; font-weight: 600; margin-bottom: 4px; }
.hcard-sub   { font-size: 0.75rem; opacity: 0.65; margin-bottom: 0.75rem; line-height: 1.5; }
.hcard-pill  {
  display: inline-block; padding: 3px 12px; border-radius: 20px;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase;
  background: rgba(10,189,227,0.15); color: var(--teal);
}
.hbadge {
  position: absolute; background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px; padding: 0.75rem 1rem;
  display: flex; align-items: center; gap: 10px; color: white; z-index: 10;
}
.hbadge > span { font-size: 1.5rem; }
.hbadge b { display: block; font-size: 0.78rem; font-weight: 700; line-height: 1.3; }
.hbadge small { font-size: 0.65rem; opacity: 0.65; }
.hbadge-1 { top: 60px; right: -30px; }
.hbadge-2 { bottom: 80px; left: -30px; }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.4); font-size: 0.7rem; font-family: var(--font-label);
  letter-spacing: 1.5px; text-transform: uppercase; z-index: 2;
}
.scroll-mouse {
  width: 22px; height: 34px; border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 11px; display: flex; align-items: flex-start; justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 3px; height: 8px; background: var(--teal); border-radius: 2px;
}

/* ─── MISSION RIBBON ─── */
.mission-ribbon {
  background: linear-gradient(135deg, #e8f2ff, #f0f8ff);
  border-bottom: 1px solid #d0e3ff; padding: 1.1rem 0;
}
.ribbon-inner {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
}
.ribbon-flag { font-size: 2rem; flex-shrink: 0; }
.ribbon-inner p {
  flex: 1; font-size: 0.92rem; color: var(--navy); line-height: 1.5; min-width: 200px;
}
.ribbon-inner button {
  background: var(--navy); color: white;
  padding: 0.55rem 1.25rem; border-radius: var(--radius-sm);
  font-family: var(--font-label); font-size: 0.82rem; font-weight: 600;
  flex-shrink: 0; transition: background var(--transition);
}
.ribbon-inner button:hover { background: var(--navy2); }

/* ─── SPECIALTY CARDS ─── */
.spec-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem;
  margin-top: 1rem;
}
.spec-card {
  border-radius: var(--radius-lg); padding: 2.5rem 2rem; position: relative;
  overflow: hidden; cursor: pointer; text-align: left;
}
.spec-card-bg {
  position: absolute; inset: 0; border-radius: inherit; transition: opacity 0.3s;
  opacity: 0;
}
.spec-ped { background: linear-gradient(145deg, #eef6ff, #d9ecff); }
.spec-ped .spec-card-bg { background: linear-gradient(145deg, #d9ecff, #bcdeff); }
.spec-gyn { background: linear-gradient(145deg, #fdf0f5, #fcd8e7); }
.spec-gyn .spec-card-bg { background: linear-gradient(145deg, #fcd8e7, #f9c0da); }
.spec-gp  { background: linear-gradient(145deg, #edfaf5, #c8f0e2); }
.spec-gp  .spec-card-bg { background: linear-gradient(145deg, #c8f0e2, #a5e6ce); }
.spec-card:hover .spec-card-bg { opacity: 1; }
.spec-card:hover { box-shadow: var(--shadow-lg); }
.spec-card-icon {
  width: 56px; height: 56px; border-radius: 16px; margin-bottom: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.7); color: var(--navy);
}
.spec-card-label {
  display: block; font-family: var(--font-label); font-size: 0.68rem; font-weight: 800;
  letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 0.5rem;
}
.spec-ped .spec-card-label { color: #0074b7; }
.spec-gyn .spec-card-label { color: #c0392b; }
.spec-gp  .spec-card-label { color: #0a7c5c; }
.spec-card-title {
  font-family: var(--font-disp); font-size: 1.7rem; font-weight: 600;
  color: var(--navy); margin-bottom: 0.75rem; line-height: 1.2;
}
.spec-card-desc {
  font-size: 0.87rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.5rem;
}
.spec-card-count {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  font-family: var(--font-label); padding: 4px 12px; border-radius: 20px;
  background: rgba(255,255,255,0.7); color: var(--navy); letter-spacing: 0.5px;
}
.spec-card-arrow {
  position: absolute; bottom: 1.5rem; right: 1.5rem;
  font-size: 1.2rem; color: var(--navy); opacity: 0.4;
}

/* ─── PRODUCT CARDS ─── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(268px, 1fr));
  gap: 1.5rem;
}
.product-card {
  background: white; border-radius: var(--radius-lg);
  border: 1.5px solid var(--mid); overflow: hidden;
  box-shadow: var(--shadow-sm); cursor: pointer;
}
.product-card:hover { border-color: transparent; box-shadow: var(--shadow-lg); }

/* ── pcard-header: fixed height area with gradient bg ── */
.pcard-header {
  height: 170px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.pcard-header-ped  { background: linear-gradient(135deg, #eef6ff, #d9ecff); }
.pcard-header-gyn  { background: linear-gradient(135deg, #fdf0f5, #fcd8e7); }
.pcard-header-gp   { background: linear-gradient(135deg, #edfaf5, #c8f0e2); }
.pcard-header-dige { background: linear-gradient(135deg, #fffbf0, #fef3c7); }

/* ── image wrapper: fills entire header, hidden until img loads ── */
.pcard-img-wrap {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}

/* Real product image */
.pcard-img {
  width: 100%; height: 100%;
  object-fit: contain;           /* keep aspect ratio, show full bottle/pack */
  padding: 12px;
  position: relative; z-index: 1;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s;
}
.product-card:hover .pcard-img { transform: scale(1.06); }

/* Placeholder: shown always; hidden once real img renders successfully */
.pcard-img-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  z-index: 0;
  color: rgba(11,35,84,0.22);
  transition: opacity 0.25s;
}
/* When the img loads OK, push placeholder behind */
.pcard-img-wrap:has(.pcard-img:not([src=''])) .pcard-img-placeholder { opacity: 0; pointer-events: none; }
/* When img errors, wrapper gets .img-error — show placeholder on top */
.pcard-img-wrap.img-error .pcard-img { opacity: 0; }
.pcard-img-wrap.img-error .pcard-img-placeholder { opacity: 1; z-index: 2; }

.pcard-img-placeholder span {
  font-family: var(--font-label); font-size: 0.6rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
}

/* emoji + badge sit above the image */
.pcard-emoji {
  position: absolute; bottom: 10px; left: 12px;
  font-size: 1.6rem; z-index: 2;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.12));
}
.pcard-badge {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  padding: 3px 10px; border-radius: 100px;
  font-family: var(--font-label); font-size: 0.62rem; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase;
  backdrop-filter: blur(4px);
}
.badge-ped  { background: rgba(0,116,183,0.12); color: #0074b7; }
.badge-gyn  { background: rgba(192,57,43,0.12); color: #c0392b; }
.badge-gp   { background: rgba(10,124,92,0.12); color: #0a7c5c; }
.pcard-body { padding: 1.25rem 1.4rem 1.4rem; }
.pcard-form {
  font-family: var(--font-label); font-size: 0.65rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px; color: var(--teal);
  margin-bottom: 4px;
}
.pcard-name {
  font-family: var(--font-disp); font-size: 1.25rem; font-weight: 600;
  color: var(--navy); margin-bottom: 6px; line-height: 1.2;
}
.pcard-comp {
  font-size: 0.8rem; color: var(--muted); line-height: 1.55;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; margin-bottom: 1rem;
}
.pcard-tags { display: flex; gap: 5px; flex-wrap: wrap; }
.pcard-tag {
  padding: 3px 10px; background: var(--gray); border-radius: 100px;
  font-size: 0.68rem; color: var(--muted); font-weight: 500;
}
.pcard-footer {
  padding: 0.9rem 1.4rem; border-top: 1px solid var(--mid);
  display: flex; align-items: center; justify-content: space-between;
}
.pcard-view {
  font-family: var(--font-label); font-size: 0.8rem; font-weight: 700;
  color: var(--navy); letter-spacing: 0.3px;
  display: flex; align-items: center; gap: 4px;
}
.pcard-view svg { transition: transform 0.2s; }
.product-card:hover .pcard-view svg { transform: translateX(4px); }

/* ─── WHY GRID ─── */
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.why-card {
  padding: 2.25rem 1.75rem; border-radius: var(--radius-lg);
  background: var(--white); border: 1.5px solid var(--mid);
  box-shadow: var(--shadow-sm);
}
.why-card:hover { box-shadow: var(--shadow); }
.why-icon {
  width: 60px; height: 60px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
}
.why-icon-1 { background: linear-gradient(135deg, #eef6ff, #cfe6ff); color: #0074b7; }
.why-icon-2 { background: linear-gradient(135deg, #edfaf5, #c8f0e2); color: #0a7c5c; }
.why-icon-3 { background: linear-gradient(135deg, #fdf0f5, #fcd8e7); color: #c0392b; }
.why-icon-4 { background: linear-gradient(135deg, #fffbf0, #fef3c7); color: #c77c06; }
.why-card h3 {
  font-family: var(--font-disp); font-size: 1.15rem; font-weight: 600;
  color: var(--navy); margin-bottom: 0.6rem;
}
.why-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.7; }

/* ─── NUMBERS SECTION ─── */
.numbers-section {
  padding: 5rem 0; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, #163d8a 100%);
}
.numbers-bg-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.05) 1px, transparent 0);
  background-size: 36px 36px;
}
.numbers-grid {
  display: flex; align-items: center; justify-content: center;
  gap: 0; position: relative; z-index: 1;
  flex-wrap: wrap;
}
.number-item { text-align: center; flex: 1; min-width: 160px; padding: 1rem; }
.number-value {
  font-family: var(--font-disp); font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700;
  color: var(--teal); line-height: 1; margin-bottom: 0.5rem;
}
.number-value span { font-family: var(--font-disp); }
.number-value .counter { display: inline; }
.number-label {
  font-size: 0.75rem; color: rgba(255,255,255,0.55);
  font-family: var(--font-label); letter-spacing: 1px; text-transform: uppercase;
}
.number-div { width: 1px; height: 60px; background: rgba(255,255,255,0.12); flex-shrink: 0; }

/* ─── PAGE HERO ─── */
.page-hero {
  padding: 5rem 0 4rem; position: relative; overflow: hidden;
  background: var(--gray);
}
.page-hero--blue { background: linear-gradient(135deg, var(--navy), #163d8a); }
.page-hero--blue .page-hero-title { color: white; }
.page-hero--blue .page-hero-desc { color: rgba(255,255,255,0.7); }
.page-hero-title {
  font-family: var(--font-disp); font-size: clamp(2.2rem,5vw,4rem);
  font-weight: 600; color: var(--navy); margin-bottom: 1rem; line-height: 1.1;
}
.page-hero-desc { font-size: 1rem; color: var(--muted); max-width: 500px; }

/* ─── STICKY FILTER BAR ─── */
.sticky-filter-bar {
  position: sticky; top: var(--nav-h); z-index: 100;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--mid); padding: 0.9rem 0;
  box-shadow: 0 2px 16px rgba(11,35,84,0.06);
}
.filter-bar-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.filter-tabs { display: flex; gap: 6px; }
.filter-tab {
  font-family: var(--font-label); font-size: 0.82rem; font-weight: 700;
  padding: 0.45rem 1.1rem; border-radius: 100px;
  border: 1.5px solid var(--mid); color: var(--muted); background: white;
  letter-spacing: 0.3px;
}
.filter-tab:hover { background: var(--gray); }
.filter-tab.active { background: var(--navy); color: white; border-color: var(--navy); }
.filter-count {
  font-family: var(--font-label); font-size: 0.75rem; font-weight: 600;
  color: var(--muted); letter-spacing: 0.5px;
}

/* ─── RANGE CLUSTER ─── */
.range-cluster {
  border-radius: var(--radius-xl); padding: 2.25rem;
  margin-bottom: 2.5rem;
}
.range-pandofine { background: linear-gradient(145deg, #eef3ff, #e0e8ff); }
.range-eveelite  { background: linear-gradient(145deg, #fef0f5, #fddde9); }
.range-cluster:not(.range-pandofine):not(.range-eveelite) { background: linear-gradient(145deg, #edfaf5, #d5f3e8); }
.range-header {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.75rem; flex-wrap: wrap;
}
.range-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.range-title {
  font-family: var(--font-disp); font-size: 1.4rem; font-weight: 600;
  color: var(--navy); margin-bottom: 2px;
}
.range-sub { font-size: 0.82rem; color: var(--muted); }
.range-badge {
  margin-left: auto; padding: 4px 14px; border-radius: 100px;
  background: rgba(11,35,84,0.08); color: var(--navy);
  font-family: var(--font-label); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.5px;
}
.range-mini-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem;
}
.mini-card {
  background: white; border-radius: var(--radius); padding: 1.4rem;
  border: 1.5px solid rgba(255,255,255,0.8);
  box-shadow: 0 2px 12px rgba(11,35,84,0.06); cursor: pointer;
}
.mini-card:hover { border-color: rgba(11,35,84,0.15); box-shadow: var(--shadow); }

/* Mini-card image */
.mini-card-img-wrap {
  width: 72px; height: 72px; margin: 0 auto 0.75rem;
  position: relative; display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm); overflow: hidden;
  background: var(--gray);
}
.mini-card-img {
  width: 100%; height: 100%; object-fit: contain; padding: 6px;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.mini-card:hover .mini-card-img { transform: scale(1.08); }
.mini-card-img-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: rgba(11,35,84,0.2); z-index: 0;
}
.mini-card-img-wrap:has(.mini-card-img:not([src=''])) .mini-card-img-placeholder { opacity: 0; }
.mini-card-img-wrap.img-error .mini-card-img { opacity: 0; }
.mini-card-img-wrap.img-error .mini-card-img-placeholder { opacity: 1; z-index: 2; }

.mini-card-emoji { font-size: 1.5rem; margin-bottom: 0.5rem; }
.mini-card-name {
  font-family: var(--font-disp); font-size: 1.05rem; font-weight: 600;
  color: var(--navy); margin-bottom: 4px;
}
.mini-card-drug { font-size: 0.75rem; color: var(--muted); line-height: 1.5; margin-bottom: 0.75rem; }
.mini-card-type { font-family: var(--font-label); font-size: 0.67rem; font-weight: 800; color: var(--teal); text-transform: uppercase; letter-spacing: 1px; }

/* ─── CAT DIVIDER ─── */
.cat-divider {
  display: flex; align-items: center; gap: 1.5rem; margin: 3rem 0 2rem;
}
.cat-div-line { flex: 1; height: 1px; background: var(--mid); }
.cat-div-label {
  font-family: var(--font-label); font-size: 0.75rem; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase; color: var(--muted); white-space: nowrap;
}

/* ─── SPECIALTY BLOCKS ─── */
.spec-block {
  border-radius: var(--radius-xl); overflow: hidden; margin-bottom: 2.5rem;
  border: 1px solid var(--mid); box-shadow: var(--shadow-sm);
}
.spec-block-ped { border-color: #cce2f7; }
.spec-block-gyn { border-color: #f5c6d9; }
.spec-block-gp  { border-color: #b8e9d5; }
.spec-block-head {
  padding: 2.5rem;
  display: flex; align-items: flex-start; gap: 1.5rem;
}
.spec-block-ped .spec-block-head { background: linear-gradient(135deg, #eef6ff, #d9ecff); }
.spec-block-gyn .spec-block-head { background: linear-gradient(135deg, #fdf0f5, #fcd8e7); }
.spec-block-gp  .spec-block-head { background: linear-gradient(135deg, #edfaf5, #c8f0e2); }
.spec-block-icon { font-size: 3rem; flex-shrink: 0; }
.spec-block-eyebrow {
  font-family: var(--font-label); font-size: 0.7rem; font-weight: 800;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--teal); margin-bottom: 4px;
}
.spec-block-title {
  font-family: var(--font-disp); font-size: 2rem; font-weight: 600;
  color: var(--navy); margin-bottom: 4px;
}
.spec-block-p { font-size: 0.9rem; color: var(--muted); }
.spec-block-grid {
  padding: 2rem 2.5rem 2.5rem;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem;
  background: white;
}
.spec-block-item {
  padding: 1.2rem; border: 1.5px solid var(--mid); border-radius: var(--radius);
  cursor: pointer; background: white;
}
.spec-block-item:hover { border-color: var(--teal); background: var(--off); }

/* Spec block item image */
.sbi-img-wrap {
  width: 64px; height: 64px;
  margin-bottom: 0.6rem;
  position: relative; display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm); overflow: hidden;
  background: var(--gray);
}
.sbi-img {
  width: 100%; height: 100%; object-fit: contain; padding: 6px;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.spec-block-item:hover .sbi-img { transform: scale(1.08); }
.sbi-img-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: rgba(11,35,84,0.2); z-index: 0;
}
.sbi-img-wrap:has(.sbi-img:not([src=''])) .sbi-img-placeholder { opacity: 0; }
.sbi-img-wrap.img-error .sbi-img { opacity: 0; }
.sbi-img-wrap.img-error .sbi-img-placeholder { opacity: 1; z-index: 2; }

.sbi-emoji { font-size: 1.5rem; margin-bottom: 0.4rem; }
.sbi-name {
  font-family: var(--font-disp); font-size: 1rem; font-weight: 600;
  color: var(--navy); margin-bottom: 4px;
}
.sbi-drug { font-size: 0.75rem; color: var(--muted); line-height: 1.5; }

/* ─── ABOUT PAGE ─── */
.about-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--off) 0%, var(--gray) 100%);
  padding: 6rem 0;
}
.about-hero-mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(10,189,227,0.07), transparent),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(108,92,231,0.05), transparent);
  pointer-events: none;
}
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-title {
  font-family: var(--font-disp); font-size: clamp(2rem,4vw,3.2rem); font-weight: 600;
  color: var(--navy); line-height: 1.15; margin-bottom: 1.5rem;
}
.about-p { font-size: 0.98rem; color: var(--muted); line-height: 1.85; margin-bottom: 1.25rem; }
.about-p strong { color: var(--navy); }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 2rem; }
.about-feat {
  display: flex; align-items: flex-start; gap: 0.9rem;
  padding: 1rem; background: white; border-radius: var(--radius); border: 1.5px solid var(--mid);
}
.about-feat:hover { background: var(--off); border-color: var(--teal); }
.about-feat-icon { font-size: 1.4rem; flex-shrink: 0; }
.about-feat strong { display: block; font-size: 0.87rem; color: var(--navy); margin-bottom: 2px; }
.about-feat small { font-size: 0.78rem; color: var(--muted); }

/* About visual */
.about-visual { position: relative; }
.about-card {
  background: linear-gradient(135deg, var(--navy), #1a3a8f);
  border-radius: var(--radius-xl); padding: 2.25rem; color: white;
  position: relative; overflow: hidden; box-shadow: var(--shadow-xl);
}
.about-card::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 180px; height: 180px; border-radius: 50%;
  background: rgba(10,189,227,0.1);
}
.about-card-top { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.about-card-brand { font-family: var(--font-label); font-size: 1.25rem; font-weight: 700; color: white; }
.about-card-city  { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-top: 2px; }
.about-card-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 2rem; }
.about-card-stat {
  background: rgba(255,255,255,0.08); border-radius: var(--radius);
  padding: 1rem; text-align: center;
}
.about-card-stat span { font-family: var(--font-disp); font-size: 1.6rem; font-weight: 700; color: var(--teal); display: block; }
.about-card-stat small { font-size: 0.72rem; color: rgba(255,255,255,0.55); }
.about-card-addr { font-size: 0.8rem; color: rgba(255,255,255,0.55); line-height: 1.6; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.25rem; }
.about-float {
  position: absolute; background: white; border-radius: var(--radius);
  padding: 0.9rem 1.1rem; display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-lg);
}
.about-float > span { font-size: 1.4rem; }
.about-float b { display: block; font-size: 0.82rem; color: var(--navy); font-weight: 700; line-height: 1.3; }
.about-float small { font-size: 0.68rem; color: var(--muted); }
.about-float-1 { top: -20px; right: -24px; }
.about-float-2 { bottom: 30px; left: -24px; }

/* Values */
.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; margin-top: 1rem; }
.value-card {
  padding: 2.25rem 1.75rem; background: white; border-radius: var(--radius-lg);
  border: 1.5px solid var(--mid); text-align: center; box-shadow: var(--shadow-sm);
}
.value-card:hover { box-shadow: var(--shadow); }
.value-icon { font-size: 2.5rem; margin-bottom: 1.25rem; }
.value-card h3 {
  font-family: var(--font-disp); font-size: 1.2rem; font-weight: 600;
  color: var(--navy); margin-bottom: 0.6rem;
}
.value-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.7; }

/* ─── CONTACT PAGE ─── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; margin-top: 1rem; }
.contact-info-col {}
.cinfo-item {
  display: flex; align-items: flex-start; gap: 1.1rem;
  padding: 1.25rem 0; border-bottom: 1px solid var(--mid);
}
.cinfo-item:last-child { border-bottom: none; }
.cinfo-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.cinfo-label {
  font-family: var(--font-label); font-size: 0.68rem; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 4px;
}
.cinfo-val { font-size: 0.92rem; color: var(--navy); line-height: 1.65; }
.cinfo-val em { color: var(--teal); }
.contact-promo {
  background: linear-gradient(135deg, var(--navy), #1a3a8f);
  border-radius: var(--radius-lg); padding: 1.75rem; color: white; margin-top: 1.5rem;
}
.contact-promo h3 {
  font-family: var(--font-disp); font-size: 1.2rem; font-weight: 600;
  color: white; margin-bottom: 0.6rem;
}
.contact-promo p { font-size: 0.85rem; color: rgba(255,255,255,0.7); line-height: 1.7; }

/* Contact Form */
.contact-form {
  background: var(--gray); border-radius: var(--radius-xl); padding: 2.5rem;
}
.contact-form-title {
  font-family: var(--font-disp); font-size: 1.6rem; font-weight: 600;
  color: var(--navy); margin-bottom: 1.75rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block; font-family: var(--font-label); font-size: 0.72rem;
  font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 7px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 0.8rem 1rem;
  background: white; border: 1.5px solid var(--mid);
  border-radius: var(--radius-sm); font-family: var(--font-body);
  font-size: 0.9rem; color: var(--text); outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(10,189,227,0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ─── MODAL ─── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 800;
  background: rgba(6,15,36,0.75); backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center;
  padding: 1.5rem;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: white; border-radius: var(--radius-xl);
  max-width: 860px; width: 100%; max-height: 90vh;
  overflow-y: auto; position: relative;
}
.modal-close-btn {
  position: sticky; top: 1.25rem; float: right; margin: 1.25rem 1.25rem 0 0;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--gray); border: 1.5px solid var(--mid);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); z-index: 5; transition: background 0.2s, color 0.2s;
}
.modal-close-btn:hover { background: var(--mid); color: var(--navy); }
.modal-head {
  padding: 2.25rem 2.5rem 0; display: flex; gap: 1.75rem; align-items: flex-start; clear: both;
}
.modal-icon {
  width: 88px; height: 88px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 2.2rem; overflow: hidden; position: relative;
}
.modal-product-img {
  width: 100%; height: 100%; object-fit: contain; padding: 10px;
}
.modal-icon-fallback {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem;
}
.modal-eyebrow {
  font-family: var(--font-label); font-size: 0.68rem; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase; color: var(--teal); margin-bottom: 4px;
}
.modal-title {
  font-family: var(--font-disp); font-size: 2rem; font-weight: 600;
  color: var(--navy); margin-bottom: 4px; line-height: 1.2;
}
.modal-comp { font-size: 0.88rem; color: var(--muted); line-height: 1.65; margin-top: 6px; }
.modal-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 0.75rem; }
.modal-tag {
  padding: 3px 12px; border-radius: 100px;
  background: var(--gray); font-size: 0.72rem; color: var(--muted); font-weight: 500;
}
.modal-body { padding: 2rem 2.5rem 2.5rem; }
.modal-intro { font-size: 0.95rem; color: var(--muted); line-height: 1.82; margin-bottom: 2rem; }
.modal-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.modal-col-title {
  font-family: var(--font-label); font-size: 0.67rem; font-weight: 800;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted);
  padding-bottom: 0.6rem; border-bottom: 1.5px solid var(--mid); margin-bottom: 1rem;
}
.modal-list { list-style: none; }
.modal-list li {
  display: flex; align-items: flex-start; gap: 8px;
  padding: 0.35rem 0; font-size: 0.875rem; color: var(--text);
}
.modal-list li::before { content: '›'; color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 1px; font-size: 1.1rem; }
.modal-nutrients { grid-column: 1/-1; }
.nutrient-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 0.5rem; }
.ncol-title {
  font-family: var(--font-label); font-size: 0.65rem; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 0.75rem;
}
.ncol-list { list-style: none; }
.ncol-list li {
  font-size: 0.82rem; color: var(--text); padding: 3px 0;
  display: flex; align-items: center; gap: 7px;
}
.ncol-list li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }
.modal-callout {
  margin-top: 2rem; background: linear-gradient(135deg, #eef6ff, #d9ecff);
  border-radius: var(--radius); padding: 1.25rem 1.5rem;
}
.modal-callout p { font-size: 0.875rem; color: var(--navy); line-height: 1.7; }
.modal-callout strong { color: var(--teal); }

/* ─── FOOTER ─── */
.site-footer { background: var(--dark); color: white; }
.footer-top { padding: 5rem 0 3rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
.footer-logo {
  display: flex; align-items: center; gap: 12px; margin-bottom: 1.25rem;
}
.footer-brand-name { font-family: var(--font-label); font-size: 1.25rem; font-weight: 700; color: white; }
.footer-brand-tag  { font-size: 0.65rem; color: rgba(255,255,255,0.4); letter-spacing: 0.8px; margin-top: 2px; }
.footer-brand-desc { font-size: 0.84rem; color: rgba(255,255,255,0.45); line-height: 1.8; max-width: 280px; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: 8px; }
.fsoc-btn {
  width: 34px; height: 34px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-family: var(--font-label); font-weight: 700;
}
.fsoc-btn:hover { background: var(--teal); color: white; }
.footer-col h4 {
  font-family: var(--font-label); font-size: 0.7rem; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col ul li a { font-size: 0.87rem; color: rgba(255,255,255,0.6); text-decoration: none; }
.footer-col ul li a:hover { color: var(--teal); }
.footer-certs { display: flex; gap: 6px; margin-top: 1.5rem; flex-wrap: wrap; }
.footer-certs span {
  padding: 3px 10px; border: 1px solid rgba(255,255,255,0.12);
  border-radius: 5px; font-size: 0.65rem; color: rgba(255,255,255,0.4);
  font-family: var(--font-label); font-weight: 700; letter-spacing: 0.5px;
}
.footer-bottom {
  padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }

/* ─── TOAST ─── */
.toast {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 2000;
  background: var(--navy); color: white; padding: 1rem 1.5rem;
  border-radius: var(--radius); font-size: 0.9rem; font-weight: 500;
  box-shadow: var(--shadow-lg); display: none;
  max-width: 340px; line-height: 1.5;
}
.toast.show { display: block; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .spec-grid { grid-template-columns: 1fr 1fr; }
  .why-grid  { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; flex-wrap: wrap; }
  .about-layout { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .contact-layout { grid-template-columns: 1fr; }
  .modal-cols { grid-template-columns: 1fr; }
  .modal-head { flex-direction: column; }
  .nutrient-cols { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .numbers-grid { gap: 0; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0; background: rgba(11,35,84,0.97); padding: 1rem; gap: 4px; z-index: 10; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .spec-grid { grid-template-columns: 1fr; }
  .why-grid  { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.8rem; }
  .section { padding: 4rem 0; }
  .about-features { grid-template-columns: 1fr; }
  .modal-box { border-radius: var(--radius-lg); }
  .modal-head { padding: 1.5rem 1.5rem 0; }
  .modal-body { padding: 1.5rem; }
}
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero-title { font-size: 2.2rem; }
  .products-grid { grid-template-columns: 1fr; }
  .spec-block-grid { grid-template-columns: 1fr; }
  .range-mini-grid { grid-template-columns: 1fr 1fr; }
  .numbers-grid { flex-direction: column; }
  .number-div { width: 60px; height: 1px; }
}