@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,300;12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&family=Hanken+Grotesk:wght@300;400;500;600&display=swap');

:root {
  --cream: #F5F2ED;
  --cream-dark: #EDE8E0;
  --navy: #0A2342;
  --navy-mid: #163560;
  --blue: #1E5FA8;
  --blue-light: #2E7DD4;
  --blue-pale: #E8F0FA;
  --warm-grey: #8C7B6E;
  --warm-grey-light: #C4B8AC;
  --dark: #1A1A2E;
  --text-body: #2D2D3A;
  --text-muted: #6B6B7B;
  --white: #FAFAF8;
  --border: rgba(10,35,66,0.12);
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Hanken Grotesk', sans-serif;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 12px rgba(10,35,66,0.08);
  --shadow-md: 0 8px 32px rgba(10,35,66,0.12);
  --shadow-lg: 0 24px 64px rgba(10,35,66,0.16);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--cream); color: var(--text-body); line-height: 1.6; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── ON-DARK SCOPE ── */
.on-dark { color: rgba(255,255,255,0.85); }
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4 { color: #fff; }
.on-dark p { color: rgba(255,255,255,0.72); }
.on-dark a:not(.btn) { color: inherit; }

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}
.container--narrow {
  max-width: 800px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.1;
  font-weight: 700;
  color: var(--navy);
}
h1 { font-size: clamp(48px, 8vw, 96px); }
h2 { font-size: clamp(32px, 5vw, 56px); }
h3 { font-size: clamp(22px, 3vw, 32px); }
h4 { font-size: clamp(16px, 2vw, 20px); }
p { font-size: 1rem; line-height: 1.75; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  display: block;
  margin-bottom: 16px;
}
.eyebrow--light { color: rgba(255,255,255,0.55); }

/* ── ADVERTORIAL DISCLOSURE ── */
.disclosure-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  font-size: 11px;
  font-family: var(--font-body);
  letter-spacing: 0.08em;
  text-align: center;
  padding: 7px 20px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
}
.disclosure-bar a { color: rgba(255,255,255,0.9); text-decoration: underline; }

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 31px; /* clear the fixed disclosure bar above */
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  backdrop-filter: blur(0px);
  background: linear-gradient(to bottom, rgba(10,35,66,0.85) 0%, rgba(10,35,66,0.6) 55%, rgba(10,35,66,0) 100%);
}
.nav--scrolled {
  background: rgba(10,35,66,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 24px rgba(10,35,66,0.35);
  padding: 12px 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  white-space: nowrap;
  text-shadow: 0 1px 6px rgba(10,35,66,0.5);
}
.nav__logo span { color: var(--blue-light); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 6px rgba(10,35,66,0.55);
  transition: color var(--transition);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--blue-light);
  transition: width var(--transition);
}
.nav__links a:hover { color: #fff; }
.nav__links a:hover::after { width: 100%; }
.nav__cta {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--blue);
  padding: 11px 24px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  box-shadow: 0 2px 12px rgba(10,35,66,0.3);
}
.nav__cta:hover { background: var(--blue-light); }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: var(--transition);
}

/* ── BUTTONS ── */
/* B5 — Split button */
.btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.btn__text {
  padding: 14px 20px;
  background: var(--blue);
  color: #fff;
  transition: background var(--transition);
}
.btn__suffix {
  padding: 14px 18px;
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  border-left: 1px solid rgba(255,255,255,0.15);
  transition: background var(--transition);
  font-size: 16px;
}
.btn:hover .btn__text { background: var(--blue-light); }
.btn:hover .btn__suffix { background: var(--navy-mid); }

.btn--outline {
  background: transparent;
  border: 1.5px solid var(--blue);
  color: var(--blue);
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn--outline:hover { background: var(--blue); color: #fff; }

.btn--white {
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-sm);
  overflow: hidden;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
}
.btn--white .btn__text { background: #fff; color: var(--navy); }
.btn--white .btn__suffix { background: var(--cream-dark); color: var(--navy-mid); border-left: 1px solid rgba(10,35,66,0.12); }
.btn--white:hover .btn__text { background: var(--cream); }

.btn--full {
  width: 100%;
  justify-content: center;
}
.btn--lg .btn__text, .btn--lg .btn__suffix { padding: 18px 28px; }
.btn--lg { font-size: 14px; }

/* Loading spinner */
.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  flex-shrink: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── CARDS (C4 — Filled tint) ── */
.card {
  background: var(--cream-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* ── PHOTO PLACEHOLDER ── */
.photo-placeholder {
  background: linear-gradient(135deg, #ff6eb4, #ff3d9a);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 100%;
  min-height: 200px;
  border-radius: inherit;
}
.photo-placeholder__icon { font-size: 32px; }
.photo-placeholder__label { color: #fff; font-size: 13px; font-weight: 600; font-family: sans-serif; text-align: center; padding: 0 16px; }

/* ── ANIMATIONS ── */
@keyframes float { 0%,100%{ transform: translateY(0) } 50%{ transform: translateY(-14px) } }
@keyframes pulse-ring { 0%{ transform: scale(1); opacity: 0.5 } 100%{ transform: scale(1.5); opacity: 0 } }
@keyframes slide-in-left { from{ opacity:0; transform:translateX(-50px) } to{ opacity:1; transform:translateX(0) } }
@keyframes fade-up { from{ opacity:0; transform:translateY(32px) } to{ opacity:1; transform:translateY(0) } }
@keyframes marquee { from{ transform: translateX(0) } to{ transform: translateX(-50%) } }
@keyframes blob-morph { 0%,100%{ border-radius:60% 40% 30% 70%/60% 30% 70% 40% } 50%{ border-radius:30% 60% 70% 40%/50% 60% 30% 60% } }
@keyframes shimmer { 0%{ background-position: -200% center } 100%{ background-position: 200% center } }
@keyframes countIn { from{ opacity:0; transform:scale(0.85) } to{ opacity:1; transform:scale(1) } }
@keyframes drawLine { from{ width:0 } to{ width:100% } }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-60px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-left.revealed { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(60px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-right.revealed { opacity: 1; transform: translateX(0); }
.reveal-up { opacity: 0; transform: translateY(60px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal-up.revealed { opacity: 1; transform: translateY(0); }

/* ── HERO (Variant I — Media Only) ── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,35,66,0.72) 0%, rgba(10,35,66,0.18) 50%, transparent 100%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: clamp(48px, 8vh, 80px);
}
.hero__scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.4);
  animation: float 2s ease-in-out infinite;
}

/* ── PROBLEM SECTION ── */
.problem {
  background: var(--navy);
  padding: clamp(72px, 10vw, 120px) 0;
}
.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.problem__headline {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  color: #fff;
}
.problem__headline em {
  font-style: italic;
  color: var(--blue-light);
}
.problem__list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.problem__item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.problem__item-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: rgba(30,95,168,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.problem__item-icon svg { width: 18px; height: 18px; }
.problem__item-text h4 { color: #fff; font-size: 15px; margin-bottom: 4px; }
.problem__item-text p { color: rgba(255,255,255,0.62); font-size: 14px; line-height: 1.6; }

/* ── FEATURED PRODUCTS ── */
.featured {
  background: var(--cream);
  padding: clamp(72px, 10vw, 120px) 0;
}
.section-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 72px);
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--text-muted); max-width: 540px; margin-inline: auto; }

.featured__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--cream-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.product-card__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--white);
}
.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s ease;
}
.product-card:hover .product-card__image img { transform: scale(1.04); }
.product-card__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--blue);
  padding: 5px 10px;
  border-radius: 2px;
}
.product-card__body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}
.product-card__name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.product-card__desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  margin-top: 4px;
}
.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  flex-wrap: wrap;
  gap: 12px;
}
.product-card__price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
}
.product-card__btn {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  border: 1.5px solid var(--blue);
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.product-card__btn:hover { background: var(--blue); color: #fff; }

.featured__cta {
  text-align: center;
  margin-top: 48px;
}

/* ── MARQUEE ── */
.marquee-section {
  background: var(--navy);
  padding: 20px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
}
.marquee-inner {
  display: flex;
  gap: 64px;
  animation: marquee 28s linear infinite;
  flex-shrink: 0;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.marquee-item svg { width: 16px; height: 16px; color: var(--blue-light); flex-shrink: 0; }

/* ── VIDEO SECTION ── */
.video-section {
  background: var(--cream-dark);
  padding: clamp(72px, 10vw, 120px) 0;
}
.video-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.video-section__text { }
.video-section__text h2 { margin-bottom: 20px; }
.video-section__text h2 em { font-style: italic; color: var(--blue); }
.video-section__text p { color: var(--text-muted); margin-bottom: 32px; }
.video-section__wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.video-section__wrap video {
  width: 100%;
  height: auto;
  display: block;
}

/* ── BENEFITS ── */
.benefits {
  background: var(--white);
  padding: clamp(72px, 10vw, 120px) 0;
}
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.benefit-item {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.benefit-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}
.benefit-item__num {
  position: absolute;
  top: -10px;
  right: 16px;
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 800;
  color: rgba(10,35,66,0.04);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}
.benefit-item__icon {
  width: 48px;
  height: 48px;
  background: var(--blue-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.benefit-item__icon svg { width: 22px; height: 22px; color: var(--blue); }
.benefit-item h4 {
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.benefit-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

/* Stats strip */
.stats-strip {
  background: var(--navy);
  padding: 56px 0;
}
.stats-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item { }
.stat-item__number {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-item__label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
}
.stat-item__suffix {
  font-family: var(--font-display);
  font-size: 0.55em;
  font-weight: 600;
  color: var(--blue-light);
  vertical-align: super;
  margin-left: 2px;
}

/* ── EMAIL SUBSCRIPTION ── */
.email-section {
  background: var(--cream-dark);
  padding: clamp(72px, 10vw, 120px) 0;
}
.email-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.email-section__text h2 { margin-bottom: 16px; }
.email-section__text h2 em { font-style: italic; color: var(--blue); }
.email-section__text p { color: var(--text-muted); }
.email-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.email-form__row {
  display: flex;
  gap: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.email-form__input {
  flex: 1;
  border: 1.5px solid var(--border);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  padding: 16px 20px;
  font-size: 14px;
  color: var(--text-body);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition);
}
.email-form__input:focus { border-color: var(--blue); }
.email-form__input::placeholder { color: var(--warm-grey-light); }
.email-form__btn {
  background: var(--blue);
  color: #fff;
  border: none;
  padding: 16px 24px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  transition: background var(--transition);
  white-space: nowrap;
}
.email-form__btn:hover { background: var(--blue-light); }
.email-form__note { font-size: 12px; color: var(--text-muted); }
.email-form__success {
  display: none;
  background: var(--blue-pale);
  border: 1px solid var(--blue);
  color: var(--navy);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 14px;
}

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  padding: 72px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand {}
.footer__logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  display: block;
}
.footer__logo span { color: var(--blue-light); }
.footer__tagline {
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 24px;
}
.footer__contact-item {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 6px;
}
.footer__contact-item a { color: rgba(255,255,255,0.75); transition: color var(--transition); }
.footer__contact-item a:hover { color: #fff; }
.footer__col-title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__links a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.58);
  transition: color var(--transition);
}
.footer__links a:hover { color: #fff; }
.footer__bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__copy {
  font-size: 12px;
  color: rgba(255,255,255,0.28);
}
.footer__legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__legal a {
  font-size: 11px;
  color: rgba(255,255,255,0.32);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.footer__legal a:hover { color: rgba(255,255,255,0.65); }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 680px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 56px rgba(10,35,66,0.35);
  z-index: 999;
  padding: 28px 32px;
  display: none;
}
.cookie-banner.visible { display: block; }
.cookie-banner__text {
  font-size: 13.5px;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin-bottom: 20px;
}
.cookie-banner__text a { color: var(--blue-light); text-decoration: underline; }
.cookie-banner__btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.cookie-btn {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.cookie-btn--accept { background: var(--blue); color: #fff; }
.cookie-btn--accept:hover { background: var(--blue-light); }
.cookie-btn--reject { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.75); }
.cookie-btn--reject:hover { background: rgba(255,255,255,0.18); }
.cookie-btn--config { background: transparent; color: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.2); }
.cookie-btn--config:hover { border-color: rgba(255,255,255,0.4); color: rgba(255,255,255,0.8); }
.cookie-config-panel {
  display: none;
  flex-direction: column;
  gap: 14px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 16px;
  margin-top: 4px;
}
.cookie-config-panel.open { display: flex; }
.cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.cookie-toggle-label { font-size: 13px; color: rgba(255,255,255,0.7); }
.cookie-toggle-label span { display: block; font-size: 11px; color: rgba(255,255,255,0.38); margin-top: 2px; }
.toggle-switch {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; position: absolute; }
.toggle-slider {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: background var(--transition);
}
.toggle-slider::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  transition: transform var(--transition);
}
.toggle-switch input:checked + .toggle-slider { background: var(--blue); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(18px); }
.toggle-switch input:disabled + .toggle-slider { opacity: 0.5; cursor: not-allowed; }
.cookie-save-btn {
  align-self: flex-start;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--blue);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition);
}
.cookie-save-btn:hover { background: var(--blue-light); }

/* ── MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,35,66,0.6);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.active { display: flex; }
.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.modal-icon {
  width: 64px;
  height: 64px;
  background: var(--blue-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.modal-icon svg { width: 32px; height: 32px; color: var(--blue); }
.modal-box h3 { font-size: 24px; color: var(--navy); margin-bottom: 12px; }
.modal-box p { color: var(--text-muted); font-size: 15px; line-height: 1.65; }
.modal-close {
  margin-top: 28px;
  background: var(--blue);
  color: #fff;
  border: none;
  padding: 13px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition);
}
.modal-close:hover { background: var(--blue-light); }

/* ── CATALOG PAGE ── */
.page-hero {
  background: var(--navy);
  padding: 140px 0 72px;
}
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.62); font-size: 16px; max-width: 520px; }

.catalog-section {
  background: var(--cream);
  padding: clamp(64px, 8vw, 100px) 0;
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* ── CHECKOUT PAGE ── */
.checkout-page {
  background: var(--cream);
  min-height: 100vh;
  padding-top: 80px;
}
.checkout-header {
  background: var(--navy);
  padding: 100px 0 48px;
}
.checkout-header h1 { color: #fff; font-size: clamp(28px, 4vw, 40px); margin-bottom: 8px; }
.checkout-header p { color: rgba(255,255,255,0.6); }
.checkout-body {
  padding: clamp(40px, 6vw, 72px) 0;
}
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: start;
}
.checkout-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.checkout-section-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-input {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 14px;
  color: var(--text-body);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}
.form-input:focus { border-color: var(--blue); }
.form-input.error { border-color: #e53935; }
.form-input--select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238C7B6E' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; padding-right: 40px; }
.form-error {
  font-size: 12px;
  color: #e53935;
  display: none;
  margin-top: 2px;
}
.form-error.visible { display: block; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.form-check input { margin-top: 2px; flex-shrink: 0; accent-color: var(--blue); }
.cod-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--blue-pale);
  border: 1px solid rgba(30,95,168,0.2);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-bottom: 24px;
}
.cod-badge svg { width: 24px; height: 24px; color: var(--blue); flex-shrink: 0; }
.cod-badge span { font-size: 14px; color: var(--navy); font-weight: 500; }
.checkout-submit {
  width: 100%;
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 18px 32px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.checkout-submit:hover { background: var(--navy-mid); }
.checkout-submit:disabled { opacity: 0.7; cursor: not-allowed; }

/* Order Summary */
.order-summary {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: sticky;
  top: 100px;
}
.order-summary__title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}
.order-summary__product {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}
.order-summary__img {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  object-fit: contain;
  background: rgba(255,255,255,0.06);
  flex-shrink: 0;
}
.order-summary__name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.order-summary__qty {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
}
.order-summary__divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 16px 0;
}
.order-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  margin-bottom: 10px;
}
.order-summary__row span:first-child { color: rgba(255,255,255,0.55); }
.order-summary__row span:last-child { color: rgba(255,255,255,0.85); font-weight: 500; }
.order-summary__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.order-summary__total-label {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.order-summary__total-price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}
.order-summary__shipping-note {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: 12px;
  text-align: center;
}

/* ── FAQ ── */
.faq-section {
  background: var(--cream);
  padding: clamp(72px, 10vw, 120px) 0;
}
.faq-list {
  max-width: 720px;
  margin-inline: auto;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--cream-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid transparent;
  transition: border-color var(--transition);
}
.faq-item.faq--open { border-color: var(--blue); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  cursor: pointer;
  gap: 16px;
}
.faq-q span {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
}
.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--blue);
  transition: transform var(--transition);
}
.faq--open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq--open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding: 0 24px 22px;
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── ABOUT EXCERPT ── */
.about-strip {
  background: var(--blue);
  padding: clamp(64px, 8vw, 100px) 0;
}
.about-strip__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-strip h2 { color: #fff; margin-bottom: 16px; }
.about-strip h2 em { font-style: italic; color: rgba(255,255,255,0.65); }
.about-strip p { color: rgba(255,255,255,0.72); margin-bottom: 28px; }

/* ── TRUST BADGES ── */
.trust-section {
  background: var(--white);
  padding: 56px 0;
}
.trust-badges__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}
.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  padding: 24px 16px;
  background: var(--cream);
  border-radius: var(--radius-md);
}
.trust-badge__icon {
  width: 44px;
  height: 44px;
  background: var(--blue-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-badge__icon svg { width: 20px; height: 20px; color: var(--blue); }
.trust-badge__label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .checkout-layout { grid-template-columns: 1fr; }
  .order-summary { position: static; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .video-section__inner { grid-template-columns: 1fr; gap: 40px; }
  .email-section__inner { grid-template-columns: 1fr; gap: 40px; }
  .about-strip__inner { grid-template-columns: 1fr; gap: 40px; }
  .problem__grid { grid-template-columns: 1fr; gap: 40px; }
  .featured__grid { grid-template-columns: 1fr; }
  .catalog-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .disclosure-bar { font-size: 10px; letter-spacing: 0.04em; }
  .nav { top: 52px; } /* disclosure wraps to ~2 lines on narrow screens */
  .nav__links { display: none; flex-direction: column; position: fixed; inset: 0; background: var(--navy); padding: 80px 32px 32px; gap: 24px; z-index: 99; align-items: flex-start; }
  .nav__links.nav__links--open { display: flex; }
  .nav__links a { font-size: 24px; font-weight: 700; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; z-index: 100; position: relative; }
  .benefits__grid { grid-template-columns: 1fr; }
  .stats-strip__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer__grid { grid-template-columns: 1fr; }
  .catalog-grid { grid-template-columns: 1fr; }
  .checkout-form-wrap { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .cookie-banner { width: calc(100% - 32px); padding: 20px 20px; }
}

@media (max-width: 480px) {
  .hero__content .container { padding-bottom: 0; }
  .stats-strip__grid { grid-template-columns: 1fr; }
}

/* ── LEGAL PAGE STYLES ── */
.legal-hero {
  background: var(--navy);
  padding: 120px 0 56px;
}
.legal-hero h1 { color: #fff; font-size: clamp(28px, 4vw, 48px); margin-bottom: 12px; }
.legal-hero p { color: rgba(255,255,255,0.55); }
.legal-body {
  padding: clamp(48px, 8vw, 96px) 0;
  background: var(--cream);
}
.legal-content h2 { font-size: 22px; color: var(--navy); margin-top: 40px; margin-bottom: 12px; border-bottom: 1px solid var(--border); padding-bottom: 8px; }
.legal-content h3 { font-size: 17px; color: var(--navy); margin-top: 28px; margin-bottom: 8px; }
.legal-content p { color: var(--text-muted); font-size: 14.5px; margin-bottom: 14px; line-height: 1.75; }
.legal-content ul { list-style: disc; padding-left: 24px; margin-bottom: 14px; }
.legal-content ul li { color: var(--text-muted); font-size: 14.5px; margin-bottom: 6px; line-height: 1.65; }
.legal-content a { color: var(--blue); text-decoration: underline; }
.legal-last-updated { font-size: 12px; color: var(--warm-grey); margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--border); }

/* Article page */
.article-hero {
  background: var(--navy);
  padding: 130px 0 64px;
}
.article-hero h1 { color: #fff; font-size: clamp(28px, 4vw, 52px); margin-bottom: 16px; }
.article-hero p { color: rgba(255,255,255,0.58); font-size: 15px; }
.article-body {
  padding: clamp(48px, 8vw, 96px) 0;
  background: var(--cream);
}
.article-content h2 { font-size: 26px; color: var(--navy); margin-top: 48px; margin-bottom: 14px; }
.article-content h3 { font-size: 20px; color: var(--navy); margin-top: 32px; margin-bottom: 10px; }
.article-content p { color: var(--text-muted); font-size: 15px; margin-bottom: 18px; line-height: 1.8; }
.article-content ul { list-style: disc; padding-left: 28px; margin-bottom: 18px; }
.article-content ul li { color: var(--text-muted); font-size: 15px; margin-bottom: 8px; line-height: 1.7; }
.article-content strong { color: var(--navy); font-weight: 600; }
.article-cta-box {
  background: var(--blue-pale);
  border: 1px solid rgba(30,95,168,0.22);
  border-radius: var(--radius-md);
  padding: 32px 36px;
  margin-top: 48px;
  text-align: center;
}
.article-cta-box h3 { font-size: 22px; color: var(--navy); margin-bottom: 10px; }
.article-cta-box p { color: var(--text-muted); margin-bottom: 20px; }

/* Contact page extras */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; }
}
.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.contact-info-icon {
  width: 40px;
  height: 40px;
  background: var(--blue-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 18px; height: 18px; color: var(--blue); }
.contact-info-text h4 { font-size: 15px; color: var(--navy); margin-bottom: 4px; }
.contact-info-text p, .contact-info-text a { font-size: 14px; color: var(--text-muted); }
.contact-info-text a:hover { color: var(--blue); }

/* About page */
.about-section {
  padding: clamp(56px, 8vw, 96px) 0;
  background: var(--cream);
}
.about-section--alt { background: var(--white); }
.about-section--dark { background: var(--navy); }
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .about-values-grid { grid-template-columns: 1fr; }
}
.about-value-item {
  background: var(--cream-dark);
  border-radius: var(--radius-md);
  padding: 28px 24px;
}
.about-value-item h4 { font-size: 16px; color: var(--navy); margin-bottom: 8px; }
.about-value-item p { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; }

.map-section {
  background: var(--cream-dark);
  padding: clamp(48px, 6vw, 72px) 0;
}
.map-section h2 { font-size: 28px; color: var(--navy); margin-bottom: 8px; }
.map-section p { color: var(--text-muted); margin-bottom: 24px; }

/* Product page extras */
.product-hero {
  background: var(--cream);
  padding: 120px 0 80px;
}
.product-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.product-gallery { }
.product-gallery__main {
  aspect-ratio: 4/3;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 16px;
}
.product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-gallery__thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
}
.product-gallery__thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--white);
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition);
}
.product-gallery__thumb img { width: 100%; height: 100%; object-fit: contain; }
.product-gallery__thumb.active { border-color: var(--blue); }
.product-info { }
.product-info__name { font-size: clamp(28px, 4vw, 44px); color: var(--navy); margin-bottom: 8px; }
.product-info__price { font-size: 32px; font-weight: 800; color: var(--blue); margin-bottom: 24px; }
.product-info__desc { color: var(--text-muted); font-size: 15px; line-height: 1.75; margin-bottom: 32px; }
.product-info__cta { margin-bottom: 24px; }
.product-specs {
  background: var(--white);
  padding: clamp(64px, 8vw, 100px) 0;
}
.product-how {
  background: var(--cream-dark);
  padding: clamp(64px, 8vw, 100px) 0;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
  position: relative;
}
.how-steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: calc(16% + 24px);
  right: calc(16% + 24px);
  height: 1px;
  background: var(--border);
}
.how-step { text-align: center; }
.how-step__num {
  width: 56px;
  height: 56px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  position: relative;
  z-index: 1;
}
.how-step h4 { font-size: 16px; color: var(--navy); margin-bottom: 8px; }
.how-step p { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; }
@media (max-width: 768px) {
  .how-steps { grid-template-columns: 1fr; }
  .how-steps::before { display: none; }
  .product-hero__grid { grid-template-columns: 1fr; gap: 40px; }
}
.product-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 16px;
}
.product-benefit-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-body);
}
.product-benefit-pill svg { width: 18px; height: 18px; color: var(--blue); flex-shrink: 0; }
@media (max-width: 480px) {
  .product-benefits-grid { grid-template-columns: 1fr; }
}

/* Progressive-enhancement safety (injected by builder): scroll-reveal blocks stay VISIBLE
   unless JS confirms it can animate them by adding .js-anim to <html>. Guarantees a
   truncated page or a failed script can never leave content permanently hidden. */
html:not(.js-anim) .reveal,
html:not(.js-anim) .reveal-left,
html:not(.js-anim) .reveal-right,
html:not(.js-anim) .reveal-scale,
html:not(.js-anim) .stagger-child {
  opacity: 1 !important;
  transform: none !important;
}
