/* ================================================================
   BLUELUME GLASSES — NORDIC THEME
   Aesthetic: Clean Scandinavian Optical & Vision Hardware (DTC Eyewear)
   Palette: Warm Paper (#FAF9F6) + Deep Charcoal (#0F172A) + Sapphire Accent (#0284C7) + Gold (#D97706)
   Fonts: DM Serif Display (Headings), Plus Jakarta Sans (Body), IBM Plex Mono (Specs/Data)
   Strict Compliance: 320px-1440px zero horizontal overflow, Golden Funnel R8.3
   ================================================================ */

:root {
  --paper-bg:       #FAF9F6;
  --card-bg:        #FFFFFF;
  --card-subtle:    #F8FAFC;
  --deep-bg:        #0F172A;
  --border-light:   #E2E8F0;
  --border-mid:     #CBD5E1;
  --border-dark:    #334155;

  --teal:           #0284C7;
  --teal-dark:      #0369A1;
  --teal-soft:      #E0F2FE;
  --teal-glow:      rgba(2, 132, 199, 0.18);
  --gold:           #D97706;
  --gold-soft:      #FEF3C7;
  --green-online:   #10B981;

  --ink-primary:    #0F172A;
  --ink-secondary:  #334155;
  --ink-muted:      #64748B;
  --ink-dim:        #94A3B8;

  --font-serif:     'DM Serif Display', Georgia, serif;
  --font-sans:      'Plus Jakarta Sans', -apple-system, sans-serif;
  --font-mono:      'IBM Plex Mono', monospace;

  --container:        1180px;
  --container-narrow: 860px;
  --radius-sm:        8px;
  --radius-md:        16px;
  --radius-lg:        28px;
  --radius-pill:      9999px;
  --shadow-card:      0 8px 32px rgba(15, 23, 42, 0.06);
  --shadow-hover:     0 16px 48px rgba(15, 23, 42, 0.12);
  --transition:       all 0.25s 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: light;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body.theme-nordic {
  font-family: var(--font-sans);
  background-color: var(--paper-bg);
  color: var(--ink-primary);
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* ── CONTAINERS & UTILITIES ──────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section {
  padding: 96px 0;
}

.bg-subtle {
  background-color: var(--card-subtle);
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.section-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 3.8vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink-primary);
  margin-bottom: 16px;
}

.section-head p {
  font-size: 1.05rem;
  color: var(--ink-secondary);
  line-height: 1.75;
}

.nordic-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-soft);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

/* ── TOP ANNOUNCEMENT BAR ────────────────────────────────────── */
.announcement-bar {
  background-color: var(--deep-bg);
  color: #FFFFFF;
  padding: 10px 16px;
  font-size: 13px;
  text-align: center;
  position: relative;
  z-index: 101;
}

.announcement-inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--green-online);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.announcement-timer {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--gold-soft);
}

/* ── STICKY NAVIGATION (R8.1) ─────────────────────────────────── */
.nordic-nav {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(250, 249, 246, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  z-index: 100;
  transition: var(--transition);
}

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

.nordic-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nordic-brand img {
  height: 34px;
  width: auto;
}

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

.nav-links a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-secondary);
  transition: var(--transition);
}

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

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

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--teal);
  color: #FFFFFF !important;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-sans);
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  box-shadow: 0 4px 14px var(--teal-glow);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-nav-cta:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.3);
}

.hamburger-btn {
  display: none;
  background: none;
  border: 1px solid var(--border-mid);
  font-size: 22px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  color: var(--ink-primary);
  cursor: pointer;
  line-height: 1;
}

/* ── MOBILE NAVIGATION DRAWER ────────────────────────────────── */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 998;
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  max-width: 85vw;
  height: 100%;
  background: var(--card-bg);
  box-shadow: -8px 0 32px rgba(15, 23, 42, 0.2);
  z-index: 999;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 24px;
}

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

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

.drawer-close {
  background: none;
  border: none;
  font-size: 28px;
  color: var(--ink-muted);
  cursor: pointer;
  line-height: 1;
}

.drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}

.drawer-links a {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink-primary);
  display: block;
}

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

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 16px 36px;
  background: var(--teal);
  color: #FFFFFF !important;
  font-family: var(--font-sans);
  font-size: 15.5px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  text-decoration: none;
  box-shadow: 0 6px 24px var(--teal-glow);
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(2, 132, 199, 0.35);
}

.btn-package-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px 20px;
  background: var(--paper-bg);
  color: var(--ink-primary) !important;
  border: 1.5px solid var(--border-mid);
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: var(--transition);
  margin-top: auto;
}

.btn-package-cta:hover {
  border-color: var(--teal);
  color: var(--teal) !important;
  background: #FFFFFF;
}

.btn-package-cta.highlight-btn {
  background: var(--teal);
  color: #FFFFFF !important;
  border-color: var(--teal);
  box-shadow: 0 6px 20px var(--teal-glow);
}

.btn-package-cta.highlight-btn:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

/* ── HERO SECTION (R8.2 & R5.4: Mobile Above Fold) ──────────── */
.nordic-hero {
  padding: 64px 0 88px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 540px;
  border-radius: var(--radius-lg);
  overflow: visible;
  box-shadow: var(--shadow-card);
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  padding: 16px;
}

.hero-product-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  object-fit: contain;
  display: block;
}

/* Protected Mobile Badge Styling (No Clipping!) */
.hero-img-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #FFFFFF;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 2;
  max-width: calc(100% - 28px);
  box-sizing: border-box;
  white-space: nowrap;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #38BDF8;
  display: inline-block;
}

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

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

.rating-pill {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--gold);
  background: var(--gold-soft);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.3rem, 4.2vw, 3.4rem);
  line-height: 1.15;
  color: var(--ink-primary);
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--ink-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}

.hero-price-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  margin-bottom: 28px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.price-from {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  margin-bottom: 4px;
}

.price-val-wrap {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-current {
  font-family: var(--font-sans);
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
}

.price-each {
  font-size: 14px;
  color: var(--ink-muted);
}

.price-regular {
  font-size: 15px;
  color: var(--ink-dim);
  text-decoration: line-through;
}

.discount-badge {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: #059669;
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.hero-cta-action {
  align-self: flex-start;
  margin-bottom: 24px;
}

.hero-trust-notes {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--ink-secondary);
}

.trust-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
}

/* ── TRUST STRIP / NUMERICAL PROOF ───────────────────────────── */
.trust-strip {
  padding: 48px 0;
  background: var(--deep-bg);
  color: #FFFFFF;
}

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

.stat-card {
  text-align: center;
  padding: 12px;
}

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.3rem;
  font-weight: 400;
  color: #38BDF8;
  line-height: 1.1;
  margin-bottom: 8px;
}

.stat-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 6px;
}

.stat-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

/* ── BENEFITS SECTION ────────────────────────────────────────── */
.nordic-benefits {
  background: var(--paper-bg);
}

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

.benefit-card {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

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

.benefit-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: var(--teal-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.benefit-icon-wrap img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.benefit-card h3 {
  font-family: var(--font-sans);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink-primary);
  margin-bottom: 14px;
  line-height: 1.3;
}

.benefit-card p {
  font-size: 15px;
  color: var(--ink-secondary);
  line-height: 1.7;
}

/* ── SPOTLIGHT SECTIONS (ALTERNATING) ────────────────────────── */
.spotlight-section {
  overflow: hidden;
}

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

.spotlight-row.reverse {
  direction: rtl;
}

.spotlight-row.reverse > * {
  direction: ltr;
}

.spotlight-visual {
  position: relative;
}

.spotlight-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  display: block;
}

.spotlight-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.4vw, 2.7rem);
  line-height: 1.2;
  color: var(--ink-primary);
  margin: 12px 0 20px;
}

.spotlight-content p {
  font-size: 15.5px;
  color: var(--ink-secondary);
  line-height: 1.75;
  margin-bottom: 18px;
}

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

/* ── STEPS SECTION ───────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step-card {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
}

.step-img-wrap {
  position: relative;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 22px;
}

.step-img-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.step-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--deep-bg);
  color: #FFFFFF;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.step-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink-primary);
}

.step-card p {
  font-size: 14.5px;
  color: var(--ink-secondary);
  line-height: 1.65;
}

/* ── UNBOXING SECTION ────────────────────────────────────────── */
.unboxing-stage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.unboxing-hero-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

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

.manifest-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  gap: 16px;
}

.manifest-meta strong {
  display: block;
  font-size: 15px;
  color: var(--ink-primary);
  margin-bottom: 3px;
}

.manifest-meta span {
  font-size: 13px;
  color: var(--ink-muted);
}

.manifest-badge.verified {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  background: #ECFDF5;
  color: #059669;
  border: 1px solid #A7F3D0;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  flex-shrink: 0;
}

/* ── COMPARISON TABLE ────────────────────────────────────────── */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.comparison-table th,
.comparison-table td {
  padding: 18px 24px;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
  font-size: 14.5px;
}

.comparison-table thead th {
  background: var(--deep-bg);
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14px;
}

.comparison-table thead th.highlight-col {
  background: var(--teal-dark);
  color: #FFFFFF;
}

.comparison-table td.highlight-col {
  background: #F0F9FF;
  font-weight: 700;
  color: var(--teal-dark);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

/* ── SPECS GRID ──────────────────────────────────────────────── */
.specs-grid {
  max-width: 860px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 16px 32px;
  box-shadow: var(--shadow-card);
}

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

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

.spec-label {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-muted);
  flex-shrink: 0;
}

.spec-value {
  font-weight: 600;
  color: var(--ink-primary);
  text-align: right;
}

/* ── REVIEWS SECTION ─────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

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

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

.review-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
}

.verified-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: #059669;
  background: #ECFDF5;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
}

.review-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink-primary);
  margin-bottom: 12px;
  line-height: 1.35;
}

.review-text {
  font-size: 14.5px;
  color: var(--ink-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

.review-author {
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.author-name {
  display: block;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink-primary);
}

.author-loc {
  display: block;
  font-size: 12px;
  color: var(--ink-muted);
}

/* ── PACKAGES & CONVERSION (R8.3 & R8.4) ─────────────────────── */
.packages-section {
  padding: 96px 0;
  background: var(--card-subtle);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.package-card {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

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

.package-card.highlight {
  border-color: var(--teal);
  box-shadow: 0 12px 40px rgba(2, 132, 199, 0.15);
}

.package-badge-wrap {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
}

.gold-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: #92400E;
  background: #FEF3C7;
  border: 1px solid #FCD34D;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.teal-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: #0369A1;
  background: #E0F2FE;
  border: 1px solid #BAE6FD;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.pkg-header {
  text-align: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 18px;
}

.pkg-tier-name {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  margin-bottom: 6px;
}

.pkg-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--ink-primary);
  margin-bottom: 4px;
}

.pkg-units {
  font-size: 13px;
  color: var(--ink-muted);
}

.pkg-pricing {
  text-align: center;
  margin-bottom: 22px;
}

.pkg-strike {
  font-size: 14px;
  color: var(--ink-dim);
  text-decoration: line-through;
}

.pkg-price {
  font-family: var(--font-sans);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1.1;
  margin: 4px 0;
}

.pkg-per-unit {
  font-size: 13px;
  color: var(--ink-muted);
  margin-bottom: 8px;
}

.pkg-saving {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 700;
  color: #059669;
  background: #ECFDF5;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  display: inline-block;
}

.pkg-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-secondary);
  margin-bottom: 24px;
}

.pkg-features li::before {
  content: "✓ ";
  color: var(--teal);
  font-weight: 800;
}

/* ── FAQ ACCORDION ───────────────────────────────────────────── */
.faq-section {
  background: var(--paper-bg);
}

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

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--teal);
  box-shadow: 0 4px 16px rgba(2, 132, 199, 0.08);
}

.faq-q {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink-primary);
  text-align: left;
  gap: 16px;
}

.faq-arrow {
  font-size: 14px;
  color: var(--ink-muted);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  color: var(--teal);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}

.faq-item.active .faq-a {
  max-height: 500px;
  padding: 0 24px 20px 24px;
}

.faq-a p {
  font-size: 15px;
  color: var(--ink-secondary);
  line-height: 1.7;
}

/* ── FINAL CTA SECTION ───────────────────────────────────────── */
.nordic-final-cta {
  padding: 80px 0 100px;
}

.final-cta-card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--deep-bg);
  border-radius: var(--radius-lg);
  padding: 64px 40px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.3);
}

.final-cta-card h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: #FFFFFF;
  margin: 14px 0 18px;
  line-height: 1.2;
}

.final-cta-card p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

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

.final-trust-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* ── STICKY BOTTOM BAR ───────────────────────────────────────── */
.sticky-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(15, 23, 42, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 12px 24px;
  z-index: 99;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

.sticky-bar-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.sticky-pill {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  background: #38BDF8;
  color: var(--deep-bg);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.sticky-price-text {
  font-size: 14px;
  color: #FFFFFF;
}

.sticky-btn-cta {
  background: var(--teal);
  color: #FFFFFF !important;
  font-size: 13.5px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px var(--teal-glow);
  transition: var(--transition);
  white-space: nowrap;
}

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

/* ── GLOBAL FOOTER ───────────────────────────────────────────── */
.site-footer {
  background: var(--deep-bg);
  color: rgba(255, 255, 255, 0.7);
  padding: 72px 0 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

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

.footer-logo {
  height: 32px;
  width: auto;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  max-width: 360px;
}

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

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

.footer-links-col a:hover {
  color: #38BDF8;
}

.footer-disclaimer {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
  font-size: 12px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  flex-wrap: wrap;
  gap: 12px;
}

/* ── POLICY CARDS & CONTACT FORMS ────────────────────────────── */
.policy-card {
  max-width: var(--container-narrow);
  margin: 40px auto 80px;
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-card);
}

.policy-card h1 {
  font-family: var(--font-serif);
  font-size: 2.3rem;
  margin-bottom: 8px;
  color: var(--ink-primary);
}

.policy-date {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--teal);
  margin-bottom: 28px;
  display: block;
}

.policy-content h2 {
  font-size: 1.35rem;
  margin: 28px 0 12px;
  color: var(--ink-primary);
}

.policy-content p, .policy-content li {
  font-size: 15px;
  color: var(--ink-secondary);
  line-height: 1.7;
  margin-bottom: 14px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-secondary);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  background: var(--paper-bg);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--ink-primary);
  font-family: inherit;
  font-size: 14px;
  box-sizing: border-box;
}

.form-input:focus {
  outline: none;
  border-color: var(--teal);
}

.form-status-notice {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: var(--radius-md);
  padding: 18px;
  margin-top: 20px;
  color: var(--ink-primary);
}

.status-icon {
  width: 24px;
  height: 24px;
  background: #3B82F6;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  flex-shrink: 0;
}

.status-content strong {
  display: block;
  color: #1E3A8A;
  font-size: 15px;
  margin-bottom: 4px;
}

.status-content p {
  font-size: 13.5px;
  color: var(--ink-secondary);
  margin-bottom: 8px;
  line-height: 1.5;
}

.status-alt {
  font-size: 13px;
  color: var(--ink-muted);
}

.status-link {
  color: var(--teal);
  font-weight: 700;
  text-decoration: underline;
}

/* ── HUB CARD & DESTINATION ROUTING (R8.3) ────────────────────── */
.hub-card {
  max-width: 620px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
}

.hub-header {
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 20px;
  margin-bottom: 24px;
}

.hub-flag {
  font-size: 38px;
  line-height: 1;
}

.hub-meta h3 {
  font-size: 1.35rem;
  color: var(--ink-primary);
  margin-bottom: 4px;
}

.hub-meta p {
  font-size: 13.5px;
  color: var(--ink-muted);
  margin-bottom: 0;
}

.hub-info-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.hub-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: var(--paper-bg);
  border-radius: var(--radius-sm);
  font-size: 13.5px;
}

.hub-row span:first-child {
  color: var(--ink-muted);
}

.hub-row span:last-child {
  font-weight: 600;
  color: var(--ink-primary);
}

.btn-hub-proceed {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  background: var(--teal);
  color: #FFFFFF !important;
  font-family: var(--font-sans);
  font-size: 15.5px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  text-decoration: none;
  box-shadow: 0 6px 20px var(--teal-glow);
  transition: var(--transition);
  border: none;
  cursor: pointer;
  box-sizing: border-box;
}

.btn-hub-proceed:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
}

.merchant-confirmation {
  font-size: 12px;
  color: var(--ink-dim);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}

.stepper-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin: 28px 0 40px;
  font-family: var(--font-mono);
}

.step-node {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-muted);
  font-size: 12.5px;
}

.step-node.active {
  color: var(--teal);
  font-weight: 700;
}

.step-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  background: var(--card-bg);
}

.step-node.active .step-circle {
  border-color: var(--teal);
  background: var(--teal);
  color: #FFFFFF;
}

/* ── RESPONSIVE BREAKPOINTS (320px–1024px) ───────────────────── */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-visual {
    order: -1; /* Ensures image is at the very top of mobile viewport (R5.4) */
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .spotlight-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .spotlight-row.reverse {
    direction: ltr;
  }
  .unboxing-stage {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  /* Keep the approved purchase action visible before visitors scroll. */
  .nav-inner {
    height: auto;
    min-height: 76px;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .nordic-brand { order: 1; }
  .nav-cta-wrap { display: contents; }
  .nav-cta-wrap .hamburger-btn { order: 2; }
  .nav-cta-wrap .btn-nav-cta {
    order: 3;
    flex-basis: 100%;
    min-height: 44px;
    white-space: normal;
    text-align: center;
  }
  .hamburger-btn {
    display: block;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .policy-card {
    padding: 24px;
    margin: 20px auto 60px;
  }
  .spec-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .spec-value {
    text-align: left;
  }
  .comparison-table th, .comparison-table td {
    padding: 12px 14px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .section {
    padding: 64px 0;
  }
  .hero-img-badge {
    top: 8px;
    left: 8px;
    font-size: 10px;
    padding: 4px 10px;
    max-width: calc(100% - 16px);
  }
  .hero-price-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .sticky-bar-left .sticky-price-text {
    display: none;
  }
}

/* ── ADDITIONAL COMPONENT CLASSES ── */
.footer-inner {
  display: flex;
  flex-direction: column;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
}

.hero-price-left {
  display: flex;
  flex-direction: column;
}

.hero-price-right {
  display: flex;
  align-items: center;
}

.sticky-bar-right {
  display: flex;
  align-items: center;
}

.unboxing-img-col {
  position: relative;
}

.unboxing-list-col {
  display: flex;
  flex-direction: column;
}
