@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:ital,wght@0,300;0,400;0,600;0,700;0,900;1,400;1,600&family=Nunito+Sans:wght@300;400;600;700;800&display=swap');

:root {
  --navy:       #0a1628;
  --navy-mid:   #1e3a5f;
  --steel:      #2d5280;
  --sky-mid:    #8ba8c4;
  --sky-light:  #c8d8e8;
  --ice:        #e8f0f8;
  --frost:      #f5f8fc;
  --white:      #f9fbfd;
  --accent:     #4a90c4;
  --accent-alt: #6ab0d8;
  --text-dark:  #0a1628;
  --text-mid:   #2d4a6e;
  --text-muted: #6e8aaa;
  --border:     rgba(139,168,196,0.25);
  --border-strong: rgba(74,144,196,0.5);
  --shadow-soft: 0 8px 40px rgba(10,22,40,0.12);
  --shadow-mid:  0 16px 60px rgba(10,22,40,0.18);
  --shadow-card: 0 4px 24px rgba(10,22,40,0.10);
  --radius:     0px;
  --font-display: 'Crimson Pro', Georgia, serif;
  --font-body:    'Nunito Sans', system-ui, sans-serif;
}

*, *::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(--frost);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

/* ── ON-DARK ── */
.on-dark { color: rgba(232,240,248,0.85); }
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4 { color: #f5f8fc; }
.on-dark p { color: rgba(200,216,232,0.8); }
.on-dark a:not(.btn) { color: var(--sky-light); }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 700;
}
h1 { font-size: clamp(42px, 6vw, 88px); }
h2 { font-size: clamp(32px, 4vw, 56px); }
h3 { font-size: clamp(22px, 2.5vw, 32px); }
h4 { font-size: clamp(18px, 2vw, 24px); }

p { font-family: var(--font-body); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 14px;
}
.on-dark .eyebrow { color: var(--sky-light); }

/* T3 — color accent word */
.accent-word { color: var(--accent); }
.on-dark .accent-word { color: var(--accent-alt); }

/* ── BUTTONS — B5 Split ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: 4px;
  overflow: hidden;
  padding: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-mid); }
.btn:active { transform: translateY(0); }

.btn__label {
  display: inline-flex;
  align-items: center;
  padding: 16px 24px;
  background: var(--accent);
  color: #fff;
  transition: background 0.2s;
}
.btn:hover .btn__label { background: var(--navy-mid); }

.btn__price {
  display: inline-flex;
  align-items: center;
  padding: 16px 20px;
  background: var(--navy-mid);
  color: #fff;
  font-size: 15px;
  border-left: 1px solid rgba(255,255,255,0.15);
  transition: background 0.2s;
}
.btn:hover .btn__price { background: var(--accent); }

.btn--ghost {
  background: transparent;
  border: 2px solid var(--border-strong);
  border-radius: 4px;
  overflow: hidden;
}
.btn--ghost .btn__label {
  background: transparent;
  color: var(--accent);
}
.btn--ghost:hover .btn__label {
  background: var(--accent);
  color: #fff;
}

.btn--full { width: 100%; justify-content: center; }
.btn--large .btn__label { padding: 20px 32px; font-size: 15px; }
.btn--large .btn__price { padding: 20px 26px; font-size: 17px; }

/* ── CARDS — C7 outlined bold ── */
.card {
  border: 2px solid var(--border-strong);
  border-radius: 4px;
  background: var(--white);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-mid);
  transform: translateY(-4px);
}
.on-dark .card {
  background: rgba(30,58,95,0.5);
  border-color: rgba(74,144,196,0.35);
}
.on-dark .card:hover {
  border-color: var(--accent-alt);
}

/* ── NAV — V4 Minimal top line ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background 0.35s, box-shadow 0.35s;
  background: rgba(9,20,40,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(74,144,196,0.22);
}
.nav--scrolled {
  background: rgba(9,20,40,0.98);
  box-shadow: 0 2px 24px rgba(10,22,40,0.4);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding-inline: clamp(20px, 5vw, 48px);
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.01em;
}
.nav__logo span { color: var(--accent); }
.nav__cta-link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sky-light);
  text-decoration: none;
  border-bottom: 1px solid var(--border-strong);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.nav__cta-link:hover { color: #fff; border-color: var(--accent); }

/* ── HERO — Variant H (Scene + Product) ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.18;
}
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,22,40,0.97) 0%,
    rgba(10,22,40,0.85) 45%,
    rgba(10,22,40,0.45) 100%
  );
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
  padding-block: 120px 80px;
}
.hero__text { color: var(--sky-light); }
.hero__advert-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky-mid);
  background: rgba(74,144,196,0.12);
  border: 1px solid rgba(74,144,196,0.3);
  display: inline-block;
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 22px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6.5vw, 96px);
  font-weight: 700;
  color: #f5f8fc;
  line-height: 1.05;
  margin-bottom: 20px;
}
.hero__title .accent-word { color: var(--accent-alt); }
.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 300;
  color: rgba(200,216,232,0.8);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero__price-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}
.hero__price {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.hero__price-label {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--sky-mid);
  font-weight: 400;
  line-height: 1.4;
  max-width: 120px;
}
.hero__cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero__scroll-hint {
  font-size: 12px;
  color: var(--sky-mid);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero__image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__product-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 1;
  animation: float 5s ease-in-out infinite;
  filter: drop-shadow(0 30px 60px rgba(10,22,40,0.6));
}
.hero__badge {
  position: absolute;
  z-index: 10;
  background: rgba(30,58,95,0.92);
  backdrop-filter: blur(12px);
  border: 2px solid var(--border-strong);
  border-radius: 4px;
  padding: 12px 16px;
  color: #f5f8fc;
  font-family: var(--font-body);
  min-width: 120px;
}
.hero__badge--tl { top: 10%; left: -30px; }
.hero__badge--br { bottom: 10%; right: -20px; }
.hero__badge-val {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-alt);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}
.hero__badge-lbl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sky-mid);
}
.hero__glow {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(74,144,196,0.18) 0%, transparent 70%);
  pointer-events: none;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

/* ── MARQUEE STRIP ── */
.marquee-strip {
  background: var(--navy-mid);
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid rgba(74,144,196,0.2);
  border-bottom: 1px solid rgba(74,144,196,0.2);
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 40px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky-light);
}
.marquee-item svg {
  width: 14px; height: 14px;
  flex-shrink: 0;
  color: var(--accent-alt);
}

/* ── DISCLAIMER BAR ── */
.disclaimer-bar {
  background: rgba(74,144,196,0.08);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  text-align: center;
}
.nav + .disclaimer-bar { margin-top: 68px; } /* clears the fixed nav */
.disclaimer-bar p {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
}

/* ── SECTIONS general ── */
section { padding-block: 88px; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { margin-bottom: 18px; }
.section-header p {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 580px;
  margin-inline: auto;
  line-height: 1.75;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--ice);
  padding-block: 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  text-align: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.trust-item__icon {
  width: 44px; height: 44px;
  background: var(--navy);
  border: 2px solid var(--border-strong);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
}
.trust-item__icon svg {
  width: 22px; height: 22px;
  color: var(--accent-alt);
}
.trust-item__label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
}

/* ── PROBLEM SECTION ── */
.problem-section {
  background: var(--navy);
  padding-block: 100px;
}
.problem-section .section-header h2 { color: #f5f8fc; }
.problem-statement {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 64px;
}
.problem-statement p {
  font-family: var(--font-body);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.8;
  color: rgba(200,216,232,0.85);
}
.pain-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.pain-card {
  padding: 28px 30px;
  background: rgba(30,58,95,0.45);
  border: 2px solid rgba(74,144,196,0.25);
  border-radius: 4px;
  transition: border-color 0.25s, background 0.25s;
}
.pain-card:hover {
  border-color: var(--accent);
  background: rgba(30,58,95,0.7);
}
.pain-card__icon {
  width: 40px; height: 40px;
  margin-bottom: 14px;
  color: var(--accent-alt);
}
.pain-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: #f5f8fc;
  margin-bottom: 10px;
}
.pain-card__text {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(200,216,232,0.7);
  line-height: 1.7;
}

/* ── PRODUCT SECTION ── */
.product-section { background: var(--frost); }
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.product-gallery { position: relative; }
.product-main-img {
  width: 100%; height: auto;
  object-fit: contain;
  display: block;
  border-radius: 4px;
  background: var(--ice);
  padding: 24px;
}
.product-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.product-thumb {
  width: 72px; height: 72px;
  object-fit: contain;
  padding: 6px;
  background: var(--ice);
  border: 2px solid var(--border);
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.2s;
}
.product-thumb.active,
.product-thumb:hover { border-color: var(--accent); }

.product-info {}
.product-name {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 16px;
}
.product-tagline {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 30px;
}

/* ── STACKED BENEFITS ── */
.benefit-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.benefit-row:last-child { border-bottom: none; }
.benefit-row__icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  background: var(--navy);
  border: 2px solid var(--border-strong);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.benefit-row__icon svg { width: 18px; height: 18px; color: var(--accent-alt); }
.benefit-row__text {}
.benefit-row__title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.benefit-row__desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ── PRICE DISPLAY IN PRODUCT ── */
.product-price-block {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 0 28px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}
.product-price-big {
  font-family: var(--font-display);
  font-size: 58px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.product-price-note {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 130px;
}

/* ── HOW IT WORKS ── */
.how-section { background: var(--ice); }
.steps-horizontal {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 16px;
}
.steps-horizontal::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--sky-light) 100%);
  z-index: 0;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.step__num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-alt);
  margin-bottom: 20px;
  flex-shrink: 0;
}
.step__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.step__desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ── STATS BAR — N2 ── */
.stats-section { background: var(--navy); padding-block: 72px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-card {
  border: 2px solid rgba(74,144,196,0.3);
  border-radius: 4px;
  padding: 32px 24px;
  background: rgba(30,58,95,0.4);
  transition: border-color 0.25s, background 0.25s;
}
.stat-card:hover {
  border-color: var(--accent-alt);
  background: rgba(30,58,95,0.7);
}
.stat-card__num {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 700;
  color: var(--accent-alt);
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}
.stat-card__label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sky-mid);
}

/* ── COMPARISON TABLE ── */
.comparison-section { background: var(--frost); }
.table-scroll {
  max-width: 900px;
  margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 4px;
  box-shadow: var(--shadow-mid);
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
  background: var(--white);
}
.spec-table th, .spec-table td {
  padding: 16px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  font-family: var(--font-body);
}
.spec-table thead th {
  background: var(--navy);
  color: var(--sky-light);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.spec-table__label {
  background: var(--ice);
  font-weight: 700;
  text-align: left !important;
  color: var(--text-dark);
}
.spec-table tbody th.spec-table__label { text-align: left; }
.spec-table__hl { background: var(--accent); color: #fff !important; font-weight: 700; }
.spec-table thead th.spec-table__hl { background: var(--accent); }
.spec-table tbody tr:last-child td,
.spec-table tbody tr:last-child th { border-bottom: none; }

.check-icon { color: #3ab07a; font-size: 16px; }
.cross-icon { color: #c44a4a; font-size: 16px; }

/* ── ORDER FORM — Form Style B (Split screen) ── */
.order-section {
  background: var(--navy);
  padding-block: 100px;
  scroll-margin-top: 68px;
}
.order-section--flash .order-layout {
  animation: order-flash 1.2s ease;
}
@keyframes order-flash {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74,144,196,0); }
  35%      { box-shadow: 0 0 0 6px rgba(74,144,196,0.45); }
}
.order-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 2px solid rgba(74,144,196,0.3);
  border-radius: 4px;
  overflow: hidden;
  max-width: 960px;
  margin-inline: auto;
}
.order-left {
  background: var(--navy-mid);
  padding: 52px 44px;
}
.order-left h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  color: #f5f8fc;
  margin-bottom: 16px;
}
.order-left p {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(200,216,232,0.8);
  margin-bottom: 32px;
  line-height: 1.7;
}
.order-product-img {
  width: 100%;
  max-width: 280px;
  height: auto;
  object-fit: contain;
  margin-inline: auto;
  display: block;
  margin-bottom: 28px;
}
.order-price-display {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-alt);
  text-align: center;
  margin-bottom: 24px;
}
.order-trust-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.order-trust-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(200,216,232,0.8);
}
.order-trust-list svg {
  width: 16px; height: 16px;
  color: var(--accent-alt);
  flex-shrink: 0;
}

.order-right {
  background: var(--frost);
  padding: 52px 44px;
}
.order-right h4 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 28px;
}

/* ── FORM FIELDS ── */
.form-group { margin-bottom: 22px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 18px;
}
.form-label {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 8px;
}
.form-input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: 4px;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-dark);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(74,144,196,0.15);
}
.form-input.error { border-color: #c44a4a; }
.form-textarea {
  resize: vertical;
  min-height: 88px;
  line-height: 1.6;
}
.form-error {
  font-family: var(--font-body);
  font-size: 12px;
  color: #c44a4a;
  margin-top: 5px;
  display: none;
}
.form-error.visible { display: block; }

.form-notice {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-top: 14px;
  font-style: italic;
}

/* ── SUBMIT BUTTON ── */
.btn-submit {
  width: 100%;
  padding: 18px 24px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  margin-top: 8px;
}
.btn-submit:hover:not(:disabled) {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-mid);
}
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

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

/* ── MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(10,22,40,0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--white);
  border: 2px solid var(--border-strong);
  border-radius: 4px;
  padding: 52px 48px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  animation: fade-up 0.4s ease forwards;
}
.modal-icon {
  width: 64px; height: 64px;
  background: var(--navy);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.modal-icon svg { width: 30px; height: 30px; color: var(--accent-alt); }
.modal-box h3 {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--navy);
  margin-bottom: 12px;
}
.modal-box p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 28px;
}
.modal-close {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.modal-close:hover { background: var(--navy-mid); }

/* ── FAQ ── */
.faq-section { background: var(--ice); }
.faq-list { max-width: 760px; margin-inline: auto; }
.faq-item {
  border: 2px solid var(--border-strong);
  border-radius: 4px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item.faq--open { border-color: var(--accent); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  transition: background 0.2s, color 0.2s;
  gap: 16px;
}
.faq-question:hover { background: var(--ice); }
.faq--open .faq-question { background: var(--navy); color: #f5f8fc; }
.faq-chevron {
  width: 22px; height: 22px;
  border: 2px solid var(--border-strong);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--accent);
}
.faq--open .faq-chevron { transform: rotate(180deg); border-color: var(--accent-alt); }
.faq--open .faq-chevron svg { color: var(--accent-alt); }
.faq-chevron svg { width: 12px; height: 12px; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  background: var(--white);
  padding: 0 26px;
}
.faq--open .faq-answer {
  max-height: 360px;
  padding: 22px 26px;
}
.faq-answer p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ── FINAL ORDER BLOCK ── */
.final-cta {
  background: var(--navy-mid);
  padding-block: 80px;
  text-align: center;
}
.final-cta__price {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 88px);
  font-weight: 700;
  color: var(--accent-alt);
  line-height: 1;
  margin-bottom: 8px;
}
.final-cta__label {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--sky-mid);
  margin-bottom: 36px;
}
.final-cta h2 {
  color: #f5f8fc;
  margin-bottom: 14px;
}
.final-cta p {
  color: rgba(200,216,232,0.8);
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 44px;
  font-size: 16px;
  line-height: 1.7;
}

/* ── STICKY CTA ── */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 800;
  background: rgba(9,20,40,0.97);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(74,144,196,0.3);
  padding: 14px 0;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.sticky-cta--visible { transform: translateY(0); }
.sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.sticky-cta__text {
  font-family: var(--font-display);
  font-size: 20px;
  color: #f5f8fc;
}
.sticky-cta__text span { color: var(--sky-mid); font-size: 14px; font-family: var(--font-body); margin-left: 10px; }

/* ── FOOTER ── */
.footer {
  background: var(--navy);
  padding-block: 64px 32px;
  border-top: 1px solid rgba(74,144,196,0.2);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}
.footer__brand {}
.footer__logo {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: #f5f8fc;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 14px;
}
.footer__logo span { color: var(--accent); }
.footer__desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--sky-mid);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 300px;
}
.footer__contact-block {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--sky-mid);
  line-height: 2;
}
.footer__contact-block strong { color: var(--sky-light); }
.footer__contact-block a { color: var(--sky-light); text-decoration: none; }
.footer__contact-block a:hover { color: var(--accent-alt); }

.footer__col h5 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky-light);
  margin-bottom: 18px;
}
.footer__links { list-style: none; }
.footer__links li { margin-bottom: 10px; }
.footer__links a {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--sky-mid);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--accent-alt); }

.footer__bottom {
  border-top: 1px solid rgba(74,144,196,0.15);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__copy {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--text-muted);
}
.footer__disclaimer {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--text-muted);
  font-style: italic;
  max-width: 560px;
  text-align: right;
  line-height: 1.5;
}

/* ── COOKIE CONSENT ── */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: min(740px, calc(100vw - 32px));
  background: var(--navy-mid);
  border: 2px solid rgba(74,144,196,0.4);
  border-radius: 8px;
  padding: 28px 32px;
  z-index: 9500;
  box-shadow: var(--shadow-mid);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s, transform 0.4s;
}
.cookie-banner.visible {
  opacity: 1;
  pointer-events: all;
}
.cookie-banner__text {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(200,216,232,0.9);
  line-height: 1.65;
  margin-bottom: 20px;
}
.cookie-banner__text a { color: var(--accent-alt); text-decoration: underline; }
.cookie-banner__btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-btn {
  padding: 10px 20px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}
.cookie-btn--accept { background: var(--accent); color: #fff; }
.cookie-btn--accept:hover { background: var(--accent-alt); }
.cookie-btn--reject { background: rgba(74,144,196,0.15); color: var(--sky-light); border: 1px solid rgba(74,144,196,0.3); }
.cookie-btn--reject:hover { background: rgba(74,144,196,0.25); }
.cookie-btn--config { background: transparent; color: var(--sky-mid); border: 1px solid rgba(139,168,196,0.3); font-size: 12px; }
.cookie-btn--config:hover { color: var(--sky-light); }

.cookie-config-panel {
  display: none;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(74,144,196,0.25);
}
.cookie-config-panel.open { display: block; }
.cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.cookie-toggle-label {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--sky-light);
  font-weight: 700;
}
.cookie-toggle-note {
  font-size: 11px;
  color: var(--sky-mid);
  display: block;
  margin-top: 2px;
  font-weight: 400;
}
.toggle-switch {
  position: relative;
  width: 44px; height: 24px;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  inset: 0;
  background: rgba(74,144,196,0.2);
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s;
}
.toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  background: var(--sky-mid);
  border-radius: 50%;
  top: 3px; left: 3px;
  transition: transform 0.2s;
}
.toggle-switch input:checked + .toggle-slider { background: var(--accent); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(20px); background: #fff; }
.toggle-switch input:disabled + .toggle-slider { opacity: 0.6; cursor: not-allowed; }

.cookie-btn--save {
  margin-top: 14px;
  background: var(--navy);
  color: var(--sky-light);
  border: 1px solid rgba(74,144,196,0.4);
}
.cookie-btn--save:hover { background: var(--accent); color: #fff; }

/* ── ANIMATIONS ── */
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
@keyframes pulse-ring { 0%{transform:scale(1);opacity:0.6} 100%{transform:scale(1.4);opacity:0} }
@keyframes slide-in-left { from{opacity:0;transform:translateX(-40px)} to{opacity:1;transform:translateX(0)} }
@keyframes fade-up { from{opacity:0;transform:translateY(30px)} 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%}
}

.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); }

/* ── RESPONSIVE ── */
@media (max-width: 968px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; padding-block: 100px 60px; }
  .hero__image-wrap { max-width: 380px; margin-inline: auto; }
  .hero__badge--tl { top: -20px; left: 0; }
  .hero__badge--br { bottom: -20px; right: 0; }
  .product-layout { grid-template-columns: 1fr; gap: 40px; }
  .steps-horizontal { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps-horizontal::before { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .order-layout { grid-template-columns: 1fr; }
  .order-left { padding: 36px 28px; }
  .order-right { padding: 36px 28px; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__disclaimer { text-align: left; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  h1 { font-size: clamp(38px, 10vw, 56px); }
  h2 { font-size: clamp(28px, 8vw, 40px); }
  section { padding-block: 60px; }
  .hero { min-height: auto; }
  .steps-horizontal { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero__price-row { flex-direction: column; align-items: flex-start; gap: 10px; }
  .sticky-cta__inner { flex-direction: column; gap: 10px; }
  .form-row { 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;
}
