/* ============================================================
   TENSCARE PERFECT PFE — FRENCH LANDING PAGE
   Medical/Pharmacy aesthetic — Blue #0055A4 accent
   Mobile-first, pure CSS, no framework
   ============================================================ */

:root {
  --blue-primary: #0055A4;
  --blue-dark: #003d7a;
  --blue-light: #e8f0fb;
  --blue-mid: #ccddf5;
  --teal: #00897B;
  --teal-light: #e0f2f1;
  --green: #2e7d32;
  --green-light: #e8f5e9;
  --white: #ffffff;
  --off-white: #f8fafd;
  --gray-50: #f4f6f9;
  --gray-100: #e9ecef;
  --gray-200: #dee2e6;
  --gray-400: #9ca3af;
  --gray-600: #6b7280;
  --gray-700: #4b5563;
  --gray-900: #111827;
  --text: #1a2332;
  --text-muted: #5a6a7e;
  --border: rgba(0, 85, 164, 0.12);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0, 85, 164, 0.10), 0 2px 6px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 32px rgba(0, 85, 164, 0.14), 0 4px 12px rgba(0,0,0,0.08);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container: min(1140px, calc(100% - 2rem));
  --header-h: 4rem;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.75rem;
  padding: 0.5rem 1rem;
  background: var(--blue-primary);
  color: var(--white);
  z-index: 1000;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
}
.skip-link:focus { left: 0.75rem; }

.container { width: var(--container); margin-inline: auto; }
.container--narrow { width: min(740px, var(--container)); }

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--blue-primary);
  color: var(--white);
  padding: 0.5rem 1rem;
  text-align: center;
  font-size: 0.8125rem;
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.topbar__inner { display: flex; justify-content: center; align-items: center; }
.topbar__text { opacity: 0.95; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0, 85, 164, 0.06);
  min-height: var(--header-h);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.85rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--blue-primary);
  letter-spacing: -0.02em;
}
.logo:hover { color: var(--blue-dark); }
.logo__text { color: var(--blue-primary); }

.logo--footer {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: -0.02em;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.75rem;
}
.nav-desktop a {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-700);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s var(--ease);
}
.nav-desktop a:hover { color: var(--blue-primary); }

.btn--header { display: none; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: var(--radius-sm);
  color: var(--blue-primary);
}
.nav-toggle:focus-visible { outline: 2px solid var(--blue-primary); outline-offset: 2px; }
.nav-toggle__bar {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: currentColor;
  margin-inline: auto;
  border-radius: 1px;
}

.mobile-nav {
  border-top: 1px solid var(--border);
  background: var(--white);
  padding-block: 1rem;
}
.mobile-nav[hidden] { display: none; }
.mobile-nav__inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mobile-nav__inner a {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--gray-100);
}
.mobile-nav__inner a:last-child { border-bottom: none; margin-top: 0.5rem; }

@media (min-width: 900px) {
  .nav-desktop { display: flex; }
  .btn--header { display: inline-flex; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 0.85rem 1.75rem;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease), transform 0.15s var(--ease);
  letter-spacing: 0.01em;
}
.btn:active { transform: scale(0.98); }
.btn--small { padding: 0.55rem 1.15rem; font-size: 0.8125rem; }
.btn--large { padding: 1rem 2.25rem; font-size: 1rem; }
.btn--block { width: 100%; }

.btn--primary {
  background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0, 85, 164, 0.3);
}
.btn--primary:hover {
  box-shadow: 0 6px 20px rgba(0, 85, 164, 0.4);
  filter: brightness(1.08);
}

.btn--white {
  background: var(--white);
  color: var(--blue-primary);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.btn--white:hover {
  background: var(--off-white);
  box-shadow: 0 6px 20px rgba(0,0,0,0.16);
}

.btn:focus-visible { outline: 2px solid var(--blue-primary); outline-offset: 3px; }

/* ============================================================
   BADGES
   ============================================================ */
.badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
}
.badge--blue { background: var(--blue-light); color: var(--blue-primary); border: 1px solid var(--blue-mid); }
.badge--green { background: var(--green-light); color: var(--green); border: 1px solid rgba(46,125,50,0.2); }
.badge--white { background: rgba(255,255,255,0.15); color: var(--white); border: 1px solid rgba(255,255,255,0.3); }

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section { padding-block: clamp(3rem, 8vw, 5.5rem); }
.section--white { background: var(--white); }
.section--light { background: var(--off-white); }

.section__head {
  text-align: center;
  max-width: 42rem;
  margin-inline: auto;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.section__head--light .section__title { color: var(--white); }
.section__head--light .section__sub { color: rgba(255,255,255,0.85); }

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-primary);
  margin-bottom: 0.75rem;
}
.section-label--light { color: rgba(255,255,255,0.75); }

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: var(--text);
  margin: 0 0 0.75rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.section__head--light .section__title { color: var(--white); }

.section__sub {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.65;
}

.section__cta { text-align: center; margin-top: 2.5rem; }
.section__cta-note {
  margin: 0.75rem auto 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
  max-width: 28rem;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(160deg, var(--white) 0%, var(--blue-light) 50%, var(--off-white) 100%);
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: center;
}
@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
}
.hero__title-accent { color: var(--blue-primary); }

.hero__lead {
  font-size: 1.0625rem;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  line-height: 1.7;
  max-width: 34rem;
}
.hero__lead strong { color: var(--text); font-weight: 600; }

.hero__features {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.hero__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9375rem;
  color: var(--text);
  font-weight: 500;
}
.hero__feature-icon { flex-shrink: 0; margin-top: 0.05rem; }

.hero__cta { margin-bottom: 1.25rem; }
.hero__price-note {
  margin: 0.65rem 0 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.hero__disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
  margin: 0;
  opacity: 0.85;
}

/* Hero visual */
.hero__img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--white);
  border: 1px solid var(--border);
}
.hero__img-wrap img { width: 100%; object-fit: cover; }

.hero__img-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: var(--blue-primary);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 0.6rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.hero__img-badge-price {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
}
.hero__img-badge-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  opacity: 0.85;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

.hero__trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0.85rem 1rem;
  box-shadow: var(--shadow-sm);
}
.hero__trust-item {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.hero__trust-item strong {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--blue-primary);
  display: block;
}
.hero__trust-item span {
  font-size: 0.7rem;
  color: var(--text-muted);
  display: block;
  line-height: 1.3;
}
.hero__trust-divider {
  width: 1px;
  height: 2rem;
  background: var(--border);
  flex-shrink: 0;
}

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.section--problem {
  background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
  padding-block: clamp(3rem, 8vw, 5rem);
}
.problem__inner {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 860px) {
  .problem__inner { grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: center; }
}

.problem__text .section-label { display: block; margin-bottom: 0.75rem; }
.problem__text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--text);
  margin: 0 0 1rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.problem__text p { color: var(--text-muted); margin: 0 0 1rem; font-size: 1rem; }
.problem__text p strong { color: var(--text); }

.problem__stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  border-left: 4px solid var(--blue-primary);
}
.stat-card__num {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--blue-primary);
  line-height: 1;
}
.stat-card__label {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================================
   PRODUCT BLOCKS
   ============================================================ */
.product-blocks {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 7vw, 4.5rem);
}

.product-block {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: center;
  margin: 0;
}
@media (min-width: 860px) {
  .product-block { grid-template-columns: 1fr 1fr; gap: 3rem 4rem; }
  .product-block--reverse .product-block__media { order: 2; }
  .product-block--reverse .product-block__body { order: 1; }
}

.product-block__media {
  margin: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-md);
}
.product-block__media img { width: 100%; height: auto; display: block; object-fit: cover; }

.product-block__num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--blue-light);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.04em;
}

.product-block__title {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 800;
  color: var(--text);
  margin: 0 0 0.75rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.product-block__text {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
}
.product-block__text strong { color: var(--text); font-weight: 600; }

.product-block__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.product-block__list li {
  font-size: 0.9375rem;
  color: var(--text-muted);
  padding-left: 1.25rem;
  position: relative;
}
.product-block__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--blue-primary);
  font-weight: 700;
}

.product-block__highlight {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--blue-light);
  border: 1px solid var(--blue-mid);
  border-radius: var(--radius-sm);
  padding: 0.65rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue-primary);
  margin-top: 1rem;
}

.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.spec-item {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.spec-item__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.spec-item__value {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--blue-primary);
}

/* ============================================================
   HOW IT WORKS — STEPS
   ============================================================ */
.steps-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 600px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }

.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.step-card__num {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-dark) 100%);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(0, 85, 164, 0.25);
}

.step-card__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.5rem;
}
.step-card__text { margin: 0; font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

.medical-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--blue-light);
  border: 1px solid var(--blue-mid);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.25rem;
  margin-top: 2.5rem;
  max-width: 48rem;
  margin-inline: auto;
}
.medical-notice svg { flex-shrink: 0; margin-top: 0.15rem; }
.medical-notice p { margin: 0; font-size: 0.875rem; color: var(--blue-dark); line-height: 1.6; }
.medical-notice p strong { color: var(--blue-primary); }

/* ============================================================
   BENEFITS GRID
   ============================================================ */
.benefits-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 600px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .benefits-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }

.benefit-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.benefit-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.benefit-card__icon { margin-bottom: 1rem; }

.benefit-card__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.5rem;
}
.benefit-card__text { margin: 0; font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

/* ============================================================
   WHO IS IT FOR — BLUE GRADIENT
   ============================================================ */
.section--blue-gradient {
  background: linear-gradient(145deg, var(--blue-primary) 0%, var(--blue-dark) 100%);
  color: var(--white);
  padding-block: clamp(3rem, 8vw, 5rem);
}
.section--blue-gradient .section__title { color: var(--white); }

.audience-grid {
  display: grid;
  gap: 1rem;
  max-width: 52rem;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}
@media (min-width: 640px) { .audience-grid { grid-template-columns: repeat(2, 1fr); } }

.audience-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.92);
  line-height: 1.5;
}
.audience-item__icon {
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }

.testimonial {
  margin: 0;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
}

.testimonial__stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.85rem;
}

.testimonial__text {
  font-size: 0.9375rem;
  color: var(--text);
  margin: 0 0 1.1rem;
  line-height: 1.65;
  font-style: italic;
}

.testimonial__author {
  font-size: 0.8125rem;
  color: var(--blue-primary);
  font-style: normal;
}
.testimonial__author strong { font-weight: 700; }

.testimonials-disclaimer {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 1.75rem;
  max-width: 36rem;
  margin-inline: auto;
  font-style: italic;
}

/* ============================================================
   PRICE BOX
   ============================================================ */
.price-box {
  display: grid;
  gap: 2rem;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
@media (min-width: 860px) {
  .price-box { grid-template-columns: 1fr 1.4fr; gap: 3rem; }
}

.price-box__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--off-white);
}
.price-box__img img { width: 100%; height: auto; object-fit: cover; }

.price-box__content { display: flex; flex-direction: column; gap: 1rem; }

.price-box__title {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  color: var(--text);
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.price-box__subtitle { font-size: 0.9375rem; color: var(--text-muted); margin: 0; }

.price-box__includes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.price-box__includes li {
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}

.price-box__price-row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.price-box__price {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--blue-primary);
  letter-spacing: -0.03em;
}
.price-box__price-note { font-size: 0.8125rem; color: var(--text-muted); }

.price-box__amazon-note {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq__item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  text-align: left;
  color: var(--text);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background 0.2s var(--ease);
}
.faq__question:hover { background: var(--off-white); }
.faq__question[aria-expanded="true"] { background: var(--blue-light); color: var(--blue-primary); }

.faq__icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  position: relative;
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  background: var(--blue-primary);
  border-radius: 1px;
  transition: transform 0.25s var(--ease);
}
.faq__icon::before { width: 100%; height: 2px; top: 50%; left: 0; margin-top: -1px; }
.faq__icon::after { width: 2px; height: 100%; left: 50%; top: 0; margin-left: -1px; }
.faq__question[aria-expanded="true"] .faq__icon::after { transform: scaleY(0); }

.faq__answer { padding: 0 1.25rem 1.15rem; }
.faq__answer[hidden] { display: none; }
.faq__answer p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--gray-100);
  padding-top: 1rem;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  background: linear-gradient(145deg, #001f4d 0%, var(--blue-dark) 50%, var(--blue-primary) 100%);
  color: var(--white);
  padding-block: clamp(3rem, 8vw, 5rem);
  overflow: hidden;
}

.final-cta__inner {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 860px) {
  .final-cta__inner { grid-template-columns: 1.4fr 1fr; gap: 4rem; }
}

.final-cta__content { display: flex; flex-direction: column; gap: 1.25rem; }

.final-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.final-cta__text {
  margin: 0;
  color: rgba(255,255,255,0.85);
  font-size: 1.0625rem;
  line-height: 1.65;
}

.final-cta__buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.link-cta {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s var(--ease);
  font-family: var(--font-heading);
}
.link-cta:hover { color: var(--white); }

.final-cta__img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  opacity: 0.9;
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.final-cta__img img { width: 100%; height: auto; object-fit: cover; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #0a1628;
  color: rgba(255,255,255,0.75);
  padding-block: 2.5rem 2rem;
  font-size: 0.875rem;
  line-height: 1.65;
}

.footer__inner { display: flex; flex-direction: column; gap: 1.5rem; }

.footer__top {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .footer__top { flex-direction: row; justify-content: space-between; align-items: flex-start; }
}

.footer__brand { display: flex; flex-direction: column; gap: 0.35rem; }
.footer__tagline { margin: 0; opacity: 0.75; font-size: 0.875rem; }

.footer__contact {
  display: grid;
  gap: 0.3rem;
}
.footer__contact p {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.78);
}
.footer__contact strong {
  color: rgba(255,255,255,0.92);
}
.footer__contact a {
  color: rgba(255,255,255,0.92);
  text-decoration: none;
}
.footer__contact a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}
.footer__nav a {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
.footer__nav a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }

.footer__divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
}

.footer__legal {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}
.footer__legal strong { color: rgba(255,255,255,0.8); }

.footer__copy {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}

/* ============================================================
   FLOATING CTA (mobile)
   ============================================================ */
.floating-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.95) 30%, var(--white) 100%);
  border-top: 1px solid var(--gray-100);
  box-shadow: 0 -8px 32px rgba(0, 85, 164, 0.1);
}
.floating-cta__btn {
  max-width: 28rem;
  margin-inline: auto;
}
@media (min-width: 900px) {
  .floating-cta { display: none; }
  body { padding-bottom: 0; }
}
@media (max-width: 899px) {
  body { padding-bottom: calc(4.5rem + env(safe-area-inset-bottom)); }
}

/* ============================================================
   POLICY PAGES
   ============================================================ */
.page-sub { background: var(--white); }
.site-header--sub .btn--header { display: inline-flex; }

.subpage-main {
  padding-block: clamp(2rem, 5vw, 3.5rem);
  min-height: 50vh;
}

.legal-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  color: var(--text);
  margin: 0 0 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.legal-content section { margin-bottom: 2rem; }
.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue-primary);
  margin: 0 0 0.65rem;
  border-bottom: 2px solid var(--blue-light);
  padding-bottom: 0.4rem;
}
.legal-content h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin: 1.25rem 0 0.5rem;
}
.legal-content p, .legal-content li {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
.legal-content ul { padding-left: 1.25rem; }
.legal-content a { color: var(--blue-primary); font-weight: 500; }
.legal-content a:hover { text-decoration: underline; }