/* ================================================================
   EMBER THEME — VOYGE TRAVEL BACKPACK
   Style: High-Impact Urgency, Technical Aviation Gear, Dark Charcoal Aesthetic
   Palette: Dark Charcoal (#0B0D13) + Slate (#131722) + Surface (#1B202E)
            Blaze Orange (#FF9425 / #FF4D00) + Aviation Emerald (#1BBA86)
   Typography: Oswald (Headings), Work Sans (Body), Space Mono (Monospace Tags)
   ================================================================ */

:root {
  --bg-dark:          #0B0D13;
  --bg-surface:       #131722;
  --bg-card:          #1A2030;
  --bg-card-hover:    #222B40;
  --border-subtle:    rgba(255, 255, 255, 0.08);
  --border-focus:     rgba(255, 148, 37, 0.4);

  --fire-orange:      #FF9425;
  --fire-accent:      #FF4D00;
  --fire-glow:        rgba(255, 148, 37, 0.25);
  --emerald-green:    #1BBA86;
  --emerald-glow:     rgba(27, 186, 134, 0.2);
  --danger-red:       #EF4444;

  --text-white:       #FFFFFF;
  --text-gray:        #9CA3AF;
  --text-muted:       #6B7280;

  --font-hero:        'Oswald', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-text:        'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono:        'Space Mono', monospace;

  --container:        1200px;
  --container-narrow: 860px;
  --radius-sm:        6px;
  --radius-md:        12px;
  --radius-lg:        20px;
  --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-text);
  background-color: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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, h6 {
  font-family: var(--font-hero);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: var(--text-white);
}

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

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

.text-center {
  text-align: center;
}

/* ── URGENT ALERT BAR ─────────────────────────────────────── */
.ember-alert-bar {
  background: linear-gradient(90deg, #881337 0%, #BE123C 50%, #881337 100%);
  color: #fff;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  top: auto;
  z-index: 50;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.alert-pulse-tag {
  background: #FFE4E6;
  color: #9F1239;
  font-size: 10px;
  font-family: var(--font-mono);
  padding: 2px 7px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  letter-spacing: 0.05em;
}

.ember-timer {
  background: #000;
  color: var(--fire-orange);
  font-family: var(--font-mono);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.alert-sub-info {
  font-size: 11px;
  opacity: 0.85;
  font-weight: normal;
}

/* ── HEADER & NAVIGATION ──────────────────────────────────── */
.ember-header {
  background: rgba(11, 13, 19, 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: 20px;
}

.ember-logo {
  display: flex;
  align-items: center;
}

.brand-logo-img {
  height: 28px;
  width: auto;
}

.ember-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 26px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.nav-list a {
  color: var(--text-gray);
  padding: 6px 0;
}

.nav-list a:hover {
  color: var(--fire-orange);
}

.header-right-action {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-ember-nav {
  background: linear-gradient(135deg, var(--fire-orange) 0%, var(--fire-accent) 100%);
  color: #fff;
  font-family: var(--font-hero);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 18px var(--fire-glow);
  text-transform: uppercase;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}

.btn-ember-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 148, 37, 0.4);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
}

.hamburger-bar {
  width: 22px;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 360px;
  height: 100vh;
  background: var(--bg-dark);
  border-left: 1px solid var(--border-subtle);
  z-index: 1000;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.7);
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-subtle);
}

.mobile-drawer-close {
  font-size: 28px;
  color: var(--text-gray);
  line-height: 1;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 24px;
}

.mobile-nav-link {
  font-family: var(--font-hero);
  font-size: 18px;
  text-transform: uppercase;
  color: var(--text-white);
  display: block;
}

.mobile-drawer-cta {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

.btn-ember-mobile-cta {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, var(--fire-orange) 0%, var(--fire-accent) 100%);
  color: #fff;
  font-family: var(--font-hero);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 18px var(--fire-glow);
}

/* ── HERO SECTION ─────────────────────────────────────────── */
.ember-hero {
  padding: 48px 0 72px;
  background: radial-gradient(circle at 75% 30%, rgba(255, 148, 37, 0.08) 0%, transparent 60%);
}

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

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.eyebrow-badge {
  background: var(--bg-surface);
  border: 1px solid var(--fire-orange);
  color: var(--fire-orange);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.05em;
}

.hero-stars-inline {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-gray);
}

.stars-val {
  color: var(--emerald-green);
  font-size: 14px;
  letter-spacing: 1px;
}

.stars-score {
  font-weight: 700;
  color: var(--text-white);
}

.hero-h1 {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 18px;
  background: linear-gradient(180deg, #FFFFFF 30%, #D1D5DB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-gray);
  margin-bottom: 24px;
}

.hero-price-badge-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 24px;
  display: inline-block;
  width: 100%;
  max-width: 480px;
}

.price-callout {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 6px;
}

.price-from-label {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.price-numbers {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.price-original {
  font-size: 16px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-current {
  font-family: var(--font-hero);
  font-size: 32px;
  font-weight: 700;
  color: var(--text-white);
}

.price-discount-tag {
  background: rgba(27, 186, 134, 0.15);
  color: var(--emerald-green);
  border: 1px solid rgba(27, 186, 134, 0.4);
  font-size: 12px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
}

.price-subtext {
  font-size: 12px;
  color: var(--text-muted);
}

.hero-cta-wrap {
  margin-bottom: 24px;
}

.btn-ember-primary, .btn-primary {
  background: linear-gradient(135deg, var(--fire-orange) 0%, var(--fire-accent) 100%);
  color: #fff;
  font-family: var(--font-hero);
  font-size: 18px;
  font-weight: 700;
  padding: 18px 36px;
  border-radius: var(--radius-md);
  box-shadow: 0 6px 28px var(--fire-glow);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.03em;
  transition: var(--transition);
}

.btn-ember-primary:hover, .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(255, 148, 37, 0.45);
}

.hero-trust-notes {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-note-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-gray);
}

.trust-icon {
  width: 16px;
  height: 16px;
  color: var(--emerald-green);
  flex-shrink: 0;
}

.hero-product-frame {
  position: relative;
  background: radial-gradient(circle at center, rgba(255, 148, 37, 0.12) 0%, transparent 70%);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-element {
  max-height: 520px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.8));
}

.hero-floating-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(19, 23, 34, 0.92);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.badge-accent {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  color: var(--fire-orange);
  letter-spacing: 0.05em;
}

.badge-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-white);
}

/* ── TRUST METRICS BAR ────────────────────────────────────── */
.ember-trust-bar {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 28px 0;
}

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

.trust-metric-cell {
  text-align: center;
  border-right: 1px solid var(--border-subtle);
}

.trust-metric-cell:last-child {
  border-right: none;
}

.metric-number {
  display: block;
  font-family: var(--font-hero);
  font-size: 36px;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.1;
  margin-bottom: 4px;
}

.metric-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--text-gray);
  letter-spacing: 0.05em;
}

/* ── SECTION SHARED STYLES ────────────────────────────────── */
.section-title-wrap {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 52px;
}

.ember-section-tag {
  display: inline-block;
  background: rgba(255, 148, 37, 0.12);
  color: var(--fire-orange);
  border: 1px solid rgba(255, 148, 37, 0.3);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.section-h2 {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-lead {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.6;
}

/* ── 4 FEATURE PILLARS ────────────────────────────────────── */
.ember-features {
  padding: 90px 0;
}

.features-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-focus);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.feature-icon-box {
  width: 64px;
  height: 64px;
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border: 1px solid var(--border-subtle);
}

.feature-card-h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text-white);
}

.feature-card-body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-gray);
}

/* ── SPOTLIGHTS ───────────────────────────────────────────── */
.ember-spotlight {
  padding: 90px 0;
}

.ember-spotlight.alt-bg {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

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

.spotlight-grid.reverse-grid {
  grid-template-columns: 1.15fr 1fr;
}

.spotlight-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-subtle);
}

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

.spotlight-pill {
  display: inline-block;
  background: rgba(27, 186, 134, 0.12);
  color: var(--emerald-green);
  border: 1px solid rgba(27, 186, 134, 0.3);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

.spotlight-h2 {
  font-size: 28px;
  line-height: 1.25;
  margin-bottom: 18px;
}

.spotlight-p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-gray);
  margin-bottom: 16px;
}

.spotlight-stats-strip {
  display: flex;
  gap: 20px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.stat-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  min-width: 140px;
}

.stat-val {
  display: block;
  font-family: var(--font-hero);
  font-size: 22px;
  font-weight: 700;
  color: var(--fire-orange);
}

.stat-desc {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ── 3-STEP PROCESS ───────────────────────────────────────── */
.ember-steps {
  padding: 90px 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;
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-focus);
}

.step-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--fire-orange);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  z-index: 2;
}

.step-image-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid var(--border-subtle);
}

.step-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-gray);
}

/* ── UNBOXING SECTION ─────────────────────────────────────── */
.ember-unboxing {
  padding: 90px 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: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.unboxing-visual-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

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

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

.unboxing-item-row {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.item-count {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 800;
  color: var(--fire-orange);
  background: rgba(255, 148, 37, 0.12);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.item-details {
  flex: 1;
}

.item-name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
}

.item-sub {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.4;
}

.item-status-pill {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  color: var(--emerald-green);
  border: 1px solid rgba(27, 186, 134, 0.3);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

/* ── COST COMPARISON TABLE ────────────────────────────────── */
.ember-comparison {
  padding: 90px 0;
}

.table-container {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  text-align: left;
}

.comparison-table th, .comparison-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-subtle);
}

.comparison-table th {
  background: var(--bg-surface);
  font-family: var(--font-hero);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-white);
}

.comparison-table th.col-winner {
  color: var(--fire-orange);
  background: rgba(255, 148, 37, 0.08);
  border-bottom: 2px solid var(--fire-orange);
}

.feature-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-gray);
}

.winner-cell {
  background: rgba(255, 148, 37, 0.03);
  font-size: 14px;
}

.highlight-green {
  color: var(--emerald-green);
}

.highlight-orange {
  color: var(--fire-orange);
}

.winner-row {
  background: rgba(255, 148, 37, 0.08);
}

/* ── SPECS SHEET ──────────────────────────────────────────── */
.ember-specs {
  padding: 90px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.specs-grid-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.specs-table-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table th, .specs-table td {
  padding: 12px 18px;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 13px;
}

.specs-table th {
  width: 38%;
  color: var(--text-white);
  font-weight: 600;
  background: rgba(255, 255, 255, 0.02);
}

.specs-table td {
  color: var(--text-gray);
}

.specs-visual-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
}

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

.specs-caption {
  padding: 16px 20px;
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.5;
}

/* ── CUSTOMER REVIEWS (ALL 6 VISIBLE) ─────────────────────── */
.ember-reviews {
  padding: 90px 0;
}

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

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-focus);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.review-author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar-wrap {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--fire-orange) 0%, var(--fire-accent) 100%);
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-hero);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.review-author-name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
}

.review-location {
  font-size: 12px;
  color: var(--text-muted);
}

.review-stars-wrap {
  display: flex;
  gap: 2px;
}

.star-icon {
  width: 15px;
  height: 15px;
}

.review-verified-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(27, 186, 134, 0.12);
  color: var(--emerald-green);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  width: fit-content;
}

.check-icon {
  width: 13px;
  height: 13px;
}

.review-headline {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 12px;
  color: var(--text-white);
}

.review-body-text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-gray);
}

/* ── FAQ ACCORDION ────────────────────────────────────────── */
.ember-faq {
  padding: 90px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.faq-list-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.faq-accordion-item.active {
  border-color: var(--border-focus);
}

.faq-header-btn {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
  color: var(--text-white);
}

.faq-question-text {
  font-family: var(--font-hero);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.faq-toggle-icon {
  font-size: 24px;
  font-weight: 300;
  color: var(--fire-orange);
  line-height: 1;
}

.faq-panel-content {
  padding: 0 24px 22px;
}

.faq-answer-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-gray);
}

/* ── PACKAGES & PRICING (THE GOLDEN FUNNEL) ───────────────── */
.ember-packages {
  padding: 90px 0 120px;
}

.packages-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.package-tier-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}

.package-tier-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-focus);
}

.package-tier-card.featured-tier {
  border: 2px solid var(--fire-orange);
  background: linear-gradient(180deg, rgba(255, 148, 37, 0.06) 0%, var(--bg-card) 40%);
  box-shadow: 0 12px 36px rgba(255, 148, 37, 0.15);
}

.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--fire-orange) 0%, var(--fire-accent) 100%);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.best-deal-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--emerald-green);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.package-header {
  text-align: center;
  margin-bottom: 20px;
}

.package-qty {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--fire-orange);
  letter-spacing: 0.08em;
}

.package-title {
  font-size: 22px;
  font-weight: 700;
  margin: 4px 0 2px;
}

.package-sub {
  font-size: 13px;
  color: var(--text-muted);
}

.package-img-wrap {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.package-img-wrap img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
}

.package-price-wrap {
  text-align: center;
  padding: 18px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 22px;
}

.price-compare-strike {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-current-large {
  font-family: var(--font-hero);
  font-size: 44px;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1;
  margin: 6px 0;
}

.price-unit-calc {
  font-size: 12px;
  color: var(--emerald-green);
  font-weight: 600;
  margin-bottom: 8px;
}

.price-savings-pill {
  display: inline-block;
  background: rgba(255, 148, 37, 0.15);
  color: var(--fire-orange);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 6px;
}

.package-shipping-note {
  font-size: 12px;
  color: var(--text-gray);
}

.package-perks-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}

.package-perks-list li {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.4;
}

.package-cta-wrap {
  margin-top: auto;
}

.btn-package-cta {
  display: block;
  text-align: center;
  background: var(--bg-surface);
  border: 1px solid var(--fire-orange);
  color: var(--fire-orange);
  font-family: var(--font-hero);
  font-size: 15px;
  font-weight: 700;
  padding: 15px 18px;
  border-radius: var(--radius-md);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: var(--transition);
}

.btn-package-cta:hover {
  background: var(--fire-orange);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--fire-glow);
}

.btn-featured-cta {
  background: linear-gradient(135deg, var(--fire-orange) 0%, var(--fire-accent) 100%);
  color: #fff;
  border: none;
  box-shadow: 0 4px 20px var(--fire-glow);
}

.btn-featured-cta:hover {
  background: linear-gradient(135deg, #FF9425 0%, #D83C00 100%);
}

.package-guarantee-banner {
  margin-top: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.guarantee-badge-col {
  flex-shrink: 0;
}

.guarantee-h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-white);
}

.guarantee-p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-gray);
}

/* ── STICKY BOTTOM CONVERSION BAR ─────────────────────────── */
.ember-sticky-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(11, 13, 19, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-subtle);
  padding: 12px 0;
  z-index: 95;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

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

.sticky-selection-summary {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.sticky-label {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.sticky-tier-name {
  font-family: var(--font-hero);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-white);
}

.sticky-price {
  font-size: 13px;
  color: var(--emerald-green);
  font-weight: 600;
}

.btn-ember-sticky-cta, .sticky-btn-cta {
  background: linear-gradient(135deg, var(--fire-orange) 0%, var(--fire-accent) 100%);
  color: #fff;
  font-family: var(--font-hero);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 18px var(--fire-glow);
  text-transform: uppercase;
  white-space: normal;
  line-height: 1.35;
  max-width: 100%;
  box-sizing: border-box;
}

.btn-ember-sticky-cta:hover, .sticky-btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 148, 37, 0.45);
}

/* ── FOOTER ───────────────────────────────────────────────── */
.ember-footer {
  background: #06070A;
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 100px;
  font-size: 13px;
  color: var(--text-gray);
}

.footer-content-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.footer-brand-row {
  max-width: 540px;
}

.footer-logo-img {
  margin: 0 auto 12px;
  height: 28px;
  width: auto;
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer-links-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-legal-link {
  color: var(--text-gray);
}

.footer-legal-link:hover {
  color: var(--fire-orange);
  text-decoration: underline;
}

.footer-sep {
  color: var(--text-muted);
}

.footer-contact-row {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-tel-link {
  color: var(--text-white);
  font-weight: 600;
}

.footer-disclaimer-box {
  max-width: 800px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
  font-size: 11px;
  line-height: 1.6;
  color: var(--text-muted);
}

.footer-copyright {
  margin-top: 12px;
  color: var(--text-muted);
}

/* ── SUBPAGES (SELECT-COUNTRY, CONTACT, PRIVACY, TERMS) ───── */
.subpage-body {
  background: var(--bg-dark);
}

.subpage-header {
  position: static;
}

.header-secure-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--emerald-green);
}

.lock-icon {
  width: 16px;
  height: 16px;
}

.country-portal-main, .contact-main, .policy-main {
  padding: 60px 0 90px;
}

.portal-card, .policy-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.portal-badge {
  display: inline-block;
  background: rgba(255, 148, 37, 0.12);
  color: var(--fire-orange);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}

.portal-h1, .policy-h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}

.portal-subtitle, .policy-intro {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 32px;
}

.policy-meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-subtle);
}

.policy-block {
  margin-bottom: 28px;
}

.policy-block h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-white);
}

.policy-block p, .policy-block ul {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-gray);
}

.policy-block ul {
  padding-left: 20px;
  margin-top: 8px;
}

.policy-block li {
  margin-bottom: 6px;
}

/* Selected Bundle Summary in Portal */
.selected-bundle-summary-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-focus);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 32px;
}

.summary-card-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

.summary-thumb-box {
  width: 70px;
  height: 70px;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.summary-thumb-box img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
}

.summary-tag-text {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  color: var(--fire-orange);
  letter-spacing: 0.05em;
}

.summary-pack-title {
  font-size: 18px;
  font-weight: 700;
  margin: 2px 0;
}

.summary-pack-price {
  font-size: 13px;
  color: var(--emerald-green);
  font-weight: 600;
}

/* Region Items */
.regions-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.region-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.primary-region {
  border-color: var(--fire-orange);
  background: linear-gradient(180deg, rgba(255, 148, 37, 0.05) 0%, var(--bg-surface) 100%);
}

.region-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.region-flag-wrap {
  font-size: 36px;
  line-height: 1;
}

.region-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.region-avail-tag {
  font-size: 12px;
  color: var(--emerald-green);
  font-weight: 600;
}

.btn-hub-proceed {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  text-align: center;
  line-height: 1.35;
  font-size: 15px;
  padding: 14px 20px;
  word-break: normal;
  overflow-wrap: break-word;
}

.international-notice-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}

.notice-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-white);
}

.notice-text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-gray);
  margin-bottom: 16px;
}

.btn-intl-checkout {
  display: inline-block;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-gray);
  font-family: var(--font-hero);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

.btn-intl-checkout:hover {
  color: #fff;
  border-color: var(--fire-orange);
}

.portal-trust-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 28px;
  flex-wrap: wrap;
}

.trust-badge-cell {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-gray);
}

.badge-icon-svg {
  width: 22px;
  height: 22px;
}

/* Contact Methods & Form */
.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.contact-method-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 22px;
}

.method-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}

.method-desc {
  font-size: 12px;
  color: var(--text-muted);
}

.method-val {
  display: block;
  font-family: var(--font-hero);
  font-size: 18px;
  font-weight: 700;
  color: var(--fire-orange);
  margin: 6px 0;
}

.method-hours {
  font-size: 11px;
  color: var(--text-muted);
}

.contact-form-section {
  border-top: 1px solid var(--border-subtle);
  padding-top: 36px;
}

.form-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

.form-desc {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 24px;
}

.support-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-white);
}

.form-input {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: #fff;
  font-family: var(--font-text);
  font-size: 14px;
  outline: none;
  transition: var(--transition);
}

.form-input:focus {
  border-color: var(--fire-orange);
  box-shadow: 0 0 0 2px rgba(255, 148, 37, 0.2);
}

select.form-input option {
  background: var(--bg-card);
  color: #fff;
}

.btn-submit-contact {
  align-self: flex-start;
  font-size: 15px;
  padding: 14px 28px;
  margin-top: 6px;
}

.form-status-alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.alert-success {
  background: rgba(27, 186, 134, 0.15);
  border: 1px solid var(--emerald-green);
  color: #D1FAE5;
}

.alert-error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid var(--danger-red);
  color: #FEE2E2;
}

.subpage-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 32px 0;
  font-size: 12px;
  color: var(--text-muted);
}

.subpage-footer-links {
  margin-bottom: 8px;
}

.subpage-footer-links a {
  color: var(--text-gray);
}

.subpage-footer-links a:hover {
  color: var(--fire-orange);
}

.subpage-copy {
  color: var(--text-muted);
}

/* ── RESPONSIVE BREAKPOINTS (TESTED FROM 320PX TO 1440PX) ─── */
@media (max-width: 1024px) {
  .hero-h1 {
    font-size: 38px;
  }
  .features-card-grid {
    grid-template-columns: 1fr;
  }
  .reviews-masonry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .packages-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .package-tier-card.featured-tier {
    order: -1;
  }
}

@media (max-width: 768px) {
  .ember-nav {
    display: none;
  }
  .btn-ember-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .hero-split-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-h1 {
    font-size: 32px;
  }
  .trust-bar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .trust-metric-cell:nth-child(2) {
    border-right: none;
  }
  .spotlight-grid, .spotlight-grid.reverse-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .unboxing-layout {
    grid-template-columns: 1fr;
  }
  .specs-grid-layout {
    grid-template-columns: 1fr;
  }
  .reviews-masonry-grid {
    grid-template-columns: 1fr;
  }
  .contact-methods-grid {
    grid-template-columns: 1fr;
  }
  .form-row-2 {
    grid-template-columns: 1fr;
  }
  .package-guarantee-banner {
    flex-direction: column;
    text-align: center;
    padding: 24px;
    gap: 16px;
  }
  .portal-card, .policy-card {
    padding: 28px 20px;
  }
  .region-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .btn-hub-proceed {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  text-align: center;
  line-height: 1.35;
  font-size: 15px;
  padding: 14px 20px;
  word-break: normal;
  overflow-wrap: break-word;
}
  .sticky-bar-flex {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 10px;
  }
  .sticky-selection-summary {
    justify-content: center;
  }
  .btn-ember-sticky-cta, .sticky-btn-cta {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-h1 {
    font-size: 26px;
  }
  .price-current {
    font-size: 26px;
  }
  .hero-floating-badge {
    bottom: 10px;
    right: 10px;
    padding: 8px 12px;
  }
  .trust-bar-grid {
    grid-template-columns: 1fr;
  }
  .trust-metric-cell {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 14px;
  }
  .trust-metric-cell:last-child {
    border-bottom: none;
  }
  .btn-ember-primary, .btn-primary {
    font-size: 15px;
    padding: 16px 20px;
    width: 100%;
  }
}

/* 320px ultra-small screen defense */
@media (max-width: 340px) {
  .container, .container-narrow {
    padding: 0 12px;
  }
  .hero-h1 {
    font-size: 22px;
  }
  .package-tier-card {
    padding: 24px 16px;
  }
  .price-current-large {
    font-size: 34px;
  }
}


/* ── ADDITIONAL EXPLICIT CLASS SELECTORS (100% COVERAGE) ─── */
.btn-nav-cta {
  display: inline-flex;
  align-items: center;
}

.col-feature {
  width: 35%;
}

.col-alt {
  width: 20%;
  color: var(--text-gray);
}

.copyright-year {
  display: inline;
}

.flag-icon {
  display: inline-block;
  font-size: 32px;
}

.guarantee-text-col {
  flex: 1;
}

.hero-copy-column {
  display: flex;
  flex-direction: column;
}

.hero-image-column {
  display: flex;
  justify-content: center;
  align-items: center;
}

.intl-action-wrap {
  margin-top: 12px;
}

.region-action {
  flex-shrink: 0;
}

.region-text {
  display: flex;
  flex-direction: column;
}

.review-avatar-char {
  line-height: 1;
}

.spotlight-copy {
  display: flex;
  flex-direction: column;
}

.summary-info-box {
  display: flex;
  flex-direction: column;
}

.traveler-count {
  display: inline-block;
  color: var(--text-gray);
}


/* ── SMALL SCREEN BUTTON OVERFLOW DEFENSE & A11Y STYLES ───── */
.btn-primary, .btn-ember-primary, .btn-package-cta, .btn-featured-cta, 
.btn-hub-proceed, .btn-ember-sticky-cta, .sticky-btn-cta, .btn-submit-contact, .btn-ember-mobile-cta {
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  text-align: center;
  line-height: 1.35;
  word-break: normal;
  overflow-wrap: break-word;
}

.intl-notice-badge {
  display: inline-block;
  background: rgba(239, 68, 68, 0.12);
  color: #F87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.04em;
  max-width: 100%;
  box-sizing: border-box;
}

.notice-email-link {
  color: var(--fire-orange);
  text-decoration: underline;
}

.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 999;
}

.drawer-overlay.active {
  display: block;
}

@media (max-width: 480px) {
  .btn-hub-proceed {
    width: 100%;
    font-size: 14px;
    padding: 14px 16px;
  }
  .btn-package-cta {
    font-size: 14px;
    padding: 13px 14px;
  }
  .btn-ember-sticky-cta, .sticky-btn-cta {
    font-size: 13.5px;
    padding: 12px 14px;
  }
  .portal-card, .policy-card {
    padding: 24px 16px;
  }
  .region-item {
    padding: 18px 14px;
  }
}

@media (max-width: 360px) {
  .btn-hub-proceed {
    font-size: 13px;
    padding: 12px 10px;
  }
  .btn-package-cta {
    font-size: 12px;
    padding: 12px 8px;
  }
  .btn-ember-sticky-cta, .sticky-btn-cta {
    font-size: 12px;
    padding: 10px 8px;
  }
  .btn-ember-primary, .btn-primary {
    font-size: 14px;
    padding: 14px 12px;
  }
  .portal-card, .policy-card {
    padding: 20px 12px;
  }
  .portal-h1, .policy-h1 {
    font-size: 24px;
  }
}

@media (max-width: 360px) {
  .featured-badge, .best-deal-badge {
    font-size: 9.5px;
    padding: 3px 8px;
    max-width: 90%;
    white-space: normal;
    text-align: center;
  }
}
