/* ==========================================================================
   THE PODBLOOM - NORDIC CLEAN-TECH WELLNESS DESIGN SYSTEM
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=JetBrains+Mono:wght@500;700&display=swap');

:root {
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Color Palette - Nordic Clean-Tech Wellness */
  --color-bg: #F8FAFC;
  --color-surface: #FFFFFF;
  --color-surface-subtle: #F1F5F9;
  --color-border: #E2E8F0;
  --color-border-hover: #CBD5E1;
  
  --color-text-main: #0F172A;
  --color-text-muted: #475569;
  --color-text-subtle: #64748B;
  --color-text-inverse: #FFFFFF;

  /* Accent Tones */
  --color-primary: #059669;        /* Forest Emerald */
  --color-primary-hover: #047857;
  --color-primary-light: #ECFDF5;
  --color-accent-cyan: #0284C7;    /* Pure Hydro Water Azure */
  --color-accent-cyan-light: #F0F9FF;
  --color-gold: #F59E0B;

  /* Elevate Shadows */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 12px -2px rgba(15, 23, 42, 0.07);
  --shadow-lg: 0 12px 30px -4px rgba(15, 23, 42, 0.09);
  --shadow-emerald: 0 8px 24px -4px rgba(5, 150, 105, 0.25);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --max-width: 1180px;
  --header-height: 72px;
}

/* Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text-main);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR & REGIONAL ROUTER
   ========================================================================== */

.top-bar {
  background: #0F172A;
  color: #F8FAFC;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10B981;
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Regional Country Selector */
.country-selector-wrap {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  padding: 4px 10px;
  font-size: 12px;
}

.country-select {
  background: transparent;
  color: #F8FAFC;
  border: none;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  outline: none;
}

.country-select option {
  background: #0F172A;
  color: #FFFFFF;
}

/* ==========================================================================
   PRIMARY NAVIGATION HEADER
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border);
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: box-shadow 0.25s ease;
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-text-main);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.brand-logo img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.brand-logo span {
  color: var(--color-primary);
}

/* Desktop Navigation - 6 Links with >32px separation */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin-right: 12px;
}

.desktop-nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--color-primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.header-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: var(--color-text-inverse);
  font-size: 14px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.header-cta-btn:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-emerald);
}

/* Mobile Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--color-text-main);
  border-radius: var(--radius-sm);
}

.mobile-menu-toggle:focus-visible {
  outline: 2px solid var(--color-primary);
}

/* ==========================================================================
   MOBILE MENU DRAWER
   ========================================================================== */

.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1998;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 310px;
  max-width: 85vw;
  height: 100%;
  background: var(--color-surface);
  z-index: 1999;
  box-shadow: -8px 0 30px rgba(15, 23, 42, 0.15);
  display: none;
  flex-direction: column;
  transform: translateX(105%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease;
  padding: 24px;
  overflow-y: auto;
}

.mobile-drawer.active {
  display: flex;
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 20px;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile-nav-list a {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-main);
  display: block;
  padding: 6px 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  transition: color 0.2s ease;
}

.mobile-nav-list a:hover {
  color: var(--color-primary);
}

.mobile-drawer-footer {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
  padding: 56px 24px 64px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  border-bottom: 1px solid var(--color-border);
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-badge-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.stars-rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-muted);
}

.stars-rating .star-icons {
  color: var(--color-gold);
}

.hero-h1 {
  font-family: var(--font-serif);
  font-size: 3rem;
  line-height: 1.12;
  color: var(--color-text-main);
  letter-spacing: -0.02em;
}

.hero-h1 span.highlight {
  color: var(--color-primary);
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--color-text-muted);
}

/* Stat Pills Strip */
.hero-stat-pills {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 8px 0;
}

.stat-pill {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 10px 8px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.stat-pill .pill-val {
  font-family: var(--font-mono);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary);
  display: block;
}

.stat-pill .pill-lbl {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text-subtle);
  margin-top: 2px;
  line-height: 1.2;
}

/* Dynamic Pricing Card in Hero */
.hero-price-card {
  background: var(--color-surface);
  border: 1.5px solid #CBD5E1;
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.price-group {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.price-current {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-text-main);
  letter-spacing: -0.02em;
}

.price-retail {
  font-size: 1.15rem;
  color: var(--color-text-subtle);
  text-decoration: line-through;
}

.discount-badge {
  background: #DC2626;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.primary-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--color-primary);
  color: var(--color-text-inverse);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 16px 28px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-emerald);
  transition: all 0.25s ease;
  text-align: center;
}

.primary-cta-btn:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -4px rgba(5, 150, 105, 0.35);
}

.hero-trust-notes {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: var(--color-text-subtle);
  padding-top: 4px;
}

.hero-trust-notes span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Hero Media Column */
.hero-media {
  position: relative;
}

.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  background: #FFFFFF;
}

.hero-floating-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 280px;
}

.hero-floating-badge .badge-icon {
  width: 36px;
  height: 36px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.hero-floating-badge .badge-text {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text-main);
  line-height: 1.3;
}

/* ==========================================================================
   TRUST BAR STRIP
   ========================================================================== */

.trust-bar-section {
  background: #0F172A;
  color: #FFFFFF;
  padding: 36px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-bar-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.trust-bar-item .metric {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
  color: #34D399;
  display: block;
}

.trust-bar-item .label {
  font-size: 13px;
  color: #94A3B8;
  margin-top: 4px;
  font-weight: 500;
}

/* ==========================================================================
   SECTION COMMON LAYOUTS
   ========================================================================== */

.section {
  padding: 80px 24px;
}

.section-alt {
  background: #FFFFFF;
}

.section-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 52px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--color-primary);
  background: var(--color-primary-light);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.35rem;
  line-height: 1.2;
  color: var(--color-text-main);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section-description {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ==========================================================================
   PROBLEM VS SOLUTION SECTION
   ========================================================================== */

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.problem-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.problem-card.danger {
  background: #FFFBFB;
  border-color: #FECACA;
}

.problem-card.solution {
  background: #F0FDF4;
  border-color: #BBF7D0;
}

.problem-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.problem-card.danger h3 { color: #DC2626; }
.problem-card.solution h3 { color: #059669; }

.problem-card p {
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.7;
}

.problem-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.problem-list li {
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--color-text-main);
}

/* ==========================================================================
   BENEFITS CARDS (4 Pillar Deep Dives)
   ========================================================================== */

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.benefit-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #A7F3D0;
}

.benefit-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.benefit-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text-main);
}

.benefit-card p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.benefit-badge {
  display: inline-block;
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--color-primary);
}

/* ==========================================================================
   TECHNOLOGY SPOTLIGHTS (Alternating Image + Copy Rows)
   ========================================================================== */

.tech-spotlight-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 72px;
}

.tech-spotlight-row:last-child {
  margin-bottom: 0;
}

.tech-spotlight-row.reverse {
  direction: rtl;
}

.tech-spotlight-row.reverse > * {
  direction: ltr;
}

.tech-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  background: #FFFFFF;
}

.tech-copy-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tech-copy-wrap h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  line-height: 1.25;
  color: var(--color-text-main);
}

.tech-copy-wrap p {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.tech-callout-box {
  background: #F0F9FF;
  border-left: 4px solid var(--color-accent-cyan);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 14px;
  color: #0369A1;
  font-weight: 500;
  line-height: 1.6;
}

/* ==========================================================================
   3-STEP HOW IT WORKS
   ========================================================================== */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.step-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}

.step-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.step-img-box {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #F1F5F9;
}

.step-number-pill {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--color-primary);
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}

.step-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.step-content h3 {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--color-text-main);
}

.step-content p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ==========================================================================
   TECHNICAL SPECIFICATIONS TABLE
   ========================================================================== */

.specs-table-container {
  max-width: 860px;
  margin: 0 auto;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.specs-table th,
.specs-table td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--color-border);
}

.specs-table th {
  background: #F8FAFC;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-main);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.specs-table tr:last-child td {
  border-bottom: none;
}

.specs-table tr:nth-child(even) td {
  background: #FAFAFA;
}

.specs-param {
  font-weight: 600;
  color: var(--color-text-main);
  width: 40%;
  font-size: 14px;
}

.specs-val {
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  font-size: 14px;
}

/* ==========================================================================
   COMPARISON TABLE (Cost & Tech Comparison)
   ========================================================================== */

.comparison-table-wrap {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 32px;
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comp-table th, .comp-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--color-border);
  font-size: 14px;
}

.comp-table th {
  background: #F1F5F9;
  font-weight: 700;
  color: var(--color-text-main);
}

.comp-table th.highlight,
.comp-table td.highlight {
  background: #F0FDF4;
  color: #065F46;
  font-weight: 600;
  border-left: 2px solid #34D399;
  border-right: 2px solid #34D399;
}

.comp-table tr:last-child td {
  border-bottom: none;
}

/* Responsive Table Cards for Mobile */
@media (max-width: 768px) {
  .comp-table thead {
    display: none;
  }
  .comp-table, .comp-table tbody, .comp-table tr, .comp-table td {
    display: block;
    width: 100%;
  }
  .comp-table tr {
    margin-bottom: 20px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: #FFFFFF;
    overflow: hidden;
  }
  .comp-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #F1F5F9;
    padding: 12px 16px;
  }
  .comp-table td::before {
    content: attr(data-label);
    font-weight: 700;
    color: var(--color-text-muted);
    font-size: 13px;
  }
  .comp-table td.highlight {
    border-left: none;
    border-right: none;
  }
}

/* ==========================================================================
   UNBOXING SECTION
   ========================================================================== */

.unboxing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.unboxing-image-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

.unboxing-manifest {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.manifest-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.manifest-item .item-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #D1FAE5;
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.manifest-item .item-text h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 2px;
}

.manifest-item .item-text p {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   CUSTOMER REVIEWS (All 6 Visible Cards)
   ========================================================================== */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review-rating-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review-stars {
  color: var(--color-gold);
  font-size: 14px;
}

.verified-badge {
  font-size: 11px;
  font-weight: 700;
  color: #059669;
  background: #ECFDF5;
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

.review-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-main);
  line-height: 1.35;
}

.review-text {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.reviewer-meta {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

.reviewer-name {
  font-weight: 700;
  color: var(--color-text-main);
}

.reviewer-loc {
  color: var(--color-text-subtle);
}

/* ==========================================================================
   PACKAGES & BUNDLE SELECTOR SECTION
   ========================================================================== */

.bundles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.bundle-card {
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.25s ease;
  cursor: pointer;
}

.bundle-card:hover {
  border-color: #A7F3D0;
  box-shadow: var(--shadow-md);
}

.bundle-card.featured {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-emerald);
  transform: scale(1.03);
}

.bundle-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.bundle-badge.deal {
  background: #2563EB;
}

.bundle-header {
  text-align: center;
  margin-bottom: 20px;
}

.bundle-qty {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-text-main);
}

.bundle-desc {
  font-size: 13px;
  color: var(--color-text-subtle);
  margin-top: 4px;
}

.bundle-img-wrap {
  aspect-ratio: 1 / 1;
  max-width: 180px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bundle-pricing {
  text-align: center;
  margin-bottom: 20px;
}

.bundle-price-total {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--color-text-main);
  letter-spacing: -0.02em;
}

.bundle-price-unit {
  font-size: 13px;
  color: var(--color-text-muted);
  font-weight: 600;
  margin-top: 2px;
}

.bundle-savings {
  display: inline-block;
  background: #DC2626;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  margin-top: 8px;
}

.bundle-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 13px;
  color: var(--color-text-muted);
}

.bundle-features-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bundle-btn {
  margin-top: auto;
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #0F172A;
  color: #FFFFFF;
  transition: all 0.2s ease;
}

.bundle-card.featured .bundle-btn {
  background: var(--color-primary);
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.3);
}

.bundle-btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

/* ==========================================================================
   FAQ ACCORDION (All 10 Questions Visible)
   ========================================================================== */

.faq-accordion-wrap {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease;
}

.faq-item:hover {
  border-color: #CBD5E1;
}

.faq-trigger {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text-main);
  cursor: pointer;
  background: none;
  border: none;
}

.faq-trigger:focus-visible {
  outline: 2px solid var(--color-primary);
}

.faq-icon {
  font-size: 1.25rem;
  color: var(--color-primary);
  transition: transform 0.25s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
  padding: 0 24px;
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.75;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 22px;
}

/* ==========================================================================
   FINAL CTA / GUARANTEE SECTION
   ========================================================================== */

.final-cta-section {
  padding: 80px 24px;
  background: linear-gradient(180deg, #FFFFFF 0%, #ECFDF5 100%);
  border-top: 1px solid var(--color-border);
}

.final-cta-card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--color-surface);
  border: 1.5px solid #A7F3D0;
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.final-cta-card h2 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--color-text-main);
  line-height: 1.2;
}

.final-cta-card p {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 680px;
  line-height: 1.7;
}

.final-guarantee-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: var(--radius-full);
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  color: #065F46;
}

/* ==========================================================================
   STICKY BOTTOM CONVERSION DOCK
   ========================================================================== */

.sticky-bottom-dock {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  z-index: 1000;
  padding: 12px 24px;
  transform: translateY(110%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
}

.sticky-bottom-dock.visible {
  transform: translateY(0);
}

.dock-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.dock-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.dock-thumb {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: #FFFFFF;
  object-fit: cover;
}

.dock-info {
  display: flex;
  flex-direction: column;
}

.dock-title {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 14px;
}

.dock-pricing {
  color: #34D399;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
}

.dock-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dock-cta-btn {
  background: #10B981;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.dock-cta-btn:hover {
  background: #059669;
  transform: translateY(-1px);
}

/* ==========================================================================
   FOOTER & COMPLIANCE
   ========================================================================== */

.site-footer {
  background: #0B0F19;
  color: #94A3B8;
  padding: 60px 24px 100px; /* bottom padding accounts for sticky dock */
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  line-height: 1.7;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  max-width: 380px;
}

.footer-logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.footer-logo span {
  color: #34D399;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links h4 {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.footer-links a {
  color: #94A3B8;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #34D399;
}

.footer-disclaimers {
  color: #64748B;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-disclaimers a {
  color: #94A3B8;
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  color: #475569;
  font-size: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   RESPONSIVE DESIGN & ZERO OVERFLOW ENFORCEMENT
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-h1 {
    font-size: 2.5rem;
  }
  .desktop-nav {
    gap: 16px;
  }
  .desktop-nav a {
    font-size: 13px;
  }
  .reviews-grid,
  .bundles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bundle-card.featured {
    transform: none;
  }
}

@media (max-width: 768px) {
  /* Navigation switch */
  .desktop-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }

  /* CRITICAL ZERO OVERFLOW RULE (Prevents 324px mobile header overflow) */
  .header-actions .header-cta-btn {
    display: none !important;
  }

  .site-header {
    height: 64px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Put the product visual in the initial mobile viewport, before long sales copy. */
  .hero-section {
    padding: 20px 16px 48px;
  }

  .hero-media {
    order: -1;
    width: 100%;
  }

  .hero-img-wrap {
    max-width: 420px;
    margin: 0 auto;
  }

  .hero-h1 {
    font-size: 2.15rem;
  }

  .hero-stat-pills {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-bar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .problem-grid,
  .benefits-grid,
  .tech-spotlight-row,
  .steps-grid,
  .unboxing-grid,
  .reviews-grid,
  .bundles-grid {
    grid-template-columns: 1fr;
  }

  .tech-spotlight-row.reverse {
    direction: ltr;
  }

  .final-cta-card h2 {
    font-size: 2rem;
  }

  .dock-left .dock-title {
    font-size: 12px;
  }
  
  .dock-cta-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .hero-h1 {
    font-size: 1.85rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .price-current {
    font-size: 1.85rem;
  }
  .primary-cta-btn {
    font-size: 0.95rem;
    padding: 14px 20px;
  }
  .top-bar-inner {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 360px) {
  .hero-h1 {
    font-size: 1.65rem;
  }
  .brand-logo {
    font-size: 1.15rem;
  }
  .dock-thumb {
    display: none;
  }
}

/* Responsive Specs Table for Mobile */
@media (max-width: 768px) {
  .specs-table thead {
    display: none;
  }
  .specs-table, .specs-table tbody, .specs-table tr, .specs-table td {
    display: block;
    width: 100%;
  }
  .specs-table tr {
    margin-bottom: 12px;
    border-bottom: 1px solid var(--color-border);
    padding: 8px 12px;
  }
  .specs-table td {
    padding: 4px 8px;
    border-bottom: none;
  }
  .specs-param {
    width: 100%;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-text-main);
  }
  .specs-val {
    width: 100%;
    font-size: 13px;
    color: var(--color-text-muted);
  }
}

/* ==========================================================================
   ENHANCED COUNTRY ROUTING & SELECTOR STYLES
   ========================================================================== */

.country-pricing-bar {
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}

.country-pricing-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-main);
  display: flex;
  align-items: center;
  gap: 8px;
}

.country-pricing-label .active-country-label {
  color: var(--color-primary);
  font-weight: 700;
}

.country-select-styled {
  background: #FFFFFF;
  border: 1.5px solid var(--color-border);
  color: #0F172A;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  cursor: pointer;
  outline: none;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
}

.country-select-styled:hover,
.country-select-styled:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-light);
}

.cta-subtext {
  display: block;
  font-size: 12px;
  color: var(--color-text-subtle);
  margin-top: 8px;
  text-align: center;
}

.cta-subtext .active-country-label {
  color: var(--color-primary);
  font-weight: 700;
}

@media (max-width: 768px) {
  .header-actions .country-selector-wrap {
    display: none !important;
  }
  .country-pricing-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  .country-pricing-bar .country-select-styled {
    width: 100%;
  }
}
