:root {
  --brand: #71297a;
  --brand-ink: #5a2062;
  --brand-deep: #43164a;
  --brand-050: #f7eef8;
  --brand-100: #efdcf1;
  --brand-200: #e0bce4;
  --slate: #5d6576;
  --slate-600: #4b5262;
  --ink: #25272f;
  --ink-2: #414755;
  --gold: #c79a3d;
  --bg: #ffffff;
  --surface: #fbfafc;
  --surface-2: #f4f4f7;
  --border: #eae8ee;
  --border-2: #e0dbe6;
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --shadow-sm:
    0 1px 2px rgba(37, 39, 47, 0.05), 0 1px 3px rgba(37, 39, 47, 0.04);
  --shadow-md:
    0 12px 30px -10px rgba(37, 39, 47, 0.12),
    0 3px 10px -4px rgba(37, 39, 47, 0.06);
  --shadow-lg:
    0 34px 70px -20px rgba(67, 22, 74, 0.2),
    0 12px 28px -12px rgba(37, 39, 47, 0.1);
  --wrap: 1120px;
  --gutter: clamp(20px, 5vw, 56px);
  --step--1: clamp(0.83rem, 0.8rem + 0.14vw, 0.9rem);
  --step-0: clamp(1rem, 0.97rem + 0.16vw, 1.06rem);
  --step-1: clamp(1.1rem, 1.03rem + 0.34vw, 1.28rem);
  --step-2: clamp(1.35rem, 1.16rem + 0.9vw, 1.72rem);
  --step-3: clamp(1.6rem, 1.32rem + 1.35vw, 2.3rem);
  --step-4: clamp(1.9rem, 1.4rem + 2vw, 2.75rem);
  --font-body:
    "Rubik", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-display: "Sora", var(--font-body);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.28s;
  accent-color: var(--brand);
  color-scheme: light;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
html {
  -webkit-text-size-adjust: 100%;
  scrollbar-width: thin;
  scrollbar-color: var(--border-2) var(--surface);
}
html:focus-within {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.62;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
}
ul,
ol {
  list-style: none;
  padding: 0;
}
h1,
h2,
h3 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: -0.012em;
  text-wrap: balance;
}
p {
  text-wrap: pretty;
}
::selection {
  background: var(--brand);
  color: var(--ink);
}
:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
  border-radius: 5px;
}
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}
::-webkit-scrollbar-track {
  background: var(--surface);
}
::-webkit-scrollbar-thumb {
  background: var(--border-2);
  border-radius: 99px;
  border: 3px solid var(--surface);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--slate);
}
.visually-hidden,
.skip-link {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  position: fixed !important;
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  clip: auto;
  z-index: 200;
  background: var(--brand);
  color: #fff;
  padding: 12px 18px;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
}
.wrap {
  width: min(100% - (var(--gutter) * 2), var(--wrap));
  margin-inline: auto;
}
.icon {
  width: 1.25em;
  height: 1.25em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
}

/* buttons */
.btn {
  --_bg: var(--brand);
  --_fg: #fff;
  --_bd: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--step-0);
  line-height: 1;
  padding: 14px 24px;
  min-height: 48px;
  border-radius: var(--radius-pill);
  background: var(--_bg);
  color: var(--_fg);
  border: 1.5px solid var(--_bd);
  cursor: pointer;
  transition:
    transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease),
    background var(--dur) var(--ease),
    color var(--dur) var(--ease);
  white-space: nowrap;
}
.btn .icon {
  width: 1.12em;
  height: 1.12em;
}
.btn--primary {
  box-shadow: 0 12px 26px -14px rgba(113, 41, 122, 0.55);
}
.btn--primary:hover {
  background: var(--brand-ink);
  border-color: var(--brand-ink);
  transform: translateY(-2px);
}
.btn--primary:active {
  transform: translateY(0);
}
.btn--ghost {
  --_bg: transparent;
  --_fg: var(--brand);
  --_bd: var(--border-2);
}
.btn--ghost:hover {
  --_bd: var(--brand);
  background: var(--brand-050);
  transform: translateY(-2px);
}
.btn--onbrand {
  --_bg: #fff;
  --_fg: var(--brand);
  --_bd: #fff;
}
.btn--onbrand:hover {
  --_bg: var(--brand-050);
  transform: translateY(-2px);
}
.btn--onbrand-ghost {
  --_bg: transparent;
  --_fg: #fff;
  --_bd: rgba(255, 255, 255, 0.5);
}
.btn--onbrand-ghost:hover {
  --_bg: rgba(255, 255, 255, 0.12);
  --_bd: #fff;
  transform: translateY(-2px);
}
.btn--sm {
  padding: 10px 18px;
  min-height: 42px;
  font-size: var(--step--1);
}
.btn--lg {
  padding: 17px 28px;
  min-height: 54px;
}
.btn--block {
  width: 100%;
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--brand);
  font-size: var(--step--1);
}
.link-arrow .icon {
  width: 1.1em;
  height: 1.1em;
  transition: transform var(--dur) var(--ease);
}
.link-arrow:hover .icon {
  transform: translateX(4px);
}

/* header (shared with homepage) */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition:
    border-color var(--dur),
    box-shadow var(--dur),
    background var(--dur);
}
.site-header.is-scrolled {
  border-color: var(--border);
  box-shadow: 0 6px 22px -16px rgba(37, 39, 47, 0.25);
  background: rgba(255, 255, 255, 0.95);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 72px;
}
.header__logo img {
  height: 36px;
  width: auto;
}
.header__nav {
  display: flex;
  gap: 26px;
  margin-inline: auto;
}
.header__nav a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--step--1);
  color: var(--ink-2);
  padding: 8px 2px;
  position: relative;
  transition: color var(--dur);
}
.header__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--brand);
  transition: right var(--dur) var(--ease);
}
.header__nav a:hover {
  color: var(--brand);
}
.header__nav a:hover::after {
  right: 0;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.link-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 400;
  font-size: var(--step--1);
  color: var(--slate);
}
.link-phone .icon {
  color: var(--brand);
}
.link-phone:hover {
  color: var(--brand);
}
.header__burger {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border-2);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
}
.header__burger .icon {
  width: 22px;
  height: 22px;
}
.mobile-nav {
  border-top: 1px solid var(--border);
  background: #fff;
  padding: 16px var(--gutter) 24px;
  overflow: hidden;
}
.mobile-nav nav {
  display: flex;
  flex-direction: column;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  padding: 14px 4px;
  border-bottom: 1px solid var(--border);
}
.mobile-nav__cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

/* breadcrumb — slim strip under the header */
.crumb {
  border-bottom: 1px solid var(--border);
  background: #fff;
}
.crumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: var(--step--1);
  color: var(--slate);
  padding-block: 12px;
}
.crumb a:hover {
  color: var(--brand);
}
.crumb li[aria-current] {
  color: var(--ink);
}
.crumb svg {
  width: 14px;
  height: 14px;
  stroke: var(--border-2);
}

/* hero — full-bleed, homepage style, responsive height */
.phero {
  position: relative;
  isolation: isolate;
  min-height: clamp(520px, 78svh, 720px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.phero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.phero__bg img {
  width: 100%;
  height: 130%;
  object-fit: cover;
  object-position: center 42%;
  will-change: transform;
}
.phero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(20, 12, 24, 0.42) 0%,
      rgba(20, 12, 24, 0.22) 28%,
      rgba(26, 15, 30, 0.78) 74%,
      rgba(24, 13, 28, 0.94) 100%
    ),
    linear-gradient(
      90deg,
      rgba(58, 18, 64, 0.72) 0%,
      rgba(58, 18, 64, 0.28) 62%,
      rgba(58, 18, 64, 0.06) 100%
    );
}
.phero__inner {
  width: min(100% - (var(--gutter) * 2), var(--wrap));
  margin-inline: auto;
  padding-block: clamp(96px, 14vh, 132px) clamp(64px, 11vh, 104px);
}
.phero__title {
  font-size: var(--step-4);
  font-weight: 600;
  line-height: 1.12;
  color: #fff;
  max-width: 18ch;
  text-shadow: 0 1px 24px rgba(15, 8, 18, 0.35);
}
.phero__title .w {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  padding-bottom: 0.08em;
}
.phero__title .w-i {
  display: inline-block;
  will-change: transform;
}
.phero__lede {
  margin-top: 20px;
  max-width: 56ch;
  font-size: var(--step-1);
  color: #fff;
  font-weight: 400;
  text-shadow: 0 1px 16px rgba(15, 8, 18, 0.4);
}
.phero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.phero__scroll {
  position: absolute;
  left: 50%;
  bottom: 18px;
  translate: -50% 0;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  color: #fff;
  animation: bob 2.4s var(--ease) infinite;
}
.phero__scroll .icon {
  width: 18px;
  height: 18px;
}
@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

/* overview — the direct answer, moved below the hero */
.overview {
  padding-block: clamp(48px, 7vw, 84px);
}
.overview__lede {
  font-size: var(--step-2);
  line-height: 1.5;
  color: var(--ink-2);
  font-weight: 400;
  max-width: 40ch;
  max-width: 62ch;
}
.overview__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.overview__chips li {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--step--1);
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-pill);
  padding: 9px 16px;
}

/* section shell */
.sec {
  padding-block: clamp(52px, 7vw, 92px);
  border-top: 1px solid var(--border);
}
.sec--surface {
  background: var(--surface);
}
.sec__head {
  max-width: 60ch;
  margin-bottom: clamp(28px, 4vw, 44px);
}
.sec__head h2 {
  font-size: var(--step-3);
  font-weight: 600;
  max-width: 26ch;
}
.sec__head p {
  margin-top: 12px;
  color: var(--slate);
  font-size: var(--step-0);
}

/* quick facts — grouped definition list, not a stat-card template */
.facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 4vw, 44px);
}
.facts__group h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 6px;
}
.facts__group dl {
  display: grid;
}
.facts__group div {
  display: grid;
  grid-template-columns: minmax(0, 150px) 1fr;
  gap: 16px;
  padding-block: 12px;
  border-top: 1px solid var(--border);
}
.facts__group dt {
  font-size: var(--step--1);
  color: var(--slate);
}
.facts__group dd {
  font-size: var(--step--1);
  color: var(--ink);
  font-weight: 500;
}

/* grades */
.grades__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.grades__pills li {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--step--1);
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-pill);
  padding: 9px 16px;
}

/* uses — how-it-works split */
.uses__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.uses__intro {
  position: sticky;
  top: 100px;
}
.uses__intro p {
  color: var(--slate);
  margin: 14px 0 24px;
  max-width: 40ch;
}
.uses__list {
  display: grid;
}
.uses__row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding-block: 22px;
  border-top: 1px solid var(--border);
}
.uses__row:first-child {
  border-top: 0;
  padding-top: 0;
}
.uses__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
}
.uses__row h3 {
  font-size: var(--step-1);
  font-weight: 600;
  margin-bottom: 5px;
}
.uses__row p {
  font-size: var(--step--1);
  color: var(--slate);
}

/* safety callout + documentation */
.safety {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}
.callout {
  background: var(--brand-050);
  border: 1px solid var(--brand-100);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 30px);
}
.callout__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.callout__top .icon {
  width: 26px;
  height: 26px;
  color: var(--brand);
}
.callout h3 {
  font-size: var(--step-1);
  font-weight: 600;
}
.callout p {
  font-size: var(--step--1);
  color: var(--slate-600);
  margin-top: 10px;
}
.callout ul {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}
.callout li {
  position: relative;
  padding-left: 20px;
  font-size: var(--step--1);
  color: var(--slate-600);
}
.callout li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}
.callout .link-arrow {
  margin-top: 14px;
}
.doc-note {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 30px);
}
.doc-note h3 {
  font-size: var(--step-1);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.doc-note h3 .icon {
  width: 22px;
  height: 22px;
  color: var(--brand);
}
.doc-note p {
  font-size: var(--step--1);
  color: var(--slate);
  margin-top: 10px;
}
.pack-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.pack-row div {
  padding-top: 16px;
  border-top: 2px solid var(--brand-200);
}
.pack-row dt {
  font-size: var(--step--1);
  color: var(--slate);
}
.pack-row dd {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  font-size: var(--step-1);
  margin-top: 4px;
}
.pack-row dd small {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--step--1);
  color: var(--slate);
  margin-top: 3px;
}

/* faq — centered, wide accordion rows */
.pfaq {
  text-align: center;
}
.pfaq__head h2 {
  font-size: var(--step-3);
  font-weight: 600;
}
.pfaq__head p {
  margin-top: 10px;
  color: var(--slate);
  font-size: var(--step-0);
}
.pfaq__head a {
  color: var(--brand);
  font-weight: 500;
}
.pfaq__list {
  max-width: 760px;
  margin: clamp(28px, 4vw, 44px) auto 0;
  display: grid;
  gap: 10px;
  text-align: left;
}
.pfaq__item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition:
    border-color var(--dur),
    box-shadow var(--dur);
}
.pfaq__item:has(.pfaq__q[aria-expanded="true"]) {
  border-color: var(--brand-200);
  box-shadow: var(--shadow-md);
}
.pfaq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 18px clamp(16px, 2.4vw, 24px);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--step-0);
  color: var(--ink);
  min-height: 56px;
}
.pfaq__icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--brand);
  transition: transform var(--dur) var(--ease);
}
.pfaq__q[aria-expanded="true"] .pfaq__icon {
  transform: rotate(180deg);
}
.pfaq__a {
  padding: 0 clamp(16px, 2.4vw, 24px);
  overflow: hidden;
}
.pfaq__a[hidden] {
  display: none;
}
.pfaq__a p {
  padding-bottom: 20px;
  color: var(--slate);
  font-size: var(--step--1);
}

/* cta panel */
.pcta {
  padding-block: clamp(40px, 6vw, 72px);
}
.pcta__panel {
  background: var(--brand);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.pcta__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(
    90% 120% at 12% 0%,
    rgba(255, 255, 255, 0.1),
    transparent 60%
  );
}
.pcta__panel h2 {
  color: #fff;
  font-size: var(--step-2);
  font-weight: 600;
  max-width: 22ch;
}
.pcta__panel p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.92);
  font-size: var(--step-0);
  max-width: 48ch;
}
.pcta__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* footer (shared with homepage) */
/* ---------- FOOTER ---------- */
.site-footer {
  background: #211126;
  color: rgba(255, 255, 255, 0.7);
  padding-top: clamp(56px, 7vw, 88px);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1.5fr 1.3fr;
  gap: 36px;
}
.footer__logo {
  height: 38px;
  width: auto;
  margin-bottom: 16px;
  background: #fff;
  padding: 8px 12px;
  border-radius: 10px;
}
.footer__brand p {
  font-size: var(--step--1);
  max-width: 44ch;
}
.footer__col-h {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}
.footer__col ul {
  display: grid;
  gap: 10px;
}
.footer__col a {
  font-size: var(--step--1);
  transition: color var(--dur);
}
.footer__col a:hover {
  color: #fff;
}
.footer__bestsellers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.footer__bestsellers-grid ul {
  display: grid;
  gap: 10px;
}

.footer__bestsellers-grid a {
  white-space: nowrap; /* Prevents awkward line-breaks on product names */
}

/* Contact specific styling */
.footer__contact li {
  display: flex;
  font-size: var(--step--1);
  align-items: flex-start;
}
.footer__contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.footer__contact .icon {
  width: 17px;
  height: 17px;
  color: var(--brand-200);
  flex: 0 0 auto;
}
.footer__addr {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.55);
}
.footer__addr .icon {
  margin-top: 3px;
}

.footer__bar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: clamp(40px, 6vw, 64px);
  padding-block: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.48);
}

/* quick contact */
.quick-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: grid;
  gap: 12px;
}
.quick-contact__btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: var(--shadow-lg);
  transition: transform var(--dur) var(--ease);
}
.quick-contact__btn .icon {
  width: 24px;
  height: 24px;
}
.quick-contact__btn--wa {
  background: #25d366;
}
.quick-contact__btn--call {
  background: var(--brand);
}
.quick-contact__btn:hover {
  transform: scale(1.08);
}

/* reveal */
[data-reveal] {
  will-change: transform, opacity;
}
.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.55s var(--ease-out),
    transform 0.6s var(--ease-out);
}
.js [data-reveal].in {
  opacity: 1;
  transform: none;
}
.gsap-ready .phero__title .w-i {
  opacity: 0;
}

/* responsive */
@media (max-width: 1000px) {
  .header__nav {
    display: none;
  }
  .header__burger {
    display: inline-flex;
  }
  .link-phone {
    display: none;
  }
  .facts {
    grid-template-columns: 1fr;
  }
  .uses__grid {
    grid-template-columns: 1fr;
  }
  .uses__intro {
    position: static;
  }
  .safety {
    grid-template-columns: 1fr;
  }
  .pcta__panel {
    grid-template-columns: 1fr;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .phero {
    min-height: auto;
  }
  .phero__inner {
    padding-block: clamp(84px, 20vh, 120px) clamp(52px, 10vh, 84px);
  }
  .facts__group div {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .pack-row {
    grid-template-columns: 1fr;
  }
  .phero__cta .btn,
  .pcta__actions .btn {
    width: 100%;
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .footer__bar {
    justify-content: flex-start;
  }
}
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .js [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
  .gsap-ready .phero__title .w-i {
    opacity: 1;
  }
  .phero__scroll {
    animation: none;
  }
  .phero__bg img {
    height: 100%;
  }
}

/* header — Products dropdown (Home / Products / About / Contact) */
.header__dd {
  position: relative;
}
.header__dd-parent {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.header__dd-parent .icon {
  width: 14px;
  height: 14px;
  transition: transform var(--dur) var(--ease);
}
.header__dd:hover .header__dd-parent .icon,
.header__dd:focus-within .header__dd-parent .icon {
  transform: rotate(180deg);
}
.header__dd::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
}
.header__dd-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 12px);
  min-width: 214px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 6px;
  display: grid;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition:
    opacity var(--dur) var(--ease),
    transform var(--dur) var(--ease),
    visibility var(--dur);
  z-index: 120;
}
.header__dd:hover .header__dd-menu,
.header__dd:focus-within .header__dd-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.header__dd-menu a {
  display: block;
  padding: 9px 12px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--step--1);
  color: var(--ink-2);
  transition:
    background var(--dur),
    color var(--dur);
}
.header__dd-menu a::after {
  display: none;
}
.header__dd-menu a:hover {
  background: var(--brand-050);
  color: var(--brand);
}
.mobile-nav__sub {
  padding-left: 22px !important;
  font-size: 0.98rem !important;
  color: var(--slate-600);
}
#contact {
  scroll-margin-top: 96px;
}
