/* ==========================================================================
   SUNNIVA LIGHT™ — NORDIC DESIGN SYSTEM
   Theme: Nordic (Scandinavian Clean-Tech Home Wellness)
   Tone: Authoritative, Pure, Calming, High-Converting
   Fonts: Plus Jakarta Sans, Inter, IBM Plex Mono
   Palette: Warm Alabaster (#F9F8F6), Deep Pine (#1A2E26), Solar Amber (#E28704)
   ========================================================================== */

:root {
  /* Color Tokens */
  --bg-page: #F9F8F6;
  --bg-card: #FFFFFF;
  --bg-card-hover: #FDFDFD;
  --bg-soft: #F2EFE9;
  --bg-dark: #1A2E26;
  --bg-dark-card: #233B32;

  --text-dark: #1E242B;
  --text-body: #333F3A;
  --text-muted: #5A6560;
  --text-light: #8E9893;
  --text-white: #FFFFFF;

  --forest-pine: #1A2E26;
  --pine-hover: #264338;
  --pine-soft: #E8EFEA;
  --pine-border: #CBD8D1;

  --solar-amber: #E28704;
  --amber-dark: #C67400;
  --amber-soft: #FEF3C7;
  --amber-glow: rgba(226, 135, 4, 0.25);

  --accent-sky: #2563EB;
  --accent-sky-soft: #EFF6FF;

  --border-subtle: rgba(26, 46, 38, 0.09);
  --border-light: #E5E7EB;
  --border-focus: #1A2E26;

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  /* Layout & Geometry */
  --container-max: 1180px;
  --container-narrow: 860px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 9999px;

  /* Shadows */
  --shadow-subtle: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-card: 0 8px 24px rgba(26, 46, 38, 0.06);
  --shadow-hover: 0 16px 36px rgba(26, 46, 38, 0.12);
  --shadow-glow: 0 8px 25px rgba(226, 135, 4, 0.35);

  --transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── BASE RESET & GLOBAL STYLES ────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
  -webkit-text-size-adjust: 100%;
}

body.theme-nordic {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--text-body);
  line-height: 1.68;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  transition: var(--transition);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  width: 100%;
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 20px;
}

/* ── PROMO URGENCY STRIP ──────────────────────────────────────────────── */
.promo-bar {
  background: var(--forest-pine);
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 16px;
  text-align: center;
  letter-spacing: 0.02em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.promo-bar span.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--solar-amber);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.promo-bar strong {
  color: var(--solar-amber);
}

/* ── STICKY TOP NAVBAR ───────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(249, 248, 246, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 14px 0;
  transition: var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-brand-img {
  height: 38px;
  width: auto;
  display: block;
}

.nav-brand-text {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--forest-pine);
  letter-spacing: -0.03em;
}

.nav-brand-text span {
  color: var(--solar-amber);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: -0.01em;
}

.nav-links a:hover {
  color: var(--forest-pine);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--forest-pine);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.02em;
  box-shadow: 0 4px 14px rgba(26, 46, 38, 0.2);
  white-space: nowrap;
}

.btn-nav-cta:hover {
  background: var(--pine-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26, 46, 38, 0.3);
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  padding: 8px;
  color: var(--forest-pine);
  font-size: 22px;
}

/* Mobile Drawer */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: #FFFFFF;
  border-bottom: 2px solid var(--forest-pine);
  padding: 24px;
  z-index: 999;
  box-shadow: 0 16px 32px rgba(0,0,0,0.12);
  flex-direction: column;
  gap: 16px;
}

.mobile-drawer.open {
  display: flex;
}

.mobile-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
}

.mobile-drawer-links a {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  padding: 6px 0;
  border-bottom: 1px solid var(--border-light);
}

.btn-drawer-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--solar-amber);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  padding: 14px;
  border-radius: var(--radius-pill);
  text-align: center;
}

/* ── HERO SECTION ────────────────────────────────────────────────────── */
.hero-section {
  padding: 40px 0 54px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-badge-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.badge-launch {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  background: var(--pine-soft);
  color: var(--forest-pine);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge-rating {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  background: var(--amber-soft);
  color: var(--amber-dark);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.hero-title {
  font-size: clamp(2.3rem, 4.2vw, 3.4rem);
  color: var(--forest-pine);
  margin-bottom: 16px;
  line-height: 1.18;
}

.hero-title span.highlight {
  color: var(--solar-amber);
}

.hero-subtitle {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.68;
  margin-bottom: 24px;
  max-width: 620px;
}

/* Hero Price Card */
.hero-price-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 16px 22px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: var(--shadow-subtle);
  max-width: 580px;
}

.price-details {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.price-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: 0.05em;
  width: 100%;
}

.price-current {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--forest-pine);
  line-height: 1;
}

.price-orig {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.price-discount-pill {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  background: var(--amber-soft);
  color: var(--amber-dark);
  border: 1px solid var(--amber-border);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

.hero-cta-wrap {
  margin-bottom: 16px;
  max-width: 580px;
}

.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--solar-amber);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  padding: 17px 28px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.03em;
  box-shadow: var(--shadow-glow);
  text-align: center;
  width: 100%;
}

.btn-primary:hover {
  background: var(--amber-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(226, 135, 4, 0.45);
}

.hero-trust-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
}

.trust-micro {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Hero Visual Column */
.hero-visual {
  position: relative;
}

.hero-img-frame {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-img-frame::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(226, 135, 4, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-product-img {
  width: 100%;
  max-width: 440px;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.hero-product-img:hover {
  transform: scale(1.02);
}

/* 4 Stat Pills Grid */
.stat-pills-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 36px;
}

.stat-pill-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px 12px;
  text-align: center;
  box-shadow: var(--shadow-subtle);
}

.stat-pill-num {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--forest-pine);
  line-height: 1.1;
  display: block;
  margin-bottom: 4px;
}

.stat-pill-lbl {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  display: block;
}

/* ── TRUST NUMBER STRIP ──────────────────────────────────────────────── */
.trust-number-bar {
  background: var(--forest-pine);
  padding: 42px 0;
  color: #FFFFFF;
}

.trust-number-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.trust-number-item strong {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--solar-amber);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.trust-number-item span {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── SECTION HEADER BLOCKS ───────────────────────────────────────────── */
.section-header-block {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 52px;
}

.section-kicker {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--solar-amber);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  color: var(--forest-pine);
  margin-bottom: 14px;
  line-height: 1.22;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.68;
}

/* ── DEEP BENEFITS SECTION ───────────────────────────────────────────── */
.benefits-section {
  padding: 88px 0;
  background: var(--bg-page);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--pine-border);
}

.benefit-icon-wrap {
  width: 54px;
  height: 54px;
  background: var(--pine-soft);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 22px;
  color: var(--forest-pine);
}

.benefit-card h3 {
  font-size: 1.35rem;
  color: var(--forest-pine);
  margin-bottom: 14px;
  line-height: 1.3;
}

.benefit-card p {
  font-size: 0.96rem;
  color: var(--text-body);
  line-height: 1.72;
}

/* ── FEATURE SPOTLIGHTS (ALTERNATING) ────────────────────────────────── */
.spotlights-section {
  padding: 92px 0;
  background: #FFFFFF;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}

.spotlight-row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 84px;
}

.spotlight-row:last-child {
  margin-bottom: 0;
}

.spotlight-row.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.spotlight-row.reverse .spotlight-visual {
  order: 1;
}

.spotlight-row.reverse .spotlight-copy {
  order: 2;
}

.spotlight-copy h2 {
  font-size: clamp(1.85rem, 3vw, 2.4rem);
  color: var(--forest-pine);
  margin-bottom: 18px;
  line-height: 1.25;
}

.spotlight-copy p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 16px;
}

.spotlight-copy p:last-of-type {
  margin-bottom: 24px;
}

.data-callout-row {
  display: flex;
  gap: 16px;
  width: 100%;
}

.data-callout-box {
  flex: 1;
  background: var(--bg-soft);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  text-align: center;
}

.data-callout-box strong {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--forest-pine);
  display: block;
  line-height: 1.1;
}

.data-callout-box span {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
}

.spotlight-visual img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  width: 100%;
  object-fit: cover;
}

/* ── 6 APPLICATION ZONES GRID ────────────────────────────────────────── */
.zones-section {
  padding: 88px 0;
  background: var(--bg-dark);
  color: #FFFFFF;
}

.zones-section .section-title {
  color: #FFFFFF;
}

.zones-section .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.zones-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.zone-card {
  background: var(--bg-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  transition: var(--transition);
}

.zone-card:hover {
  transform: translateY(-3px);
  border-color: rgba(226, 135, 4, 0.4);
  background: #2A453B;
}

.zone-icon {
  font-size: 28px;
  margin-bottom: 14px;
  display: inline-block;
}

.zone-card h4 {
  font-size: 1.18rem;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.zone-card p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.62;
}

/* ── 3-STEP ROUTINE ──────────────────────────────────────────────────── */
.routine-section {
  padding: 92px 0;
  background: var(--bg-page);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.step-img-frame {
  height: 220px;
  overflow: hidden;
  background: var(--bg-soft);
}

.step-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.step-card:hover .step-img-frame img {
  transform: scale(1.04);
}

.step-body {
  padding: 28px 24px;
}

.step-number {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--solar-amber);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.step-body h3 {
  font-size: 1.25rem;
  color: var(--forest-pine);
  margin-bottom: 10px;
}

.step-body p {
  font-size: 0.94rem;
  color: var(--text-body);
  line-height: 1.65;
}

/* ── UNBOXING MANIFEST ───────────────────────────────────────────────── */
.unboxing-section {
  padding: 92px 0;
  background: #FFFFFF;
  border-top: 1px solid var(--border-subtle);
}

.unboxing-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.unboxing-visual img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  width: 100%;
  object-fit: cover;
}

.unboxing-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.unbox-item-row {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 16px;
  background: var(--bg-page);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px 18px;
}

.unbox-icon-num {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--forest-pine);
  text-align: center;
}

.unbox-content h4 {
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.unbox-content p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

.unbox-badge {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  background: var(--pine-soft);
  color: var(--forest-pine);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

/* ── COST COMPARISON TABLE ───────────────────────────────────────────── */
.comparison-section {
  padding: 92px 0;
  background: var(--bg-page);
}

.table-responsive-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-subtle);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #FFFFFF;
  text-align: left;
  min-width: 580px;
}

.comparison-table th {
  background: var(--forest-pine);
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 16px 20px;
}

.comparison-table th.col-highlight {
  background: var(--solar-amber);
}

.comparison-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
  color: var(--text-body);
}

.comparison-table tr.winner-row {
  background: var(--amber-soft);
}

.comparison-table tr.winner-row td {
  font-weight: 700;
  color: var(--text-dark);
}

.comparison-table td.winner-cell {
  color: var(--amber-dark);
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 15px;
}

/* ── TECHNICAL SPECS SHEET ───────────────────────────────────────────── */
.specs-section {
  padding: 92px 0;
  background: #FFFFFF;
  border-top: 1px solid var(--border-subtle);
}

.specs-sheet {
  max-width: 820px;
  margin: 0 auto;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  background: var(--bg-page);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 14.5px;
  gap: 12px;
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-row:nth-child(even) {
  background: #FFFFFF;
}

.spec-key {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

.spec-val {
  font-weight: 700;
  color: var(--forest-pine);
  text-align: right;
}

/* ── 6 TESTIMONIALS / REVIEWS ────────────────────────────────────────── */
.reviews-section {
  padding: 92px 0;
  background: var(--bg-page);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.review-stars {
  color: var(--solar-amber);
  font-size: 15px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-headline {
  font-size: 1.15rem;
  color: var(--forest-pine);
  margin-bottom: 12px;
  line-height: 1.35;
}

.review-text {
  font-size: 0.94rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 20px;
}

.reviewer-meta {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border-light);
  padding-top: 12px;
}

.reviewer-name {
  font-weight: 700;
  font-size: 13.5px;
  color: var(--text-dark);
}

.reviewer-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-light);
}

/* ── 10 FAQS ACCORDION ───────────────────────────────────────────────── */
.faq-section {
  padding: 92px 0;
  background: #FFFFFF;
  border-top: 1px solid var(--border-subtle);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-page);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--forest-pine);
  background: transparent;
  gap: 16px;
}

.faq-toggle-icon {
  font-size: 20px;
  font-weight: 400;
  color: var(--solar-amber);
  transition: transform 0.22s ease;
  flex-shrink: 0;
}

.faq-answer {
  display: none;
  padding: 0 24px 22px;
  font-size: 0.96rem;
  color: var(--text-body);
  line-height: 1.72;
}

.faq-item.active {
  background: #FFFFFF;
  border-color: var(--pine-border);
  box-shadow: var(--shadow-subtle);
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
}

/* ── 5 PACKAGES CONVERSION SECTION (#packages) ───────────────────────── */
.packages-section {
  padding: 96px 0 120px;
  background: var(--bg-soft);
  border-top: 2px solid var(--forest-pine);
  position: relative;
}

.packages-intro-banner {
  background: var(--forest-pine);
  color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.packages-intro-text h3 {
  color: #FFFFFF;
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.packages-intro-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.packages-guarantee-pill {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  background: var(--solar-amber);
  color: #FFFFFF;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
}

.package-cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  align-items: stretch;
}

.package-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 26px 18px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition);
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.package-card.featured {
  border: 2px solid var(--solar-amber);
  box-shadow: 0 12px 32px rgba(226, 135, 4, 0.18);
  background: #FFFFFF;
}

.package-card.best-value {
  border: 2px solid var(--forest-pine);
  box-shadow: 0 12px 32px rgba(26, 46, 38, 0.18);
}

.pkg-ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.ribbon-amber {
  background: var(--solar-amber);
  color: #FFFFFF;
}

.ribbon-pine {
  background: var(--forest-pine);
  color: #FFFFFF;
}

.pkg-header {
  text-align: center;
  margin-top: 8px;
  margin-bottom: 16px;
}

.pkg-qty {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--forest-pine);
  line-height: 1.2;
}

.pkg-sublabel {
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.pkg-price-block {
  text-align: center;
  background: var(--bg-page);
  border-radius: var(--radius-md);
  padding: 14px 10px;
  margin-bottom: 16px;
}

.pkg-unit-price {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--forest-pine);
  line-height: 1;
}

.pkg-unit-text {
  font-size: 11px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  display: block;
  margin-top: 2px;
}

.pkg-total-row {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-muted);
}

.pkg-orig-price {
  text-decoration: line-through;
  color: var(--text-light);
}

.pkg-savings-pill {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  background: var(--amber-soft);
  color: var(--amber-dark);
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  margin-top: 8px;
}

.pkg-features-list {
  list-style: none;
  font-size: 12px;
  color: var(--text-body);
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  border-top: 1px solid var(--border-light);
  padding-top: 14px;
}

.pkg-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.4;
}

.pkg-features-list li span.check {
  color: var(--solar-amber);
  font-weight: 800;
  flex-shrink: 0;
}

.btn-package-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--forest-pine);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 12.5px;
  font-weight: 800;
  padding: 14px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 1.25;
  width: 100%;
}

.btn-package-cta:hover {
  background: var(--pine-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(26, 46, 38, 0.25);
}

.package-card.featured .btn-package-cta {
  background: var(--solar-amber);
  box-shadow: 0 6px 20px rgba(226, 135, 4, 0.35);
}

.package-card.featured .btn-package-cta:hover {
  background: var(--amber-dark);
}

.pkg-cta-sub {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 8px;
  line-height: 1.35;
}

/* ── STICKY BOTTOM BAR ───────────────────────────────────────────────── */
.sticky-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: rgba(26, 46, 38, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 0;
  color: #FFFFFF;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.18);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-bottom-bar.visible {
  transform: translateY(0);
}

.sticky-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.sticky-product-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sticky-thumb {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: #FFFFFF;
  padding: 3px;
  object-fit: contain;
}

.sticky-title-box h4 {
  color: #FFFFFF;
  font-size: 14.5px;
  margin-bottom: 2px;
}

.sticky-price-box {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.8);
}

.sticky-price-box strong {
  color: var(--solar-amber);
  font-size: 14.5px;
}

.sticky-btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--solar-amber);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 800;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.sticky-btn-cta:hover {
  background: var(--amber-dark);
}

/* ── FOOTER ──────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--forest-pine);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 15px;
  margin-bottom: 16px;
}

.footer-col p {
  line-height: 1.65;
  margin-bottom: 12px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-col a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

.footer-disclaimer-box {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  margin-bottom: 24px;
  font-size: 11.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  font-family: var(--font-mono);
  font-size: 11px;
}

/* ── PORTAL & COUNTRY SELECTION PAGE STYLES (`select-country.html`) ─── */
.portal-header {
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-subtle);
  padding: 16px 0;
}

.portal-header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.portal-security-badge {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--forest-pine);
  background: var(--pine-soft);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

.portal-container {
  max-width: 860px;
  margin: 40px auto 80px;
  padding: 0 16px;
  box-sizing: border-box;
}

.portal-steps {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.portal-step {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text-light);
  background: var(--bg-soft);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  text-align: center;
}

.portal-step.done {
  color: var(--forest-pine);
  background: var(--pine-soft);
}

.portal-step.active {
  color: #FFFFFF;
  background: var(--solar-amber);
}

.package-selected-alert {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-left: 4px solid var(--solar-amber);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-subtle);
  box-sizing: border-box;
}

.selected-tier-badge span {
  font-size: 13.5px;
  color: var(--text-dark);
}

.selected-tier-badge #tier-name-display {
  font-weight: 700;
  color: var(--forest-pine);
}

.change-tier-btn {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--solar-amber);
}

.change-tier-btn:hover {
  text-decoration: underline;
}

.tier-select-note {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

.checkout-notice-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-left: 4px solid var(--forest-pine);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-subtle);
}

.checkout-notice-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--forest-pine);
  margin-bottom: 8px;
}

.checkout-notice-card p {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.6;
  margin: 0;
}

.geo-restriction-notice {
  background: #FDFDFB;
  border: 1px dashed var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 24px;
  margin-bottom: 32px;
}

.geo-notice-icon {
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
}

.geo-notice-text strong {
  display: block;
  font-size: 13px;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.geo-notice-text p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.country-cards-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

.country-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition);
}

.country-card:hover {
  border-color: var(--solar-amber);
  box-shadow: var(--shadow-hover);
}

.country-card.featured {
  border: 2px solid var(--forest-pine);
}

.country-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.country-flag {
  font-size: 32px;
}

.country-name {
  font-size: 1.4rem;
  color: var(--forest-pine);
  margin-bottom: 2px;
}

.country-currency-note {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
}

.country-details-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-body);
  margin-bottom: 22px;
}

.country-details-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.country-details-list li span.check {
  color: var(--solar-amber);
  font-weight: 800;
}

.btn-country-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--solar-amber);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 800;
  padding: 16px;
  border-radius: var(--radius-pill);
  text-align: center;
  letter-spacing: 0.02em;
}

.btn-country-cta:hover {
  background: var(--amber-dark);
}

.country-cta-subnote {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 10px;
}

.security-trust-strip {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 36px;
}

.portal-footer {
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
  border-top: 1px solid var(--border-subtle);
  padding: 32px 20px;
}

.portal-footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 14px;
}

.portal-footer-links a:hover {
  color: var(--forest-pine);
}

/* ── RESPONSIVE & MOBILE FOLD HIERARCHY (CRITICAL R5.1-R5.4) ────────── */
@media (max-width: 1024px) {
  .package-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  /* Navigation */
  .nav-links, .nav-actions .btn-nav-cta {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }

  .promo-bar {
    font-size: 11px;
    padding: 6px 12px;
    line-height: 1.4;
  }

  /* CRITICAL: Mobile Hero Hierarchy via display: contents;
     Ensures BOTH product image and primary CTA appear effortlessly above 844px mobile fold! */
  .hero-section {
    padding: 14px 0 28px;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .hero-content {
    display: contents;
  }

  .hero-visual {
    display: contents;
  }

  .hero-badge-wrap {
    order: 1;
    margin-bottom: 8px;
  }

  .hero-title {
    order: 2;
    font-size: 1.55rem;
    line-height: 1.22;
    margin-bottom: 8px;
  }

  .hero-img-frame {
    order: 3;
    padding: 4px;
    margin-bottom: 8px;
    border-radius: var(--radius-lg);
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .hero-product-img {
    max-height: 150px;
    width: auto;
    margin: 0 auto;
  }

  .hero-price-box {
    order: 4;
    padding: 8px 14px;
    margin-bottom: 8px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }

  .hero-price-box .price-label {
    display: none;
  }

  .price-current {
    font-size: 1.65rem;
  }

  .hero-cta-wrap {
    order: 5;
    margin-bottom: 8px;
    width: 100%;
  }

  .btn-primary {
    padding: 14px 18px;
    font-size: 14.5px;
    width: 100%;
  }

  .hero-trust-row {
    order: 6;
    margin-bottom: 12px;
    font-size: 10.5px;
    justify-content: center;
    gap: 8px;
  }

  .hero-subtitle {
    order: 7;
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 14px;
  }

  .stat-pills-grid {
    order: 8;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 6px;
    gap: 8px;
  }

  /* Other Sections */
  .benefits-grid,
  .steps-grid,
  .reviews-grid,
  .zones-grid {
    grid-template-columns: 1fr;
  }

  .spotlight-row,
  .spotlight-row.reverse {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .spotlight-row.reverse .spotlight-visual {
    order: unset;
  }

  .spotlight-row.reverse .spotlight-copy {
    order: unset;
  }

  .data-callout-row {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .unboxing-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .trust-number-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .package-cards-grid {
    grid-template-columns: 1fr;
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .sticky-bar-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .sticky-btn-cta {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 1.45rem;
  }

  .stat-pill-card {
    padding: 10px 6px;
  }

  .stat-pill-num {
    font-size: 1.2rem;
  }

  .packages-intro-banner {
    padding: 16px;
  }

  .spec-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 12px 16px;
  }

  .spec-val {
    text-align: left;
    max-width: 100%;
  }

  .unbox-item-row {
    grid-template-columns: 32px 1fr;
  }

  .unbox-badge {
    grid-column: 2;
    justify-self: start;
    margin-top: 4px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px 14px;
    font-size: 13px;
  }
}
