/* ================================================================
   EMBER THEME — SoberBreath™ Official Store
   Palette: Void Charcoal (#0A0C10) + Carbon (#14171F) + Blaze Safety Orange (#FF5500 / #FF6B00) + Amber (#FFB700) + Emerald (#22C55E)
   Fonts: 'Space Grotesk' & 'Oswald' (Headings), 'Inter' / 'Work Sans' (Body), 'Space Mono' (Specs/Badges)
   ================================================================ */

:root {
  --bg-dark:        #0A0C10;
  --bg-surface:     #12151D;
  --bg-card:        #181C26;
  --bg-card-hover:  #1F2432;
  --border-subtle:  #242B3B;
  --border-bright:  rgba(255, 85, 0, 0.45);
  --border-gold:    rgba(255, 183, 0, 0.4);

  --fire-orange:    #FF5500;
  --fire-accent:    #FF6B00;
  --fire-glow:      rgba(255, 85, 0, 0.35);
  --gold-amber:     #FFB700;
  --gold-glow:      rgba(255, 183, 0, 0.25);
  --success-green:  #22C55E;
  --danger-red:     #EF4444;

  --text-white:     #FFFFFF;
  --text-gray:      #9CA3AF;
  --text-dim:       #6B7280;
  --text-light:     #E5E7EB;

  --font-heading:   'Space Grotesk', 'Oswald', sans-serif;
  --font-body:      'Inter', 'Work Sans', -apple-system, sans-serif;
  --font-mono:      'Space Mono', monospace;

  --container:      1180px;
  --container-narrow: 880px;
  --radius-sm:      6px;
  --radius-md:      12px;
  --radius-lg:      18px;
  --radius-pill:    9999px;
  --transition:     all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  -webkit-text-size-adjust: 100%;
}

body.theme-ember {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
  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;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--text-white);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* ── ANNOUNCEMENT ALERT BAR ─────────────────────────────────── */
.ember-alert-bar {
  background: linear-gradient(90deg, #7F1D1D 0%, #991B1B 50%, #7F1D1D 100%);
  color: #fff;
  padding: 8px 16px;
  font-size: 12.5px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 105;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.alert-pulse-tag {
  background: #FEE2E2;
  color: #991B1B;
  font-size: 10px;
  font-family: var(--font-mono);
  padding: 2px 7px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  text-transform: uppercase;
}

.ember-timer {
  background: #000;
  color: var(--gold-amber);
  font-family: var(--font-mono);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255, 183, 0, 0.3);
}

/* ── STICKY HEADER & CLEAN NAVIGATION ───────────────────────── */
.ember-header {
  background: rgba(18, 21, 29, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.site-logo img {
  height: 40px;
  width: auto;
}

/* Clean, Non-Dense Desktop Nav (R8.1) */
.ember-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 32px;
  font-size: 14px;
  font-weight: 600;
}

.nav-list a {
  color: var(--text-gray);
  position: relative;
  padding: 4px 0;
}

.nav-list a:hover {
  color: #FFFFFF;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--fire-orange);
  transition: width 0.2s ease;
}

.nav-list a:hover::after {
  width: 100%;
}

.header-right-action {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-nav-cta {
  background: linear-gradient(135deg, var(--fire-accent) 0%, var(--fire-orange) 100%);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  box-shadow: 0 0 20px var(--fire-glow);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 30px var(--fire-glow);
}

/* Hamburger toggle for mobile */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 6px;
  color: #FFFFFF;
  font-size: 24px;
  cursor: pointer;
}

/* Mobile Drawer */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 69px;
  left: 0;
  right: 0;
  background: rgba(18, 21, 29, 0.98);
  border-bottom: 1px solid var(--border-subtle);
  padding: 24px;
  z-index: 99;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.8);
}

.mobile-drawer.is-open {
  display: flex;
}

.mobile-drawer a {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-light);
  padding: 8px 0;
}

.mobile-drawer .btn-drawer-cta {
  background: var(--fire-orange);
  color: #FFFFFF;
  font-family: var(--font-heading);
  text-align: center;
  padding: 14px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 14px;
  margin-top: 8px;
}

/* ── HERO SECTION (R5.4 & R8.2) ─────────────────────────────── */
.ember-hero {
  padding: 48px 0 64px;
  position: relative;
}

.hero-split-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: center;
}

/* Left Hero Column: Product Showcase */
.spotlight-frame {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.spotlight-label {
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--gold-amber);
  background: rgba(255, 183, 0, 0.1);
  border: 1px solid rgba(255, 183, 0, 0.3);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  display: inline-block;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ember-hero-img {
  margin: 0 auto;
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 420px;
  height: auto;
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.7));
}

.spotlight-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  color: var(--success-green);
  font-weight: 600;
}

.pulse-emerald {
  width: 8px;
  height: 8px;
  background: var(--success-green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--success-green);
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.hero-trust-row {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  font-size: 12px;
  color: var(--text-gray);
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 16px;
}

.trust-mini {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Right Hero Column: Pitch Card */
.hero-pitch-card {
  display: flex;
  flex-direction: column;
}

.pitch-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--fire-accent);
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.ember-h1 {
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  margin-bottom: 16px;
  color: #FFFFFF;
  line-height: 1.15;
}

.ember-h1 span.highlight {
  color: var(--fire-accent);
  background: linear-gradient(135deg, #FF7A00 0%, #FF4500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ember-lead {
  font-size: 1.12rem;
  color: var(--text-gray);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* Hero Price Snapshot Card (R8.2: NO package tiers in Hero, single clear price snapshot) */
.hero-price-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.price-snapshot-left {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.price-snapshot-sale {
  font-size: 2.2rem;
  font-weight: 800;
  color: #FFFFFF;
  font-family: var(--font-heading);
}

.price-snapshot-orig {
  font-size: 1.1rem;
  color: var(--text-dim);
  text-decoration: line-through;
}

.badge-discount-hero {
  background: rgba(255, 85, 0, 0.15);
  border: 1px solid var(--border-bright);
  color: var(--fire-accent);
  font-size: 12px;
  font-weight: 800;
  font-family: var(--font-mono);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

/* 4 Product Stat Pills */
.stat-pills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.stat-pill {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 13px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.stat-pill-icon {
  color: var(--fire-accent);
  font-weight: 800;
}

/* Hero CTA Group */
.pitch-cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-primary-hero {
  background: linear-gradient(135deg, var(--fire-accent) 0%, var(--fire-orange) 100%);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  padding: 18px 32px;
  border-radius: var(--radius-pill);
  text-align: center;
  box-shadow: 0 0 35px var(--fire-glow), 0 10px 25px rgba(0,0,0,0.5);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: var(--transition);
  max-width: fit-content;
}

.btn-primary-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px var(--fire-glow);
  color: #FFFFFF;
}

.sub-cta-note {
  font-size: 12px;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── TRUST & METRICS STRIP ──────────────────────────────────── */
.trust-bar-strip {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 28px 0;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.metric-item {
  padding: 0 12px;
  border-right: 1px solid var(--border-subtle);
}

.metric-item:last-child {
  border-right: none;
}

.metric-value {
  font-size: 2.2rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: #FFFFFF;
  margin-bottom: 4px;
}

.metric-value span.accent {
  color: var(--fire-accent);
}

.metric-label {
  font-size: 12.5px;
  color: var(--text-gray);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ── SECTION COMMON HEADERS ─────────────────────────────────── */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.fire-pill {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--fire-accent);
  background: rgba(255, 85, 0, 0.1);
  border: 1px solid rgba(255, 85, 0, 0.3);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-head h2 {
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  margin-bottom: 14px;
  color: #FFFFFF;
}

.section-head p {
  font-size: 1.05rem;
  color: var(--text-gray);
  line-height: 1.6;
}

/* ── BENEFITS SECTION (3 PILLARS, 80+ WORDS EACH) ───────────── */
.benefits-section {
  padding: 80px 0;
}

.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: 32px 28px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.benefit-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.5);
}

.benefit-icon-box {
  width: 52px;
  height: 52px;
  background: rgba(255, 85, 0, 0.12);
  border: 1px solid rgba(255, 85, 0, 0.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.benefit-card h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
  color: #FFFFFF;
}

.benefit-card p {
  font-size: 0.96rem;
  color: var(--text-gray);
  line-height: 1.7;
  flex-grow: 1;
}

.benefit-data-tag {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--gold-amber);
  font-weight: 700;
}

/* ── TECHNOLOGY FEATURE SPOTLIGHTS (ALTERNATING ROWS) ───────── */
.spotlights-section {
  padding: 60px 0 80px;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.spotlight-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 80px;
}

.spotlight-row:last-child {
  margin-bottom: 0;
}

.spotlight-row.reverse {
  direction: rtl;
}

.spotlight-row.reverse > * {
  direction: ltr;
}

.spotlight-img-wrap img {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 20px 45px rgba(0,0,0,0.6);
  width: 100%;
}

.spotlight-copy h3 {
  font-size: clamp(1.8rem, 2.6vw, 2.3rem);
  margin-bottom: 16px;
  color: #FFFFFF;
}

.spotlight-copy p {
  font-size: 1.02rem;
  color: var(--text-gray);
  line-height: 1.75;
  margin-bottom: 16px;
}

.spotlight-callout-box {
  background: var(--bg-card);
  border-left: 4px solid var(--fire-accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin-top: 20px;
}

.spotlight-callout-box p {
  font-size: 0.94rem;
  color: var(--text-light);
  margin-bottom: 0;
  font-weight: 500;
}

/* ── HOW-IT-WORKS 3-STEP SECTION ────────────────────────────── */
.steps-section {
  padding: 80px 0;
}

.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);
  padding: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.step-num-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 36px;
  height: 36px;
  background: var(--fire-orange);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  z-index: 2;
  box-shadow: 0 4px 12px var(--fire-glow);
}

.step-img-box {
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.step-img-box img {
  width: 100%;
  transition: transform 0.3s ease;
}

.step-card:hover .step-img-box img {
  transform: scale(1.03);
}

.step-card h4 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #FFFFFF;
}

.step-card p {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.65;
}

/* ── UNBOXING MANIFEST SECTION ──────────────────────────────── */
.unboxing-section {
  padding: 80px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.unboxing-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

.unboxing-visual img {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 20px 45px rgba(0,0,0,0.6);
  width: 100%;
}

.unboxing-items-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.unboxing-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px 20px;
}

.unboxing-badge {
  background: rgba(255, 85, 0, 0.15);
  color: var(--fire-accent);
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 85, 0, 0.3);
  white-space: nowrap;
}

.unboxing-item-text h4 {
  font-size: 1.08rem;
  margin-bottom: 4px;
  color: #FFFFFF;
}

.unboxing-item-text p {
  font-size: 0.92rem;
  color: var(--text-gray);
  line-height: 1.5;
}

/* ── COMPARISON MATRIX TABLE ────────────────────────────────── */
.comparison-section {
  padding: 80px 0;
}

.comparison-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
  min-width: 0 !important;
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comp-table th, .comp-table td {
  padding: 18px 22px;
  border-bottom: 1px solid var(--border-subtle);
}

.comp-table th {
  background: rgba(255,255,255,0.02);
  font-family: var(--font-heading);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-gray);
}

.comp-table th.featured {
  background: rgba(255, 85, 0, 0.12);
  color: var(--fire-accent);
  border-bottom: 2px solid var(--fire-orange);
}

.comp-table td.featured {
  background: rgba(255, 85, 0, 0.04);
  font-weight: 700;
  color: #FFFFFF;
}

.comp-table tr:last-child td {
  border-bottom: none;
}

.comp-check {
  color: var(--success-green);
  font-weight: 800;
  margin-right: 4px;
}

.comp-cross {
  color: var(--danger-red);
  font-weight: 800;
  margin-right: 4px;
}

/* ── TECHNICAL SPECIFICATIONS SHEET (10+ ROWS) ──────────────── */
.specs-section {
  padding: 60px 0 80px;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.specs-grid-ember {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.94rem;
  gap: 12px;
}

.spec-row .k {
  color: var(--text-gray);
  font-weight: 500;
}

.spec-row .v {
  color: #FFFFFF;
  font-weight: 700;
  text-align: right;
  font-family: var(--font-body);
}

/* ── CUSTOMER REVIEWS (ALL 6 VISIBLE) ───────────────────────── */
.reviews-section {
  padding: 80px 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.review-box:hover {
  border-color: rgba(255, 183, 0, 0.4);
}

.rev-stars {
  color: var(--gold-amber);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-box h4 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: #FFFFFF;
}

.review-box p {
  font-size: 0.93rem;
  color: var(--text-gray);
  line-height: 1.7;
  flex-grow: 1;
}

.rev-foot {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
  font-size: 12.5px;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rev-foot strong {
  color: #FFFFFF;
}

.chk-good {
  color: var(--success-green);
  font-weight: 600;
}

/* ── MAIN PACKAGES / CONVERSION SECTION (#packages) ─────────── */
.packages-section {
  padding: 80px 0 90px;
  background: linear-gradient(180deg, var(--bg-dark) 0%, #11141C 100%);
  position: relative;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.package-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.package-card:hover {
  transform: translateY(-4px);
}

.package-card.popular {
  border-color: var(--border-bright);
  background: #1B202D;
  box-shadow: 0 0 35px var(--fire-glow);
}

.package-card.best-value {
  border: 2px solid var(--fire-accent);
  background: #1E2333;
  box-shadow: 0 0 45px var(--fire-glow);
}

.badge-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--fire-accent);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  box-shadow: 0 4px 15px var(--fire-glow);
}

.ribbon-gold {
  background: linear-gradient(135deg, #FFB700 0%, #FF8800 100%);
  color: #000000;
}

.pkg-head {
  text-align: center;
  margin-bottom: 20px;
  margin-top: 8px;
}

.pkg-tier-name {
  font-size: 1.5rem;
  font-weight: 800;
  display: block;
  margin-bottom: 6px;
}

.pkg-discount-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
  color: var(--fire-accent);
  background: rgba(255, 85, 0, 0.15);
  border: 1px solid rgba(255, 85, 0, 0.3);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

.pkg-img-box {
  width: 140px;
  height: 140px;
  margin: 0 auto 20px;
}

.pkg-pricing {
  text-align: center;
  margin-bottom: 24px;
}

.pkg-old {
  font-size: 1.1rem;
  color: var(--text-dim);
  text-decoration: line-through;
  display: block;
}

.pkg-now {
  font-size: 2.5rem;
  font-weight: 900;
  font-family: var(--font-heading);
  color: #FFFFFF;
  line-height: 1.1;
}

.pkg-per {
  font-size: 13px;
  color: var(--gold-amber);
  font-weight: 700;
  display: block;
  margin-top: 4px;
}

.pkg-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13.5px;
  margin-bottom: 28px;
  flex-grow: 1;
}

.pkg-perks li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
}

.pkg-perks li.faded {
  color: var(--text-gray);
}

/* Aggressive CTA copy button (R8.4) */
.btn-pkg-cta {
  background: linear-gradient(135deg, var(--fire-accent) 0%, var(--fire-orange) 100%);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 800;
  padding: 16px 20px;
  border-radius: var(--radius-pill);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 20px var(--fire-glow);
  display: block;
  transition: var(--transition);
}

.btn-pkg-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--fire-glow);
  color: #FFFFFF;
}

.btn-gold-cta {
  background: linear-gradient(135deg, #FFB700 0%, #FF8800 100%);
  color: #000000;
  box-shadow: 0 4px 20px var(--gold-glow);
}

.btn-gold-cta:hover {
  box-shadow: 0 8px 30px var(--gold-glow);
  color: #000000;
}

/* ── GUARANTEE SEAL SECTION ─────────────────────────────────── */
.ember-guarantee {
  padding: 60px 0;
}

.guarantee-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 32px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.seal-icon {
  font-size: 64px;
  flex-shrink: 0;
}

.guarantee-copy h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.guarantee-copy p {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.65;
  margin-bottom: 18px;
}

/* ── FAQ ACCORDION SECTION (ALL 10 DISPLAYED) ───────────────── */
.ember-faq {
  padding: 80px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(255,255,255,0.15);
}

.faq-q {
  padding: 20px 24px;
  font-size: 1.08rem;
  font-weight: 700;
  color: #FFFFFF;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  gap: 16px;
}

.faq-q .toggle {
  font-size: 22px;
  color: var(--fire-accent);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-q .toggle {
  transform: rotate(45deg);
}

.faq-a {
  display: none;
  padding: 0 24px 22px;
  font-size: 0.96rem;
  color: var(--text-gray);
  line-height: 1.7;
}

.faq-item.active .faq-a {
  display: block;
}

/* ── STICKY BOTTOM CTA BAR ──────────────────────────────────── */
.sticky-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(14, 17, 24, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border-bright);
  padding: 12px 24px;
  z-index: 95;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -8px 25px rgba(0,0,0,0.6);
  transform: translateY(120%);
  transition: transform 0.3s ease;
}

.sticky-bottom-bar.visible {
  transform: translateY(0);
}

.sticky-bar-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.sticky-thumb {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid var(--border-subtle);
}

.sticky-info-title {
  font-size: 14px;
  font-weight: 800;
  color: #FFFFFF;
}

.sticky-info-sub {
  font-size: 12px;
  color: var(--gold-amber);
  font-weight: 600;
}

.sticky-btn-cta {
  background: linear-gradient(135deg, var(--fire-accent) 0%, var(--fire-orange) 100%);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 800;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  box-shadow: 0 0 20px var(--fire-glow);
}

/* ── FOOTER & POLICIES ──────────────────────────────────────── */
.ember-footer {
  background: #08090C;
  border-top: 1px solid var(--border-subtle);
  padding: 48px 0 36px;
  font-size: 13px;
  color: var(--text-dim);
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.footer-disclaimer {
  max-width: 780px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--text-gray);
}

.footer-links a:hover {
  color: var(--fire-orange);
}

.copyright {
  font-size: 12px;
}

/* ── COUNTRY PORTAL SPECIFIC (select-country.html) ───────────── */
.country-portal-wrapper {
  padding: 50px 24px 80px;
  max-width: 920px;
  margin: 0 auto;
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.country-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  transition: var(--transition);
}

.country-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.6);
}

.country-card.featured {
  border-color: var(--fire-accent);
  background: #191E2A;
  box-shadow: 0 0 25px var(--fire-glow);
}

.country-flag-details {
  display: flex;
  align-items: center;
  gap: 18px;
}

.country-flag-icon {
  font-size: 40px;
  line-height: 1;
}

.country-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: #FFFFFF;
}

.country-status-tag {
  font-size: 12px;
  color: var(--success-green);
  font-weight: 600;
}

.country-cta-btn {
  background: linear-gradient(135deg, var(--fire-accent) 0%, var(--fire-orange) 100%);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: block;
}

/* ── POLICY PAGE STYLES (privacy, terms, contact) ───────────── */
.policy-page-wrapper {
  padding: 60px 24px 90px;
  max-width: 860px;
  margin: 0 auto;
}

.policy-content {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.policy-content h1 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.policy-content h2 {
  font-size: 1.4rem;
  margin: 28px 0 12px;
  color: var(--fire-accent);
}

.policy-content p, .policy-content li {
  font-size: 0.98rem;
  color: var(--text-gray);
  line-height: 1.75;
  margin-bottom: 16px;
}

.policy-content ul {
  margin-left: 20px;
  margin-bottom: 16px;
}

/* Contact Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 24px;
}

.contact-info-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
}

.form-input, .form-textarea {
  background: var(--bg-dark);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: #FFFFFF;
  font-family: inherit;
  font-size: 14px;
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--fire-orange);
}

/* ── RESPONSIVE BREAKPOINTS (R5.1, R5.3, R5.4) ──────────────── */
@media (max-width: 1024px) {
  .hero-split-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  /* R5.4: Mobile hero image above fold */
  .spotlight-frame {
    order: 1;
    max-width: 460px;
    margin: 0 auto;
  }
  
  .hero-pitch-card {
    order: 2;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .metric-item {
    border-right: none;
  }

  .benefits-grid, .steps-grid, .reviews-grid, .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .unboxing-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .ember-alert-bar {
    font-size: 11px;
    gap: 8px;
    padding: 6px 12px;
  }

  .ember-nav {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .btn-nav-cta {
    display: none;
  }

  /* CRITICAL MOBILE FOLD HIERARCHY (390x844 Rule R5.4) */
  .ember-hero {
    padding: 16px 0 32px;
  }

  .hero-split-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .hero-pitch-card {
    display: contents;
  }

  .pitch-tag {
    order: 1;
    margin-bottom: 6px;
    font-size: 10.5px;
  }

  .ember-h1 {
    order: 2;
    font-size: 1.45rem;
    line-height: 1.25;
    margin-bottom: 10px;
  }

  .spotlight-frame {
    order: 3;
    padding: 12px 14px;
    margin-bottom: 10px;
    max-width: 100%;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  }

  .spotlight-label,
  .spotlight-pill {
    display: none;
  }

  .ember-hero-img {
    max-height: 175px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    margin: 0 auto;
    display: block;
  }

  .spotlight-frame .hero-trust-row {
    display: none;
  }

  .hero-price-card {
    order: 4;
    padding: 8px 14px;
    margin-bottom: 10px;
    gap: 8px;
  }

  .price-snapshot-sale {
    font-size: 1.6rem;
  }

  .pitch-cta-group {
    order: 5;
    margin-bottom: 12px;
    width: 100%;
  }

  .btn-primary-hero {
    padding: 13px 18px;
    font-size: 13.5px;
    width: 100%;
    text-align: center;
    max-width: 100%;
  }

  .sub-cta-note {
    font-size: 10.5px;
    gap: 6px;
    margin-top: 6px;
  }

  .stat-pills-grid {
    order: 6;
    grid-template-columns: 1fr;
    margin-bottom: 12px;
    gap: 8px;
  }

  .stat-pill {
    padding: 8px 12px;
    font-size: 12px;
  }

  .ember-lead {
    order: 7;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 12px;
  }

  .benefits-grid, .steps-grid, .reviews-grid, .packages-grid, .country-grid, .contact-grid {
    grid-template-columns: 1fr;
  }

  .spotlight-row, .spotlight-row.reverse {
    grid-template-columns: 1fr;
    gap: 32px;
    direction: ltr;
  }

  .specs-grid-ember {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .guarantee-card {
    flex-direction: column;
    text-align: center;
    padding: 28px 20px;
  }

  .sticky-bottom-bar {
    padding: 10px 16px;
  }
  
  .sticky-info-title {
    font-size: 12px;
  }
  
  .sticky-info-sub {
    font-size: 11px;
  }

  .sticky-btn-cta {
    padding: 10px 16px;
    font-size: 12px;
  }
}

/* Small mobile devices (480px down to 320px) — Zero horizontal overflow & above-fold CTA (R5.1, R5.4) */
@media (max-width: 480px) {
  .container, .container-narrow {
    padding: 0 16px;
  }

  .ember-hero {
    padding: 10px 0 24px;
  }

  .ember-h1 {
    font-size: 1.35rem;
    line-height: 1.22;
    margin-bottom: 8px;
  }

  .pitch-tag {
    font-size: 9.5px;
    margin-bottom: 4px;
  }

  .spotlight-frame {
    padding: 6px 10px;
    margin-bottom: 8px;
  }

  .ember-hero-img {
    max-height: 155px;
  }

  .hero-price-card {
    padding: 6px 10px;
    margin-bottom: 8px;
  }

  .price-snapshot-sale {
    font-size: 1.5rem;
  }

  .btn-primary-hero {
    padding: 11px 14px;
    font-size: 12.5px;
  }

  .metric-value {
    font-size: 1.8rem;
  }

  .comp-table th, .comp-table td {
    padding: 12px 14px;
    font-size: 12.5px;
  }

  .policy-content {
    padding: 24px 16px;
  }
}

@media (max-width: 340px) {
  .ember-h1 {
    font-size: 1.22rem;
    line-height: 1.2;
    margin-bottom: 6px;
  }

  .ember-hero-img {
    max-height: 135px;
  }

  .btn-primary-hero {
    padding: 10px 12px;
    font-size: 12px;
  }
}
