:root {
  --font-primary: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-secondary: "DM Serif Display", Georgia, serif;
  --bg: #ffffff;
  --surface: #edf5fb;
  --surface-2: #ffffff;
  --surface-3: #f4f9fc;
  --ink: #10243e;
  --muted: #5b6f89;
  --muted-2: #778ba5;
  --accent: #1565a3;
  --accent-2: #a3d9b1;
  --deep: #0f3b78;
  --deep-2: #1565a3;
  --line: rgba(17, 18, 22, 0.08);
  --line-strong: rgba(17, 18, 22, 0.12);
  --shadow-lg: 0 30px 80px rgba(15, 59, 120, 0.14);
  --shadow-md: 0 18px 40px rgba(15, 59, 120, 0.12);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 18px;
  --ease: cubic-bezier(0.44, 0, 0.55, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id],
footer[id] {
  scroll-margin-top: 120px;
}

body {
  margin: 0;
  font-family: var(--font-primary);
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 10%, rgba(21, 101, 163, 0.15), transparent 32%),
    radial-gradient(circle at 90% 14%, rgba(163, 217, 177, 0.24), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f6fbff 42%, #ffffff 100%);
  overflow-x: hidden;
}

main {
  position: relative;
  isolation: isolate;
}

main::before {
  content: "";
  position: absolute;
  inset: -140px 0 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 10%, rgba(21, 101, 163, 0.08), transparent 24%),
    radial-gradient(circle at 84% 24%, rgba(163, 217, 177, 0.14), transparent 21%),
    radial-gradient(circle at 48% 66%, rgba(21, 101, 163, 0.05), transparent 34%);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-secondary);
  font-weight: 400;
}

img {
  display: block;
  max-width: 100%;
}

iframe {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:where(
  .header-shell,
  .hero-shell,
  .brand-strip,
  .section-heading,
  .benefits-stack,
  .stack-card-layout,
  .benefits-grid,
  .steps-grid,
  .open-feature-shell,
  .split-shell,
  .process-shell,
  .slider-track,
  .pricing-grid,
  .faq-shell,
  .blog-grid,
  .manufacturing-capability-grid,
  .manufacturing-quality-shell,
  .product-grid,
  .product-card-shell,
  .placeholder-grid,
  .footer-grid,
  .footer-bottom,
  .about-statement-grid,
  .partner-grid,
  .distribution-network-shell,
  .distribution-cta-grid,
  .distribution-metric-wall,
  .contact-detail-grid,
  .contact-map-shell
) > * {
  min-width: 0;
}

:where(
  .footer-links a,
  .faq-question,
  .contact-inline-link,
  .contact-map-info,
  .contact-detail-card h3,
  .distribution-network-card h3,
  .distribution-cta-card h3,
  .partner-brand-card h3,
  .product-fact strong,
  .strip-label
) {
  overflow-wrap: anywhere;
}

.container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.page-orb {
  position: fixed;
  inset: auto;
  z-index: -2;
  filter: blur(60px);
  pointer-events: none;
  transform: translate3d(0, 0, 0);
}

.orb-one {
  top: 90px;
  right: -120px;
  width: 360px;
  height: 360px;
  background: rgba(21, 101, 163, 0.2);
  border-radius: 999px;
}

.orb-two {
  bottom: 120px;
  left: -100px;
  width: 320px;
  height: 320px;
  background: rgba(163, 217, 177, 0.22);
  border-radius: 999px;
}

.page-grid {
  position: fixed;
  inset: 0;
  z-index: -3;
  opacity: 0.15;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(21, 101, 163, 0.45) 0, rgba(21, 101, 163, 0.45) 2px, transparent 3px),
    linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7));
  background-size: 120px 120px, 100% 100%;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent 80%);
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 50;
  padding-top: 14px;
}

.header-shell {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  background: rgba(240, 247, 253, 0.84);
  box-shadow: 0 10px 24px rgba(15, 59, 120, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transform: translateY(-22px);
  opacity: 0;
  transition:
    transform 0.6s var(--ease),
    opacity 0.6s var(--ease),
    background-color 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

body.is-loaded .header-shell {
  transform: translateY(0);
  opacity: 1;
}

body.is-scrolled .header-shell {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(17, 18, 22, 0.08);
  box-shadow: 0 14px 30px rgba(15, 59, 120, 0.12);
}

.brand,
.brand-light {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand {
  flex: 0 0 auto;
}

.brand-image {
  display: block;
  width: auto;
  height: clamp(34px, 3vw, 42px);
}

.brand-light .brand-image {
  height: clamp(40px, 3.6vw, 50px);
}

.brand-mark {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(21, 101, 163, 0.12);
}

.brand-mark svg {
  width: 15px;
  height: 15px;
  fill: var(--accent);
}

.brand-light .brand-mark {
  background: rgba(163, 217, 177, 0.16);
}

.brand-light .brand-mark svg {
  fill: var(--accent-2);
}

.nav-area {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 18px;
  margin-left: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 24px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.swap-link {
  position: relative;
  display: inline-grid;
  height: 1.2em;
  overflow: hidden;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.header-shell .button {
  min-height: 42px;
  padding: 0 18px;
  font-size: 13px;
}

.swap-link span {
  grid-area: 1 / 1;
  transition: transform 0.35s var(--ease), color 0.35s ease;
}

.swap-link span:last-child {
  color: var(--accent);
  transform: translateY(110%);
}

.swap-link:hover span:first-child,
.swap-link:focus-visible span:first-child {
  transform: translateY(-110%);
}

.swap-link:hover span:last-child,
.swap-link:focus-visible span:last-child {
  transform: translateY(0);
}

.swap-link.is-current span:first-child,
.swap-link[aria-current="page"] span:first-child {
  transform: translateY(-110%);
}

.swap-link.is-current span:last-child,
.swap-link[aria-current="page"] span:last-child {
  transform: translateY(0);
}

.menu-toggle {
  display: none;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(15, 16, 19, 0.08);
  border-radius: 999px;
  background: var(--surface-2);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s ease,
    background-color 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-label {
  display: inline-grid;
  height: 1.2em;
  overflow: hidden;
}

.button-label span {
  grid-area: 1 / 1;
  transition: transform 0.35s var(--ease);
}

.button-label span:last-child {
  transform: translateY(115%);
}

.button:hover .button-label span:first-child,
.button:focus-visible .button-label span:first-child {
  transform: translateY(-115%);
}

.button:hover .button-label span:last-child,
.button:focus-visible .button-label span:last-child {
  transform: translateY(0);
}

.button-primary {
  background: var(--deep);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(15, 59, 120, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 20px 40px rgba(15, 59, 120, 0.24);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
  color: var(--ink);
}

.button-light {
  background: var(--accent-2);
  color: var(--ink);
}

.hero-section {
  display: flex;
  align-items: center;
  min-height: calc(100svh - 104px);
  padding-top: 18px;
  padding-bottom: clamp(72px, 10vh, 136px);
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(460px, 0.92fr);
  align-items: center;
  gap: 46px;
  padding: 8px 0 12px;
  overflow: visible;
}

.hero-copy {
  max-width: 720px;
  padding: 8px 0 20px;
}

.section-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(17, 18, 22, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.chip-dark {
  border-color: rgba(163, 217, 177, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent-2);
}

.hero-copy h1 {
  margin: 0 0 18px;
  max-width: 11ch;
  font-size: clamp(3.3rem, 6.1vw, 5.35rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.hero-copy h1 span {
  position: relative;
  display: inline-block;
  color: var(--accent);
}

.hero-copy h1 span::before {
  content: "";
  position: absolute;
  left: -0.84em;
  top: 50%;
  width: 0.56em;
  height: 7px;
  border-radius: 999px;
  background: currentColor;
  transform: translateY(-50%);
}

.hero-text,
.section-heading p,
.split-copy p,
.process-copy p,
.faq-heading p,
.footer-copy,
.footer-cta p,
.pricing-card p,
.blog-card p,
.testimonial-text,
.benefit-card p,
.step-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
  letter-spacing: -0.02em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.hero-points li {
  padding: 12px 16px;
  border: 1px solid rgba(17, 18, 22, 0.08);
  border-radius: 999px;
  background: rgba(237, 245, 251, 0.8);
  font-size: 13px;
  font-weight: 600;
  color: var(--deep);
}

.hero-visual {
  position: relative;
  min-height: clamp(520px, 64svh, 680px);
  border-radius: 38px;
  background:
    linear-gradient(180deg, rgba(229, 241, 250, 0.94), rgba(235, 248, 239, 0.92)),
    #eef6fb;
  border: 1px solid rgba(21, 101, 163, 0.14);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 20px;
  border-radius: 32px;
  overflow: hidden;
}

.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-text {
  max-width: 50ch;
  color: #17181d;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 600;
}

.brand-strip-section {
  padding-top: clamp(48px, 7vh, 92px);
}

.brand-strip {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(14px, 2.2vw, 24px);
  padding: 12px clamp(18px, 2.4vw, 28px);
  /* border: 1px solid rgba(16, 36, 62, 0.05); */
  border-radius: 999px;
  /* background: rgba(255, 255, 255, 0.96); */
}

.strip-label {
  flex: 0 0 auto;
  color: var(--ink);
  font-size: clamp(14px, 1.45vw, 18px);
  font-weight: 800;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.brand-strip-marquee {
  --marquee-gap: clamp(30px, 3vw, 54px);
  width: 100%;
  min-width: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.brand-strip-track {
  display: flex;
  flex: 0 0 auto;
  width: max-content;
  will-change: transform;
  animation: brandStripScroll 20s linear infinite;
}

.brand-strip-group {
  display: flex;
  align-items: center;
  gap: var(--marquee-gap);
  flex: 0 0 auto;
  padding-right: var(--marquee-gap);
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.brand-logo img {
  width: auto;
  max-width: none;
  height: clamp(30px, 2.5vw, 44px);
  object-fit: contain;
  opacity: 0.96;
}

.section {
  padding: 92px 0 0;
}

.muted-section {
  position: relative;
}

.muted-section::before {
  display: none;
}

.section-heading {
  display: flex;
  gap: 18px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 30px;
}

.section-heading.centered {
  align-items: center;
  flex-direction: column;
  text-align: center;
  margin-bottom: 40px;
}

.section-heading h2,
.split-copy h2,
.process-copy h2,
.faq-heading h2,
.footer-cta h2 {
  margin: 14px 0 0;
  font-size: clamp(2.4rem, 4.6vw, 4rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.section-heading.centered p,
.faq-heading p {
  max-width: 640px;
}

.benefits-section {
  padding-bottom: 18px;
}

.benefits-stack-shell {
  position: relative;
  margin-top: 8px;
}

.benefits-stack-wrap {
  position: relative;
  height: 172vh;
}

.benefits-stack {
  position: sticky;
  top: 112px;
  height: calc(100svh - 112px + 2px);
  overflow: hidden;
}

.stack-card {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 0;
  border-radius: 34px;
  box-shadow: none;
  will-change: transform, opacity;
  transform-origin: center top;
}

.stack-card-back {
  z-index: 1;
  transform: translate3d(0, 0, 0) scale(1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 253, 0.98));
}

.stack-card-mid {
  z-index: 2;
  transform: translate3d(0, 108%, 0) scale(1);
  background:
    linear-gradient(180deg, rgba(237, 248, 240, 0.98), rgba(218, 240, 224, 0.98));
}

.stack-card-front {
  z-index: 3;
  transform: translate3d(0, 108%, 0) scale(1);
  background:
    linear-gradient(180deg, rgba(15, 59, 120, 0.98), rgba(21, 101, 163, 0.98));
  color: #ffffff;
}

.stack-card-layout {
  display: grid;
  height: 100%;
  grid-template-columns: minmax(0, 0.56fr) minmax(300px, 0.44fr);
  align-items: center;
  gap: 28px;
  padding: 28px;
}

.stack-card-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6px 6px 8px 0;
}

.stack-card-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(21, 101, 163, 0.12);
  color: var(--deep);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.stack-card-back .stack-card-kicker {
  background: var(--deep);
  color: #ffffff;
}

.stack-card-mid .stack-card-kicker {
  background: rgba(21, 101, 163, 0.18);
  color: var(--deep);
}

.stack-card-front .stack-card-kicker {
  background: var(--accent-2);
  color: var(--deep);
}

.stack-card h3 {
  margin: 18px 0 12px;
  font-size: clamp(2rem, 3.9vw, 3.2rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.stack-card p {
  margin: 0;
  max-width: 30ch;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
  letter-spacing: -0.02em;
}

.stack-card-front p {
  color: rgba(255, 255, 255, 0.76);
}

.stack-card-number {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(15, 59, 120, 0.88);
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.stack-card-back .stack-card-number {
  background: var(--deep);
  color: #ffffff;
}

.stack-card-mid .stack-card-number {
  background: rgba(21, 101, 163, 0.9);
  color: #ffffff;
}

.stack-card-front .stack-card-number {
  background: var(--accent-2);
  color: #ffffff;
}

.stack-card-media {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.38);
}

.stack-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stack-card-media-primary,
.stack-card-media-tall,
.stack-card-media-wide {
  height: 100%;
}

.stack-card-layout-mid .stack-card-copy,
.stack-card-layout-front .stack-card-copy {
  padding-right: 14px;
}

.stack-card-copy-front {
  max-width: none;
}

.stack-card-sparkles {
  position: absolute;
  right: 22px;
  bottom: 16px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  opacity: 0.92;
}

.stack-card-sparkles svg {
  display: block;
  fill: rgba(255, 255, 255, 0.92);
  filter: drop-shadow(0 12px 24px rgba(20, 42, 48, 0.22));
}

.stack-card-sparkles svg:first-child {
  width: 50px;
  height: 50px;
}

.stack-card-sparkles svg:last-child {
  width: 82px;
  height: 82px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.benefit-card,
.step-card,
.pricing-card,
.faq-item,
.blog-card,
.testimonial-card,
.doctor-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
}

.benefit-card {
  padding: 22px;
}

.benefit-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-top: 20px;
  border-radius: 16px;
  background: rgba(15, 59, 120, 0.08);
  color: var(--deep);
  font-size: 14px;
  font-weight: 800;
}

.benefit-card h3,
.step-card h3,
.doctor-card h3,
.pricing-card h3,
.blog-card h3,
.process-panel h3 {
  margin: 18px 0 10px;
  font-size: 28px;
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.benefit-visual {
  position: relative;
  min-height: 220px;
  border-radius: 24px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(226, 241, 249, 0.74), rgba(163, 217, 177, 0.22)),
    var(--surface);
}

.visual-sheet,
.visual-panel,
.visual-dot,
.shield-icon,
.lock-line,
.doc-card,
.doc-lines {
  position: absolute;
}

.visual-sheet {
  left: 18px;
  right: 74px;
  bottom: 20px;
  top: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.72));
  box-shadow: 0 20px 40px rgba(50, 49, 74, 0.08);
}

.visual-panel {
  top: 34px;
  right: 20px;
  width: 78px;
  height: 96px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(21, 101, 163, 0.82), rgba(21, 101, 163, 0.22)),
    #ffffff;
}

.visual-dot {
  right: 32px;
  bottom: 30px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--accent-2);
  box-shadow: 0 0 0 12px rgba(163, 217, 177, 0.24);
}

.shield-icon {
  inset: 34px auto auto 34px;
  width: 120px;
  height: 140px;
  background: linear-gradient(180deg, rgba(15, 59, 120, 0.95), rgba(163, 217, 177, 0.88));
  clip-path: polygon(50% 0%, 92% 18%, 92% 54%, 50% 100%, 8% 54%, 8% 18%);
}

.lock-line {
  right: 34px;
  bottom: 34px;
  width: 110px;
  height: 110px;
  border: 16px solid rgba(15, 59, 120, 0.14);
  border-radius: 24px;
}

.doc-card {
  inset: 26px 28px 26px 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 255, 0.8));
}

.doc-lines {
  left: 52px;
  right: 52px;
  top: 62px;
  bottom: 60px;
  background:
    linear-gradient(var(--accent) 0 0) left top/54% 12px no-repeat,
    linear-gradient(rgba(15, 16, 19, 0.12) 0 0) left 38px/100% 8px no-repeat,
    linear-gradient(rgba(15, 16, 19, 0.12) 0 0) left 72px/100% 8px no-repeat,
    linear-gradient(rgba(15, 16, 19, 0.12) 0 0) left 106px/76% 8px no-repeat,
    linear-gradient(rgba(163, 217, 177, 0.58) 0 0) right bottom/88px 88px no-repeat;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.step-card {
  padding: 28px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(21, 101, 163, 0.12);
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.open-feature-section {
  position: relative;
}

.open-feature-section + .open-feature-section {
  padding-top: 136px;
}

.open-feature-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.92fr);
  align-items: stretch;
  gap: 50px;
  padding: 18px 0;
}

.open-feature-shell-reversed {
  grid-template-columns: minmax(400px, 0.92fr) minmax(0, 1.08fr);
}

.open-feature-shell-reversed .open-feature-copy {
  justify-self: end;
}

.open-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 520px;
  max-width: none;
}

.open-feature-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(2.7rem, 4.8vw, 4.4rem);
  line-height: 0.97;
  letter-spacing: -0.055em;
}

.open-feature-copy p {
  max-width: 40ch;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
  letter-spacing: -0.02em;
}

.open-feature-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 26px 0 30px;
  list-style: none;
}

.open-feature-list li {
  position: relative;
  padding-left: 44px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
}

.open-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.14em;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--deep);
  box-shadow: 0 10px 20px rgba(15, 59, 120, 0.14);
}

.open-feature-list li::after {
  content: "";
  position: absolute;
  left: 8px;
  top: calc(0.14em + 8px);
  width: 10px;
  height: 6px;
  border-left: 2.5px solid #ffffff;
  border-bottom: 2.5px solid #ffffff;
  transform: rotate(-45deg);
}

.open-feature-media {
  position: relative;
  min-height: 520px;
}

.open-feature-image {
  position: relative;
  min-height: 520px;
  height: 100%;
  border-radius: 34px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(228, 241, 250, 0.88), rgba(255, 255, 255, 0.96));
  box-shadow: var(--shadow-md);
}

.open-feature-image::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: inherit;
  pointer-events: none;
}

.open-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.open-feature-sparkles {
  position: absolute;
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 12px;
  pointer-events: none;
  opacity: 0.94;
}

.open-feature-sparkles svg {
  display: block;
  width: 64px;
  height: 64px;
  filter: drop-shadow(0 10px 18px rgba(15, 59, 120, 0.12));
}

.open-feature-sparkles-right {
  right: -10px;
  bottom: 20px;
}

.open-feature-sparkles-right svg {
  fill: rgba(163, 217, 177, 0.9);
}

.open-feature-sparkles-left {
  left: -8px;
  top: 20px;
}

.open-feature-sparkles-left svg {
  fill: rgba(21, 101, 163, 0.84);
}

.split-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(400px, 1.06fr);
  gap: 36px;
  padding: 38px;
  background:
    radial-gradient(circle at 0% 0%, rgba(163, 217, 177, 0.24), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
}

.check-list,
.process-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 28px 0;
  list-style: none;
}

.check-list li,
.process-list li {
  position: relative;
  padding-left: 34px;
  color: var(--deep);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.65;
}

.check-list li::before,
.process-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  box-shadow: 0 8px 18px rgba(21, 101, 163, 0.22);
}

.split-visual {
  position: relative;
  min-height: 540px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 75% 18%, rgba(21, 101, 163, 0.24), transparent 22%),
    linear-gradient(180deg, rgba(238, 245, 251, 0.76), rgba(255, 255, 255, 0.92));
  overflow: hidden;
}

.visual-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-md);
}

.visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-card-main {
  inset: 28px 26px 74px 26px;
  border-radius: 28px;
}

.visual-card-secondary {
  right: 30px;
  top: 32px;
  width: 180px;
  height: 200px;
  border-radius: 22px;
}

.visual-note {
  position: absolute;
  left: 28px;
  bottom: 28px;
  max-width: 220px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.visual-note strong {
  display: block;
  margin-bottom: 4px;
  font-size: 18px;
  letter-spacing: -0.04em;
}

.visual-note span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.process-section {
  padding-top: 28px;
}

.process-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.96fr);
  gap: 26px;
  padding: 38px;
  background:
    radial-gradient(circle at 80% 0%, rgba(21, 101, 163, 0.22), transparent 28%),
    linear-gradient(180deg, var(--deep) 0%, var(--deep-2) 100%);
  color: #ffffff;
}

.process-copy .process-list li {
  color: #ffffff;
}

.process-stack {
  position: relative;
  min-height: 430px;
}

.process-panel {
  position: absolute;
  inset: auto;
  border-radius: 28px;
  transition: transform 0.4s var(--ease);
}

.panel-back,
.panel-mid {
  left: 0;
  right: 0;
  height: 340px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-back {
  top: 12px;
  transform: translate(18px, 0) rotate(-3deg);
}

.panel-mid {
  top: 26px;
  transform: translate(6px, 0) rotate(-1.2deg);
}

.panel-front {
  inset: 50px 0 0 0;
  padding: 28px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  box-shadow: 0 30px 70px rgba(11, 27, 31, 0.24);
}

.slider-controls {
  display: flex;
  gap: 10px;
}

.slider-button {
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(80, 78, 106, 0.08);
  transition:
    transform 0.35s var(--ease),
    background-color 0.35s ease,
    border-color 0.35s ease;
}

.slider-button:hover,
.slider-button:focus-visible {
  transform: translateY(-2px);
  background: var(--surface);
}

.slider-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(310px, 360px);
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.card-slider {
  align-items: stretch;
  padding-bottom: 0;
}

.slider-track::-webkit-scrollbar {
  display: none;
}

.slider-track > * {
  scroll-snap-align: start;
}

.doctor-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  height: 100%;
  align-self: stretch;
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: none;
}

.doctor-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
  padding: clamp(24px, 3vw, 34px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 252, 0.98));
  border-bottom: 1px solid rgba(17, 18, 22, 0.05);
}

.doctor-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.doctor-content {
  display: block;
  flex: 1;
  padding: 22px;
  background: var(--surface);
}

.doctor-content > div {
  flex: 1;
}

.doctor-content p,
.doctor-content span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.testimonial-track {
  grid-auto-columns: minmax(300px, 380px);
}

.testimonial-card {
  padding: 26px;
  box-shadow: none;
}

.testimonial-rating {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(21, 101, 163, 0.12);
  margin-bottom: 20px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.testimonial-text {
  margin: 0 0 28px;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(21, 101, 163, 0.22), rgba(163, 217, 177, 0.28));
  color: var(--deep);
  font-size: 16px;
  font-weight: 800;
}

.testimonial-name {
  display: block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.testimonial-location {
  color: var(--muted);
  font-size: 14px;
}

.pricing-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.pricing-toggle {
  display: inline-flex;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 30px rgba(15, 59, 120, 0.08);
}

.toggle-option {
  min-width: 104px;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.toggle-option.is-active {
  background: var(--deep);
  color: #ffffff;
  transform: translateY(-1px);
}

.discount-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(163, 217, 177, 0.22);
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.pricing-card {
  padding: 30px;
}

.pricing-card.is-featured {
  transform: translateY(-8px);
  background:
    linear-gradient(180deg, rgba(21, 101, 163, 0.1), rgba(255, 255, 255, 0.94)),
    #ffffff;
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(15, 59, 120, 0.08);
  color: var(--deep);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.pricing-price {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin: 28px 0 18px;
}

.pricing-price strong {
  font-size: 56px;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.pricing-price span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

.pricing-features {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 28px;
  list-style: none;
}

.pricing-features li {
  position: relative;
  padding-left: 24px;
  color: var(--deep);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.pricing-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.faq-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 26px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 0;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  text-align: left;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.faq-icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0);
  opacity: 0;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.blog-card {
  display: grid;
  overflow: hidden;
}

.blog-image {
  aspect-ratio: 1.18 / 1;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.blog-card:hover .blog-image img,
.blog-card:focus-within .blog-image img {
  transform: scale(1.06);
}

.blog-content {
  padding: 22px;
}

.blog-date {
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.subpage-body .hero-section {
  min-height: auto;
}

.manufacturing-hero-section {
  padding-top: 30px;
}

.manufacturing-hero-shell {
  align-items: stretch;
}

.manufacturing-hero-copy {
  max-width: 760px;
}

.manufacturing-hero-copy h1 {
  max-width: 11.5ch;
}

.manufacturing-hero-visual {
  min-height: clamp(560px, 68svh, 740px);
}

.manufacturing-capability-grid,
.manufacturing-quality-grid,
.placeholder-grid {
  display: grid;
  gap: 22px;
}

.manufacturing-capability-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.manufacturing-quality-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.capability-card,
.quality-point,
.product-card,
.placeholder-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
}

.capability-card {
  padding: 24px;
}

.capability-card h3,
.quality-point h3,
.placeholder-card h3,
.product-compact-content h3 {
  margin: 18px 0 10px;
  font-size: 28px;
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.capability-card p,
.quality-point p,
.placeholder-card p,
.product-summary,
.product-placeholder-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
  letter-spacing: -0.02em;
}

.capability-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(21, 101, 163, 0.16), rgba(163, 217, 177, 0.26));
  color: var(--deep);
}

.capability-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.manufacturing-quality-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 24px;
  padding: 32px;
  border: 1px solid rgba(21, 101, 163, 0.12);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 0% 0%, rgba(163, 217, 177, 0.22), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
  box-shadow: var(--shadow-md);
}

.manufacturing-quality-copy p {
  max-width: 44ch;
}

.quality-point {
  padding: 24px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.product-card {
  display: grid;
  width: 100%;
  max-width: none;
  justify-self: stretch;
  align-self: stretch;
  height: 100%;
  will-change: transform, opacity;
  transition:
    max-width 0.58s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.3s ease,
    transform 0.58s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card-shell {
  display: grid;
  height: 100%;
  min-height: 0;
  will-change: grid-template-columns, height;
  transition:
    grid-template-columns 0.58s cubic-bezier(0.22, 1, 0.36, 1),
    gap 0.58s cubic-bezier(0.22, 1, 0.36, 1),
    height 0.58s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-preview {
  display: grid;
  grid-template-rows: auto auto;
  min-width: 0;
  height: 100%;
  min-height: 0;
  align-content: start;
  will-change: grid-template-rows, border-color;
  transition:
    grid-template-rows 0.58s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.34s ease;
}

.product-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: start;
  min-height: 0;
  overflow: hidden;
  isolation: isolate;
}

.product-stage::before {
  display: none;
}

.product-stage-bottle {
  background: none;
}

.product-stage-pouch {
  background: none;
}

.product-stage-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(15, 59, 120, 0.9);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-photo {
  display: block;
  width: 100%;
  max-height: none;
  object-position: center;
  filter: none;
  will-change: transform, opacity;
  transition:
    transform 0.62s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.24s ease;
}

.product-photo--default {
  position: relative;
  z-index: 1;
  height: auto;
  object-fit: contain;
  opacity: 1;
  transform: scale(1);
}

.product-photo--expanded {
  position: absolute;
  inset: 0;
  z-index: 0;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.045);
  pointer-events: none;
}

.product-compact-content {
  padding: 14px 18px 18px;
  background: rgba(255, 255, 255, 0.96);
  min-height: 0;
  overflow: hidden;
  will-change: transform, opacity, padding;
  transition:
    opacity 0.24s ease,
    transform 0.58s cubic-bezier(0.22, 1, 0.36, 1),
    padding 0.58s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-compact-content h3 {
  margin: 12px 0 0;
  font-size: clamp(1.9rem, 2vw, 2.3rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.product-detail-panel {
  display: grid;
  align-content: start;
  padding: 0 20px 20px;
  min-width: 0;
  overflow: hidden;
  will-change: transform, opacity, padding;
}

.product-detail-content {
  display: grid;
  gap: 14px;
  will-change: transform, opacity;
}

.product-detail-head {
  display: none;
  gap: 12px;
}

.product-detail-head h3 {
  margin: 0;
  font-size: clamp(1.9rem, 2vw, 2.3rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.product-summary {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: -0.02em;
}

.product-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(21, 101, 163, 0.12);
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-detail-list {
  display: grid;
  gap: 0;
}

.product-fact {
  padding: 14px 0;
  border: 0;
  border-radius: 0;
  background: none;
}

.product-fact + .product-fact {
  border-top: 1px solid rgba(17, 18, 22, 0.08);
}

.product-fact span {
  display: block;
  margin-bottom: 6px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-fact strong {
  display: block;
  font-size: 15px;
  line-height: 1.45;
  letter-spacing: -0.03em;
}

@media (min-width: 1025px) and (hover: hover) and (pointer: fine) {
  .product-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
    will-change: grid-template-columns;
    transition: grid-template-columns 0.58s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .product-grid.is-second-active {
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.08fr);
  }

  .product-card.is-active {
    max-width: none;
  }

  .product-card-shell {
    grid-template-columns: minmax(0, 1fr) 0fr;
    height: min(var(--product-card-height, 999px), clamp(420px, 68svh, 620px));
  }

  .product-detail-panel {
    padding: 28px 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(28px);
    transition:
      opacity 0.2s ease,
      transform 0.58s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0s linear 0.58s,
      padding 0.58s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .product-detail-content {
    opacity: 0;
    transform: translateY(10px);
    transition:
      opacity 0.18s ease,
      transform 0.24s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .product-detail-head {
    display: grid;
  }

  .product-card.is-active .product-card-shell {
    grid-template-columns: minmax(260px, 300px) minmax(0, 1fr);
  }

  .product-card.is-active .product-preview {
    grid-template-rows: minmax(0, 1fr) 0fr;
    align-content: stretch;
    border-right: 1px solid rgba(17, 18, 22, 0.06);
  }

  .product-card.is-active .product-stage {
    align-self: stretch;
    height: 100%;
  }

  .product-card.is-active .product-photo--default {
    opacity: 0;
    transform: scale(1.03);
  }

  .product-card.is-active .product-photo--expanded {
    opacity: 1;
    transform: scale(1);
  }

  .product-card.is-active .product-compact-content {
    opacity: 0;
    transform: translateY(14px);
    padding-top: 0;
    padding-bottom: 0;
  }

  .product-card.is-active .product-detail-panel {
    padding: 28px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    overflow-y: auto;
    transform: translateX(0);
    transition-delay: 0.26s, 0.26s, 0s, 0s;
  }

  .product-card.is-active .product-detail-content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.38s, 0.38s;
  }
}

.product-placeholder-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 28px 0 18px;
}

.product-placeholder-heading p {
  max-width: 46ch;
}

.placeholder-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.placeholder-card {
  min-height: 100%;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 253, 0.96));
}

.placeholder-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(15, 59, 120, 0.08);
  color: var(--deep);
  font-size: 14px;
  font-weight: 800;
}

.footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.manufacturing-cta-shell .button-secondary {
  background: rgba(255, 255, 255, 0.82);
}

.footer-cta-section {
  padding-bottom: 0;
}

.footer-cta-shell {
  position: relative;
  overflow: hidden;
  padding: 38px;
  border: 1px solid rgba(21, 101, 163, 0.12);
  border-radius: var(--radius-xl);
  box-shadow: 0 28px 60px rgba(15, 59, 120, 0.14);
  background:
    radial-gradient(circle at 10% 18%, rgba(255, 255, 255, 0.72), transparent 24%),
    radial-gradient(circle at 88% 12%, rgba(21, 101, 163, 0.14), transparent 26%),
    linear-gradient(135deg, rgba(246, 253, 248, 0.98) 0%, rgba(229, 247, 234, 0.98) 42%, rgba(204, 236, 212, 0.98) 100%);
  color: var(--deep);
}

.footer-cta-shell::before,
.footer-cta-shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
}

.footer-cta-shell::before {
  right: -56px;
  top: -72px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(21, 101, 163, 0.14) 0%, rgba(21, 101, 163, 0.06) 40%, transparent 72%);
}

.footer-cta-shell::after {
  left: -44px;
  bottom: -90px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(163, 217, 177, 0.44) 0%, rgba(163, 217, 177, 0.14) 42%, transparent 74%);
}

.footer-cta {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.footer-cta-shell .chip-dark {
  border-color: rgba(21, 101, 163, 0.12);
  background: rgba(255, 255, 255, 0.56);
  color: var(--accent);
}

.footer-cta-shell .footer-cta p {
  color: rgba(16, 36, 62, 0.72);
}

.footer-cta-shell .button-light {
  background: var(--deep);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(15, 59, 120, 0.16);
}

.footer-cta-shell .button-light:hover,
.footer-cta-shell .button-light:focus-visible {
  box-shadow: 0 18px 36px rgba(15, 59, 120, 0.2);
}

.site-footer {
  position: relative;
  isolation: isolate;
  margin-top: clamp(48px, 7vw, 88px);
  padding: 0;
  color: var(--deep);
}

.site-footer::before,
.site-footer::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.site-footer::before {
  display: none;
}

.site-footer::after {
  right: 4%;
  bottom: 0;
  width: 420px;
  height: 360px;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 50%, rgba(21, 101, 163, 0.2) 0%, rgba(21, 101, 163, 0.07) 48%, transparent 72%);
  filter: blur(18px);
  opacity: 0.86;
}

.site-footer > .container {
  width: 100%;
  max-width: none;
}

.site-footer-inner {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: clamp(38px, 4vw, 56px) 0 clamp(24px, 3vw, 34px);
  border-top: 1px solid rgba(15, 59, 120, 0.08);
  border-radius: 42px 42px 0 0;
  background:
    radial-gradient(circle at 100% 100%, rgba(21, 101, 163, 0.16), transparent 34%),
    linear-gradient(135deg, #eef7fc 0%, #f8fcff 52%, #edf8f2 100%);
  box-shadow: 0 -12px 38px rgba(15, 59, 120, 0.08);
}

.site-footer-inner::before,
.site-footer-inner::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
}

.site-footer-inner::before {
  display: none;
}

.site-footer-inner::after {
  right: -100px;
  bottom: -130px;
  width: 340px;
  height: 340px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(21, 101, 163, 0.12) 0%, transparent 70%);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(180px, 0.68fr) minmax(220px, 0.82fr);
  gap: clamp(26px, 3.4vw, 54px);
  width: min(1200px, calc(100% - 64px));
  margin: 0 auto;
  padding: 0 0 32px;
  border-bottom: 1px solid rgba(15, 59, 120, 0.1);
}

.footer-brand-block {
  display: grid;
  gap: 18px;
  max-width: 430px;
  align-content: start;
}

.footer-brand {
  width: fit-content;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.footer-brand .brand-image {
  height: clamp(52px, 4.8vw, 72px);
}

.footer-copy {
  max-width: 34ch;
  margin: 0;
  color: rgba(16, 36, 62, 0.74);
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.72;
}

.footer-column {
  min-width: 0;
  padding-top: 8px;
}

.footer-heading {
  display: inline-block;
  margin-bottom: 18px;
  color: rgba(21, 101, 163, 0.8);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links {
  display: grid;
  gap: 14px;
}

.footer-links a {
  color: var(--deep);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  transition:
    color 0.3s ease,
    transform 0.3s ease,
    opacity 0.3s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--accent-2);
  transform: translateX(3px);
}

.footer-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  width: min(1200px, calc(100% - 64px));
  margin-inline: auto;
  padding-top: 22px;
  border-top: 1px solid rgba(15, 59, 120, 0.08);
}

.footer-bottom p {
  margin: 0;
  color: rgba(16, 36, 62, 0.68);
  font-size: 14px;
}

.footer-bottom-note {
  text-align: right;
}

[data-reveal] {
  opacity: 0;
  filter: blur(10px);
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease),
    filter 0.7s var(--ease);
  transition-delay: var(--delay, 0ms);
}

[data-reveal="left"] {
  transform: translate3d(24px, 0, 0);
}

[data-reveal="right"] {
  transform: translate3d(-24px, 0, 0);
}

[data-reveal].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

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

@keyframes brandStripScroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 1100px) {
  .hero-shell,
  .open-feature-shell,
  .open-feature-shell-reversed,
  .split-shell,
  .process-shell,
  .faq-shell,
  .manufacturing-quality-shell {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    gap: 34px;
  }

  .hero-visual {
    min-height: 560px;
  }

  .open-feature-shell {
    gap: 34px;
  }

  .open-feature-shell-reversed .open-feature-copy {
    justify-self: start;
  }

  .open-feature-copy {
    min-height: 460px;
  }

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

  .footer-brand-block {
    grid-column: 1 / -1;
    max-width: 560px;
  }

  .open-feature-media,
  .open-feature-image {
    min-height: 460px;
  }

  .split-visual {
    min-height: 480px;
  }

  .benefits-stack {
    height: calc(100svh - 112px + 2px);
  }

  .stack-card-layout-back,
  .stack-card-layout-mid,
  .stack-card-layout-front {
    grid-template-columns: 1fr 0.92fr;
  }

  .benefits-grid,
  .steps-grid,
  .pricing-grid,
  .blog-grid,
  .manufacturing-capability-grid,
  .placeholder-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .manufacturing-quality-copy p {
    max-width: none;
  }
}

@media (max-width: 1180px) {
  .header-shell {
    gap: 16px;
    padding-inline: 16px;
  }

  .nav-area {
    flex: 1 1 auto;
    justify-content: flex-end;
    gap: 14px;
    margin-left: 0;
  }

  .nav-links {
    position: static;
    left: auto;
    transform: none;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .swap-link {
    font-size: 13px;
  }

  .header-shell .button {
    flex: 0 0 auto;
    padding: 0 16px;
  }
}

@media (max-width: 1024px) {
  .section {
    padding-top: 80px;
  }

  .hero-copy,
  .open-feature-copy,
  .split-copy,
  .process-copy,
  .faq-heading,
  .footer-cta {
    max-width: none;
  }

  .hero-visual,
  .manufacturing-hero-visual,
  .about-hero-visual,
  .distribution-hero-visual {
    min-height: clamp(400px, 54vw, 560px);
  }

  .contact-map-card {
    min-height: clamp(360px, 55vw, 520px);
  }

  .contact-map-embed {
    min-height: clamp(340px, 52vw, 500px);
  }
}

@media (max-width: 860px) {
  .hero-section {
    display: block;
    min-height: auto;
    padding-top: 24px;
  }

  .open-feature-section + .open-feature-section {
    padding-top: 104px;
  }

  .site-header {
    top: 10px;
    padding-top: 10px;
  }

  .header-shell {
    position: relative;
    border-radius: 24px;
    padding: 10px 64px 10px 12px;
    align-items: center;
    gap: 12px;
  }

  .menu-toggle {
    display: inline-flex;
    position: absolute;
    top: 50%;
    right: 12px;
    z-index: 2;
    margin-left: 0;
    border-color: rgba(15, 59, 120, 0.22);
    background: var(--deep);
    box-shadow: 0 12px 28px rgba(15, 59, 120, 0.18);
    transform: translateY(-50%);
  }

  .menu-toggle span {
    background: #ffffff;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .nav-area {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 10px);
    display: grid;
    gap: 16px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-md);
    max-height: min(70svh, 420px);
    overflow-y: auto;
    overscroll-behavior: contain;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition:
      opacity 0.25s ease,
      visibility 0.25s ease,
      transform 0.25s ease;
  }

  .nav-area.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links {
    display: grid;
    width: 100%;
    justify-items: start;
    gap: 14px;
    position: static;
    left: auto;
    transform: none;
  }

  .swap-link {
    width: 100%;
    height: auto;
    min-height: 1.4em;
    padding: 4px 0;
  }

  .nav-area .button {
    width: 100%;
  }

  .site-footer-inner {
    padding: 24px 0 20px;
    border-radius: 28px 28px 0 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    width: calc(100% - 32px);
  }

  .footer-brand-block {
    grid-column: auto;
    max-width: none;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
    padding-top: 18px;
  }

  .footer-bottom-note {
    text-align: left;
  }

  .split-shell,
  .process-shell,
  .footer-cta-shell {
    padding: 26px;
  }

  .open-feature-shell,
  .open-feature-shell-reversed {
    gap: 26px;
    padding: 0;
  }

  .manufacturing-hero-visual {
    min-height: 520px;
  }

  .manufacturing-capability-grid,
  .manufacturing-quality-grid,
  .product-grid,
  .placeholder-grid {
    grid-template-columns: 1fr;
  }

  .manufacturing-quality-shell {
    padding: 26px;
  }

  .product-card {
    max-width: none;
  }

  .product-card-shell {
    grid-template-columns: 1fr;
  }

  .product-placeholder-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .open-feature-copy {
    max-width: none;
    min-height: auto;
  }

  .open-feature-copy p {
    max-width: none;
  }

  .open-feature-media,
  .open-feature-image {
    min-height: 380px;
  }

  .hero-copy h1 {
    max-width: 10.5ch;
  }

  .hero-copy h1 span::before {
    left: -0.76em;
    width: 0.52em;
    height: 7px;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0;
  }

  .hero-visual {
    min-height: 520px;
  }

  .benefits-stack-wrap {
    height: auto;
  }

  .benefits-stack {
    position: relative;
    top: auto;
    height: auto;
    overflow: visible;
    border-radius: 0;
    display: grid;
    gap: 18px;
  }

  .stack-card {
    position: relative;
    inset: auto;
    min-height: auto;
    transform: none !important;
  }

  .stack-card-back,
  .stack-card-mid,
  .stack-card-front {
    left: auto;
    right: auto;
    top: auto;
  }

  .stack-card-layout-back,
  .stack-card-layout-mid,
  .stack-card-layout-front {
    grid-template-columns: 1fr;
  }

  .stack-card-media-wide,
  .stack-card-media-tall {
    height: 250px;
  }

  .benefits-grid,
  .steps-grid,
  .pricing-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-strip {
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 14px;
    padding: 0;
  }

  .strip-label {
    white-space: normal;
  }

  .footer-cta-actions {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 20px, 1200px);
  }

  .hero-section {
    padding-top: 28px;
    padding-bottom: 72px;
  }

  .open-feature-section + .open-feature-section {
    padding-top: 112px;
  }

  .split-shell,
  .process-shell,
  .footer-cta-shell,
  .manufacturing-quality-shell {
    padding: 20px;
    border-radius: 28px;
  }

  .hero-copy h1,
  .open-feature-copy h2,
  .section-heading h2,
  .split-copy h2,
  .process-copy h2,
  .faq-heading h2,
  .footer-cta h2 {
    font-size: clamp(2.3rem, 10vw, 3.2rem);
  }

  .hero-shell {
    gap: 22px;
    padding: 0;
  }

  .hero-actions,
  .footer-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-actions .button,
  .footer-cta-actions .button {
    width: 100%;
  }

  .hero-copy {
    padding: 0 0 8px;
  }

  .hero-text {
    font-size: 15px;
  }

  .hero-visual {
    min-height: 460px;
  }

  .manufacturing-hero-visual {
    min-height: 460px;
  }

  .capability-card h3,
  .quality-point h3,
  .placeholder-card h3,
  .product-compact-content h3 {
    font-size: 24px;
  }

  .open-feature-shell,
  .open-feature-shell-reversed {
    gap: 22px;
  }

  .open-feature-media,
  .open-feature-image {
    min-height: 320px;
  }

  .open-feature-image {
    border-radius: 28px;
  }

  .open-feature-list {
    gap: 14px;
    margin: 24px 0 28px;
  }

  .open-feature-list li {
    padding-left: 38px;
    font-size: 15px;
  }

  .open-feature-list li::before {
    width: 24px;
    height: 24px;
  }

  .open-feature-list li::after {
    left: 7px;
    top: calc(0.14em + 7px);
    width: 9px;
    height: 5px;
  }

  .open-feature-sparkles {
    gap: 10px;
  }

  .open-feature-sparkles svg {
    width: 44px;
    height: 44px;
  }

  .open-feature-sparkles-right {
    right: -2px;
    bottom: 12px;
  }

  .open-feature-sparkles-left {
    left: -2px;
    top: 12px;
  }

  .split-visual {
    min-height: 360px;
  }

  .stack-card-layout {
    padding: 20px;
  }

  .stack-card-number {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    font-size: 18px;
  }

  .stack-card-media-wide,
  .stack-card-media-tall {
    height: 220px;
  }

  .benefits-stack-wrap {
    margin-top: 8px;
  }

  .hero-floating-card {
    width: 138px;
    right: 16px;
    top: 16px;
  }

  .sparkle-a {
    width: 96px;
    height: 96px;
  }

  .hero-badge {
    left: 16px;
    right: 16px;
    max-width: none;
  }

  .slider-track {
    grid-auto-columns: minmax(84vw, 84vw);
  }

  .product-compact-content,
  .product-detail-panel {
    padding: 20px;
  }

  .pricing-card.is-featured {
    transform: none;
  }
}

.distribution-hero-section {
  padding-top: 30px;
}

.about-hero-section {
  padding-top: 30px;
}

.about-hero-shell {
  align-items: stretch;
}

.about-hero-copy {
  max-width: 760px;
}

.about-hero-copy h1 {
  max-width: 10.6ch;
}

.about-hero-visual {
  min-height: clamp(560px, 68svh, 740px);
  border: 0;
  background: none;
  box-shadow: var(--shadow-md);
}

.about-hero-visual .hero-media {
  inset: 0;
  border-radius: inherit;
}

.about-statement-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-md);
}

.about-story-shell {
  padding: 0;
  background: none;
}

.about-story-visual {
  min-height: 540px;
  background: none;
  box-shadow: var(--shadow-md);
}

.about-story-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-statement-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.about-statement-card {
  padding: 30px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 100% 0%, rgba(163, 217, 177, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 253, 0.96));
}

.about-statement-card::before {
  content: "";
  position: absolute;
  top: -72px;
  right: -66px;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(21, 101, 163, 0.14) 0%, rgba(21, 101, 163, 0.04) 44%, transparent 72%);
  pointer-events: none;
}

.about-statement-card blockquote {
  position: relative;
  z-index: 1;
  margin: 20px 0 0;
  font-family: var(--font-secondary);
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.about-statement-card-accent {
  background:
    radial-gradient(circle at 0% 100%, rgba(163, 217, 177, 0.22), transparent 28%),
    linear-gradient(180deg, rgba(15, 59, 120, 0.98), rgba(21, 101, 163, 0.98));
  color: #ffffff;
}

.about-statement-card-accent::before {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, rgba(163, 217, 177, 0.08) 38%, transparent 72%);
}

.about-statement-card-accent .step-number {
  background: rgba(255, 255, 255, 0.12);
  color: var(--accent-2);
}

.about-values-grid,
.about-leadership-grid {
  align-items: stretch;
}

.about-value-card {
  min-height: 100%;
}

.about-value-card .capability-icon {
  background:
    linear-gradient(135deg, rgba(21, 101, 163, 0.16), rgba(163, 217, 177, 0.28));
}

.about-portrait {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 4.55;
  padding: 0;
  background: none;
  border-bottom: 0;
}

.about-portrait::before {
  display: none;
}

.about-portrait::after {
  display: none;
}

.about-portrait img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.about-portrait-nikitha img {
  object-position: center 14%;
}

.about-portrait-harindu img {
  object-position: center 18%;
}

.about-portrait-saliya img {
  object-position: center 12%;
}

.about-leader-card {
  box-shadow:
    0 20px 36px rgba(15, 59, 120, 0.08),
    0 34px 72px rgba(15, 59, 120, 0.14);
}

.about-leader-card .doctor-content {
  background:
    linear-gradient(180deg, rgba(237, 245, 251, 0.84), rgba(255, 255, 255, 0.96));
}

.about-leader-card .doctor-content span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.about-leader-card .doctor-content p {
  margin-top: 10px;
}

.distribution-hero-shell {
  align-items: stretch;
}

.distribution-hero-copy {
  max-width: 700px;
}

.distribution-hero-visual {
  min-height: 620px;
  border: 0;
  background: none;
  box-shadow: var(--shadow-md);
}

.distribution-hero-visual .hero-media {
  inset: 0;
  border-radius: inherit;
}

.distribution-network-card,
.partner-brand-card,
.distribution-cta-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-md);
}

.distribution-network-shell,
.distribution-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  gap: 22px;
}

.distribution-network-card,
.distribution-cta-card {
  padding: 30px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 253, 0.96));
}

.distribution-network-card::before,
.partner-brand-card::before,
.distribution-cta-card::before {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
  border-radius: 999px;
  opacity: 0.9;
}

.distribution-network-card::before {
  top: -72px;
  right: -66px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(21, 101, 163, 0.14) 0%, rgba(21, 101, 163, 0.04) 44%, transparent 72%);
}

.distribution-network-card h3,
.distribution-cta-card h3,
.partner-brand-card h3 {
  margin: 20px 0 12px;
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.distribution-network-card p,
.distribution-cta-card p,
.partner-brand-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
  letter-spacing: -0.02em;
}

.distribution-metric-wall {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.distribution-metric-card {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid rgba(17, 18, 22, 0.08);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 253, 0.96));
}

.distribution-metric-card-primary {
  grid-column: 1 / -1;
  min-height: 280px;
  background:
    radial-gradient(circle at 100% 0%, rgba(163, 217, 177, 0.2), transparent 28%),
    linear-gradient(180deg, rgba(15, 59, 120, 0.98), rgba(21, 101, 163, 0.98));
  color: #ffffff;
}

.distribution-metric-card-accent {
  background:
    radial-gradient(circle at 0% 100%, rgba(163, 217, 177, 0.24), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(232, 247, 236, 0.96));
}

.distribution-metric-label {
  display: block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.distribution-metric-card-primary .distribution-metric-label {
  color: rgba(255, 255, 255, 0.72);
}

.distribution-metric-card strong {
  display: block;
  margin: 14px 0 0;
  font-size: clamp(4.8rem, 11vw, 7.8rem);
  line-height: 1;
  letter-spacing: -0.08em;
}

.distribution-metric-card p {
  max-width: 22ch;
  margin-top: 18px;
}

.distribution-metric-card-primary p {
  color: rgba(255, 255, 255, 0.78);
}

.distribution-metric-card-accent p {
  color: rgba(16, 36, 62, 0.7);
}

.distribution-channel-grid {
  display: grid;
  gap: 22px;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.partner-brand-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 253, 0.96));
}

.partner-brand-card::before {
  right: -72px;
  top: -72px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(163, 217, 177, 0.24) 0%, rgba(163, 217, 177, 0.08) 44%, transparent 72%);
}

.partner-brand-logo-shell {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  padding: 28px;
  border-bottom: 1px solid rgba(17, 18, 22, 0.06);
  background:
    linear-gradient(180deg, rgba(237, 245, 251, 0.7), rgba(255, 255, 255, 0.9));
}

.partner-brand-logo-shell img {
  width: min(100%, 240px);
  max-height: 120px;
  object-fit: contain;
}

.partner-brand-copy {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 24px;
}

.partner-brand-copy .product-tags {
  margin-top: 0;
}

.distribution-cta-card {
  border-radius: var(--radius-xl);
}

.distribution-cta-card::before {
  left: -56px;
  bottom: -90px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(163, 217, 177, 0.22) 0%, rgba(163, 217, 177, 0.08) 44%, transparent 74%);
}

.distribution-cta-card-brand {
  background:
    radial-gradient(circle at 100% 0%, rgba(163, 217, 177, 0.2), transparent 28%),
    linear-gradient(180deg, rgba(15, 59, 120, 0.98), rgba(21, 101, 163, 0.98));
  color: #ffffff;
}

.distribution-cta-card-brand .section-chip {
  border-color: rgba(163, 217, 177, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent-2);
}

.distribution-cta-card-brand p,
.distribution-cta-card-brand .distribution-cta-list li {
  color: rgba(255, 255, 255, 0.8);
}

.distribution-cta-card-brand .distribution-cta-list li::before {
  background: var(--accent-2);
  box-shadow: none;
}

.distribution-cta-list {
  margin-bottom: 30px;
}

@media (max-width: 1100px) {
  .about-statement-grid {
    grid-template-columns: 1fr;
  }

  .distribution-network-shell,
  .distribution-cta-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .about-hero-visual {
    min-height: 520px;
  }

  .about-values-grid,
  .about-leadership-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .distribution-hero-visual {
    min-height: 520px;
  }

  .distribution-network-card,
  .distribution-cta-card {
    padding: 26px;
  }

  .distribution-channel-grid,
  .partner-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .about-hero-visual {
    min-height: 460px;
  }

  .about-statement-card blockquote {
    font-size: 24px;
  }

  .about-statement-card,
  .about-leader-card .doctor-content {
    padding: 20px;
  }

  .about-values-grid,
  .about-leadership-grid {
    grid-template-columns: 1fr;
  }

  .distribution-hero-visual {
    min-height: 460px;
  }

  .distribution-network-card h3,
  .distribution-cta-card h3,
  .partner-brand-card h3 {
    font-size: 24px;
  }

  .distribution-network-card,
  .distribution-cta-card,
  .partner-brand-copy {
    padding: 20px;
  }

  .partner-brand-logo-shell {
    min-height: 180px;
    padding: 22px;
  }

  .distribution-metric-wall {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .distribution-metric-card,
  .distribution-metric-card-primary {
    min-height: 200px;
    padding: 20px;
  }

  .distribution-metric-card strong {
    font-size: clamp(4rem, 18vw, 5.8rem);
  }
}

.contact-map-copy h2 {
  margin: 16px 0 12px;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.contact-map-copy p,
.contact-detail-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
  letter-spacing: -0.02em;
}

.contact-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.contact-detail-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  min-height: 100%;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0%, rgba(163, 217, 177, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 253, 0.96));
  box-shadow: var(--shadow-md);
}

.contact-detail-card::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -56px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(21, 101, 163, 0.14) 0%, rgba(21, 101, 163, 0.04) 44%, transparent 72%);
  pointer-events: none;
}

.contact-detail-card h3 {
  margin: 18px 0 12px;
  font-size: clamp(1.55rem, 2vw, 1.95rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  overflow-wrap: anywhere;
}

.contact-detail-card > * {
  position: relative;
  z-index: 1;
}

.contact-detail-icon {
  margin: auto 0 18px;
  font-size: clamp(2.6rem, 3.2vw, 3.25rem);
  color: var(--deep);
  opacity: 0.92;
}

.contact-detail-card-email .contact-detail-icon {
  color: #155c97;
}

.contact-detail-card-web .contact-detail-icon {
  color: #0f5c6c;
}

.contact-detail-card-address .contact-detail-icon {
  color: #1a4f87;
}

.contact-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--deep);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.contact-inline-link::after {
  content: "\2197";
  font-size: 15px;
}

.contact-map-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 22px;
  align-items: stretch;
}

.contact-map-copy,
.contact-map-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.contact-map-copy {
  padding: 30px;
  background:
    radial-gradient(circle at 0% 100%, rgba(163, 217, 177, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 253, 0.96));
}

.contact-map-info {
  display: grid;
  gap: 6px;
  margin-top: 18px;
}

.contact-map-info strong {
  color: var(--ink);
  font-weight: 700;
}

.contact-map-copy::before {
  content: "";
  position: absolute;
  right: -56px;
  top: -56px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(21, 101, 163, 0.14) 0%, rgba(21, 101, 163, 0.04) 44%, transparent 72%);
  pointer-events: none;
}

.contact-map-card {
  min-height: 560px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.94);
}

.contact-map-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: inherit;
  pointer-events: none;
}

.contact-map-embed {
  width: 100%;
  height: 100%;
  min-height: 540px;
  border: 0;
  border-radius: 26px;
}

.contact-cta-shell .button-secondary {
  background: rgba(255, 255, 255, 0.82);
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 60px;
  padding: 0 20px 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: linear-gradient(135deg, #20c55e 0%, #16984a 100%);
  color: #ffffff;
  box-shadow: 0 20px 40px rgba(32, 197, 94, 0.28);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 44px rgba(32, 197, 94, 0.32);
}

.whatsapp-float-icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.whatsapp-float-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.whatsapp-float-text {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .contact-detail-grid,
  .contact-map-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-map-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .contact-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-detail-card,
  .contact-map-copy {
    padding: 26px;
  }

  .contact-map-card {
    min-height: 440px;
  }

  .contact-map-embed {
    min-height: 420px;
  }

  .whatsapp-float {
    right: 18px;
    bottom: 18px;
    min-height: 56px;
    padding: 0 18px 0 14px;
  }
}

@media (max-width: 640px) {
  .contact-detail-grid {
    grid-template-columns: 1fr;
  }

  .contact-map-copy h2,
  .contact-detail-card h3 {
    font-size: 24px;
  }

  .contact-detail-icon {
    margin-bottom: 14px;
    font-size: 2.4rem;
  }

  .contact-detail-card,
  .contact-map-copy {
    padding: 20px;
  }

  .contact-map-card {
    min-height: 360px;
    padding: 8px;
  }

  .contact-map-embed {
    min-height: 344px;
    border-radius: 22px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    max-width: calc(100vw - 28px);
  }
}

@media (max-width: 520px) {
  .hero-copy h1 span::before {
    display: none;
  }

  .whatsapp-float {
    width: 60px;
    height: 60px;
    justify-content: center;
    padding: 0;
  }

  .whatsapp-float-text {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }

  .brand-strip-track {
    animation: none !important;
    transform: none !important;
  }
}
