:root {
  --navy: #16181B;
  --teal: #FF5A1F;
  --sand: #EEF0F1;
  --white: #ffffff;
  --ink: #16181B;
  --muted: rgba(22, 24, 27, 0.64);
  --line: rgba(22, 24, 27, 0.14);
  --soft: rgba(255, 255, 255, 0.74);
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section,
.contact-section {
  scroll-margin-top: 142px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--sand);
  font-family: "DM Sans", Arial, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::selection {
  color: var(--white);
  background: var(--teal);
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(255, 90, 31, 0.7);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 16px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  clip-path: inset(50%);
  transform: translateY(-200%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.skip-link:focus-visible {
  opacity: 1;
  pointer-events: auto;
  clip-path: none;
  transform: translateY(0);
}

img,
svg {
  display: block;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 20;
  width: min(1220px, calc(100% - 32px));
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(24px) saturate(160%);
  transform: translateX(-50%);
  transition: border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  height: 64px;
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 48px rgba(22, 24, 27, 0.1);
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--navy);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 90, 31, 0.5);
  border-radius: 50%;
  color: var(--navy);
  background: var(--white);
  font-family: "DM Sans", -apple-system, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 14px;
}

.main-nav {
  display: flex;
  gap: 30px;
  color: rgba(22, 24, 27, 0.72);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.main-nav a,
.site-footer a {
  position: relative;
  padding: 4px 0;
  transition: color 180ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--teal);
  transition: right 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.main-nav a:hover,
.site-footer a:hover {
  color: var(--navy);
}

.main-nav a:hover::after {
  right: 0;
}

.nav-cta,
.section-cta,
.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(22, 24, 27, 0.12);
  border-radius: var(--radius);
  color: var(--white);
  background: var(--navy);
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-cta {
  min-height: 46px;
  padding: 0 22px;
  font-size: 13.5px;
  letter-spacing: 0.01em;
}

.nav-cta:hover,
.section-cta:hover,
.text-button:hover,
.contact-form button:hover {
  transform: translateY(-2px);
  background: #16181B;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 124px max(24px, calc((100vw - 1180px) / 2)) 76px;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -2;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(247, 245, 242, 0.98) 0%, rgba(247, 245, 242, 0.9) 34%, rgba(247, 245, 242, 0.36) 64%, rgba(247, 245, 242, 0.14) 100%),
    linear-gradient(180deg, rgba(247, 245, 242, 0.14) 0%, rgba(247, 245, 242, 0.88) 100%);
}

.hero-content {
  width: min(840px, 100%);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  overflow-wrap: break-word;
}

h1,
h2 {
  font-family: "DM Sans", -apple-system, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 0.98;
}

h1 {
  max-width: 660px;
  font-size: clamp(42px, 5.35vw, 72px);
}

h2 {
  font-size: clamp(38px, 5vw, 72px);
}

h3 {
  font-size: 22px;
  line-height: 1.16;
}

p {
  color: var(--muted);
  line-height: 1.7;
  overflow-wrap: break-word;
}

.hero-copy {
  max-width: 680px;
  margin: 16px 0 22px;
  color: rgba(20, 35, 55, 0.78);
  font-size: 18px;
}

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

.hero-primary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}

.hero-audience {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 12px;
}

.hero-audience span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid rgba(22, 24, 27, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  color: rgba(22, 24, 27, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 820px;
  margin-top: 18px;
}

.hero-trust article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 2px 9px;
  min-height: 104px;
  padding: 14px 13px;
  border: 1px solid rgba(255, 90, 31, 0.28);
  border-radius: calc(var(--radius) + 2px);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 90, 31, 0.16), transparent 56%),
    rgba(255, 255, 255, 0.8);
  box-shadow:
    0 12px 30px rgba(22, 24, 27, 0.08),
    0 0 18px rgba(255, 90, 31, 0.08);
}

.hero-trust article > span {
  grid-row: span 2;
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 90, 31, 0.12);
  font-size: 17px;
}

.hero-trust strong {
  align-self: end;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.1;
}

.hero-trust small {
  align-self: start;
  color: rgba(22, 24, 27, 0.68);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.hero-audience span::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--teal);
}

.hero-audience {
  margin-top: 8px;
}

.patient-link {
  display: inline-flex;
  margin-top: 14px;
  color: rgba(22, 24, 27, 0.68);
  font-size: 14px;
  font-weight: 800;
  transition: color 180ms ease;
}

.patient-link:hover {
  color: var(--teal);
}

.profile-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 20px;
  border: 1px solid rgba(22, 24, 27, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  color: var(--navy);
  font-weight: 700;
  box-shadow: 0 18px 44px rgba(22, 24, 27, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.profile-button.primary {
  color: var(--white);
  background: var(--navy);
}

.profile-button.hero-control-cta {
  border-color: rgba(255, 90, 31, 0.55);
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.22), transparent 54%),
    linear-gradient(135deg, #FF5A1F 0%, #D83E12 100%);
  color: var(--white);
  box-shadow:
    0 18px 44px rgba(255, 90, 31, 0.26),
    0 0 26px rgba(255, 90, 31, 0.18);
}

.profile-button:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 90, 31, 0.7);
}

.button-icon,
.benefit-card svg {
  width: 24px;
  height: 24px;
}

.button-icon svg {
  width: 100%;
  height: 100%;
}

.benefit-card > svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  color: rgba(22, 24, 27, 0.7);
  font-size: 13px;
  font-weight: 700;
}

.trust-row span {
  padding: 8px 11px;
  border: 1px solid rgba(22, 24, 27, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.64);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  width: 28px;
  height: 44px;
  border: 1px solid rgba(22, 24, 27, 0.22);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 4px;
  height: 8px;
  border-radius: 99px;
  background: var(--navy);
  transform: translateX(-50%);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

.section {
  padding: 110px max(24px, calc((100vw - 1180px) / 2));
  scroll-margin-top: 120px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 28px max(24px, calc((100vw - 1180px) / 2));
  border-top: 1px solid rgba(22, 24, 27, 0.08);
  border-bottom: 1px solid rgba(22, 24, 27, 0.08);
  background: var(--white);
}

.trust-strip span {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.trust-strip span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.brand-ribbon {
  display: grid;
  gap: 18px;
  padding: 30px max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(22, 24, 27, 0.08);
  background: rgba(255, 255, 255, 0.78);
}

.brand-ribbon p {
  margin: 0;
  color: rgba(22, 24, 27, 0.58);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-ribbon div {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
}

.brand-ribbon span {
  display: grid;
  min-height: 56px;
  padding: 8px 14px;
  place-items: center;
  border: 1px solid rgba(22, 24, 27, 0.1);
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--sand);
  font-family: "DM Sans", -apple-system, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.brand-ribbon span:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 90, 31, 0.38);
  background: var(--white);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 44px;
}

.section-heading p {
  max-width: 670px;
  font-size: 18px;
}

.benefit-grid,
.line-grid,
.catalog-grid {
  display: grid;
  gap: 16px;
}

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

.about-grid,
.portfolio-grid {
  display: grid;
  gap: 16px;
}

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

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

.benefit-card,
.catalog-card,
.patient-card,
.contact-form,
.faq-list,
.check-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
}

.benefit-card {
  min-height: 238px;
  padding: 28px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.benefit-card:hover,
.catalog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 90, 31, 0.45);
  background: var(--white);
}

.benefit-card svg {
  margin-bottom: 26px;
  color: var(--teal);
}

.benefit-card p,
.catalog-card p {
  margin-bottom: 0;
}

.split-section {
  background: var(--white);
}

.line-selector-section {
  position: relative;
  padding-top: 130px;
  padding-bottom: 130px;
  background:
    radial-gradient(1px 1px at 20px 20px, rgba(22, 24, 27, 0.08) 1px, transparent 0),
    radial-gradient(1px 1px at 60px 60px, rgba(22, 24, 27, 0.08) 1px, transparent 0);
  background-size: 40px 40px;
}

.line-selector-section .section-heading {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}

.line-selector-section .section-heading h2 {
  font-size: clamp(32px, 4vw, 46px);
}

.spotlight-section {
  position: relative;
  padding: 76px clamp(22px, 5vw, 64px) 84px;
  overflow: hidden;
}

.spotlight-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(600px 300px at 15% 0%, rgba(255, 90, 31, 0.16), transparent 60%),
    linear-gradient(165deg, #16181B, var(--navy) 55%, #16181B);
}

.spotlight-section .section-heading .eyebrow {
  color: var(--teal);
}

.spotlight-section .section-heading h2 {
  color: var(--white);
}

.spotlight-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}

.spotlight-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 4px 22px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

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

.spotlight-card {
  flex: 0 0 clamp(260px, 30vw, 320px);
  scroll-snap-align: start;
}

.product-card.spotlight-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.14);
}

.product-card.spotlight-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 90, 31, 0.6);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.4);
}

.product-card.spotlight-card strong,
.product-card.spotlight-card h3 {
  color: var(--white);
}

.product-card.spotlight-card .product-desc {
  color: rgba(255, 255, 255, 0.78);
}

.product-card.spotlight-card .product-ideal-label {
  color: rgba(255, 255, 255, 0.6);
  border-top-color: rgba(255, 255, 255, 0.14);
}

.product-card.spotlight-card .product-ideal li {
  color: rgba(255, 255, 255, 0.85);
}

.product-card.spotlight-card .product-dose {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.product-card.spotlight-card .product-glp-stat {
  border-bottom-color: rgba(255, 255, 255, 0.16);
}

.product-card.spotlight-card .product-glp-label {
  color: rgba(255, 255, 255, 0.6);
}

.product-card.spotlight-card .product-more {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
}

.product-card.spotlight-card .product-more:hover {
  border-color: var(--teal);
  background: rgba(255, 90, 31, 0.14);
  color: var(--white);
}

.spotlight-arrow {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  cursor: pointer;
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease, opacity 200ms ease, transform 200ms ease;
}

.spotlight-arrow:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}

.spotlight-arrow svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.spotlight-arrow:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
  transform: none;
}

@media (max-width: 700px) {
  .spotlight-arrow {
    display: none;
  }

  .spotlight-card {
    flex-basis: 78vw;
  }
}

.line-grid {
  grid-template-columns: 1.15fr 0.95fr 0.95fr;
}

.line-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: 44px 34px 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--radius) + 8px);
  background: linear-gradient(160deg, #16181B 0%, var(--navy) 62%, #16181B 100%);
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 20px 50px rgba(6, 20, 38, 0.22);
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1), border-color 320ms ease, box-shadow 320ms ease;
}

.line-card:first-child {
  min-height: 460px;
}

.line-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  opacity: 0;
  transition: opacity 320ms ease;
}

.line-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(220px 220px at 88% -10%, rgba(255, 90, 31, 0.34), transparent 70%);
  opacity: 0;
  transition: opacity 320ms ease;
  pointer-events: none;
}

.line-card:hover,
.line-card:focus-visible {
  transform: translateY(-8px);
  border-color: rgba(255, 90, 31, 0.55);
  box-shadow: 0 34px 70px rgba(6, 20, 38, 0.4);
}

.line-card:hover::before,
.line-card:focus-visible::before,
.line-card:hover::after,
.line-card:focus-visible::after {
  opacity: 1;
}

.line-index {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.34);
  font-family: "DM Sans", -apple-system, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: color 320ms ease, border-color 320ms ease;
}

.line-card:hover .line-index {
  color: var(--teal);
  border-color: rgba(255, 90, 31, 0.4);
}

.line-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 90, 31, 0.4);
  border-radius: 50%;
  background: rgba(255, 90, 31, 0.1);
  color: var(--teal);
  box-shadow: 0 0 0 6px rgba(255, 90, 31, 0.06);
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1), background 320ms ease, box-shadow 320ms ease;
}

.line-card:hover .line-icon {
  transform: scale(1.1) rotate(-6deg);
  background: rgba(255, 90, 31, 0.2);
  box-shadow: 0 0 0 10px rgba(255, 90, 31, 0.1);
}

.line-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.line-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  font-family: "DM Sans", -apple-system, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: clamp(22px, 2.4vw, 29px);
  font-weight: 600;
  color: var(--white);
}

.line-card p {
  position: relative;
  z-index: 1;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.65;
}

.line-card-cta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: gap 260ms ease, color 260ms ease, border-color 260ms ease;
}

.line-card:hover .line-card-cta,
.line-card:focus-visible .line-card-cta {
  gap: 12px;
  color: var(--teal);
  border-color: rgba(255, 90, 31, 0.35);
}

.line-card.is-active {
  border-color: rgba(255, 90, 31, 0.6);
}

.line-card.is-active .line-icon {
  background: rgba(255, 90, 31, 0.22);
}

.line-products-preview {
  margin-top: 26px;
}

.line-preview-panel {
  padding: clamp(22px, 3vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(255, 90, 31, 0.28);
  border-radius: 24px;
  background:
    radial-gradient(520px 220px at 12% 0%, rgba(255, 90, 31, 0.18), transparent 68%),
    linear-gradient(145deg, #111315 0%, #181A1D 62%, #101113 100%);
  color: var(--white);
  box-shadow:
    0 24px 70px rgba(22, 24, 27, 0.22),
    0 0 34px rgba(255, 90, 31, 0.12);
}

.line-preview-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.line-preview-heading h3 {
  color: var(--white);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.05;
}

.line-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
}

.line-preview-grid button {
  display: grid;
  gap: 8px;
  min-height: 118px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  text-align: left;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.line-preview-grid button:hover,
.line-preview-grid button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 90, 31, 0.55);
  background: rgba(255, 90, 31, 0.12);
  box-shadow: 0 0 24px rgba(255, 90, 31, 0.18);
}

.line-preview-grid strong {
  font-size: 20px;
  font-weight: 900;
}

.line-preview-grid span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.line-quote-status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(255, 90, 31, 0.34);
  border-radius: 18px;
  background: rgba(255, 90, 31, 0.1);
  box-shadow: inset 0 0 18px rgba(255, 90, 31, 0.08);
}

.line-quote-status span {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.line-quote-status div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.line-quote-status a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 90, 31, 0.45);
  border-radius: 999px;
  color: var(--white);
  background: rgba(22, 24, 27, 0.42);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.line-quote-status a:first-child {
  background: var(--orange-led);
  border-color: var(--orange-led);
}

.catalog-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(247, 245, 242, 1)),
    var(--sand);
}

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

.catalog-back-link {
  display: none;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: color 180ms ease, gap 180ms ease;
}

.catalog-back-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.catalog-back-link:hover,
.catalog-back-link:focus-visible {
  gap: 10px;
  color: var(--teal);
}

/* Vista dedicada por categoría: oculta el resto del sitio para reducir el scroll */
body.catalog-view-active .hero,
body.catalog-view-active .brand-ribbon,
body.catalog-view-active #lineas,
body.catalog-view-active #destacados,
body.catalog-view-active #laboratorios,
body.catalog-view-active #medicos,
body.catalog-view-active #farmacias,
body.catalog-view-active #nosotros,
body.catalog-view-active #faq {
  display: none;
}

body.catalog-view-active .catalog-back-link {
  display: inline-flex;
}

body.catalog-view-active .catalog-section {
  padding-top: 140px;
}

.catalog-tabs {
  position: sticky;
  top: 88px;
  z-index: 5;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 8px 0 48px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--radius) + 4px);
  background: var(--navy);
  box-shadow: 0 20px 44px rgba(22, 24, 27, 0.22);
}

.catalog-tabs a {
  padding: 17px 30px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: transparent;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: background 200ms ease, color 200ms ease, transform 200ms ease;
}

.catalog-tabs a:hover,
.catalog-tabs a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.catalog-tabs a.is-active {
  border-color: transparent;
  background: var(--teal);
  color: var(--white);
}

.catalog-tabs a.is-active:hover {
  background: var(--teal);
  color: var(--white);
}

@media (max-width: 760px) {
  .catalog-tabs {
    position: static;
    top: auto;
    display: flex;
    width: 100%;
  }

  .catalog-tabs a {
    flex: 1;
    text-align: center;
    padding: 14px 10px;
    font-size: 13.5px;
  }
}

.catalog-family {
  position: relative;
  padding: 8px clamp(0px, 2vw, 8px) 12px;
  transition: opacity 220ms ease;
}

.catalog-family.is-fading {
  opacity: 0;
}

.catalog-family.is-hidden {
  display: none;
}

.catalog-showcase {
  display: grid;
  gap: 18px;
}

.catalog-intro-panel {
  width: min(100%, 980px);
  margin: 26px 0 24px;
  padding: 22px 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 90, 31, 0.22);
  border-radius: 22px;
  background:
    radial-gradient(420px 180px at 12% 0%, rgba(255, 90, 31, 0.16), transparent 68%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 240, 241, 0.86));
  box-shadow:
    0 18px 54px rgba(22, 24, 27, 0.08),
    0 0 0 1px rgba(255, 90, 31, 0.06),
    0 0 26px rgba(255, 90, 31, 0.1);
}

.catalog-intro-panel p {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 850;
  line-height: 1.28;
  letter-spacing: -0.015em;
}

.catalog-intro-panel div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.catalog-intro-panel span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 90, 31, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: rgba(22, 24, 27, 0.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.4),
    0 0 16px rgba(255, 90, 31, 0.08);
}

.catalog-family-hero {
  width: min(100%, 760px);
  aspect-ratio: 3 / 2;
  height: auto;
  margin: 0 0 28px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--sand);
}

.catalog-family-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}

.catalog-family.dark {
  padding: 40px clamp(22px, 5vw, 64px) 48px;
}

.catalog-family.dark::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: calc(-1 * clamp(22px, 5vw, 64px));
  left: calc(-1 * clamp(22px, 5vw, 64px));
  bottom: 0;
  border-radius: calc(var(--radius) + 12px);
  background: linear-gradient(165deg, #16181B, var(--navy) 55%, #16181B);
}

.catalog-family.dark h3,
.catalog-family.dark p,
.catalog-family.dark strong,
.catalog-family.dark span {
  color: var(--white);
}

.family-heading {
  position: relative;
  max-width: 760px;
  margin-bottom: 32px;
}

.family-index {
  position: absolute;
  top: -18px;
  right: 0;
  z-index: -1;
  color: rgba(22, 24, 27, 0.06);
  font-family: "DM Sans", -apple-system, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: clamp(90px, 12vw, 170px);
  font-weight: 700;
  line-height: 1;
  user-select: none;
}

.catalog-family.dark .family-index {
  color: rgba(255, 255, 255, 0.06);
}

.family-heading h3 {
  font-family: "DM Sans", -apple-system, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: clamp(34px, 4vw, 58px);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
  scroll-margin-top: 130px;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px 20px 24px;
  overflow: hidden;
  border: 1px solid rgba(22, 24, 27, 0.1);
  border-radius: calc(var(--radius) + 2px);
  background: rgba(255, 255, 255, 0.9);
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 2;
  background: linear-gradient(90deg, var(--teal), rgba(255, 90, 31, 0.15));
  opacity: 0;
  transition: opacity 260ms ease;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(240px circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(255, 90, 31, 0.16), transparent 70%);
  opacity: 0;
  transition: opacity 320ms ease;
  pointer-events: none;
}

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

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 90, 31, 0.45);
  background: var(--white);
  box-shadow: 0 20px 48px rgba(22, 24, 27, 0.12);
}

.product-card:hover::before {
  opacity: 1;
}

.product-card:hover::after,
.product-card:focus-within::after {
  opacity: 1;
}

.product-card.wide {
  grid-column: span 2;
}

.product-card-text {
  min-height: 220px;
  justify-content: center;
  border-style: dashed;
  background: rgba(255, 255, 255, 0.82);
}

.catalog-family.dark .product-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
}

.catalog-family.dark .product-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 90, 31, 0.6);
}

.product-card figure {
  position: relative;
  height: 176px;
  margin: 0;
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(22, 24, 27, 0.06);
}

.product-card.wide figure {
  height: 168px;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover img {
  transform: scale(1.04);
}

.product-card-glp {
  padding-top: 24px;
}

.product-glp-image {
  display: grid;
  place-items: center;
  height: 218px;
  margin: 0;
  overflow: visible;
  border: 1px solid rgba(255, 90, 31, 0.2);
  border-radius: calc(var(--radius) - 4px);
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 90, 31, 0.18), transparent 58%),
    linear-gradient(180deg, rgba(22, 24, 27, 0.96), rgba(22, 24, 27, 0.86));
}

.product-glp-image img {
  width: auto;
  height: calc(100% - 8px);
  max-width: 76%;
  padding: 0;
  object-fit: contain;
  border-radius: 0;
  filter: drop-shadow(0 20px 28px rgba(0, 0, 0, 0.34));
}

.product-card .product-glp-image {
  height: 220px;
}

.product-card.spotlight-card .product-glp-image {
  height: 216px;
  overflow: hidden;
  border-color: rgba(22, 24, 27, 0.08);
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 90, 31, 0.08), transparent 62%),
    linear-gradient(180deg, #ffffff 0%, #f4f5f6 100%);
}

.product-card.spotlight-card .product-glp-image img {
  width: 100%;
  height: 100%;
  max-width: none;
  padding: 12px 16px;
  object-fit: contain;
}

.glp-interactive {
  position: relative;
  display: grid;
  min-height: 500px;
  place-items: center;
  margin-bottom: 8px;
  border: 1px solid rgba(255, 90, 31, 0.32);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 90, 31, 0.18), transparent 34%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08), transparent 48%),
    linear-gradient(160deg, #1f2125 0%, #16181B 54%, #0f1012 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 24px 70px rgba(22, 24, 27, 0.18);
  overflow: visible;
}

.glp-interactive::before {
  content: "";
  position: absolute;
  width: min(66%, 390px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 1px rgba(255, 90, 31, 0.16),
    inset 0 0 46px rgba(255, 90, 31, 0.12);
}

.glp-interactive-vial {
  z-index: 2;
  width: min(34%, 210px);
  height: 390px;
  border-color: transparent;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08), transparent 54%);
  box-shadow: none;
}

.product-card .glp-interactive-vial {
  height: 390px;
  overflow: visible;
  border: 0;
  background: transparent;
}

.glp-interactive-vial img {
  height: calc(100% - 10px);
  max-width: 100%;
  padding: 0;
}

.glp-benefit {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  min-height: 48px;
  padding: 11px 16px;
  border: 1px solid rgba(255, 90, 31, 0.38);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 90, 31, 0.18), transparent 62%),
    #16181B;
  color: var(--white);
  box-shadow:
    0 10px 24px rgba(22, 24, 27, 0.2),
    0 0 20px rgba(255, 90, 31, 0.16);
  font-family: inherit;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-align: center;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.product-card .glp-benefit span {
  color: var(--white);
  font-weight: 900;
}

.glp-benefit::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 14px rgba(255, 90, 31, 0.85);
}

.glp-benefit small {
  position: absolute;
  left: 50%;
  top: calc(100% + 10px);
  bottom: auto;
  width: min(250px, 74vw);
  padding: 12px 14px;
  border: 1px solid rgba(255, 90, 31, 0.28);
  border-radius: 14px;
  background: rgba(22, 24, 27, 0.96);
  color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 38px rgba(22, 24, 27, 0.24);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.42;
  letter-spacing: 0;
  text-align: left;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, 8px, 0);
  transition: opacity 160ms ease, transform 160ms ease;
}

.product-card .glp-benefit small {
  color: rgba(255, 255, 255, 0.92);
}

.glp-benefit:hover,
.glp-benefit:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255, 90, 31, 0.72);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 90, 31, 0.32), transparent 64%),
    #16181B;
  box-shadow:
    0 16px 32px rgba(22, 24, 27, 0.28),
    0 0 30px rgba(255, 90, 31, 0.28);
}

.glp-benefit:hover small,
.glp-benefit:focus-visible small {
  opacity: 1;
  transform: translate3d(-50%, 0, 0);
}

.glp-benefit-4 small,
.glp-benefit-5 small {
  top: auto;
  bottom: calc(100% + 10px);
}

.glp-benefit-1 {
  top: 15%;
  left: 4%;
}

.glp-benefit-2 {
  top: 15%;
  right: 4%;
}

.glp-benefit-3 {
  top: 45%;
  right: 4%;
}

.glp-benefit-4 {
  right: 6%;
  bottom: 14%;
}

.glp-benefit-5 {
  left: 6%;
  bottom: 14%;
}

.glp-benefit-6 {
  top: 45%;
  left: 4%;
}

.product-glp-stat {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 20px;
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(22, 24, 27, 0.1);
}

.catalog-family.dark .product-glp-stat {
  border-bottom-color: rgba(255, 255, 255, 0.16);
}

.product-glp-number {
  font-family: "DM Sans", -apple-system, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  color: var(--teal);
}

.product-glp-label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.5;
}

.catalog-family.dark .product-glp-label {
  color: rgba(255, 255, 255, 0.6);
}

.product-info {
  display: grid;
  gap: 8px;
}

.product-title-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.product-card strong {
  font-family: "DM Sans", -apple-system, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--navy);
  font-size: 21px;
  font-weight: 600;
}

.catalog-family.dark .product-card strong {
  color: var(--white);
}

.product-card span {
  color: var(--muted);
  font-weight: 700;
}

.product-dose {
  padding: 2px 7px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--sand);
  color: var(--ink);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 600;
}

.product-active {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  margin-top: 2px;
  padding: 4px 10px;
  border-radius: 10px;
  background: rgba(255, 90, 31, 0.12);
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.4;
}

.catalog-family.dark .product-active {
  background: rgba(255, 90, 31, 0.2);
}

.product-desc {
  margin: 6px 0 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.55;
}

.catalog-family.dark .product-desc {
  color: rgba(255, 255, 255, 0.82);
}

.product-ideal-label {
  margin: 10px 0 0;
  padding-top: 12px;
  border-top: 1px solid rgba(22, 24, 27, 0.08);
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.catalog-family.dark .product-ideal-label {
  border-top-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
}

.product-ideal {
  display: grid;
  gap: 8px;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

.product-ideal li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}

.catalog-family.dark .product-ideal li {
  color: rgba(255, 255, 255, 0.88);
}

.product-ideal li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--teal);
}

.product-ideal li::after {
  content: "";
  position: absolute;
  left: 4.5px;
  top: 5.5px;
  width: 6px;
  height: 3px;
  border-left: 1.6px solid var(--white);
  border-bottom: 1.6px solid var(--white);
  transform: rotate(-45deg);
}

.product-presentation-note {
  margin: 12px 0 0;
  padding: 9px 12px;
  border: 1px solid rgba(255, 90, 31, 0.3);
  border-radius: 8px;
  background: rgba(255, 90, 31, 0.08);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
}

.catalog-family.dark .product-presentation-note {
  border-color: rgba(255, 90, 31, 0.4);
  background: rgba(255, 90, 31, 0.14);
  color: var(--white);
}

.product-card.spotlight-card .product-presentation-note {
  border-color: rgba(255, 90, 31, 0.4);
  background: rgba(255, 90, 31, 0.14);
  color: var(--white);
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 16px;
}

.product-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 calc(50% - 5px);
  min-width: 0;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid rgba(22, 24, 27, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  color: var(--navy);
  box-shadow:
    0 8px 22px rgba(22, 24, 27, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  font-size: 11.5px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.product-more:hover,
.product-more:focus-visible {
  border-color: var(--teal);
  background: rgba(255, 90, 31, 0.08);
  color: var(--teal);
  box-shadow:
    0 0 0 1px rgba(255, 90, 31, 0.16),
    0 12px 26px rgba(22, 24, 27, 0.1);
}

.catalog-family.dark .product-more {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
}

.catalog-family.dark .product-more:hover,
.catalog-family.dark .product-more:focus-visible {
  border-color: var(--teal);
  background: rgba(255, 90, 31, 0.14);
  color: var(--white);
}

.catalog-family.dark .product-actions .text-button {
  border-color: rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(22, 24, 27, 0.98), rgba(8, 9, 11, 0.98));
}

.product-actions .text-button {
  flex: 1 1 calc(50% - 5px);
  min-width: 0;
  min-height: 46px;
  padding: 10px 12px;
  font-size: 11.5px;
  line-height: 1.15;
  text-align: center;
}

.product-whatsapp-cta {
  display: inline-flex;
  flex: 1 1 100%;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 46px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 90, 31, 0.72);
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(135deg, #ff5a1f 0%, #d93a12 58%, #a92a0d 100%);
  box-shadow:
    0 12px 26px rgba(255, 90, 31, 0.2),
    0 0 0 1px rgba(255, 90, 31, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  font-size: 12.5px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.product-whatsapp-cta:hover,
.product-whatsapp-cta:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 90, 31, 0.78);
  box-shadow:
    0 0 0 1px rgba(255, 90, 31, 0.2),
    0 14px 30px rgba(255, 90, 31, 0.24);
}

@media (max-width: 520px) {
  .product-actions {
    gap: 8px;
  }

  .product-more,
  .product-actions .text-button,
  .product-whatsapp-cta {
    flex-basis: 100%;
    min-height: 44px;
    font-size: 12px;
  }
}

.restylane-subgroup {
  margin-top: 8px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.catalog-family:not(.dark) .restylane-subgroup {
  border-top: 1px solid var(--line);
}

.restylane-subgroup-heading {
  max-width: 640px;
  margin-bottom: 20px;
}

.restylane-lineup-photo {
  width: min(100%, 420px);
  aspect-ratio: 16 / 9;
  margin: 0 0 20px;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.catalog-family:not(.dark) .restylane-lineup-photo {
  background: var(--sand);
  border-color: var(--line);
}

.restylane-lineup-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.restylane-subgroup-heading h4 {
  margin: 6px 0 8px;
  color: var(--white);
  font-family: "DM Sans", -apple-system, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: clamp(24px, 3vw, 34px);
}

.catalog-family:not(.dark) .restylane-subgroup-heading h4 {
  color: var(--navy);
}

.restylane-subgroup-heading p {
  color: rgba(255, 255, 255, 0.8);
}

.catalog-family:not(.dark) .restylane-subgroup-heading p {
  color: var(--muted);
}

.catalog-card {
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 38px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.catalog-card.accent {
  color: var(--white);
  background: var(--navy);
}

.catalog-card.accent h3,
.catalog-card.accent p,
.catalog-card.accent li {
  color: var(--white);
}

.catalog-label {
  margin: 0 0 18px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.catalog-card h3 {
  max-width: 440px;
  font-family: "DM Sans", -apple-system, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: clamp(32px, 4vw, 54px);
}

.catalog-card ul {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
  font-weight: 700;
}

.catalog-card li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 11px;
  border-radius: 50%;
  background: var(--teal);
}

.product-list li {
  display: grid;
  gap: 4px;
}

.product-list li strong {
  color: inherit;
}

.product-list li span {
  color: rgba(102, 112, 133, 0.95);
  font-weight: 600;
}

.catalog-card.accent .product-list li span {
  color: rgba(255, 255, 255, 0.78);
}

.catalog-note {
  max-width: 460px;
  margin: 24px 0 0;
  font-size: 14px;
}

.catalog-card.accent .text-button {
  color: var(--navy);
  background: var(--white);
}

.program {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 460px;
  gap: 70px;
  align-items: center;
  background: var(--white);
}

.program-copy p {
  max-width: 600px;
  font-size: 18px;
}

.doctor-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 26px 0 30px;
}

.doctor-benefits span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid rgba(22, 24, 27, 0.1);
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--sand);
  font-weight: 800;
}

.doctor-benefits span::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(255, 90, 31, 0.11);
}

.check-panel {
  display: grid;
  gap: 10px;
  padding: 24px;
  background: rgba(247, 245, 242, 0.72);
}

.tier-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.tier-panel article {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--sand);
}

.tier-panel strong {
  display: block;
  color: var(--navy);
  font-family: "DM Sans", -apple-system, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 54px;
  line-height: 0.95;
}

.tier-panel span {
  display: block;
  margin-top: 6px;
  color: var(--teal);
  font-weight: 800;
}

.tier-panel p {
  margin-bottom: 0;
}

.check-panel div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(22, 24, 27, 0.08);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  font-weight: 700;
}

.check-panel span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--teal);
}

.check-panel span::after {
  content: "";
  display: block;
  width: 8px;
  height: 4px;
  margin: 5px 0 0 5px;
  border-bottom: 2px solid var(--white);
  border-left: 2px solid var(--white);
  transform: rotate(-45deg);
}

.pharmacy {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 52px;
  align-items: end;
}

.pharmacy-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.pharmacy-metrics div {
  min-height: 156px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.pharmacy-metrics strong {
  display: block;
  margin-bottom: 30px;
  color: var(--teal);
  font-family: "DM Sans", -apple-system, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 42px;
}

.pharmacy-metrics span {
  color: var(--navy);
  font-weight: 700;
}

.patient {
  background: var(--navy);
}

.patient-card {
  max-width: 850px;
  margin: 0 auto;
  padding: 48px;
  text-align: center;
  background: rgba(255, 255, 255, 0.96);
}

.patient-card p {
  max-width: 660px;
  margin-right: auto;
  margin-left: auto;
  font-size: 18px;
}

.individual-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 720px;
  margin: 28px auto;
  text-align: left;
}

.individual-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.individual-form input,
.individual-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  background: var(--sand);
  font: inherit;
}

.individual-form button {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.individual-form button:hover {
  transform: translateY(-2px);
  background: #16181B;
}

.individual-form .form-status {
  grid-column: 1 / -1;
  text-align: center;
}

.commitment-section {
  background: var(--white);
}

.evidence-section {
  background: var(--sand);
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.evidence-note {
  max-width: 760px;
  margin: 0 auto;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  text-align: center;
  box-shadow: 0 24px 70px rgba(22, 24, 27, 0.06);
}

.evidence-note strong {
  color: var(--navy);
  font-size: 20px;
}

.evidence-note p {
  max-width: 560px;
  margin: 10px auto 0;
}

.evidence-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: end;
  align-items: end;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(22, 24, 27, 0.76)),
    url("assets/mg-dermalab-productos-reales-optimized.jpg") center/cover;
  color: var(--white);
}

.evidence-card small {
  align-self: flex-start;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.evidence-card-preparation {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(22, 24, 27, 0.78)),
    url("assets/mg-dermalab-preparacion-pedidos-optimized.jpg") center/cover;
}

.evidence-card-packaging {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(22, 24, 27, 0.78)),
    url("assets/mg-dermalab-empaque-proteccion-optimized.jpg") center/cover;
}

.evidence-card-shipping {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(22, 24, 27, 0.78)),
    url("assets/mg-dermalab-guias-envio-optimized.jpg") center/cover;
}

.evidence-card-service {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(22, 24, 27, 0.78)),
    url("assets/mg-dermalab-preparacion-pedidos-optimized.jpg") center/cover;
}

.evidence-card-quality {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(22, 24, 27, 0.78)),
    url("assets/mg-dermalab-control-calidad-optimized.jpg") center/cover;
}

.evidence-card span {
  font-weight: 800;
}

.faq-section {
  background: var(--sand);
}

.faq-groups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}

.faq-list {
  overflow: hidden;
}

.faq-list h3 {
  padding: 24px 28px 6px;
  font-size: 18px;
}

details {
  border-bottom: 1px solid var(--line);
}

details:last-child {
  border-bottom: 0;
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 0 28px;
  color: var(--navy);
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--teal);
  font-size: 28px;
  font-weight: 400;
}

details[open] summary::after {
  content: "-";
}

details p {
  max-width: 760px;
  margin: -8px 28px 28px;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  padding: 150px max(24px, calc((100vw - 1180px) / 2)) 112px;
  scroll-margin-top: 120px;
  background: var(--navy);
}

.contact-copy h2,
.contact-copy p {
  color: var(--white);
}

.contact-copy h2 {
  max-width: 620px;
  font-size: clamp(42px, 4.8vw, 72px);
}

.contact-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 24px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: var(--teal);
  color: var(--white);
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease;
}

.contact-whatsapp:hover {
  transform: translateY(-2px);
  background: #FF5A1F;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--white);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.form-status[data-state="success"] {
  padding: 14px 16px;
  border: 1px solid rgba(255, 90, 31, 0.26);
  border-radius: var(--radius);
  background: rgba(255, 90, 31, 0.08);
  color: var(--navy);
}

.form-status[data-state="error"] {
  padding: 12px 14px;
  border: 1px solid rgba(179, 38, 30, 0.24);
  border-radius: var(--radius);
  background: rgba(179, 38, 30, 0.06);
  color: #B3261E;
}

.form-status[data-state="loading"] {
  padding: 12px 14px;
  border: 1px solid rgba(255, 90, 31, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 90, 31, 0.07);
  color: var(--teal);
}

.form-success-card {
  display: grid;
  gap: 10px;
  padding: 28px;
  border: 1px solid rgba(255, 90, 31, 0.46);
  border-radius: calc(var(--radius) + 8px);
  background:
    radial-gradient(circle at 14% 0%, rgba(255, 90, 31, 0.18), transparent 56%),
    linear-gradient(160deg, #16181B 0%, #22252A 100%);
  color: var(--white);
  box-shadow:
    0 22px 52px rgba(22, 24, 27, 0.18),
    0 0 28px rgba(255, 90, 31, 0.16);
}

.form-success-card[hidden] {
  display: none;
}

.form-success-card strong {
  color: var(--white);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.05;
}

.form-success-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 1.55;
}

.form-success-card span {
  display: inline-flex;
  width: fit-content;
  margin-top: 6px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 90, 31, 0.42);
  border-radius: 999px;
  background: rgba(255, 90, 31, 0.14);
  color: #FFE2D7;
  font-size: 13px;
  font-weight: 900;
}

.contact-form:has(.form-success-card)[data-state="success"] > :not(.form-success-card):not(.form-status) {
  display: none;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.contact-form.reveal {
  opacity: 1;
  transform: none;
}

.product-field {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

.product-field legend {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.product-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.contact-form .product-option {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--sand);
  color: var(--ink);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  overflow-wrap: anywhere;
  min-width: 0;
  transition: border-color 180ms ease, background 180ms ease;
}

.contact-form .product-option:hover {
  border-color: rgba(255, 90, 31, 0.55);
  background: var(--white);
}

.contact-form .product-option span {
  min-width: 0;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.consent-field {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.consent-field input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--teal);
}

.consent-field a {
  color: var(--navy);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 14px;
  color: var(--ink);
  background: var(--sand);
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 90, 31, 0.75);
  background: var(--white);
}

.turnstile-field {
  min-height: 65px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.turnstile-field[data-state="error"] {
  min-height: auto;
  padding: 12px 14px;
  border: 1px solid rgba(179, 38, 30, 0.24);
  border-radius: var(--radius);
  background: rgba(179, 38, 30, 0.06);
  color: #FF5A1F;
  font-size: 13px;
  font-weight: 700;
}

.contact-form .product-option input[type="checkbox"] {
  width: 16px;
  min-width: 16px;
  height: 16px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(22, 24, 27, 0.18);
  border-radius: 4px;
  background: var(--white);
  accent-color: var(--teal);
}

.profile-button:focus-visible,
.nav-cta:focus-visible,
.mobile-menu-toggle:focus-visible,
.section-cta:focus-visible,
.text-button:focus-visible,
.contact-form button:focus-visible,
.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible {
  outline: 2px solid rgba(255, 90, 31, 0.72);
  outline-offset: 3px;
}

.product-field input:focus-visible {
  outline: 2px solid rgba(255, 90, 31, 0.72);
  outline-offset: 2px;
}

/* Estado "active" (presionado) para todos los botones y CTAs: da
   retroalimentación táctil inmediata sin depender solo del hover. */
.profile-button:active,
.nav-cta:active,
.section-cta:active,
.text-button:active,
.product-more:active,
.contact-form button:active,
.contact-whatsapp:active,
.whatsapp-float:active,
.spotlight-arrow:active:not(:disabled),
.catalog-back-link:active,
.catalog-tabs a:active,
.line-card:active,
.product-card:active,
.individual-form button:active {
  transform: translateY(0) scale(0.98);
  transition-duration: 90ms;
}

.contact-form button:disabled,
.profile-button[aria-disabled="true"],
.nav-cta[aria-disabled="true"] {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.contact-form button {
  min-height: 54px;
  border: 0;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #16181B);
  box-shadow: 0 18px 40px rgba(22, 24, 27, 0.22);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.contact-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(22, 24, 27, 0.3);
}

.form-note {
  margin: 0;
  font-size: 13px;
}

.legal-page {
  min-height: 100vh;
  padding: 42px max(24px, calc((100vw - 920px) / 2)) 88px;
  background: var(--sand);
}

.legal-brand {
  margin-bottom: 46px;
}

.legal-card {
  padding: 56px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.legal-card h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(42px, 6vw, 76px);
}

.legal-card h2 {
  margin-top: 34px;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 22px;
  line-height: 1.2;
}

.legal-card a:not(.section-cta) {
  color: var(--navy);
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 36px max(24px, calc((100vw - 1180px) / 2));
  background: var(--white);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: rgba(22, 24, 27, 0.68);
  font-size: 14px;
  font-weight: 700;
}

.footer-brand p {
  margin: 0;
  color: var(--navy);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms cubic-bezier(0.16, 1, 0.3, 1), transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.35;
    transform: translate(-50%, 0);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, 12px);
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.055) translate3d(-12px, -8px, 0);
  }
}

/* Premium refinement layer */
.site-header {
  z-index: 30;
}

.site-header.is-scrolled {
  top: 12px;
}

.section-cta.ghost {
  color: var(--navy);
  background: var(--white);
}

.section-cta.ghost:hover {
  color: var(--white);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 28;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid rgba(255, 90, 31, 0.32);
  border-radius: var(--radius);
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 18px 45px rgba(22, 24, 27, 0.18);
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.whatsapp-float[hidden],
[data-whatsapp-link][hidden] {
  display: none !important;
}

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

.line-card,
.line-card:first-child {
  min-height: 390px;
}

.line-card-control-mg {
  border-color: rgba(255, 90, 31, 0.34);
  background:
    linear-gradient(150deg, rgba(255, 90, 31, 0.14), transparent 36%),
    linear-gradient(160deg, #16181B 0%, #202327 58%, #EEF0F1 190%);
}

.line-card-control-mg .line-icon span {
  font-size: 16px;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.line-preview-mg .line-preview-grid {
  grid-template-columns: minmax(220px, 420px);
}

.mg-line-family {
  --mg-ink: #16181B;
  --mg-orange: #FF5A1F;
  --mg-soft: #EEF0F1;
  padding: 0;
}

.mg-line-shell {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 56px);
  border: 1px solid rgba(255, 90, 31, 0.24);
  border-radius: calc(var(--radius) + 14px);
  background:
    linear-gradient(135deg, rgba(255, 90, 31, 0.12), transparent 32%),
    linear-gradient(150deg, #16181B 0%, #1F2226 58%, #EEF0F1 168%);
  box-shadow:
    0 34px 90px rgba(22, 24, 27, 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.mg-line-shell::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--radius) + 6px);
  pointer-events: none;
}

.mg-line-heading {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-bottom: clamp(24px, 4vw, 42px);
}

.mg-line-heading .family-index {
  color: rgba(255, 255, 255, 0.18);
}

.mg-line-heading h3,
.mg-line-heading p,
.mg-product-copy h4,
.mg-product-copy p,
.mg-product-copy dt,
.mg-product-copy dd,
.mg-info-block h4 {
  color: var(--white);
}

.mg-line-heading h3 {
  font-size: clamp(40px, 7vw, 88px);
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.mg-line-heading > p:last-child {
  margin-top: 12px;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.35;
}

.mg-product-hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
}

.mg-product-stage {
  position: relative;
  min-height: clamp(360px, 42vw, 560px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(238, 240, 241, 0.1) 1px, transparent 1px),
    linear-gradient(0deg, rgba(238, 240, 241, 0.08) 1px, transparent 1px),
    linear-gradient(145deg, rgba(238, 240, 241, 0.96), rgba(255, 255, 255, 0.72));
  background-size: 44px 44px, 44px 44px, auto;
  box-shadow:
    0 28px 62px rgba(0, 0, 0, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.52);
  perspective: 900px;
}

.mg-product-stage::after {
  content: "";
  position: absolute;
  right: 10%;
  bottom: 12%;
  width: 56%;
  height: 20px;
  border-radius: 50%;
  background: rgba(22, 24, 27, 0.18);
  filter: blur(14px);
}

.mg-product-box {
  position: absolute;
  left: 11%;
  bottom: 16%;
  z-index: 1;
  display: grid;
  align-content: end;
  width: min(43%, 260px);
  aspect-ratio: 0.76;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(22, 24, 27, 0.12);
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(255, 90, 31, 0.16) 0 4px, transparent 4px 100%),
    linear-gradient(155deg, #ffffff, #EEF0F1 76%);
  box-shadow: 0 26px 52px rgba(22, 24, 27, 0.18);
  transform: rotateY(-10deg) rotateZ(-1deg);
  transition: transform 260ms ease;
}

.mg-product-box span {
  position: absolute;
  top: 22px;
  left: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 90, 31, 0.42);
  border-radius: 50%;
  color: var(--mg-ink);
  font-weight: 950;
}

.mg-product-box strong {
  color: var(--mg-ink);
  font-size: clamp(24px, 3.4vw, 38px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.mg-product-box small {
  display: inline-flex;
  width: max-content;
  margin-top: 10px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--mg-ink);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.mg-product-vial {
  position: absolute;
  right: 13%;
  bottom: 13%;
  z-index: 2;
  width: min(34%, 180px);
  aspect-ratio: 0.43;
  transition: transform 260ms ease;
}

.mg-vial-cap,
.mg-vial-glass,
.mg-vial-label,
.mg-vial-base {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.mg-vial-cap {
  top: 0;
  width: 82%;
  height: 12%;
  border-radius: 18px 18px 10px 10px;
  background: linear-gradient(90deg, #AEB4BA, #F8FAFA 46%, #8A9299 100%);
  box-shadow: inset 0 -5px 10px rgba(22, 24, 27, 0.24);
}

.mg-vial-glass {
  top: 9%;
  bottom: 0;
  width: 72%;
  border: 2px solid rgba(22, 24, 27, 0.2);
  border-radius: 26px 26px 30px 30px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.8), rgba(238, 240, 241, 0.35) 22%, rgba(255, 255, 255, 0.86) 48%, rgba(172, 180, 188, 0.25) 100%);
  box-shadow:
    inset 9px 0 18px rgba(255, 255, 255, 0.62),
    inset -8px 0 16px rgba(22, 24, 27, 0.1),
    0 24px 42px rgba(22, 24, 27, 0.2);
}

.mg-vial-label {
  top: 38%;
  display: grid;
  gap: 4px;
  width: 62%;
  padding: 12px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--mg-ink);
  text-align: center;
  box-shadow: 0 0 0 1px rgba(22, 24, 27, 0.08);
}

.mg-vial-label b {
  font-size: 16px;
  line-height: 1;
}

.mg-vial-label em {
  color: var(--mg-ink);
  font-style: normal;
  font-size: clamp(13px, 1.4vw, 17px);
  font-weight: 950;
  line-height: 0.95;
  text-transform: uppercase;
}

.mg-vial-label small {
  width: max-content;
  margin: 0 auto;
  padding: 4px 7px;
  border: 1px solid rgba(255, 90, 31, 0.42);
  border-radius: 999px;
  font-weight: 900;
}

.mg-vial-base {
  bottom: 6%;
  width: 52%;
  height: 12%;
  border-radius: 50%;
  background: rgba(255, 90, 31, 0.12);
}

.mg-product-stage:hover .mg-product-box {
  transform: rotateY(-5deg) rotateZ(-0.5deg) translateY(-4px);
}

.mg-product-stage:hover .mg-product-vial {
  transform: translateY(-6px);
}

.mg-product-copy {
  display: grid;
  gap: 18px;
}

.mg-product-copy h4 {
  margin: 0;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.mg-product-copy > p:not(.catalog-label) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.62;
}

.mg-product-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.mg-product-facts div,
.mg-info-grid article {
  padding: 16px;
  border: 1px solid rgba(255, 90, 31, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
}

.mg-product-facts dt,
.mg-info-grid span {
  margin-bottom: 6px;
  color: rgba(238, 240, 241, 0.56);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mg-product-facts dd {
  margin: 0;
  font-size: 15px;
  font-weight: 900;
}

.mg-product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.mg-product-actions .text-button,
.mg-whatsapp-cta,
.mg-product-actions .product-more {
  flex: 1 1 170px;
  min-height: 52px;
  padding: 15px 18px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 950;
  text-align: center;
}

.mg-product-actions .text-button {
  background: var(--mg-orange);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(255, 90, 31, 0.24);
}

.mg-whatsapp-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 90, 31, 0.36);
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.mg-whatsapp-cta:hover,
.mg-whatsapp-cta:focus-visible,
.mg-product-actions .product-more:hover,
.mg-product-actions .product-more:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 90, 31, 0.72);
  background: rgba(255, 90, 31, 0.16);
  color: var(--white);
}

.mg-product-actions .product-more {
  border-color: rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.86);
}

.mg-service-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: clamp(24px, 4vw, 42px) 0;
  overflow: hidden;
  border: 1px solid rgba(255, 90, 31, 0.22);
  border-radius: 18px;
  background: rgba(255, 90, 31, 0.22);
}

.mg-service-strip span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 74px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  font-size: 14px;
  font-weight: 950;
  text-align: center;
}

.mg-info-block {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) 1fr;
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
}

.mg-info-block h4 {
  margin: 8px 0 0;
  font-size: clamp(26px, 3.3vw, 44px);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

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

.mg-info-grid strong {
  display: block;
  color: var(--white);
  font-size: 15px;
  line-height: 1.35;
}

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

  .mg-product-hero,
  .mg-info-block {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .line-grid {
    grid-template-columns: 1fr;
  }

  .line-card,
  .line-card:first-child {
    min-height: 260px;
  }

  .mg-line-shell {
    padding: 24px 16px;
    border-radius: 24px;
  }

  .mg-line-shell::before {
    inset: 10px;
  }

  .mg-product-stage {
    min-height: 380px;
    border-radius: 22px;
  }

  .mg-product-box {
    left: 8%;
    width: 46%;
  }

  .mg-product-vial {
    right: 8%;
    width: 38%;
  }

  .mg-product-facts,
  .mg-service-strip,
  .mg-info-grid {
    grid-template-columns: 1fr;
  }

  .mg-service-strip span {
    min-height: 58px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mg-product-box,
  .mg-product-vial {
    transition: none;
  }
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  background: #16181B;
}

.whatsapp-float svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.trust-row span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
}

.proof-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
  background: var(--navy);
}

.proof-copy h2,
.proof-copy p {
  color: var(--white);
}

.proof-copy p {
  max-width: 560px;
  font-size: 18px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.proof-card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
}

.proof-card strong {
  display: inline-flex;
  margin-bottom: 28px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--white);
  font-size: 12px;
  text-transform: uppercase;
}

.proof-card span {
  display: block;
  color: var(--white);
  font-size: 21px;
  font-weight: 800;
}

.proof-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.labs-media img,
.pharmacy-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}

.labs-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 66px;
  align-items: center;
  background: var(--white);
}

.labs-media {
  aspect-ratio: 3 / 2;
  height: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--sand);
}

.labs-copy p {
  max-width: 560px;
  font-size: 18px;
}

.brand-cloud {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 30px 0;
}

.brand-cloud span {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(22, 24, 27, 0.1);
  border-radius: var(--radius);
  background: var(--sand);
  color: var(--navy);
  font-weight: 800;
}

.catalog-card {
  padding: 44px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.7)),
    url("assets/laboratorios-marcas-premium-optimized.jpg") center/cover;
}

.catalog-card.accent {
  background:
    linear-gradient(145deg, rgba(22, 24, 27, 0.94), rgba(22, 24, 27, 0.7)),
    url("assets/distribucion-medica-premium-optimized.jpg") center/cover;
}

.program {
  grid-template-columns: minmax(0, 1fr) 520px;
}

.check-panel {
  grid-template-columns: repeat(2, 1fr);
}

.check-panel div {
  min-height: 92px;
  padding: 18px;
  align-items: flex-start;
}

.pharmacy {
  grid-template-columns: 0.82fr 1.18fr;
  gap: 34px;
  align-items: stretch;
}

.pharmacy .section-heading {
  align-self: center;
  margin-bottom: 0;
}

.pharmacy-photo {
  aspect-ratio: 3 / 2;
  min-height: 430px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.pharmacy-metrics {
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, 1fr);
}

.pharmacy-metrics div {
  min-height: 142px;
}

.contact-section {
  background:
    linear-gradient(115deg, rgba(22, 24, 27, 0.97), rgba(22, 24, 27, 0.9)),
    url("assets/distribucion-medica-premium-optimized.jpg") center/cover;
}

.contact-assurance {
  display: grid;
  gap: 10px;
  max-width: 440px;
  margin-top: 32px;
}

.contact-assurance span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 700;
}

.contact-assurance span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.contact-form {
  padding: 32px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
}

.bot-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 1.35fr;
  align-items: start;
  gap: 36px;
  padding: 56px max(24px, calc((100vw - 1180px) / 2));
}

.site-footer nav,
.footer-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: rgba(22, 24, 27, 0.68);
  font-size: 14px;
  font-weight: 600;
}

.footer-column strong {
  margin-bottom: 4px;
  color: var(--navy);
}

.footer-identity > span {
  max-width: 320px;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 980px) {
  .site-header {
    top: 10px;
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: 860px;
    padding-top: 126px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(247, 245, 242, 0.98) 0%, rgba(247, 245, 242, 0.86) 52%, rgba(247, 245, 242, 0.76) 100%),
      rgba(247, 245, 242, 0.7);
  }

  .hero-image {
    object-position: 58% center;
  }

  .benefit-grid,
  .line-grid,
  .catalog-grid,
  .about-grid,
  .portfolio-grid,
  .trust-strip,
  .brand-ribbon div,
  .product-grid,
  .tier-panel,
  .evidence-grid,
  .faq-groups,
  .proof-section,
  .labs-section,
  .program,
  .pharmacy,
  .contact-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .proof-grid,
  .about-grid,
  .trust-strip,
  .brand-ribbon div,
  .product-grid,
  .tier-panel,
  .doctor-benefits,
  .pharmacy-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .labs-media,
  .pharmacy-photo {
    height: auto;
    min-height: 0;
  }

  .line-card {
    min-height: 300px;
  }

  .line-card:first-child {
    min-height: 340px;
  }

  .catalog-family-hero {
    aspect-ratio: 3 / 2;
    height: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: calc(100% - 20px);
    height: 58px;
    padding: 0 12px;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 12px;
  }

  .brand span:last-child {
    display: none;
  }

  h1 {
    font-size: 39px;
  }

  h2 {
    font-size: 38px;
  }

  .hero {
    min-height: 830px;
    padding-bottom: 70px;
  }

  .profile-button {
    width: 100%;
  }

  .section {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .benefit-card,
  .catalog-card,
  .patient-card,
  .contact-form {
    padding: 24px;
  }

  .catalog-card {
    min-height: 360px;
  }

  .pharmacy-metrics {
    grid-template-columns: 1fr;
  }

  .proof-grid,
  .brand-cloud,
  .check-panel,
  .about-grid,
  .portfolio-grid,
  .trust-strip,
  .brand-ribbon div,
  .product-grid,
  .tier-panel,
  .evidence-grid,
  .faq-groups,
  .doctor-benefits,
  .individual-form,
  .form-row,
  .product-options {
    grid-template-columns: 1fr;
  }

  .product-card.wide {
    grid-column: auto;
  }

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

  .whatsapp-float span {
    display: none;
  }

  .labs-media,
  .pharmacy-photo {
    height: auto;
    min-height: 0;
  }

  .catalog-family-hero {
    aspect-ratio: 3 / 2;
    height: auto;
  }

  .contact-section {
    padding-top: 112px;
    padding-bottom: 82px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-card {
    padding: 28px;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

/* Mobile and tablet experience layer */
img {
  max-width: 100%;
}

.mobile-menu-toggle {
  display: none;
}

@media (max-width: 1280px) {
  .section,
  .contact-section {
    padding-right: clamp(22px, 4vw, 48px);
    padding-left: clamp(22px, 4vw, 48px);
  }

  .site-header {
    width: calc(100% - 32px);
  }

  .hero {
    padding-right: clamp(22px, 4vw, 48px);
    padding-left: clamp(22px, 4vw, 48px);
  }

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

  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  }
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 16px;
  }

  .program {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

  .contact-section {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 126px;
  }

  .contact-copy {
    max-width: 760px;
  }

  .contact-assurance {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: none;
  }

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

  .pharmacy-photo {
    width: 100%;
  }
}

@media (max-width: 980px) {
  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  body * {
    min-width: 0;
  }

  section,
  .contact-section {
    scroll-margin-top: 96px;
  }

  .site-header {
    top: 10px;
    height: 62px;
    gap: 10px;
    padding: 0 12px;
  }

  .mobile-menu-toggle {
    position: relative;
    z-index: 32;
    display: grid;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(22, 24, 27, 0.12);
    border-radius: var(--radius);
    color: var(--navy);
    background: var(--white);
    cursor: pointer;
  }

  .mobile-menu-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .mobile-menu-toggle span + span {
    margin-top: -12px;
  }

  .nav-open .mobile-menu-toggle span:first-child {
    transform: translateY(5px) rotate(45deg);
  }

  .nav-open .mobile-menu-toggle span:last-child {
    transform: translateY(-5px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    top: 82px;
    right: 16px;
    left: 16px;
    z-index: 29;
    display: grid;
    gap: 8px;
    padding: 12px;
    border: 1px solid rgba(22, 24, 27, 0.12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 24px 70px rgba(22, 24, 27, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border-radius: var(--radius);
    color: var(--navy);
    background: var(--sand);
    font-size: 15px;
    font-weight: 800;
  }

  .hero {
    min-height: auto;
    padding-top: 118px;
    padding-bottom: 76px;
  }

  .hero-image {
    animation: none;
    object-position: 62% center;
    transform: none !important;
  }

  .hero-content {
    max-width: 680px;
  }

  h1 {
    max-width: 640px;
    font-size: clamp(42px, 8.4vw, 66px);
    line-height: 1;
  }

  h2 {
    font-size: clamp(36px, 7.4vw, 58px);
    line-height: 1.02;
  }

  .hero-copy,
  .section-heading p,
  .labs-copy p,
  .program-copy p,
  .patient-card p,
  .proof-copy p {
    font-size: 16px;
    line-height: 1.62;
  }

  .hero-actions,
  .trust-strip,
  .brand-ribbon div,
  .benefit-grid,
  .line-grid,
  .proof-section,
  .labs-section,
  .program,
  .pharmacy,
  .contact-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
    max-width: 430px;
  }

  .profile-button,
  .nav-cta,
  .section-cta,
  .text-button,
  .contact-form button {
    min-height: 48px;
  }

  .trust-strip,
  .brand-ribbon {
    padding-right: 22px;
    padding-left: 22px;
  }

  .brand-ribbon div,
  .benefit-grid,
  .proof-grid,
  .brand-cloud,
  .product-grid,
  .tier-panel,
  .pharmacy-metrics,
  .about-grid,
  .evidence-grid,
  .faq-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .line-card,
  .line-card:first-child,
  .benefit-card,
  .tier-panel article,
  .pharmacy-metrics div {
    min-height: auto;
  }

  .line-card {
    padding-bottom: 18px;
  }

  .labs-media,
  .pharmacy-photo,
  .catalog-family-hero {
    aspect-ratio: 4 / 3;
    min-height: 0;
    width: 100%;
  }

  .catalog-family {
    padding: 22px;
  }

  .product-card figure,
  .product-card.wide figure {
    height: 142px;
  }

  .product-card[data-product="tirzepatida"] figure {
    height: 220px;
  }

  .product-card.wide {
    grid-column: auto;
  }

  .faq-list h3 {
    padding: 22px 20px 4px;
  }

  summary {
    min-height: 64px;
    padding: 0 20px;
    font-size: 16px;
  }

  details p {
    margin: -4px 20px 22px;
  }

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

  .contact-form {
    padding: 22px;
  }
}

@media (max-width: 760px) {
  .section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .site-header {
    width: calc(100% - 20px);
  }

  .brand {
    min-width: 0;
  }

  .brand span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-cta {
    padding: 0 12px;
    font-size: 13px;
  }

  .hero {
    padding-top: 108px;
  }

  .scroll-cue {
    display: none;
  }

  .trust-strip,
  .brand-ribbon div,
  .benefit-grid,
  .proof-grid,
  .brand-cloud,
  .product-grid,
  .tier-panel,
  .doctor-benefits,
  .pharmacy-metrics,
  .about-grid,
  .evidence-grid,
  .faq-groups,
  .individual-form,
  .product-options {
    grid-template-columns: 1fr;
  }

  .brand-ribbon span {
    min-height: 48px;
    font-size: 19px;
  }

  .evidence-card {
    min-height: 230px;
  }

  .contact-section {
    padding-top: 108px;
    padding-bottom: 76px;
  }

  .contact-copy h2 {
    font-size: clamp(36px, 10vw, 52px);
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea,
  .individual-form input,
  .individual-form select {
    min-height: 48px;
    font-size: 16px;
  }

  .contact-form .product-option {
    min-height: 48px;
    padding: 11px 12px;
  }

  .site-footer {
    gap: 26px;
  }
}

@media (max-width: 430px) {
  .section,
  .contact-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .site-header {
    height: 56px;
    padding: 0 10px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand span:last-child {
    display: none;
  }

  .mobile-menu-toggle {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
  }

  .nav-cta {
    min-height: 42px;
    max-width: 150px;
    padding: 0 11px;
    font-size: 12px;
    text-align: center;
  }

  .main-nav {
    top: 72px;
    right: 10px;
    left: 10px;
  }

  h1 {
    font-size: clamp(38px, 12vw, 48px);
  }

  h2 {
    font-size: clamp(30px, 9.5vw, 41px);
  }

  h3 {
    font-size: 20px;
  }

  .hero {
    padding-top: 98px;
    padding-bottom: 64px;
  }

  .hero-copy {
    margin-bottom: 18px;
  }

  .profile-button {
    min-height: 52px;
    padding: 0 16px;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .benefit-card,
  .patient-card,
  .catalog-family,
  .contact-form {
    padding: 18px;
  }

  .labs-media,
  .pharmacy-photo,
  .catalog-family-hero,
  .line-photo {
    aspect-ratio: 1.12 / 1;
  }

  .product-card figure,
  .product-card.wide figure {
    height: 132px;
  }

  .product-card[data-product="tirzepatida"] figure {
    height: 204px;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
  }
}

@media (max-width: 360px) {
  .nav-cta {
    max-width: 132px;
    font-size: 11px;
  }

  .section,
  .contact-section {
    padding-right: 14px;
    padding-left: 14px;
  }

  .brand-ribbon,
  .trust-strip {
    padding-right: 14px;
    padding-left: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  /* Más suave, no cero: se conservan las transiciones de opacidad/color
     (ayudan a entender qué cambió), se elimina el movimiento (transform). */
  *,
  *::before,
  *::after {
    transition-property: opacity, color, background-color, border-color !important;
    transition-duration: 200ms !important;
  }
}

/* Ficha de producto (modal) */
.product-modal {
  width: min(920px, 92vw);
  max-height: 88vh;
  padding: 0;
  border: none;
  border-radius: 18px;
  overflow: hidden auto;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.product-modal::backdrop {
  background: rgba(22, 24, 27, 0.55);
  backdrop-filter: blur(2px);
}

.product-modal[open] {
  animation: product-modal-in 220ms ease;
}

@keyframes product-modal-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.product-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.product-modal-close:hover,
.product-modal-close:focus-visible {
  transform: rotate(90deg);
  border-color: var(--teal);
  background: var(--sand);
}

.product-modal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
}

.product-modal-grid.no-image {
  grid-template-columns: 1fr;
}

.product-modal-grid.no-image .product-modal-figure {
  display: none;
}

.product-modal-grid.no-image .product-modal-body {
  padding: 48px clamp(28px, 5vw, 64px);
}

.product-modal-figure {
  margin: 0;
  min-height: 260px;
  background: var(--sand);
  display: grid;
  place-items: center;
}

.product-modal-figure img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: contain;
  padding: 32px;
}

.product-modal-body {
  padding: 38px 38px 42px;
}

.product-modal-category {
  display: inline-block;
  width: fit-content;
  margin: 0 0 14px;
  padding: 5px 12px;
  border-radius: var(--radius);
  background: rgba(22, 24, 27, 0.06);
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-modal-body h3 {
  margin: 4px 0 8px;
  font-family: "DM Sans", -apple-system, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: clamp(28px, 3vw, 38px);
  color: var(--navy);
}

.product-modal-active {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 20px;
  padding: 5px 12px;
  border-radius: 10px;
  background: rgba(255, 90, 31, 0.12);
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.4;
}

.product-modal-desc {
  margin: 0 0 26px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.65;
}

.product-modal-sections {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.product-modal-section h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.product-modal-section h4 svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: none;
  stroke: var(--teal);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-modal-section ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-modal-section li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.4;
}

.product-modal-section li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal);
  font-weight: 800;
}

.product-modal-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 8px;
  margin: 0 0 28px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--sand);
}

.product-modal-facts > div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px;
}

.product-modal-facts svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
  fill: none;
  stroke: var(--teal);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-modal-facts dt {
  color: var(--muted);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.product-modal-facts dd {
  margin: 3px 0 0;
  color: var(--navy);
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

.product-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.product-modal-cta,
.product-modal-whatsapp {
  flex: 1 1 220px;
}

.seo-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 78% 12%, rgba(255, 90, 31, 0.1), transparent 34%),
    linear-gradient(180deg, #f7f8f9 0%, #ffffff 44%, #f1f3f4 100%);
  color: var(--navy);
}

.seo-main {
  padding: 128px max(22px, calc((100vw - 1180px) / 2)) 72px;
}

.seo-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  color: rgba(22, 24, 27, 0.58);
  font-size: 13px;
  font-weight: 700;
}

.seo-breadcrumb a {
  color: rgba(22, 24, 27, 0.68);
}

.seo-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding-bottom: 58px;
}

.seo-hero-copy h1 {
  max-width: 760px;
  margin: 14px 0 20px;
  font-size: clamp(46px, 8vw, 98px);
  line-height: 0.94;
  letter-spacing: 0;
}

.seo-hero-copy p {
  max-width: 700px;
  color: rgba(22, 24, 27, 0.7);
  font-size: clamp(18px, 2.2vw, 25px);
  line-height: 1.55;
}

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

.seo-product-visual {
  position: relative;
  display: grid;
  min-height: 440px;
  place-items: center;
  border: 1px solid rgba(255, 90, 31, 0.22);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 90, 31, 0.16), transparent 42%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(236, 239, 241, 0.86));
  box-shadow:
    0 28px 70px rgba(22, 24, 27, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.seo-product-visual::before {
  content: "";
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 90, 31, 0.24);
  border-radius: 50%;
}

.seo-product-visual img {
  position: relative;
  width: min(78%, 360px);
  max-height: 340px;
  object-fit: contain;
  filter: drop-shadow(0 24px 32px rgba(22, 24, 27, 0.16));
}

.seo-panel {
  margin: 0 0 28px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(22, 24, 27, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 48px rgba(22, 24, 27, 0.07);
}

.seo-panel.dark {
  border-color: rgba(255, 90, 31, 0.32);
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 90, 31, 0.18), transparent 35%),
    linear-gradient(145deg, #1f2125, #111315);
  color: var(--white);
}

.seo-panel h2 {
  margin-bottom: 16px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.02;
}

.seo-panel p {
  color: rgba(22, 24, 27, 0.7);
  font-size: 18px;
  line-height: 1.65;
}

.seo-panel.dark p {
  color: rgba(255, 255, 255, 0.74);
}

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

.seo-card {
  padding: 20px;
  border: 1px solid rgba(255, 90, 31, 0.2);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
}

.seo-panel.dark .seo-card {
  background: rgba(255, 255, 255, 0.06);
}

.seo-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
}

.seo-card span,
.seo-card p {
  color: rgba(22, 24, 27, 0.66);
  font-size: 15px;
  line-height: 1.55;
}

.seo-panel.dark .seo-card span,
.seo-panel.dark .seo-card p {
  color: rgba(255, 255, 255, 0.68);
}

.seo-faq {
  display: grid;
  gap: 12px;
}

.seo-faq details {
  padding: 18px 20px;
  border: 1px solid rgba(22, 24, 27, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
}

.seo-faq summary {
  cursor: pointer;
  font-weight: 800;
}

.seo-faq p {
  margin-top: 10px;
  font-size: 16px;
}

.seo-related {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.seo-related a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(255, 90, 31, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--navy);
  font-weight: 800;
}

.seo-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.seo-links a {
  padding: 14px;
  border: 1px solid rgba(255, 90, 31, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--navy);
  font-weight: 800;
}

.footer-seo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.footer-seo-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 860px) {
  .seo-main {
    padding-top: 112px;
  }

  .seo-hero,
  .seo-grid,
  .seo-links {
    grid-template-columns: 1fr;
  }

  .seo-product-visual {
    min-height: 340px;
  }
}

@media (max-width: 560px) {
  .product-modal-sections {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 760px) {
  .product-modal-grid {
    grid-template-columns: 1fr;
  }

  .product-modal-figure {
    min-height: 200px;
  }

  .product-modal-body {
    padding: 28px 22px 32px;
  }
}

/* Hero framing and orange LED finish */
:root {
  --orange-led: #FF5A1F;
  --orange-led-soft: rgba(255, 90, 31, 0.2);
  --orange-led-mid: rgba(255, 90, 31, 0.38);
  --orange-led-strong: rgba(255, 90, 31, 0.68);
}

.hero-image {
  object-fit: contain;
  object-position: right 112px;
  transform: none;
  animation: none;
  filter: saturate(1.05) contrast(1.03);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(238, 240, 241, 0.98) 0%, rgba(238, 240, 241, 0.88) 35%, rgba(238, 240, 241, 0.36) 64%, rgba(238, 240, 241, 0.12) 100%),
    linear-gradient(180deg, rgba(238, 240, 241, 0.08) 0%, rgba(238, 240, 241, 0.9) 100%);
}

.eyebrow,
.catalog-label,
.active-ingredient,
.product-modal-facts dt,
.tab-button[aria-selected="true"],
.subtab-button[aria-selected="true"],
.main-nav a:hover,
.footer-links a:hover,
.site-footer a:hover {
  color: var(--orange-led);
  text-shadow:
    0 0 8px rgba(255, 90, 31, 0.3),
    0 0 22px rgba(255, 90, 31, 0.18);
}

.hero-audience span::before,
.trust-row span::before,
.doctor-benefits span::before,
.confidence-item::before,
.catalog-card li::before,
.product-modal-section li::before {
  color: var(--orange-led);
  background: var(--orange-led);
  box-shadow:
    0 0 8px var(--orange-led-strong),
    0 0 22px var(--orange-led-mid);
}

.tab-button[aria-selected="true"],
.subtab-button[aria-selected="true"],
.presentation-option.is-selected,
.presentation-option[aria-pressed="true"],
.line-pill,
.profile-chip,
.hero-trust article,
.trust-row span {
  border-color: rgba(255, 90, 31, 0.42);
  box-shadow:
    0 0 0 1px rgba(255, 90, 31, 0.08),
    0 0 18px rgba(255, 90, 31, 0.12);
}

.tab-button[aria-selected="true"]::after,
.subtab-button[aria-selected="true"]::after,
.timeline::before,
.catalog-card::before,
.product-modal-image::before {
  background: var(--orange-led);
  box-shadow:
    0 0 10px var(--orange-led-strong),
    0 0 28px var(--orange-led-mid);
}

.nav-cta,
.primary-button,
.section-cta,
.contact-form button,
.quote-button,
.product-modal-cta {
  box-shadow:
    0 12px 28px rgba(22, 24, 27, 0.16),
    0 0 0 1px rgba(255, 90, 31, 0.1);
}

.nav-cta:hover,
.primary-button:hover,
.section-cta:hover,
.contact-form button:hover,
.quote-button:hover,
.product-modal-cta:hover,
.text-button:hover,
.profile-button:hover {
  border-color: rgba(255, 90, 31, 0.58);
  box-shadow:
    0 0 0 1px rgba(255, 90, 31, 0.22),
    0 0 24px rgba(255, 90, 31, 0.28),
    0 16px 34px rgba(22, 24, 27, 0.18);
}

.whatsapp-float {
  border-color: rgba(255, 90, 31, 0.9);
  box-shadow:
    0 0 0 1px rgba(255, 90, 31, 0.34),
    0 0 18px rgba(255, 90, 31, 0.66),
    0 0 38px rgba(255, 90, 31, 0.24),
    0 18px 45px rgba(22, 24, 27, 0.24);
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(255, 90, 31, 0.38);
  border-radius: inherit;
  box-shadow:
    0 0 18px rgba(255, 90, 31, 0.4),
    inset 0 0 14px rgba(255, 90, 31, 0.12);
  pointer-events: none;
}

/* SEO product and family pages */
.seo-page {
  min-height: 100vh;
  color: var(--ink);
  background: #fff;
}

.seo-page .site-header {
  border-color: rgba(22, 24, 27, 0.12);
  background: rgba(255, 255, 255, 0.9);
}

.seo-main {
  padding: 122px max(24px, calc((100vw - 1180px) / 2)) 0;
}

.seo-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
  color: rgba(22, 24, 27, 0.52);
  font-size: 12px;
  font-weight: 600;
}

.seo-breadcrumb a:hover,
.seo-back-link:hover {
  color: var(--teal);
}

.seo-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: center;
  min-height: 590px;
  padding: 34px 0 76px;
}

.seo-hero-copy {
  max-width: 690px;
}

.seo-kicker {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.seo-hero-copy h1,
.seo-section-heading h2,
.seo-info-band h2,
.seo-related h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
}

.seo-hero-copy h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(54px, 7vw, 92px);
  line-height: 0.96;
}

.seo-presentation {
  margin: 18px 0 0;
  color: var(--teal);
  font-size: 18px;
  font-weight: 700;
}

.seo-intro {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(22, 24, 27, 0.7);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.65;
}

.seo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 30px;
}

.seo-actions .primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--navy);
  border-radius: 8px;
  color: #fff;
  background: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.seo-actions .primary-button:hover {
  color: #fff;
  background: #25282d;
  transform: translateY(-2px);
}

.seo-back-link {
  padding: 10px 0;
  border-bottom: 1px solid rgba(22, 24, 27, 0.28);
  font-size: 14px;
  font-weight: 700;
}

.seo-product-visual {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 460px;
  place-items: center;
  margin: 0;
  border: 1px solid rgba(22, 24, 27, 0.1);
  border-radius: 8px;
  background: var(--sand);
  overflow: hidden;
  box-shadow: none;
}

.seo-product-visual::before {
  content: "";
  position: absolute;
  inset: 24px;
  width: auto;
  aspect-ratio: auto;
  border: 1px solid rgba(255, 90, 31, 0.22);
  border-radius: 4px;
  pointer-events: none;
}

.seo-product-visual img {
  position: relative;
  width: min(78%, 410px);
  max-height: 380px;
  object-fit: contain;
  filter: drop-shadow(0 18px 20px rgba(22, 24, 27, 0.12));
}

.seo-product-signature {
  align-content: center;
  gap: 8px;
  padding: 56px;
  color: var(--ink);
  text-align: center;
}

.seo-product-signature span,
.seo-product-signature small,
.seo-product-signature p {
  color: rgba(22, 24, 27, 0.52);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}

.seo-product-signature p {
  margin: 4px 0 0;
  color: var(--teal);
}

.seo-product-signature strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 600;
}

.seo-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.seo-facts div {
  min-height: 130px;
  padding: 28px 32px;
  border-right: 1px solid var(--line);
}

.seo-facts div:last-child {
  border-right: 0;
}

.seo-facts span {
  display: block;
  margin-bottom: 9px;
  color: rgba(22, 24, 27, 0.5);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.seo-facts strong {
  font-size: 17px;
  line-height: 1.45;
}

.seo-info-band {
  display: grid;
  grid-template-columns: minmax(250px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(30px, 8vw, 110px);
  align-items: center;
  margin: 84px calc(-1 * max(24px, calc((100vw - 1180px) / 2))) 0;
  padding: 76px max(24px, calc((100vw - 1180px) / 2));
  color: #fff;
  background: var(--navy);
}

.seo-info-band h2,
.seo-related h2,
.seo-section-heading h2 {
  margin: 0;
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1.05;
}

.seo-info-band p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.7;
}

.seo-faq,
.seo-family {
  display: grid;
  grid-template-columns: minmax(240px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(34px, 8vw, 110px);
  padding: 92px 0;
}

.seo-section-heading > p:not(.seo-kicker) {
  max-width: 420px;
  color: rgba(22, 24, 27, 0.64);
  line-height: 1.65;
}

.seo-faq-list details {
  padding: 22px 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.seo-faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.seo-faq-list summary {
  position: relative;
  padding-right: 34px;
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  font-weight: 700;
}

.seo-faq-list summary::-webkit-details-marker {
  display: none;
}

.seo-faq-list summary::after {
  content: "+";
  position: absolute;
  top: -2px;
  right: 2px;
  color: var(--teal);
  font-size: 22px;
  font-weight: 400;
}

.seo-faq-list details[open] summary::after {
  content: "−";
}

.seo-faq-list p {
  max-width: 680px;
  margin: 13px 38px 0 0;
  color: rgba(22, 24, 27, 0.66);
  font-size: 15px;
  line-height: 1.65;
}

.seo-related {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(30px, 8vw, 110px);
  align-items: end;
  margin: 0 calc(-1 * max(24px, calc((100vw - 1180px) / 2)));
  padding: 72px max(24px, calc((100vw - 1180px) / 2));
  background: var(--sand);
}

.seo-related-links {
  display: grid;
}

.seo-related-links a {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  border: 0;
  border-top: 1px solid rgba(22, 24, 27, 0.16);
  border-radius: 0;
  background: transparent;
  font-weight: 700;
}

.seo-related-links a:last-child {
  border-bottom: 1px solid rgba(22, 24, 27, 0.16);
}

.seo-related-links span {
  color: var(--teal);
}

.seo-family-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.seo-family-grid a {
  position: relative;
  display: grid;
  min-height: 150px;
  align-content: center;
  gap: 5px;
  padding: 24px 52px 24px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.seo-family-grid a:nth-child(2n) {
  border-right: 0;
}

.seo-family-grid span,
.seo-family-grid small {
  color: rgba(22, 24, 27, 0.52);
  font-size: 11px;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
}

.seo-family-grid strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 23px;
  font-weight: 600;
}

.seo-family-grid i {
  position: absolute;
  right: 24px;
  bottom: 26px;
  color: var(--teal);
  font-style: normal;
}

.seo-family-grid a:hover strong {
  color: var(--teal);
}

.seo-footer {
  margin-top: 0;
}

@media (max-width: 900px) {
  .seo-hero {
    grid-template-columns: 1fr 0.78fr;
    gap: 32px;
    min-height: 520px;
  }

  .seo-hero-copy h1 {
    font-size: 58px;
  }

  .seo-product-visual {
    min-height: 360px;
  }

  .seo-info-band,
  .seo-faq,
  .seo-family,
  .seo-related {
    gap: 44px;
  }
}

@media (max-width: 760px) {
  .seo-main {
    padding-top: 104px;
  }

  .seo-page .site-header {
    top: 10px;
    width: calc(100% - 20px);
    height: 62px;
    padding: 0 14px;
  }

  .seo-page .nav-cta {
    display: none;
  }

  .seo-page .main-nav {
    position: fixed;
    top: 80px;
    left: 10px;
    right: 10px;
    display: none;
    padding: 14px 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 34px rgba(22, 24, 27, 0.12);
  }

  .seo-page .main-nav.is-open {
    display: grid;
    gap: 10px;
  }

  .seo-page .mobile-menu-toggle {
    display: grid;
  }

  .seo-hero,
  .seo-info-band,
  .seo-faq,
  .seo-family,
  .seo-related {
    grid-template-columns: 1fr;
  }

  .seo-hero {
    gap: 32px;
    min-height: 0;
    padding: 20px 0 56px;
  }

  .seo-hero-copy h1 {
    font-size: clamp(46px, 15vw, 66px);
  }

  .seo-intro {
    font-size: 17px;
  }

  .seo-actions .primary-button {
    width: 100%;
  }

  .seo-product-visual {
    order: -1;
    min-height: 320px;
  }

  .seo-product-visual img {
    max-height: 270px;
  }

  .seo-breadcrumb {
    margin-bottom: 14px;
  }

  .seo-facts {
    grid-template-columns: 1fr;
  }

  .seo-facts div {
    min-height: 0;
    padding: 22px 4px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .seo-facts div:last-child {
    border-bottom: 0;
  }

  .seo-info-band {
    margin-top: 54px;
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .seo-faq,
  .seo-family {
    padding: 64px 0;
  }

  .seo-family-grid {
    grid-template-columns: 1fr;
  }

  .seo-family-grid a,
  .seo-family-grid a:nth-child(2n) {
    min-height: 126px;
    border-right: 0;
  }

  .seo-related {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}

@media (max-width: 420px) {
  .seo-main {
    padding-left: 18px;
    padding-right: 18px;
  }

  .seo-product-visual {
    min-height: 270px;
  }

  .seo-product-signature {
    padding: 40px 24px;
  }
}

.whatsapp-float:hover {
  border-color: var(--orange-led);
  box-shadow:
    0 0 0 1px rgba(255, 90, 31, 0.48),
    0 0 24px rgba(255, 90, 31, 0.78),
    0 0 52px rgba(255, 90, 31, 0.3),
    0 20px 48px rgba(22, 24, 27, 0.28);
}

.whatsapp-float svg {
  filter:
    drop-shadow(0 0 6px rgba(255, 90, 31, 0.72))
    drop-shadow(0 0 14px rgba(255, 90, 31, 0.28));
}

@media (max-width: 980px) {
  .hero-image {
    object-fit: cover;
    object-position: 63% 66%;
    transform: scale(1.02) translateY(28px);
  }
}

@media (max-width: 640px) {
  .hero-image {
    object-fit: cover;
    object-position: 68% 62%;
    transform: scale(1.03) translateY(18px);
  }
}

/* Product title correction */
.product-title-row {
  align-items: center;
  gap: 10px;
  row-gap: 8px;
  line-height: 1.05;
}

.product-card strong,
.product-card.spotlight-card strong {
  max-width: 100%;
  color: var(--ink);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -0.015em;
}

.product-card.spotlight-card strong,
.catalog-family.dark .product-card strong {
  color: var(--white);
  text-shadow: 0 0 16px rgba(255, 255, 255, 0.08);
}

.product-dose,
.product-card.spotlight-card .product-dose {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.product-card.spotlight-card .product-dose,
.catalog-family.dark .product-dose {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 0 16px rgba(255, 90, 31, 0.12);
}

.product-active,
.product-card.spotlight-card .product-active,
.catalog-family.dark .product-active {
  display: block;
  width: fit-content;
  max-width: 100%;
  padding: 7px 12px;
  border: 1px solid rgba(255, 90, 31, 0.46);
  border-radius: 999px;
  background: rgba(255, 90, 31, 0.16);
  color: var(--orange-led);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  white-space: normal;
  overflow-wrap: anywhere;
  text-shadow:
    0 0 8px rgba(255, 90, 31, 0.34),
    0 0 18px rgba(255, 90, 31, 0.18);
  box-shadow:
    inset 0 0 14px rgba(255, 90, 31, 0.08),
    0 0 18px rgba(255, 90, 31, 0.12);
}

.product-card.spotlight-card .product-active,
.catalog-family.dark .product-active {
  background: rgba(255, 90, 31, 0.18);
  color: #FFE2D7;
  text-shadow:
    0 0 8px rgba(255, 90, 31, 0.5),
    0 0 18px rgba(255, 90, 31, 0.24);
}

.product-card.spotlight-card .product-info,
.catalog-family.dark .product-info {
  gap: 10px;
}

@media (max-width: 700px) {
  .product-card strong,
  .product-card.spotlight-card strong {
    font-size: 23px;
  }

  .product-active,
  .product-card.spotlight-card .product-active,
  .catalog-family.dark .product-active {
    font-size: 10.5px;
  }
}

/* Navigation and catalog tab emphasis */
.main-nav a {
  position: relative;
  isolation: isolate;
  padding: 12px 14px;
  border-radius: 999px;
  transition: color 180ms ease, transform 180ms ease;
}

.main-nav a::before {
  content: "";
  position: absolute;
  inset: 5px 2px;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 50%, rgba(255, 90, 31, 0.2), rgba(255, 90, 31, 0.06) 52%, transparent 72%);
  opacity: 0;
  transform: scale(0.82);
  transition: opacity 180ms ease, transform 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--ink);
  transform: translateY(-1px);
  text-shadow: 0 0 12px rgba(255, 90, 31, 0.24);
}

.main-nav a:hover::before,
.main-nav a:focus-visible::before {
  opacity: 1;
  transform: scale(1);
}

.nav-cta {
  min-height: 62px;
  padding-inline: 30px;
  border: 1px solid rgba(255, 90, 31, 0.42);
  box-shadow:
    0 18px 40px rgba(22, 24, 27, 0.2),
    0 0 0 1px rgba(255, 90, 31, 0.14),
    0 0 22px rgba(255, 90, 31, 0.16);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 90, 31, 0.32), transparent 58%),
    var(--navy);
}

.catalog-tabs {
  gap: 12px;
  min-height: 108px;
  width: min(100%, 820px);
  padding: 14px;
  border: 1px solid rgba(255, 90, 31, 0.26);
  border-radius: 24px;
  background:
    radial-gradient(420px 160px at 18% 0%, rgba(255, 90, 31, 0.16), transparent 66%),
    linear-gradient(145deg, #111315 0%, #181A1D 58%, #101113 100%);
  box-shadow:
    0 26px 70px rgba(22, 24, 27, 0.25),
    0 0 0 1px rgba(255, 90, 31, 0.08),
    0 0 34px rgba(255, 90, 31, 0.12);
}

.catalog-tabs a {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 66px;
  padding: 20px 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-align: center;
}

.catalog-tabs a::before {
  content: "";
  position: absolute;
  inset: 9px 12px;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 50%, rgba(255, 90, 31, 0.42), rgba(255, 90, 31, 0.12) 48%, transparent 72%);
  opacity: 0;
  filter: blur(2px);
  transform: scale(0.84);
  transition: opacity 200ms ease, transform 200ms ease;
}

.catalog-tabs a:hover,
.catalog-tabs a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 90, 31, 0.38);
  transform: translateY(-2px);
  text-shadow:
    0 0 10px rgba(255, 90, 31, 0.42),
    0 0 22px rgba(255, 90, 31, 0.2);
}

.catalog-tabs a:hover::before,
.catalog-tabs a:focus-visible::before,
.catalog-tabs a.is-active::before {
  opacity: 1;
  transform: scale(1);
}

.catalog-tabs a.is-active {
  border-color: rgba(255, 90, 31, 0.68);
  background:
    radial-gradient(circle at 50% 15%, rgba(255, 139, 89, 0.34), transparent 60%),
    linear-gradient(135deg, rgba(255, 90, 31, 0.98), rgba(208, 57, 12, 0.94));
  color: var(--white);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.14),
    0 0 18px rgba(255, 90, 31, 0.58),
    0 0 42px rgba(255, 90, 31, 0.28);
  text-shadow: 0 0 12px rgba(22, 24, 27, 0.24);
}

.catalog-tabs a.catalog-control-cta {
  border-color: rgba(255, 90, 31, 0.62);
  background:
    radial-gradient(circle at 50% 15%, rgba(255, 170, 126, 0.34), transparent 62%),
    linear-gradient(135deg, #FF5A1F 0%, #D83E12 100%);
  color: var(--white);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    0 0 22px rgba(255, 90, 31, 0.36);
}

.catalog-tabs a.is-active:hover {
  background:
    radial-gradient(circle at 50% 15%, rgba(255, 170, 126, 0.38), transparent 60%),
    linear-gradient(135deg, rgba(255, 90, 31, 1), rgba(217, 63, 14, 1));
}

@media (max-width: 760px) {
  .hero-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-trust article {
    min-height: 96px;
  }

  .catalog-tabs {
    min-height: auto;
    width: 100%;
    gap: 8px;
    padding: 10px;
    border-radius: 20px;
  }

  .catalog-tabs a {
    min-height: 56px;
    padding: 14px 10px;
    font-size: 13px;
  }
}

/* Premium carousel loop */
.spotlight-carousel {
  display: block;
  overflow: visible;
  padding-inline: clamp(56px, 8vw, 132px);
  -webkit-mask-image: none;
  mask-image: none;
}

.spotlight-carousel .spotlight-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  transform: translateY(-50%);
  backdrop-filter: blur(12px);
}

.spotlight-carousel .spotlight-arrow-prev {
  left: 0;
}

.spotlight-carousel .spotlight-arrow-next {
  right: 0;
}

.spotlight-carousel .spotlight-arrow:hover {
  transform: translateY(calc(-50% - 2px));
}

.spotlight-track.is-looping {
  flex: 0 0 auto;
  width: max-content;
  min-width: 100%;
  overflow: visible;
  padding: 4px 0 22px;
  scroll-snap-type: none;
  scroll-behavior: auto;
  animation: spotlightMarquee 46s linear infinite;
  will-change: transform;
}

.spotlight-track.is-looping .spotlight-card {
  scroll-snap-align: none;
}

.spotlight-track.is-mobile-native {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  animation: none;
}

.spotlight-track.is-looping.is-manually-paused {
  animation-play-state: paused;
}

@keyframes spotlightMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-1 * var(--spotlight-loop-shift, 16.6667%)), 0, 0);
  }
}

/* Final layout guard for the three-line selector and Control de peso MG Dermalab */
.line-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

@media (max-width: 760px) {
  .line-grid {
    grid-template-columns: 1fr;
  }

  .line-card.line-card-control-mg {
    min-height: 260px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .spotlight-track.is-looping {
    animation: none;
  }
}

/* Infinite brand ribbon */
.brand-ribbon {
  gap: 20px;
  padding-top: 36px;
  padding-bottom: 36px;
  overflow: hidden;
  background:
    radial-gradient(460px 160px at 12% 0%, rgba(255, 90, 31, 0.1), transparent 70%),
    rgba(255, 255, 255, 0.82);
}

.brand-ribbon p {
  color: rgba(22, 24, 27, 0.62);
  font-size: 14px;
  letter-spacing: 0.055em;
}

.brand-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}

.brand-ribbon .brand-marquee,
.brand-ribbon .brand-marquee-track {
  display: flex;
  grid-template-columns: none;
}

.brand-marquee-track {
  width: max-content;
  gap: 18px;
  animation: brandMarquee 28s linear infinite;
  will-change: transform;
}

.brand-marquee:hover .brand-marquee-track {
  animation-play-state: paused;
}

.brand-ribbon .brand-marquee-track span {
  flex: 0 0 auto;
  min-width: clamp(170px, 14vw, 230px);
  min-height: 72px;
  padding: 14px 26px;
  border: 1px solid rgba(255, 90, 31, 0.28);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 90, 31, 0.12), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 240, 241, 0.94));
  color: var(--ink);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 900;
  letter-spacing: -0.02em;
  box-shadow:
    0 12px 28px rgba(22, 24, 27, 0.08),
    0 0 0 1px rgba(255, 90, 31, 0.06),
    0 0 18px rgba(255, 90, 31, 0.12);
}

.brand-ribbon .brand-marquee-track span:nth-child(2n) {
  border-color: rgba(255, 90, 31, 0.46);
  box-shadow:
    0 12px 28px rgba(22, 24, 27, 0.08),
    0 0 0 1px rgba(255, 90, 31, 0.14),
    0 0 26px rgba(255, 90, 31, 0.2);
}

@keyframes brandMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-50% - 9px), 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-marquee-track {
    animation: none;
  }
}

@media (max-width: 700px) {
  .brand-ribbon .brand-marquee-track span {
    min-width: 155px;
    min-height: 62px;
    padding: 12px 20px;
    font-size: 21px;
  }
}

/* Rendering performance */
@supports (content-visibility: auto) {
  .spotlight-carousel,
  .brand-ribbon,
  .catalog-section,
  .labs-section,
  .proof-section,
  .pharmacy,
  .faq-section,
  .contact-section,
  .site-footer {
    content-visibility: auto;
    contain-intrinsic-size: 1px 760px;
  }
}

@media (max-width: 760px) {
  .spotlight-carousel {
    display: flex;
    overflow: hidden;
    padding-inline: 0;
  }

  .spotlight-track.is-mobile-native {
    width: 100%;
    padding: 4px 22px 22px;
  }

  .spotlight-card {
    flex-basis: min(82vw, 340px);
  }

  .spotlight-track.is-looping {
    animation: none;
  }

  .brand-marquee-track {
    animation-duration: 36s;
  }

  .product-card:hover,
  .product-card:hover img,
  .line-card:hover,
  .line-card:focus-visible {
    transform: none;
  }
}

/* Mobile clarity/performance pass */
@media (max-width: 760px) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .section,
  .contact-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .section-heading p {
    font-size: 15px;
    line-height: 1.45;
  }

  .line-selector-section {
    padding-top: 78px;
    padding-bottom: 42px;
    background-size: 34px 34px;
  }

  .line-selector-section .section-heading {
    max-width: 360px;
    margin-bottom: 24px;
  }

  .line-selector-section .section-heading h2 {
    margin-bottom: 10px;
    font-size: clamp(32px, 10vw, 42px);
  }

  .line-grid {
    gap: 12px;
  }

  .line-card,
  .line-card:first-child {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    grid-template-areas:
      "index title"
      "icon copy"
      "icon cta";
    align-items: center;
    min-height: 0;
    padding: 18px;
    border-radius: 20px;
  }

  .line-card::after {
    opacity: 0.9;
    background: radial-gradient(160px 140px at 100% 0%, rgba(255, 90, 31, 0.22), transparent 72%);
  }

  .line-index {
    grid-area: index;
    margin: 0;
    padding: 0;
    border: 0;
    color: var(--teal);
    font-size: 13px;
  }

  .line-icon {
    grid-area: icon;
    width: 42px;
    height: 42px;
    margin: 0;
    box-shadow: 0 0 18px rgba(255, 90, 31, 0.18);
  }

  .line-icon svg {
    width: 22px;
    height: 22px;
  }

  .line-card h3 {
    grid-area: title;
    margin: 0 0 4px;
    font-size: 22px;
    line-height: 1.08;
  }

  .line-card p {
    grid-area: copy;
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
  }

  .line-card-cta {
    grid-area: cta;
    margin-top: 12px;
    color: var(--teal);
    font-size: 14px;
  }

  .line-products-preview {
    display: none;
  }

  .spotlight-section {
    padding-top: 54px;
    padding-bottom: 46px;
  }

  .spotlight-section .section-heading {
    margin-bottom: 18px;
  }

  .spotlight-section .section-heading h2 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .spotlight-track.is-mobile-native {
    gap: 12px;
    padding: 4px 18px 18px;
    scroll-behavior: auto;
    overscroll-behavior-x: contain;
  }

  .spotlight-card {
    flex-basis: min(86vw, 330px);
  }

  .product-card.spotlight-card {
    gap: 10px;
    padding: 14px;
    border-radius: 18px;
  }

  .product-card.spotlight-card figure {
    height: 126px;
  }

  .product-card-glp .product-glp-image {
    height: 172px;
  }

  .glp-interactive {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px;
    background:
      radial-gradient(circle at 50% 18%, rgba(255, 90, 31, 0.2), transparent 46%),
      linear-gradient(160deg, #1f2125 0%, #16181B 60%, #0f1012 100%);
  }

  .glp-interactive::before {
    top: 20px;
    width: min(72%, 260px);
  }

  .glp-interactive-vial {
    width: min(54%, 170px);
    height: 244px;
    margin-bottom: 8px;
  }

  .product-card .glp-interactive-vial {
    height: 244px;
  }

  .glp-benefit {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 48px;
    justify-content: flex-start;
    padding: 12px 14px;
    border-radius: 16px;
    text-align: left;
    transform: none;
  }

  .glp-benefit small {
    position: static;
    display: block;
    width: auto;
    max-height: 0;
    margin-left: 16px;
    padding: 0;
    overflow: hidden;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.78);
    box-shadow: none;
    opacity: 1;
    transform: none;
    transition: max-height 180ms ease, margin-top 180ms ease;
  }

  .glp-benefit:hover,
  .glp-benefit:focus-visible {
    transform: none;
  }

  .glp-benefit:hover small,
  .glp-benefit:focus-visible small {
    max-height: 140px;
    margin-top: 8px;
    transform: none;
  }

  .product-card.spotlight-card .product-glp-image {
    height: 198px;
  }

  .product-glp-image img {
    max-width: 82%;
  }

  .product-card.spotlight-card .product-title-row {
    gap: 8px;
  }

  .product-card.spotlight-card strong {
    font-size: 28px;
    line-height: 1.02;
  }

  .product-card.spotlight-card .product-active {
    width: fit-content;
    max-width: 100%;
    padding: 8px 11px;
    font-size: 11px;
    line-height: 1.2;
  }

  .product-card.spotlight-card .product-desc {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    font-size: 14px;
    line-height: 1.45;
  }

  .product-card.spotlight-card .product-ideal-label,
  .product-card.spotlight-card .product-ideal {
    display: none;
  }

  .product-card.spotlight-card .product-actions {
    gap: 8px;
    margin-top: 4px;
  }

  .product-card.spotlight-card .product-more,
  .product-card.spotlight-card .text-button {
    min-height: 44px;
    padding: 0 12px;
    font-size: 13px;
  }

  .product-card.spotlight-card .product-glp-stat {
    padding-bottom: 6px;
  }

  .product-card.spotlight-card .product-glp-number {
    font-size: 38px;
  }

  .product-card.spotlight-card .product-presentation-note {
    margin: 0;
    padding: 10px;
    font-size: 13px;
  }

  .brand-ribbon {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .brand-marquee-track {
    animation-duration: 44s;
  }

  .catalog-tabs {
    position: sticky;
    top: 76px;
    z-index: 12;
  }
}

@media (max-width: 430px) {
  .site-header {
    top: 8px;
  }

  .hero {
    padding-top: 92px;
    padding-bottom: 44px;
  }

  .hero-copy {
    font-size: 15px;
    line-height: 1.5;
  }

  .hero-trust {
    gap: 8px;
  }

  .hero-trust article {
    min-height: 92px;
    padding: 12px;
  }

  .hero-trust strong {
    font-size: 13px;
  }

  .hero-trust small {
    font-size: 11px;
  }

  .line-card,
  .line-card:first-child {
    padding: 16px;
  }

  .product-card.spotlight-card strong {
    font-size: 25px;
  }

  .product-card-glp .product-glp-image {
    height: 158px;
  }

  .glp-interactive {
    padding: 14px;
  }

  .glp-interactive-vial {
    width: min(58%, 164px);
    height: 230px;
  }

  .product-card .glp-interactive-vial {
    height: 230px;
  }

  .product-card.spotlight-card .product-glp-image {
    height: 188px;
  }
}

/* Tirzepatida MG packshot and reveal */
.product-packshot-figure,
.product-card.product-card-glp.spotlight-card .product-glp-image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 236px;
  padding: 12px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 90, 31, 0.08), transparent 62%),
    linear-gradient(180deg, #ffffff 0%, #f5f6f7 100%);
}

.product-packshot-figure img,
.product-card.product-card-glp.spotlight-card .product-glp-image img {
  width: auto;
  height: auto;
  max-width: 68%;
  max-height: 92%;
  padding: 0;
  object-fit: contain;
  object-position: center;
  border-radius: 10px;
  filter: drop-shadow(0 16px 22px rgba(22, 24, 27, 0.16));
}

.product-neutral-visual {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(255, 90, 31, 0.12), transparent 48%),
    linear-gradient(180deg, #ffffff 0%, #eef0f1 100%);
}

.product-neutral-visual::before,
.product-neutral-visual::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 90, 31, 0.3);
  border-radius: 50%;
}

.product-neutral-visual::before {
  width: 150px;
  height: 150px;
}

.product-neutral-visual::after {
  width: 104px;
  height: 104px;
  border-color: rgba(22, 24, 27, 0.16);
}

.product-neutral-visual span {
  z-index: 1;
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border: 1px solid rgba(255, 90, 31, 0.55);
  border-radius: 50%;
  background: #ffffff;
  color: var(--navy);
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(22, 24, 27, 0.12);
}

@media (max-width: 430px) {
  .hero h1 {
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    font-size: clamp(33px, 10.5vw, 44px);
  }
}

.product-card.product-card-glp.spotlight-card:hover .product-glp-image img {
  transform: scale(1.02);
}

.glp-packshot-stage {
  position: relative;
  width: min(46%, 320px);
  height: 410px;
}

.glp-packshot-stage img {
  position: absolute;
  width: auto;
  height: auto;
  max-width: none;
  padding: 0;
  object-fit: contain;
  object-position: center;
  border-radius: 12px;
  filter: drop-shadow(0 26px 30px rgba(0, 0, 0, 0.32));
}

.glp-packshot-box {
  z-index: 1;
  left: 50%;
  bottom: 0;
  max-height: 92%;
  transform: translateX(-50%) scale(0.98);
  animation: tirzBoxEnter 820ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.glp-packshot-vial {
  z-index: 2;
  left: 50%;
  bottom: 0;
  max-height: 78%;
  transform-origin: 50% 100%;
  animation: tirzVialOut 1100ms 520ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.glp-interactive .glp-benefit {
  opacity: 0;
  animation: tirzBenefitIn 520ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.glp-interactive .glp-benefit-1 {
  animation-delay: 1.34s;
}

.glp-interactive .glp-benefit-2 {
  animation-delay: 1.46s;
}

.glp-interactive .glp-benefit-3 {
  animation-delay: 1.58s;
}

.glp-interactive .glp-benefit-4 {
  animation-delay: 1.7s;
}

.glp-interactive .glp-benefit-5 {
  animation-delay: 1.82s;
}

.glp-interactive .glp-benefit-6 {
  animation-delay: 1.94s;
}

@keyframes tirzBoxEnter {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(26px) scale(0.92);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(0.98);
  }
}

@keyframes tirzVialOut {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(42px) scale(0.62);
  }

  38% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(-78px) scale(0.72);
  }
}

@keyframes tirzBenefitIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.mg-product-stage {
  display: grid;
  place-items: center;
}

.mg-product-stage .mg-product-box,
.mg-product-stage .mg-product-vial {
  position: absolute;
  width: auto;
  height: auto;
  padding: 0;
  object-fit: contain;
  border: 0;
  border-radius: 14px;
  background: transparent;
  box-shadow: none;
  filter: drop-shadow(0 28px 38px rgba(22, 24, 27, 0.18));
}

.mg-product-stage .mg-product-box {
  left: 12%;
  bottom: 9%;
  z-index: 1;
  max-width: 56%;
  max-height: 86%;
  aspect-ratio: auto;
  transform: rotateY(-9deg) rotateZ(-1deg);
  animation: mgBoxEnter 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.mg-product-stage .mg-product-vial {
  right: 9%;
  bottom: 4%;
  z-index: 2;
  max-width: 38%;
  max-height: 78%;
  animation: mgVialOut 1200ms 520ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.mg-product-stage:hover .mg-product-box {
  transform: rotateY(-5deg) rotateZ(-0.5deg) translateY(-4px);
}

.mg-product-stage:hover .mg-product-vial {
  transform: translateY(-18px) scale(0.9);
}

@keyframes mgBoxEnter {
  from {
    opacity: 0;
    transform: rotateY(-12deg) rotateZ(-1deg) translateY(28px) scale(0.94);
  }

  to {
    opacity: 1;
    transform: rotateY(-9deg) rotateZ(-1deg) translateY(0) scale(1);
  }
}

@keyframes mgVialOut {
  from {
    opacity: 0;
    transform: translateY(42px) scale(0.72);
  }

  to {
    opacity: 1;
    transform: translateY(-18px) scale(0.9);
  }
}

@media (min-width: 761px) {
  .glp-benefit {
    isolation: isolate;
  }

  .glp-benefit::after {
    content: "";
    position: absolute;
    top: 50%;
    z-index: -1;
    height: 1px;
    width: clamp(118px, 12vw, 210px);
    background: linear-gradient(90deg, rgba(255, 90, 31, 0.86), rgba(255, 90, 31, 0.18), transparent);
    box-shadow:
      0 0 8px rgba(255, 90, 31, 0.62),
      0 0 18px rgba(255, 90, 31, 0.2);
    pointer-events: none;
  }

  .glp-benefit-1::after,
  .glp-benefit-5::after,
  .glp-benefit-6::after {
    left: calc(100% - 2px);
    transform-origin: left center;
  }

  .glp-benefit-2::after,
  .glp-benefit-3::after,
  .glp-benefit-4::after {
    right: calc(100% - 2px);
    transform-origin: right center;
    background: linear-gradient(270deg, rgba(255, 90, 31, 0.86), rgba(255, 90, 31, 0.18), transparent);
  }

  .glp-benefit-1::after {
    transform: rotate(19deg);
  }

  .glp-benefit-2::after {
    transform: rotate(-19deg);
  }

  .glp-benefit-3::after,
  .glp-benefit-6::after {
    width: clamp(96px, 10vw, 170px);
    transform: rotate(0deg);
  }

  .glp-benefit-4::after {
    transform: rotate(20deg);
  }

  .glp-benefit-5::after {
    transform: rotate(-20deg);
  }

  .glp-benefit-1 small,
  .glp-benefit-6 small {
    top: 50%;
    bottom: auto;
    left: calc(100% + 14px);
    width: 260px;
    transform: translate3d(8px, -50%, 0);
  }

  .glp-benefit-2 small,
  .glp-benefit-3 small {
    top: 50%;
    right: calc(100% + 14px);
    bottom: auto;
    left: auto;
    width: 260px;
    transform: translate3d(-8px, -50%, 0);
  }

  .glp-benefit-1:hover small,
  .glp-benefit-1:focus-visible small,
  .glp-benefit-6:hover small,
  .glp-benefit-6:focus-visible small {
    transform: translate3d(0, -50%, 0);
  }

  .glp-benefit-2:hover small,
  .glp-benefit-2:focus-visible small,
  .glp-benefit-3:hover small,
  .glp-benefit-3:focus-visible small {
    transform: translate3d(0, -50%, 0);
  }
}

/* Hero compact pass and animated benefit cards */
.hero {
  min-height: clamp(620px, 76vh, 760px);
  padding-top: 112px;
  padding-bottom: 34px;
}

.line-selector-section {
  padding-top: 74px;
  padding-bottom: 110px;
}

.scroll-cue {
  bottom: 18px;
}

.hero-trust article {
  position: relative;
  overflow: hidden;
  animation: heroBenefitFloat 5.4s ease-in-out infinite;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.hero-trust article::after {
  content: "";
  position: absolute;
  inset: -30% auto -30% -55%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.58), transparent);
  transform: skewX(-18deg);
  animation: heroBenefitSheen 6.6s ease-in-out infinite;
  pointer-events: none;
}

.hero-trust article:nth-child(2) {
  animation-delay: 0.45s;
}

.hero-trust article:nth-child(3) {
  animation-delay: 0.9s;
}

.hero-trust article:nth-child(4) {
  animation-delay: 1.35s;
}

.hero-trust article:nth-child(2)::after {
  animation-delay: 0.55s;
}

.hero-trust article:nth-child(3)::after {
  animation-delay: 1.1s;
}

.hero-trust article:nth-child(4)::after {
  animation-delay: 1.65s;
}

.hero-trust article:hover,
.hero-trust article:focus-within {
  transform: translateY(-6px);
  border-color: rgba(255, 90, 31, 0.62);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 90, 31, 0.22), transparent 58%),
    rgba(255, 255, 255, 0.92);
  box-shadow:
    0 18px 36px rgba(22, 24, 27, 0.12),
    0 0 26px rgba(255, 90, 31, 0.2);
}

@keyframes heroBenefitFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

@keyframes heroBenefitSheen {
  0%,
  48% {
    left: -55%;
    opacity: 0;
  }

  58% {
    opacity: 1;
  }

  72%,
  100% {
    left: 120%;
    opacity: 0;
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: 700px;
    padding-top: 104px;
    padding-bottom: 28px;
  }

  .line-selector-section {
    padding-top: 58px;
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: auto;
    padding-bottom: 40px;
  }

  .line-selector-section {
    padding-top: 54px;
    padding-bottom: 72px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-trust article,
  .hero-trust article::after {
    animation: none;
  }
}

/* Final Tirzepatida packshot responsive guard */
@media (max-width: 760px) {
  .glp-packshot-stage {
    width: min(78%, 260px);
    height: 320px;
  }

  .glp-packshot-box {
    max-height: 82%;
  }

  .glp-packshot-vial {
    max-height: 70%;
    animation-name: tirzVialOutMobile;
  }

  .product-packshot-figure img,
  .product-card.product-card-glp.spotlight-card .product-glp-image img {
    max-width: 82%;
    max-height: 88%;
  }

  .mg-product-stage .mg-product-box {
    left: 4%;
    bottom: 8%;
    max-width: 62%;
    max-height: 76%;
  }

  .mg-product-stage .mg-product-vial {
    right: 4%;
    bottom: 2%;
    max-width: 44%;
    max-height: 68%;
    animation-name: mgVialOutMobile;
  }
}

@keyframes tirzVialOutMobile {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(34px) scale(0.58);
  }

  40% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(-44px) scale(0.68);
  }
}

@keyframes mgVialOutMobile {
  from {
    opacity: 0;
    transform: translateY(32px) scale(0.62);
  }

  to {
    opacity: 1;
    transform: translateY(-10px) scale(0.78);
  }
}

@media (prefers-reduced-motion: reduce) {
  .glp-packshot-box,
  .glp-packshot-vial,
  .glp-interactive .glp-benefit,
  .mg-product-stage .mg-product-box,
  .mg-product-stage .mg-product-vial {
    animation: none !important;
    opacity: 1;
  }

  .glp-packshot-box {
    transform: translateX(-50%) scale(0.98);
  }

  .glp-packshot-vial {
    transform: translateX(-50%) translateY(-78px) scale(0.72);
  }
}

/* Dedicated Control de peso MG Dermalab page */
.product-page {
  background:
    radial-gradient(circle at 78% 12%, rgba(255, 90, 31, 0.2), transparent 28%),
    radial-gradient(circle at 20% 78%, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(180deg, #0A0B0D 0%, #111316 52%, #ECEEEF 100%);
  color: var(--white);
}

.product-page .site-header {
  position: fixed;
}

.product-page-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(360px, 1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  min-height: 100vh;
  padding: clamp(132px, 15vh, 180px) clamp(22px, 7vw, 110px) clamp(64px, 8vw, 100px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 90, 31, 0.045) 0 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px);
  background-size: 64px 64px;
}

.product-page-hero::before {
  content: "";
  position: absolute;
  inset: 10% -12% 0 auto;
  width: min(62vw, 860px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 90, 31, 0.22);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 90, 31, 0.12), transparent 58%);
  filter: blur(0.2px);
  opacity: 0.82;
}

.product-page-copy {
  position: relative;
  z-index: 2;
  max-width: 660px;
}

.product-page-back {
  display: inline-flex;
  margin-bottom: 28px;
}

.product-page-copy h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(46px, 6.4vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.product-page-copy > p {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.48;
}

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

.product-page-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.product-page-proof span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 90, 31, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.02em;
  backdrop-filter: blur(12px);
}

.product-page-stage {
  position: relative;
  min-height: clamp(520px, 58vw, 760px);
  overflow: visible;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 54% 52%, rgba(255, 90, 31, 0.2), transparent 44%),
    radial-gradient(circle at 62% 42%, rgba(255, 255, 255, 0.16), transparent 34%);
}

.product-page-stage::before {
  content: "";
  position: absolute;
  inset: 10% 2% 6% 4%;
  border: 1px solid rgba(255, 90, 31, 0.26);
  border-radius: 50%;
  transform: rotate(-12deg);
  opacity: 0.78;
}

.product-page-stage::after {
  content: "";
  position: absolute;
  left: 28%;
  right: 20%;
  bottom: 7%;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.44);
  filter: blur(24px);
}

.product-page-box,
.product-page-vial {
  position: absolute;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  filter:
    drop-shadow(0 36px 54px rgba(0, 0, 0, 0.46))
    drop-shadow(0 0 32px rgba(255, 90, 31, 0.1));
}

.product-page-box {
  display: none !important;
}

.product-page-vial {
  left: 50%;
  right: auto;
  bottom: -1%;
  z-index: 2;
  max-width: 62%;
  max-height: 94%;
  animation: productPageVialOut 1100ms 160ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes productPageBoxIn {
  from {
    opacity: 0;
    transform: translate3d(-28px, 24px, 0) rotateZ(-1deg) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotateZ(-1deg) scale(1);
  }
}

@keyframes productPageVialOut {
  from {
    opacity: 0;
    transform: translate3d(-50%, 44px, 0) scale(0.78);
  }

  to {
    opacity: 1;
    transform: translate3d(-50%, -22px, 0) scale(0.96);
  }
}

.product-page-section {
  padding: clamp(72px, 9vw, 120px) clamp(22px, 7vw, 110px);
}

.product-page-dark {
  background:
    radial-gradient(circle at 22% 0%, rgba(255, 90, 31, 0.18), transparent 34%),
    linear-gradient(145deg, #16181B 0%, #202327 100%);
}

.product-value-section {
  position: relative;
  overflow: hidden;
}

.product-value-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 90, 31, 0.06) 0 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.42;
  pointer-events: none;
}

.product-page-dark .section-heading h2,
.product-page-dark .section-heading p {
  color: var(--white);
}

.product-page-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.product-page-benefits article {
  position: relative;
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 176px;
  padding: 24px;
  border: 1px solid rgba(255, 90, 31, 0.24);
  border-radius: 14px;
  background:
    radial-gradient(circle at 14% 0%, rgba(255, 90, 31, 0.18), transparent 42%),
    rgba(255, 255, 255, 0.055);
  color: var(--white);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.product-page-benefits article,
.video-placeholder,
.product-message-stack article,
.product-image-grid article,
.product-page-info article,
.product-page-cta {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 320ms ease;
}

.product-page-benefits article.is-visible,
.video-placeholder.is-visible,
.product-message-stack article.is-visible,
.product-image-grid article.is-visible,
.product-page-info article.is-visible,
.product-page-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.product-page-benefits article:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 90, 31, 0.58);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 90, 31, 0.28), transparent 48%),
    rgba(255, 255, 255, 0.075);
}

.product-page-benefits article > span {
  color: #FF5A1F;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.product-page-benefits strong {
  color: var(--white);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.05;
}

.product-page-benefits p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.5;
}

.product-page-info article {
  position: relative;
  overflow: hidden;
  padding: 20px 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 40px rgba(22, 24, 27, 0.08);
}

.product-page-info article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 90, 31, 0.9), rgba(255, 90, 31, 0));
}

.product-page-info article:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 90, 31, 0.5);
  box-shadow: 0 24px 52px rgba(22, 24, 27, 0.14);
}

/* .mg-info-grid span hereda un color claro pensado para fondo oscuro;
   en esta variante de tarjeta clara (product-page-info) se sobrescribe
   para que la etiqueta (PRESENTACIÓN, PRINCIPIO ACTIVO...) sea legible. */
.product-page-info span {
  color: var(--muted);
}

.product-page-info strong {
  color: var(--ink);
  font-size: 17px;
  letter-spacing: -0.01em;
}

.product-page-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin: 0 clamp(22px, 7vw, 110px) clamp(70px, 8vw, 110px);
  padding: clamp(34px, 5vw, 64px);
  border: 1px solid rgba(255, 90, 31, 0.28);
  border-radius: 26px;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 90, 31, 0.24), transparent 52%),
    linear-gradient(145deg, #191B1F 0%, #0B0C0E 100%);
  color: var(--white);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.22),
    0 0 42px rgba(255, 90, 31, 0.12);
}

.product-page-cta h2 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-size: clamp(34px, 5vw, 70px);
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.product-page-cta p {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  line-height: 1.5;
}

.product-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.product-scroll-story {
  --scroll-product-progress: 0;
  position: relative;
  display: block;
  min-height: 260vh;
  padding: clamp(70px, 8vw, 110px) clamp(22px, 7vw, 110px);
  background:
    radial-gradient(circle at 48% 34%, rgba(255, 90, 31, 0.18), transparent 28%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(180deg, #08090B 0%, #131518 48%, #090A0C 100%);
}

.product-scroll-heading {
  position: relative;
  z-index: 3;
  max-width: 620px;
  margin: 0 auto clamp(48px, 8vh, 96px);
  text-align: center;
  pointer-events: none;
}

.product-scroll-heading h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(40px, 6vw, 86px);
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.product-scroll-visual {
  position: sticky;
  top: 104px;
  height: calc(100vh - 144px);
  min-height: 520px;
  max-height: 820px;
  display: grid;
  place-items: center;
}

.product-scroll-stage {
  position: relative;
  width: min(100%, 920px);
  aspect-ratio: 1.24 / 1;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 51% 58%, rgba(255, 90, 31, 0.18), transparent 42%),
    radial-gradient(circle at 54% 44%, rgba(255, 255, 255, 0.1), transparent 30%);
}

.product-scroll-stage::before {
  content: "";
  position: absolute;
  inset: 9% 8% 5%;
  border: 1px solid rgba(255, 90, 31, 0.18);
  border-radius: 50%;
  transform:
    rotate(calc(-14deg + (var(--scroll-product-progress) * 18deg)))
    scale(calc(0.92 + (var(--scroll-product-progress) * 0.08)));
  animation: mg-ring-glow 5.5s ease-in-out infinite;
}

/* Aliento ambiental sutil: el anillo y el vial "respiran" incluso cuando el
   scroll está quieto, para que la escena se sienta viva y no estática.
   Se anima box-shadow / filter, nunca transform u opacity, para no pelear
   con las transformaciones que sí dependen del progreso de scroll. */
@keyframes mg-ring-glow {
  0%, 100% { box-shadow: 0 0 0 rgba(255, 90, 31, 0); }
  50% { box-shadow: 0 0 46px rgba(255, 90, 31, 0.22); }
}

.product-scroll-stage::after {
  content: "";
  position: absolute;
  left: 30%;
  right: 26%;
  bottom: 2%;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.52);
  filter: blur(26px);
}

.scroll-product-box,
.scroll-product-vial {
  position: absolute;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  filter:
    drop-shadow(0 34px 54px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 28px rgba(255, 90, 31, 0.1));
  will-change: transform, opacity;
}

.scroll-product-box {
  display: none !important;
}

.scroll-product-vial {
  left: 50%;
  right: auto;
  bottom: calc(-2% + (var(--scroll-product-progress) * 8%));
  z-index: 3;
  max-width: 44%;
  max-height: 92%;
  opacity: calc(0.62 + (var(--scroll-product-progress) * 0.38));
  transform:
    translate3d(-50%, calc(42px - (var(--scroll-product-progress) * 76px)), 0)
    scale(calc(0.82 + (var(--scroll-product-progress) * 0.16)));
  animation: mg-vial-glow 4.5s ease-in-out infinite;
}

@keyframes mg-vial-glow {
  0%, 100% {
    filter:
      drop-shadow(0 34px 54px rgba(0, 0, 0, 0.5))
      drop-shadow(0 0 26px rgba(255, 90, 31, 0.12));
  }
  50% {
    filter:
      drop-shadow(0 34px 54px rgba(0, 0, 0, 0.5))
      drop-shadow(0 0 44px rgba(255, 90, 31, 0.34));
  }
}

.measure-tape {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 50%;
  width: 78%;
  height: 72%;
  border: 3px solid rgba(255, 90, 31, 0.72);
  border-left-color: rgba(255, 90, 31, 0.12);
  border-bottom-color: rgba(255, 90, 31, 0.22);
  border-radius: 50%;
  opacity: calc(var(--scroll-product-progress) * 0.72);
  transform:
    translate(-50%, -50%)
    rotate(calc(-24deg + (var(--scroll-product-progress) * 82deg)))
    scale(calc(0.8 + (var(--scroll-product-progress) * 0.18)));
  box-shadow:
    0 0 30px rgba(255, 90, 31, 0.18),
    inset 0 0 24px rgba(255, 90, 31, 0.08);
  pointer-events: none;
}

.measure-tape::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: inherit;
  background:
    repeating-conic-gradient(
      from 0deg,
      transparent 0deg 4deg,
      rgba(22, 24, 27, 0.55) 4deg 5deg,
      transparent 5deg 9deg
    );
  mask: radial-gradient(circle, transparent 58%, #000 59% 61%, transparent 62%);
  opacity: 0.44;
}

.measure-tape-two {
  z-index: 1;
  width: 58%;
  height: 54%;
  border-width: 2px;
  opacity: calc(var(--scroll-product-progress) * 0.24);
  transform:
    translate(-50%, -50%)
    rotate(calc(24deg - (var(--scroll-product-progress) * 70deg)))
    scale(calc(0.82 + (var(--scroll-product-progress) * 0.16)));
}

.scroll-product-tags {
  position: absolute;
  inset: auto 32px clamp(20px, 4vh, 40px) 32px;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  opacity: calc(var(--scroll-product-progress) * 0.88);
  transform: translateY(calc(16px - (var(--scroll-product-progress) * 16px)));
  transition: transform 60ms linear;
  pointer-events: none;
}

.scroll-product-tags span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 90, 31, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-media-section {
  background:
    radial-gradient(circle at 78% 10%, rgba(255, 90, 31, 0.18), transparent 34%),
    #16181B;
}

.product-media-section .section-heading h2,
.product-media-section .section-heading p {
  color: var(--white);
}

.product-media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 34px;
}

.video-placeholder {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 18px;
  min-height: clamp(260px, 42vw, 560px);
  border: 1px solid rgba(255, 90, 31, 0.28);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 90, 31, 0.16), transparent 46%),
    linear-gradient(145deg, #202327, #101113);
  color: var(--white);
  text-align: center;
}

.video-placeholder span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 86px;
  border: 1px solid rgba(255, 90, 31, 0.44);
  border-radius: 50%;
  color: #FF5A1F;
  font-weight: 950;
}

.video-placeholder strong {
  color: var(--white);
  font-size: clamp(24px, 4vw, 54px);
  line-height: 0.98;
}

.video-placeholder p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 16px;
  line-height: 1.55;
}

.product-message-stack {
  display: grid;
  gap: 12px;
}

.product-message-stack article {
  display: grid;
  align-content: end;
  gap: 12px;
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 90, 31, 0.14), transparent 42%),
    rgba(255, 255, 255, 0.055);
}

.product-message-stack span {
  color: #FF5A1F;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-message-stack strong {
  color: var(--white);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.12;
}

.product-image-story {
  background:
    linear-gradient(180deg, #101113, #191B1F);
}

.product-image-story .section-heading h2,
.product-image-story .section-heading p {
  color: var(--white);
}

.product-image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.product-image-grid article {
  display: grid;
  align-content: end;
  min-height: clamp(280px, 34vw, 520px);
  padding: clamp(22px, 3vw, 36px);
  border: 1px solid rgba(255, 90, 31, 0.28);
  border-radius: 18px;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 90, 31, 0.16), transparent 44%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  transition: transform 220ms ease, border-color 220ms ease;
}

.product-image-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 90, 31, 0.58);
}

.product-image-grid span {
  color: #FF5A1F;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-image-grid strong {
  max-width: 440px;
  color: var(--white);
  font-size: clamp(24px, 3.2vw, 44px);
  line-height: 1;
}

.product-spec-section {
  background:
    radial-gradient(circle at 85% 0%, rgba(255, 90, 31, 0.12), transparent 34%),
    #ECEEEF;
}

.product-spec-section .section-heading h2 {
  color: #111316;
}

@media (max-width: 980px) {
  .product-page-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 128px;
  }

  .product-page-stage {
    min-height: 560px;
  }

  .product-page-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-media-grid,
  .product-page-cta {
    grid-template-columns: 1fr;
  }

  .product-cta-actions {
    justify-content: flex-start;
  }

  .product-scroll-story {
    min-height: auto;
  }

  .product-scroll-visual {
    position: relative;
    top: auto;
    height: auto;
    min-height: 520px;
  }

}

@media (max-width: 640px) {
  .product-page-hero {
    padding-top: 116px;
  }

  .product-page-stage {
    min-height: 430px;
    border-radius: 24px;
  }

  .product-page-box {
    display: none !important;
  }

  .product-page-vial {
    left: 50%;
    right: auto;
    max-width: 76%;
    max-height: 78%;
    animation-name: productPageVialOutMobile;
  }

  .product-page-actions,
  .product-page-benefits {
    grid-template-columns: 1fr;
  }

  .product-page-benefits {
    display: grid;
  }

  .product-scroll-story {
    padding-top: 54px;
  }

  .product-scroll-visual {
    min-height: 430px;
  }

  .product-scroll-stage {
    width: 100%;
    border-radius: 24px;
  }

  .product-scroll-heading {
    position: relative;
    top: auto;
    margin-bottom: 22px;
  }

  .scroll-product-box {
    display: none !important;
  }

  .scroll-product-vial {
    left: 50%;
    right: auto;
    max-width: 70%;
    max-height: 78%;
  }

  .measure-tape {
    width: 86%;
    height: 76%;
    border-width: 3px;
  }

  .product-image-grid,
  .product-media-grid {
    grid-template-columns: 1fr;
  }

  .product-page-proof {
    gap: 6px;
  }

  .product-page-proof span {
    font-size: 11px;
  }

  .product-page-cta {
    margin-right: 16px;
    margin-left: 16px;
  }
}

@keyframes productPageVialOutMobile {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.6);
  }

  to {
    opacity: 1;
    transform: translateY(-14px) scale(0.76);
  }
}

/* Premium editorial system for SEO product pages */
.seo-hero-premium {
  min-height: 660px;
  padding-top: 44px;
  padding-bottom: 94px;
}

.seo-subtitle {
  max-width: 610px;
  margin: 24px 0 0;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 500;
  line-height: 1.16;
}

.seo-hero-premium .seo-intro {
  max-width: 590px;
  margin-top: 18px;
  font-size: 17px;
}

.seo-hero-premium .seo-product-visual {
  min-height: 540px;
  border: 0;
  border-radius: 0;
  background: #eef0f1;
  overflow: visible;
  box-shadow: 24px 28px 0 #16181b;
}

.seo-hero-premium .seo-product-visual::before {
  inset: 22px -18px -18px 22px;
  border-color: rgba(255, 90, 31, 0.62);
  border-radius: 0;
  z-index: -1;
}

.seo-hero-premium .seo-product-visual::after {
  content: "MG DERMALAB";
  position: absolute;
  right: 24px;
  bottom: 20px;
  color: rgba(22, 24, 27, 0.42);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.seo-hero-premium .seo-product-visual img {
  width: min(82%, 450px);
  max-height: 450px;
  filter: drop-shadow(0 28px 24px rgba(22, 24, 27, 0.2));
  transition: transform 280ms ease;
}

.seo-hero-premium .seo-product-visual:hover img {
  transform: translateY(-7px);
}

.seo-story-stack {
  margin: 0 calc(-1 * max(24px, calc((100vw - 1180px) / 2)));
  padding: 20px max(24px, calc((100vw - 1180px) / 2)) 90px;
  background: #eef0f1;
}

.seo-story {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: start;
  padding: clamp(48px, 7vw, 82px) 0;
  border-top: 1px solid rgba(22, 24, 27, 0.18);
}

.seo-story-index {
  color: #ff5a1f;
  font-size: 12px;
  font-weight: 700;
}

.seo-story > div {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(38px, 8vw, 120px);
  align-items: start;
}

.seo-story h2,
.seo-presentations h2,
.seo-distribution h2,
.seo-final-cta h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 4.6vw, 58px);
  font-weight: 600;
  line-height: 1.04;
}

.seo-story p {
  max-width: 650px;
  margin: 4px 0 0;
  color: rgba(22, 24, 27, 0.72);
  font-size: 18px;
  line-height: 1.72;
}

.seo-source {
  margin: 0 0 0 calc(72px + clamp(28px, 6vw, 90px));
  color: rgba(22, 24, 27, 0.56);
  font-size: 12px;
}

.seo-source a {
  border-bottom: 1px solid rgba(22, 24, 27, 0.3);
  font-weight: 700;
}

.seo-presentations {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(44px, 8vw, 120px);
  padding: 110px 0;
}

.seo-presentation-list {
  display: grid;
  align-content: center;
  border-top: 1px solid rgba(22, 24, 27, 0.22);
}

.seo-presentation-list span {
  padding: 22px 0;
  border-bottom: 1px solid rgba(22, 24, 27, 0.22);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 600;
}

.seo-distribution {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(48px, 9vw, 130px);
  margin: 0 calc(-1 * max(24px, calc((100vw - 1180px) / 2)));
  padding: 96px max(24px, calc((100vw - 1180px) / 2));
  color: #fff;
  background: #16181b;
}

.seo-distribution > div > p:last-child,
.seo-final-cta p:last-child {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.7;
}

.seo-distribution dl {
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.seo-distribution dl div {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 24px;
  padding: 23px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.seo-distribution dt {
  color: #ff5a1f;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.seo-distribution dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.seo-final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 50px;
  align-items: center;
  margin: 0 calc(-1 * max(24px, calc((100vw - 1180px) / 2)));
  padding: 86px max(24px, calc((100vw - 1180px) / 2));
  color: #fff;
  background: #16181b;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.seo-regulatory-note {
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) minmax(0, 1.55fr);
  gap: clamp(32px, 7vw, 100px);
  margin: 0 calc(-1 * max(24px, calc((100vw - 1180px) / 2)));
  padding: 58px max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(22, 24, 27, 0.16);
  background: #eef0f1;
}

.seo-regulatory-note h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 600;
  line-height: 1.08;
}

.seo-regulatory-note > div {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.seo-regulatory-note > div p {
  margin: 4px 0 0;
  color: rgba(22, 24, 27, 0.68);
  font-size: 15px;
  line-height: 1.7;
}

.seo-final-cta > div {
  max-width: 770px;
}

.seo-final-cta .primary-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid #ff5a1f;
  border-radius: 6px;
  color: #fff;
  background: #ff5a1f;
  font-size: 14px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease;
}

.seo-final-cta .primary-button:hover {
  color: #fff;
  background: #e84e16;
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .seo-hero-premium {
    min-height: 580px;
  }

  .seo-hero-premium .seo-product-visual {
    min-height: 420px;
  }

  .seo-story > div,
  .seo-presentations,
  .seo-distribution,
  .seo-regulatory-note,
  .seo-regulatory-note > div {
    grid-template-columns: 1fr;
  }

  .seo-presentations,
  .seo-distribution {
    gap: 42px;
  }
}

@media (max-width: 760px) {
  .seo-hero-premium {
    padding-bottom: 70px;
  }

  .seo-hero-premium .seo-product-visual {
    min-height: 340px;
    margin: 0 12px 22px 0;
    box-shadow: 12px 14px 0 #16181b;
  }

  .seo-hero-premium .seo-product-visual::before {
    inset: 14px -10px -10px 14px;
  }

  .seo-story-stack {
    padding-bottom: 64px;
  }

  .seo-story {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 16px;
    padding: 50px 0;
  }

  .seo-story > div {
    gap: 20px;
  }

  .seo-story p {
    font-size: 16px;
  }

  .seo-source {
    margin-left: 52px;
    line-height: 1.6;
  }

  .seo-presentations {
    padding: 72px 0;
  }

  .seo-distribution,
  .seo-final-cta {
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .seo-distribution dl div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .seo-final-cta {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .seo-final-cta .primary-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .seo-hero-premium .seo-product-visual img,
  .seo-final-cta .primary-button {
    transition: none;
  }
}

/* Home performance and accessibility refinements. */
.hero > picture,
.hero-image,
.hero-overlay {
  z-index: 0;
}

.hero > picture {
  position: absolute;
  inset: 0;
}

.hero-image {
  animation: none;
}

.hero-overlay {
  z-index: 1;
}

.hero-content,
.scroll-cue {
  z-index: 2;
}

.catalog-family-hero picture,
.labs-media picture,
.pharmacy-photo picture {
  display: block;
  width: 100%;
  height: 100%;
}

#medicos .program-copy .eyebrow,
#medicos .tier-panel article span,
#farmacias .section-heading .eyebrow,
#nosotros .section-heading .eyebrow,
#faq .section-heading .eyebrow {
  color: #a63a12;
}

.contact-whatsapp,
.contact-whatsapp:hover {
  background: #a63a12;
}

.site-footer .footer-seo-links a {
  color: rgba(22, 24, 27, 0.76);
}

.contact-form label {
  gap: 14px;
}

@media (hover: none) and (pointer: coarse) {
  .main-nav a,
  .footer-column a,
  .catalog-tabs a,
  .text-button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}
