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

:root {
  --color-primary: #2563eb;
  --color-primary-dark: #1d4ed8;
  --color-dark: #0a0a0f;
  --color-dark-2: #111827;
  --color-mid: #64748b;
  --color-light: #e2e8f0;
  --color-bg: #f5f5f0;
  --color-bg-2: #eeeee8;
  --color-white: #ffffff;
  --color-accent: #2563eb;
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Hanken Grotesk', sans-serif;
  --radius-btn: 0px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

*, *::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(--color-bg);
  color: var(--color-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 700;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

.on-dark { color: rgba(255,255,255,0.92); }
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4 { color: #fff; }
.on-dark p { color: rgba(255,255,255,0.88); }
.on-dark a:not(.btn) { color: inherit; }

/* ───── BUTTONS ───── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: var(--radius-btn);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-110%);
  transition: transform 0.4s ease;
}
.btn:hover::after { transform: translateX(0); }

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37,99,235,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
}
.on-dark .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,0.9);
}
.on-dark .btn-outline:hover {
  background: #fff;
  color: var(--color-dark);
  border-color: #fff;
}

.btn-dark {
  background: var(--color-dark);
  color: #fff;
  border-color: var(--color-dark);
}
.btn-dark:hover {
  background: #000;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.btn-lg { padding: 20px 48px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ───── SIDE STICKY NAV (V5) ───── */
.side-nav {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 8px 0;
  background: var(--color-dark);
}

.side-nav__item {
  display: flex;
  align-items: center;
  gap: 0;
  overflow: hidden;
  position: relative;
}

.side-nav__indicator {
  width: 4px;
  height: 48px;
  background: var(--color-mid);
  flex-shrink: 0;
  transition: background var(--transition);
}

.side-nav__item.active .side-nav__indicator,
.side-nav__item:hover .side-nav__indicator {
  background: var(--color-primary);
}

.side-nav__label {
  color: rgba(255,255,255,0);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  max-width: 0;
  overflow: hidden;
  transition: max-width 0.4s ease, color 0.3s ease, padding 0.3s ease;
  padding: 0;
}

.side-nav__item:hover .side-nav__label {
  max-width: 160px;
  color: #fff;
  padding: 0 14px 0 10px;
}

/* TOP NAV BAR (mobile + logo only) */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.top-bar.scrolled {
  background: rgba(10,10,15,0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.top-bar__logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: -0.02em;
}
.top-bar__logo span { color: var(--color-primary); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,15,0.97);
  z-index: 998;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--color-primary); }

/* ───── ADVERTORIAL LABEL ───── */
.advertorial-bar {
  background: var(--color-dark);
  color: rgba(255,255,255,0.85);
  text-align: center;
  font-size: 0.72rem;
  font-family: var(--font-body);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 24px;
  position: relative;
  z-index: 998;
}
.advertorial-bar strong { color: #fff; }

/* ───── HERO (Full Bleed Immersive – B) ───── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--color-dark);
  z-index: 0;
}

.hero__bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  z-index: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,15,0.92) 0%, rgba(37,99,235,0.18) 50%, rgba(10,10,15,0.88) 100%);
  z-index: 2;
}

.hero__product-float {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 48%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  padding: 120px 40px 80px;
}

.hero__product-img {
  width: 100%;
  max-width: 520px;
  height: 100%;
  max-height: 680px;
  object-fit: contain;
  animation: float 5s ease-in-out infinite;
  filter: drop-shadow(0 40px 80px rgba(37,99,235,0.35));
  opacity: 0;
  animation: floatIn 0.8s ease 0.3s forwards, floatLoop 5s ease-in-out 1.1s infinite;
}

@keyframes floatIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes floatLoop {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

.hero__content {
  position: relative;
  z-index: 4;
  width: 52%;
  padding-left: clamp(24px, 7vw, 100px);
}

.hero__tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(37,99,235,0.12);
  border: 1px solid rgba(37,99,235,0.35);
  padding: 6px 14px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.1s forwards;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6.5vw, 92px);
  font-weight: 800;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.25s forwards;
}

.hero__title em {
  font-style: italic;
  color: var(--color-primary);
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  max-width: 460px;
  margin-bottom: 36px;
  line-height: 1.65;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}

.hero__price-wrap {
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.55s forwards;
}

.hero__price-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.hero__price {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.hero__price sup {
  font-size: 0.5em;
  vertical-align: super;
  font-weight: 600;
}

.hero__cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.7s forwards;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,100% { opacity: 0.5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ───── WAVE DIVIDER ───── */
.wave-divider {
  position: relative;
  overflow: hidden;
  line-height: 0;
}
.wave-divider svg { display: block; width: 100%; }

/* ───── MARQUEE STRIP ───── */
.marquee-strip {
  background: var(--color-primary);
  overflow: hidden;
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
  padding: 0 32px;
  flex-shrink: 0;
}
.marquee-track span.sep {
  color: rgba(255,255,255,0.75);
  padding: 0 4px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ───── SECTION COMMONS ───── */
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-dark);
}

.section-title em {
  font-style: italic;
  color: var(--color-primary);
}

.section-title.light { color: #fff; }
.section-body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 400;
  color: #475569;
  line-height: 1.75;
  max-width: 600px;
}

/* ───── TRUST BADGES ───── */
.trust-section {
  background: var(--color-bg-2);
  padding: 48px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.trust-card {
  border: 1px solid var(--color-light);
  padding: 24px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--color-white);
  transition: transform var(--transition), box-shadow var(--transition);
}
.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.trust-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  color: var(--color-primary);
}
.trust-card__text h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.trust-card__text p {
  font-size: 0.78rem;
  color: var(--color-mid);
  font-weight: 400;
}

/* ───── PROBLEM SECTION ───── */
.problem-section {
  background: var(--color-dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.problem-section::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.problem-statement {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
}
.problem-statement em {
  font-style: italic;
  color: var(--color-primary);
}
.problem-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  transition: border-color var(--transition);
}
.problem-item:hover { border-color: rgba(37,99,235,0.4); }
.problem-item__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--color-primary);
  margin-top: 2px;
}
.problem-item__text h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.problem-item__text p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

/* ───── PRODUCT SHOWCASE ───── */
.showcase-section {
  padding: 100px 0;
  background: var(--color-bg);
}
.showcase-grid {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 72px;
  align-items: start;
}
.showcase-gallery {
  position: relative;
}
.showcase-main-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: contain;
  background: var(--color-bg-2);
  border: 1px solid var(--color-light);
}
.showcase-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.thumb-btn {
  flex: 1;
  aspect-ratio: 1;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  background: none;
  padding: 0;
  transition: border-color var(--transition);
}
.thumb-btn.active { border-color: var(--color-primary); }
.thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.showcase-info { padding-top: 8px; }
.showcase-info .section-eyebrow { margin-bottom: 12px; }
.showcase-info .section-title { font-size: clamp(28px, 3vw, 44px); margin-bottom: 16px; }
.showcase-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 24px 0;
  padding: 20px 0;
  border-top: 1px solid var(--color-light);
  border-bottom: 1px solid var(--color-light);
}
.showcase-price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--color-dark);
}
.showcase-price-note {
  font-size: 0.82rem;
  color: var(--color-mid);
  font-weight: 400;
}
.features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.feature-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
}
.feature-row svg {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
  flex-shrink: 0;
}

/* ───── HOW IT WORKS ───── */
.how-section {
  padding: 100px 0;
  background: var(--color-bg-2);
  position: relative;
}
.how-header { text-align: center; margin-bottom: 64px; }
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.steps-row::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: var(--color-light);
  z-index: 0;
}
.step-item {
  position: relative;
  z-index: 1;
  padding: 0 32px;
  text-align: center;
}
.step-num {
  width: 96px;
  height: 96px;
  margin: 0 auto 28px;
  border-radius: 0;
  border: 2px solid var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
  background: var(--color-bg-2);
  position: relative;
  transition: background var(--transition), color var(--transition);
}
.step-item:hover .step-num {
  background: var(--color-primary);
  color: #fff;
}
.step-item h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-dark);
}
.step-item p {
  font-size: 0.88rem;
  color: var(--color-mid);
  line-height: 1.65;
}
.step-icon {
  width: 36px;
  height: 36px;
  color: currentColor;
}

/* ───── BENEFITS SECTION ───── */
.benefits-section {
  padding: 100px 0;
  background: var(--color-dark);
  position: relative;
  overflow: hidden;
}
.benefits-bg-num {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(140px, 20vw, 280px);
  font-weight: 800;
  color: rgba(255,255,255,0.04);
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
  line-height: 1;
}
.benefits-inner {
  position: relative;
  z-index: 1;
}
.benefits-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.benefit-card {
  padding: 36px 28px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.benefit-card:hover {
  background: rgba(37,99,235,0.12);
  border-color: rgba(37,99,235,0.4);
  transform: translateY(-4px);
}
.benefit-icon {
  width: 44px;
  height: 44px;
  color: var(--color-primary);
  margin-bottom: 20px;
}
.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.benefit-card p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
}

/* ───── STATS ───── */
.stats-strip {
  background: var(--color-primary);
  padding: 56px 0;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-cell {
  text-align: center;
  padding: 12px 24px;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.stat-cell:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 800;
  color: #fff;
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.95);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ───── COMPARISON TABLE ───── */
.compare-section {
  padding: 100px 0;
  background: var(--color-bg);
}
.compare-header { text-align: center; margin-bottom: 56px; }
.table-scroll {
  max-width: 900px;
  margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 0;
  box-shadow: 0 8px 40px rgba(0,0,0,0.10);
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
  background: var(--color-white);
}
.spec-table th, .spec-table td {
  padding: 16px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.88rem;
  font-family: var(--font-body);
}
.spec-table thead th {
  background: var(--color-dark);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
}
.spec-table__label {
  background: #f9f9f9;
  font-weight: 600;
  text-align: left;
  font-family: var(--font-body);
}
.spec-table tbody th.spec-table__label { text-align: left; }
.spec-table__hl { background: var(--color-primary); color: #fff !important; font-weight: 700; }
.spec-table thead th.spec-table__hl { background: var(--color-primary); }
.spec-table .check {
  color: #22c55e;
  font-weight: 700;
  font-size: 1rem;
}
.spec-table .cross {
  color: #ef4444;
  font-weight: 700;
  font-size: 1rem;
}

/* ───── FAQ ───── */
.faq-section {
  padding: 100px 0;
  background: var(--color-bg-2);
}
.faq-header { text-align: center; margin-bottom: 56px; }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 2px; }
.faq-item {
  border: 1px solid var(--color-light);
  background: var(--color-white);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.07); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-dark);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--color-primary); }
.faq-arrow {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--color-primary);
  transition: transform var(--transition);
}
.faq--open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1), padding 0.35s ease;
}
.faq--open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 24px 22px;
  font-size: 0.9rem;
  color: var(--color-mid);
  line-height: 1.75;
}

/* ───── ORDER/CTA SECTION ───── */
.order-section {
  padding: 100px 0;
  background: var(--color-dark);
  position: relative;
  overflow: hidden;
}
.order-section::before {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(37,99,235,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.order-product-img {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(37,99,235,0.3));
  animation: floatLoop 5s ease-in-out infinite;
}
.order-content .section-eyebrow { color: rgba(255,255,255,0.85); letter-spacing: 0.18em; }
.order-content .section-title { color: #fff; margin-bottom: 16px; }
.order-content .section-body { color: rgba(255,255,255,0.9); margin-bottom: 32px; }
.order-price-display {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.order-price-note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.order-disclaimer {
  margin-top: 20px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

/* ───── INLINE FORM STUB (since only Amazon link, just CTA block) ───── */
.cta-amazon {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.amazon-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-body);
}
.amazon-badge svg {
  width: 18px;
  height: 18px;
  color: rgba(255,255,255,0.85);
}

/* ───── 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;
}

/* ───── FOOTER ───── */
.footer {
  background: #07070b;
  padding: 64px 0 0;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-body);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.footer-brand h3 span { color: var(--color-primary); }
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  max-width: 300px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.78);
  transition: color var(--transition);
}
.footer-links a:hover { color: #93c5fd; }
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact-info p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.5;
}
.footer-contact-info strong {
  color: #fff;
  font-weight: 700;
}
.footer-contact-info a {
  color: #93c5fd;
  transition: opacity var(--transition);
}
.footer-contact-info a:hover { opacity: 0.85; }
.footer-nip {
  margin-top: 4px;
  color: rgba(255,255,255,0.9) !important;
}
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: #fff; }

/* ───── COOKIE BANNER ───── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 520px;
  background: var(--color-dark-2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0;
  padding: 24px;
  z-index: 9999;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  display: none;
}
.cookie-banner.visible { display: block; }
.cookie-banner p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.65;
  margin-bottom: 16px;
}
.cookie-banner a { color: #93c5fd; }
.cookie-btn-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.cookie-btn {
  padding: 10px 20px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.cookie-btn-accept { background: var(--color-primary); color: #fff; }
.cookie-btn-accept:hover { background: var(--color-primary-dark); }
.cookie-btn-reject { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.92); }
.cookie-btn-reject:hover { background: rgba(255,255,255,0.2); }
.cookie-btn-config { background: transparent; color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.35); }
.cookie-btn-config:hover { border-color: rgba(255,255,255,0.7); color: #fff; }
.cookie-config-panel {
  display: none;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.cookie-config-panel.open { display: block; }
.cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.cookie-toggle-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
}
.cookie-toggle-label small {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.72);
}
.cookie-toggle {
  width: 38px;
  height: 20px;
  border-radius: 10px;
  border: none;
  position: relative;
  cursor: pointer;
  background: rgba(255,255,255,0.15);
  transition: background var(--transition);
}
.cookie-toggle::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  transition: transform var(--transition);
}
.cookie-toggle.on { background: var(--color-primary); }
.cookie-toggle.on::after { transform: translateX(18px); }
.cookie-toggle:disabled { opacity: 0.5; cursor: not-allowed; }
.cookie-save-btn {
  margin-top: 12px;
  padding: 10px 20px;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.cookie-save-btn:hover { background: var(--color-primary-dark); }

/* ───── DISCLAIMER VISIBLE ───── */
.page-disclaimer {
  background: rgba(37,99,235,0.08);
  border-left: 3px solid var(--color-primary);
  padding: 14px 20px;
  font-size: 0.78rem;
  color: #334155;
  line-height: 1.65;
  margin: 0;
}
.disclaimer-bar {
  background: var(--color-bg-2);
  padding: 16px 0;
  border-bottom: 1px solid var(--color-light);
}

/* ───── SCROLL ANIMATIONS ───── */
.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-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-scale.revealed { opacity: 1; transform: scale(1); }

/* stagger children */
.stagger-parent .stagger-child {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.stagger-parent.stagger-visible .stagger-child:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: none; }
.stagger-parent.stagger-visible .stagger-child:nth-child(2) { transition-delay: 0.15s; opacity: 1; transform: none; }
.stagger-parent.stagger-visible .stagger-child:nth-child(3) { transition-delay: 0.25s; opacity: 1; transform: none; }
.stagger-parent.stagger-visible .stagger-child:nth-child(4) { transition-delay: 0.35s; opacity: 1; transform: none; }
.stagger-parent.stagger-visible .stagger-child:nth-child(5) { transition-delay: 0.45s; opacity: 1; transform: none; }
.stagger-parent.stagger-visible .stagger-child:nth-child(6) { transition-delay: 0.55s; opacity: 1; transform: none; }

/* ───── MODAL ───── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.active { display: flex; }
.modal-box {
  background: var(--color-white);
  max-width: 480px;
  width: 100%;
  padding: 48px 40px;
  text-align: center;
  position: relative;
  animation: fadeUp 0.4s ease;
}
.modal-icon {
  width: 64px;
  height: 64px;
  background: rgba(37,99,235,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--color-primary);
}
.modal-box h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-dark);
  margin-bottom: 10px;
}
.modal-box p {
  font-size: 0.9rem;
  color: var(--color-mid);
  line-height: 1.7;
  margin-bottom: 28px;
}
.modal-close {
  background: var(--color-dark);
  color: #fff;
  border: none;
  padding: 14px 32px;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}
.modal-close:hover { background: var(--color-primary); }
.modal-x {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--color-mid);
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  transition: color var(--transition);
}
.modal-x:hover { color: var(--color-dark); }

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

/* ───── RESPONSIVE ───── */
@media (max-width: 1024px) {
  .side-nav { display: none; }
  .hamburger { display: flex; }
  .hero__content { width: 100%; padding: 120px clamp(24px,6vw,64px) 0; }
  .hero__product-float { width: 100%; position: relative; padding: 40px 40px 0; justify-content: center; }
  .hero {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 64px;
    padding-top: 0;
    min-height: auto;
  }
  .problem-grid { grid-template-columns: 1fr; gap: 40px; }
  .showcase-grid { grid-template-columns: 1fr; gap: 40px; }
  .benefits-header { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .order-grid { grid-template-columns: 1fr; gap: 40px; }
  .order-product-img { max-width: 320px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .hero { min-height: auto; }
  .hero__content { width: 100%; }
  .hero__product-float { display: none; }
  .steps-row { grid-template-columns: 1fr; }
  .steps-row::before { display: none; }
  .step-item { padding: 0 0 40px; text-align: left; display: flex; align-items: flex-start; gap: 20px; }
  .step-num { margin: 0; flex-shrink: 0; width: 64px; height: 64px; font-size: 1.4rem; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-cell { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
  .stat-cell:nth-child(2), .stat-cell:nth-child(4) { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .stat-cell { border-bottom: 1px solid rgba(255,255,255,0.2); border-right: none; }
  .stat-cell:last-child { border-bottom: none; }
  .hero__cta-row { flex-direction: column; align-items: flex-start; }
  .btn-lg { width: 100%; justify-content: center; }
}

/* 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;
}
