:root {
  --orange: #f47716;
  --orange-2: #ff9a36;
  --orange-dark: #c64e00;
  --charcoal: #2f3135;
  --ink: #202226;
  --muted: #686d76;
  --line: #e8e8ea;
  --soft: #f7f7f5;
  --soft-orange: #fff2e7;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(22, 25, 31, .12);
  --radius: 28px;
  --radius-sm: 18px;
  --max: 1180px;
  --transition: 220ms ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.58;
  overflow-x: hidden;
}
img, svg { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.shell {
  width: min(100% - 38px, var(--max));
  margin-inline: auto;
}
.section-pad { padding: 88px 0; }
.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: var(--ink);
  color: white;
  padding: .75rem 1rem;
  border-radius: 999px;
  z-index: 100;
}
.skip-link:focus { top: 1rem; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(232,232,234,.75);
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  letter-spacing: -.03em;
}
.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 900;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(244, 119, 22, .28);
}
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font-size: 1.02rem; }
.brand-copy strong span { color: var(--orange); }
.brand-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.site-nav a {
  color: var(--muted);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .93rem;
  transition: background var(--transition), color var(--transition);
}
.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--orange-dark);
  background: var(--soft-orange);
  outline: none;
}
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: var(--soft-orange);
  cursor: pointer;
}
.nav-toggle span:not(.sr-only) {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: var(--orange-dark);
  border-radius: 99px;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 13% 24%, rgba(244, 119, 22, .13), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #fbfbf8 56%, #fff2e7 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -34% 48%;
  height: 430px;
  background: linear-gradient(110deg, rgba(244,119,22,.13), rgba(244,119,22,0));
  transform: rotate(-8deg);
  border-radius: 100% 0 0 0;
  pointer-events: none;
}
.hero-bg-shape {
  position: absolute;
  width: 680px;
  height: 680px;
  right: -220px;
  top: 80px;
  border-radius: 80px;
  background: linear-gradient(135deg, rgba(244,119,22,.9), rgba(255,154,54,.42));
  transform: rotate(42deg);
  opacity: .12;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 72px;
  align-items: center;
}
.eyebrow,
.section-label {
  margin: 0 0 12px;
  color: var(--orange-dark);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 900;
}
.section-label.light { color: #fff7ed; }
.hero h1,
.section-heading h2,
.content-card h2,
.indications-card h2,
.benefits-copy h2,
.editorial-copy h2,
.info-panel h2,
.faq-intro h2,
.pharmacy-copy h2 {
  margin: 0;
  line-height: .98;
  letter-spacing: -.06em;
}
.hero h1 {
  max-width: 720px;
  font-size: clamp(3.2rem, 8vw, 6.6rem);
}
.lede {
  max-width: 610px;
  color: var(--muted);
  font-size: 1.18rem;
  margin: 26px 0 0;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  box-shadow: 0 18px 34px rgba(244, 119, 22, .32);
}
.btn-ghost {
  background: var(--white);
  color: var(--charcoal);
  border: 1px solid var(--line);
}
.btn-light {
  background: var(--white);
  color: var(--orange-dark);
}
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}
.trust-strip span,
.notice-pill,
.tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--soft-orange);
  color: var(--orange-dark);
  font-size: .82rem;
  font-weight: 900;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}
.product-pack {
  position: relative;
  isolation: isolate;
  filter: drop-shadow(0 24px 34px rgba(47,49,53,.16));
}
.pack-lg { width: min(100%, 560px); }
.pack-sm { width: 330px; }
.pack-mini { width: 210px; }
.pack-top {
  position: absolute;
  left: 4%;
  right: 4%;
  height: 12%;
  top: -10%;
  background: linear-gradient(90deg, #a34505, var(--orange), #e96f0c);
  border-radius: 12px 12px 4px 4px;
  transform: skewX(-14deg);
  z-index: -1;
}
.pack-face {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  background:
    linear-gradient(130deg, rgba(244,119,22,.12), transparent 38%),
    linear-gradient(180deg, #fff, #f2f0ea);
  border: 1px solid rgba(50, 50, 50, .12);
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.9);
}
.pack-lg .pack-face { min-height: 330px; }
.pack-sm .pack-face { min-height: 195px; border-radius: 14px; }
.pack-mini .pack-face { min-height: 140px; border-radius: 14px; }
.pack-title {
  position: absolute;
  left: 8%;
  top: 16%;
  color: #57595d;
  font-weight: 950;
  letter-spacing: -.05em;
  line-height: .82;
  font-size: clamp(2rem, 4vw, 3.55rem);
}
.pack-title span { color: var(--orange); }
.pack-sm .pack-title { font-size: 1.85rem; }
.pack-mini .pack-title {
  font-size: 3.2rem;
  top: 28%;
}
.pack-lines {
  position: absolute;
  left: 8%;
  top: 52%;
  display: grid;
  gap: 7px;
}
.pack-lines i {
  width: 175px;
  height: 7px;
  border-radius: 99px;
  background: rgba(79, 81, 86, .16);
}
.pack-sm .pack-lines i { width: 115px; height: 5px; }
.pack-brand {
  position: absolute;
  left: 7%;
  bottom: 8%;
  padding: 11px 15px;
  background: var(--orange);
  color: white;
  border-radius: 10px;
  line-height: 1;
  font-size: 1rem;
  font-weight: 950;
  letter-spacing: .06em;
}
.pack-sm .pack-brand { font-size: .78rem; padding: 8px 11px; }
.pack-stripes {
  position: absolute;
  right: 4%;
  top: 16%;
  width: 48%;
  height: 64%;
  transform: skewX(-18deg);
}
.pack-stripes span {
  position: absolute;
  width: 20%;
  height: 92%;
  background: linear-gradient(180deg, var(--orange), var(--orange-2));
  border-radius: 8px;
  transform: rotate(-30deg);
}
.pack-stripes span:nth-child(1) { left: 5%; top: 18%; opacity: .52; }
.pack-stripes span:nth-child(2) { left: 36%; top: 0; }
.pack-stripes span:nth-child(3) { left: 66%; top: 14%; }
.pack-xr .pack-face { background: linear-gradient(180deg, #3c3d40, #161718); color: white; }
.pack-xr .pack-title { color: white; }
.pack-xr .pack-lines i { background: rgba(255,255,255,.2); }
.floating-card {
  position: absolute;
  display: grid;
  gap: 2px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 18px;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}
.floating-card strong { color: var(--orange-dark); }
.floating-card span { color: var(--muted); font-size: .86rem; }
.card-a { left: 0; top: 54px; }
.card-b { right: 8px; bottom: 52px; }

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.align-center { align-items: center; }
.reverse > :first-child { order: 2; }
.placeholder-photo,
.tip-media,
.placeholder-product,
.mini-pack {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(241, 63, 44, .38), transparent 16%),
    linear-gradient(135deg, #eeeeef, #f8f8f8 45%, #dadcdf);
  border: 1px solid rgba(190, 190, 194, .45);
  box-shadow: var(--shadow);
}
.placeholder-photo::before,
.tip-media::before,
.placeholder-product::before,
.mini-pack::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 42%, rgba(255,255,255,.6) 48%, transparent 54% 100%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.0) 0 42px, rgba(255,255,255,.25) 43px 44px);
  opacity: .7;
}
.placeholder-photo span,
.placeholder-product span,
.tip-media span {
  position: absolute;
  left: 24px;
  bottom: 20px;
  z-index: 1;
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  color: var(--charcoal);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.placeholder-photo.tall {
  min-height: 560px;
  border-radius: var(--radius);
}
.placeholder-photo.collage {
  min-height: 520px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 66% 31%, rgba(241, 63, 44, .4), transparent 18%),
    linear-gradient(135deg, #eeeeef, #f8f8f8 45%, #dadcdf);
}
.placeholder-photo.wide {
  min-height: 470px;
  border-radius: var(--radius);
}
.content-card {
  padding: 54px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.content-card h2,
.section-heading h2,
.indications-card h2,
.benefits-copy h2,
.editorial-copy h2,
.info-panel h2,
.faq-intro h2,
.pharmacy-copy h2 {
  font-size: clamp(2.35rem, 4vw, 4.15rem);
}
.content-card p,
.section-heading p:last-child,
.editorial-copy p,
.info-panel p,
.faq-intro p,
.pharmacy-copy p {
  color: var(--muted);
  font-size: 1.04rem;
}
.notice-pill { margin-top: 26px; }
.gallery-wrap { margin-top: 78px; }
.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}
.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}
.section-heading.compact { margin-bottom: 24px; }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.pain-tile {
  position: relative;
  min-height: 210px;
  background:
    radial-gradient(circle at 57% 54%, rgba(241, 63, 44, .48), transparent 18%),
    linear-gradient(135deg, #f4f4f4, #d4d6d9);
  border-right: 1px solid #d2d4d8;
  border-bottom: 1px solid #d2d4d8;
}
.pain-tile:nth-child(3n) { border-right: 0; }
.pain-tile:nth-last-child(-n+3) { border-bottom: 0; }
.pain-tile::before {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 30px;
  border: 1px dashed rgba(90, 90, 92, .22);
}
.pain-tile span {
  position: absolute;
  left: 18px;
  bottom: 16px;
  padding: 6px 10px;
  border-radius: 99px;
  background: rgba(255,255,255,.72);
  font-size: .78rem;
  font-weight: 900;
}

.presentations-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(244, 119, 22, .10), transparent 30%),
    linear-gradient(180deg, var(--soft), #fff);
}

.presentations-section .section-heading {
  margin-bottom: 0;
}

.product-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 42px);
  margin-top: 48px;
}

.product-card {
  position: relative;
  min-height: 390px;
  padding: clamp(28px, 5vw, 48px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(244, 119, 22, .14);
  border-radius: calc(var(--radius) + 4px);
  background:
    radial-gradient(circle at 50% 42%, rgba(244, 119, 22, .14), transparent 38%),
    linear-gradient(180deg, #ffffff 0%, #fffaf5 100%);
  box-shadow: 0 24px 70px rgba(22, 25, 31, .11);
  isolation: isolate;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.product-card::before {
  content: "";
  position: absolute;
  width: min(74%, 310px);
  aspect-ratio: 1;
  top: 48%;
  left: 50%;
  z-index: -1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 154, 54, .22), rgba(244, 119, 22, .08) 58%, transparent 70%);
  transform: translate(-50%, -50%);
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: -1;
  border: 1px dashed rgba(244, 119, 22, .20);
  border-radius: 24px;
  pointer-events: none;
}

.product-card img {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  max-height: 260px;
  object-fit: contain;
  filter: drop-shadow(0 20px 24px rgba(47, 49, 53, .20));
  transform: translateY(-16px);
  transition: transform var(--transition), filter var(--transition);
}

.product-card span {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  box-shadow: 0 16px 32px rgba(244, 119, 22, .28);
  font-size: .92rem;
  font-weight: 950;
  text-align: center;
  letter-spacing: .01em;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(244, 119, 22, .28);
  box-shadow: 0 30px 80px rgba(22, 25, 31, .16);
}

.product-card:hover img {
  transform: translateY(-20px) scale(1.04);
  filter: drop-shadow(0 24px 28px rgba(47, 49, 53, .24));
}

.indications-section {
  color: white;
  background:
    radial-gradient(circle at 15% 34%, rgba(255,255,255,.16), transparent 28%),
    linear-gradient(135deg, var(--orange), var(--orange-dark));
}
.indications-card {
  padding: 58px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.23);
  box-shadow: 0 28px 80px rgba(106, 43, 0, .22);
}
.check-list {
  list-style: none;
  margin: 28px 0 32px;
  padding: 0;
  display: grid;
  gap: 12px;
}
.check-list li {
  position: relative;
  padding-left: 34px;
  font-weight: 760;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .15em;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,.22);
}
.check-list li::after {
  content: "✓";
  position: absolute;
  left: 5px;
  top: -.04em;
  font-weight: 950;
}
.check-list.dark li::before { background: var(--soft-orange); }
.check-list.dark li::after { color: var(--orange-dark); }

.action-section { background: var(--white); }
.mechanism-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mechanism-card {
  min-height: 330px;
  padding: 34px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.mechanism-card:hover {
  transform: translateY(-6px);
  background: white;
  box-shadow: var(--shadow);
}
.icon-badge {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--soft-orange);
  color: var(--orange-dark);
  font-weight: 950;
}
.mechanism-card h3 {
  margin: 24px 0 14px;
  font-size: 1.5rem;
  line-height: 1.08;
  letter-spacing: -.03em;
}
.mechanism-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.benefits-section {
  background: linear-gradient(180deg, #fff, var(--soft-orange));
}
.benefits-grid {
  display: grid;
  grid-template-columns: .82fr 1.1fr .42fr;
  gap: 30px;
  align-items: center;
}
.benefits-list {
  display: grid;
  gap: 12px;
}
.benefits-list article {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(255,255,255,.84);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(160, 78, 13, .08);
  font-weight: 800;
}
.benefits-list span {
  flex: 0 0 12px;
  width: 12px;
  height: 12px;
  border-radius: 99px;
  background: var(--orange);
}
.mini-product {
  display: grid;
  place-items: center;
}

.editorial-card {
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 0;
  overflow: hidden;
  background: var(--charcoal);
  color: white;
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow);
}
.editorial-card .placeholder-photo { border-radius: 0; box-shadow: none; min-height: 520px; }
.editorial-copy {
  display: grid;
  align-content: center;
  padding: clamp(36px, 5vw, 64px);
}
.editorial-copy p { color: rgba(255,255,255,.75); }

.usecases-section { background: var(--soft); }
.two-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.info-panel {
  padding: 44px;
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.info-panel.safety {
  background: #2f3135;
  color: white;
}
.info-panel.safety p { color: rgba(255,255,255,.72); }
.use-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}
.use-list span {
  padding: 18px 18px 18px 22px;
  border-left: 4px solid var(--orange);
  border-radius: 12px;
  background: var(--soft-orange);
  font-weight: 800;
}

.knowledge-section { background: white; }
.blog-grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 28px;
}
.blog-feature {
  display: grid;
  grid-template-columns: .86fr 1fr;
  gap: 34px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.blog-image {
  min-height: 360px;
  border-radius: 22px;
  box-shadow: none;
}
.blog-feature h3 {
  margin: 15px 0 12px;
  font-size: clamp(1.9rem, 3vw, 3.25rem);
  line-height: 1.02;
  letter-spacing: -.05em;
}
.blog-feature p { color: var(--muted); }
.blog-links {
  display: grid;
  gap: 12px;
}
.blog-links a {
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--line);
  color: var(--charcoal);
  background: var(--soft);
  font-weight: 900;
  transition: transform var(--transition), background var(--transition);
}
.blog-links a:hover {
  transform: translateX(4px);
  background: var(--soft-orange);
}

.tips-section {
  background: linear-gradient(180deg, var(--soft), white);
}
.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tip-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 18px 45px rgba(22,25,31,.08);
}
.tip-media {
  min-height: 210px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.tip-card h3 {
  min-height: 62px;
  margin: 24px 24px 10px;
  font-size: 1.28rem;
  line-height: 1.1;
  letter-spacing: -.03em;
}
.tip-card p {
  margin: 0 24px 28px;
  color: var(--muted);
}

.faq-section { background: white; }
.faq-grid {
  display: grid;
  grid-template-columns: .72fr 1fr;
  gap: 54px;
}
.faq-list {
  display: grid;
  gap: 12px;
}
details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--soft);
  overflow: hidden;
}
summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 26px;
  font-weight: 950;
  font-size: 1.05rem;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  float: right;
  color: var(--orange-dark);
  font-size: 1.4rem;
  line-height: 1;
}
details[open] summary::after { content: "–"; }
details p {
  margin: 0;
  padding: 0 26px 24px;
  color: var(--muted);
}

.pharmacy-section {
  background:
    radial-gradient(circle at 80% 30%, rgba(255,255,255,.12), transparent 30%),
    linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white;
}
.pharmacy-card {
  display: grid;
  grid-template-columns: 1fr .82fr;
  gap: 34px;
  align-items: center;
  padding: 48px;
  border-radius: calc(var(--radius) + 6px);
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.24);
  box-shadow: 0 26px 70px rgba(105, 43, 0, .22);
}
.pharmacy-copy p { color: rgba(255,255,255,.78); }
.bottom-products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.mini-card {
  padding: 18px;
  background: white;
  color: var(--charcoal);
  border-radius: 22px;
  display: grid;
  gap: 12px;
  text-align: center;
  box-shadow: 0 16px 34px rgba(79, 33, 0, .16);
}
.mini-pack {
  min-height: 118px;
  border-radius: 14px;
  box-shadow: none;
  background:
    linear-gradient(125deg, transparent 0 55%, rgba(244,119,22,.72) 56% 66%, transparent 67%),
    #f1f1ef;
}
.mini-pack.xr { background: linear-gradient(135deg, #3a3c40, #18191c); }
.other-products {
  margin-top: 40px;
  padding: 34px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
}
.other-products h3 { margin-top: 0; }
.other-product-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.placeholder-product {
  min-height: 150px;
  border-radius: 20px;
  box-shadow: none;
}

.site-footer {
  background: #232426;
  color: white;
  padding: 64px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 34px;
}
.footer-brand { margin-bottom: 18px; }
.site-footer p,
.site-footer small {
  color: rgba(255,255,255,.66);
}
.site-footer h3 { margin: 0 0 12px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.7);
}
.footer-bottom a { color: white; font-weight: 900; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal .7s ease forwards;
}
.delay-1 { animation-delay: .12s; }
.delay-2 { animation-delay: .24s; }
@keyframes reveal {
  to { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .section-pad { padding: 68px 0; }
  .header-inner { min-height: 74px; }
  .nav-toggle { display: inline-grid; place-items: center; }
  .site-nav {
    position: absolute;
    inset: 74px 19px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: white;
    box-shadow: var(--shadow);
  }
  .site-header.nav-open .site-nav { display: flex; }
  .site-nav a { padding: 14px 16px; }
  .hero { min-height: auto; padding-top: 64px; }
  .hero-grid,
  .split-grid,
  .product-cards,
  .benefits-grid,
  .editorial-card,
  .two-card-grid,
  .blog-grid,
  .faq-grid,
  .pharmacy-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .reverse > :first-child { order: initial; }
  .hero-visual { min-height: 470px; }
  .product-card { min-height: 350px; }
  .product-card img { max-height: 235px; }
  .mechanism-grid,
  .tips-grid,
  .other-product-row { grid-template-columns: 1fr 1fr; }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .pain-tile:nth-child(3n) { border-right: 1px solid #d2d4d8; }
  .pain-tile:nth-child(2n) { border-right: 0; }
  .pain-tile:nth-last-child(-n+3) { border-bottom: 1px solid #d2d4d8; }
  .pain-tile:last-child { grid-column: span 2; border-bottom: 0; }
}

@media (max-width: 640px) {
  .shell { width: min(100% - 28px, var(--max)); }
  .section-pad { padding: 54px 0; }
  .brand-copy strong { font-size: .9rem; }
  .brand-mark { width: 40px; height: 40px; }
  .hero-copy { text-align: left; }
  .hero h1 { font-size: clamp(2.95rem, 16vw, 4.8rem); }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .trust-strip { display: grid; grid-template-columns: 1fr; }
  .card-a, .card-b { position: static; margin: 12px auto 0; }
  .hero-visual { min-height: auto; gap: 10px; }
  .product-cards { gap: 18px; margin-top: 34px; }
  .product-card { min-height: 300px; padding: 26px; }
  .product-card img { max-height: 200px; transform: translateY(-14px); }
  .product-card span { left: 16px; right: 16px; bottom: 16px; min-height: 44px; font-size: .84rem; }
  .pack-lg { width: 100%; }
  .pack-lg .pack-face { min-height: 245px; }
  .pack-title { font-size: 2.2rem; }
  .pack-lines i { width: 118px; }
  .content-card,
  .indications-card,
  .info-panel,
  .product-card-body,
  .pharmacy-card,
  .other-products { padding: 28px; }
  .placeholder-photo.tall,
  .placeholder-photo.collage,
  .placeholder-photo.wide { min-height: 320px; }
  .pain-grid,
  .mechanism-grid,
  .tips-grid,
  .bottom-products,
  .other-product-row { grid-template-columns: 1fr; }
  .pain-tile,
  .pain-tile:last-child { grid-column: auto; border-right: 0; min-height: 170px; }
  .benefits-grid { gap: 24px; }
  .blog-feature { grid-template-columns: 1fr; padding: 20px; }
  .blog-image { min-height: 245px; }
  .editorial-card .placeholder-photo { min-height: 320px; }
  .footer-bottom { flex-direction: column; }
}
