/* ================================================================
   NORDIC THEME — DustaPro Official Product Presentation
   Style: Scandinavian Clean-Tech Product Landing Page
   Palette: Warm Paper (#FAF9F6) + Deep Charcoal (#1C1917) + Forest Teal (#0D9488) + Gold (#D97706)
   Fonts: DM Serif Display, Plus Jakarta Sans, IBM Plex Mono
   ================================================================ */

:root {
  --paper-bg:       #FAF9F6;
  --card-bg:        #FFFFFF;
  --deep-bg:        #1C1917;
  --deep-card:      #262320;
  --border-light:   #E7E5E4;
  --border-mid:     #D6D3D1;

  --teal:           #0D9488;
  --teal-dark:      #0F766E;
  --teal-soft:      #CCFBF1;
  --teal-glow:      rgba(13, 148, 136, 0.15);
  --gold:           #D97706;
  --gold-soft:      #FEF3C7;

  --ink-primary:    #1C1917;
  --ink-secondary:  #44403C;
  --ink-muted:      #78716C;
  --ink-dim:        #A8A29E;

  --font-serif:     'DM Serif Display', Georgia, serif;
  --font-sans:      'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono:      'IBM Plex Mono', Menlo, Monaco, monospace;

  --container:      1160px;
  --container-narrow: 840px;
  --radius-sm:      8px;
  --radius-md:      16px;
  --radius-lg:      24px;
  --radius-pill:    9999px;
  --shadow-card:    0 8px 30px rgba(0,0,0,0.06);
  --shadow-hover:   0 16px 44px rgba(0,0,0,0.11);
  --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;
  overflow-x: hidden;
}
body {
  font-family: var(--font-sans);
  background-color: var(--paper-bg);
  color: var(--ink-primary);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--ink-primary);
  line-height: 1.25;
}

.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%;
}

.nordic-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-block;
  margin-bottom: 12px;
}
.nordic-label-white {
  color: rgba(255, 255, 255, 0.7);
}

/* ── STICKY NAVIGATION ──────────────────────────────────────── */
.nordic-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(250, 249, 246, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  padding: 12px 0;
  width: 100%;
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  max-width: 1240px;
}
.nordic-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nordic-brand-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ink-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}
.nordic-brand-name {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--ink-primary);
  letter-spacing: -0.02em;
}
.nordic-brand-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-muted);
  border: 1px solid var(--border-mid);
  padding: 2px 7px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

.nordic-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 13.5px;
  color: var(--ink-secondary);
  font-weight: 600;
  margin: 0 auto;
  flex-wrap: nowrap;
}
.nordic-links a {
  padding: 6px 12px;
  border-radius: 6px;
  transition: var(--transition);
  white-space: nowrap;
}
.nordic-links a:hover {
  color: var(--teal);
  background: rgba(13, 148, 136, 0.08);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.btn-nordic-nav {
  background: var(--ink-primary);
  color: #fff;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-family: var(--font-mono);
  white-space: nowrap;
  display: inline-block;
}
.btn-nordic-nav:hover {
  background: var(--teal-dark);
  color: #fff;
  transform: translateY(-1px);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.mobile-menu-toggle .menu-bar {
  width: 20px;
  height: 2px;
  background-color: var(--ink-primary);
  transition: var(--transition);
}
.mobile-menu-toggle.active .menu-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu-toggle.active .menu-bar:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.active .menu-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  background: #fff;
  border-bottom: 1px solid var(--border-light);
  padding: 16px 24px 24px;
  box-shadow: 0 16px 32px rgba(0,0,0,0.08);
}
.mobile-nav.open {
  display: block;
}
.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-nav-list li a {
  display: block;
  padding: 8px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-secondary);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.mobile-nav-list li a:hover {
  color: var(--teal);
}
.btn-nordic-mobile-cta {
  background: var(--teal);
  color: #fff !important;
  text-align: center;
  padding: 12px 18px !important;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-weight: 700;
  border-bottom: none !important;
  margin-top: 6px;
}

/* ── HERO ───────────────────────────────────────────────────── */
.nordic-hero {
  padding: 60px 0 80px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.trust-pill {
  font-family: var(--font-mono);
  font-size: 11px;
  background: var(--teal-soft);
  color: var(--teal-dark);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-weight: 700;
}
.rating-pill {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  background: var(--gold-soft);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-weight: 700;
}

.nordic-h1 {
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  margin-bottom: 20px;
  letter-spacing: -0.015em;
  color: var(--ink-primary);
}
.nordic-h1 em {
  font-style: italic;
  color: var(--teal);
}
.hero-body {
  font-size: 1.05rem;
  color: var(--ink-secondary);
  margin-bottom: 30px;
  line-height: 1.75;
}

.hero-price-card {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-card);
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.price-original {
  font-size: 1.15rem;
  color: var(--ink-dim);
  text-decoration: line-through;
  font-family: var(--font-mono);
}
.price-sale {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  color: var(--ink-primary);
  line-height: 1;
}
.price-badge {
  background: var(--teal);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
}
.price-note {
  font-size: 13px;
  color: var(--ink-muted);
}

.btn-nordic-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--teal);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  width: 100%;
  max-width: 480px;
  font-family: var(--font-mono);
  letter-spacing: 0.03em;
  box-shadow: 0 8px 24px var(--teal-glow);
}
.btn-nordic-hero:hover {
  background: var(--teal-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(13, 148, 136, 0.25);
}

.hero-guarantee-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--ink-muted);
  margin-top: 14px;
}

.hero-stat-pills {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 24px;
}
.stat-pill {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 12px 8px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--teal);
  display: block;
}
.stat-desc {
  font-size: 11px;
  color: var(--ink-muted);
  font-family: var(--font-mono);
  margin-top: 2px;
}

.hero-media-wrap {
  position: relative;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-card);
}
.hero-media-wrap img {
  width: 100%;
  border-radius: var(--radius-md);
  object-fit: cover;
}
.hero-media-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: rgba(28, 25, 23, 0.88);
  color: #fff;
  backdrop-filter: blur(10px);
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 12px;
}

/* ── TRUST BAR ──────────────────────────────────────────────── */
.nordic-trust-bar {
  background: var(--deep-bg);
  padding: 48px 0;
  color: #fff;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.trust-item {
  border-left: 2px solid var(--teal);
  padding-left: 20px;
}
.trust-metric {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: #fff;
  display: block;
  margin-bottom: 4px;
}
.trust-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
}
.trust-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

/* ── BENEFITS SECTION ───────────────────────────────────────── */
.nordic-section {
  padding: 80px 0;
}
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.section-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 16px;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--ink-secondary);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.benefit-card {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.benefit-icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--teal-soft);
  color: var(--teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}
.benefit-card h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
}
.benefit-card p {
  font-size: 0.95rem;
  color: var(--ink-secondary);
  line-height: 1.7;
}

/* ── FEATURE SPOTLIGHT (ALTERNATING) ────────────────────────── */
.nordic-spotlight {
  padding: 70px 0;
  border-top: 1px solid var(--border-light);
}
.spotlight-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 70px;
}
.spotlight-row:last-child {
  margin-bottom: 0;
}
.spotlight-row.reverse {
  direction: rtl;
}
.spotlight-row.reverse > * {
  direction: ltr;
}
.spotlight-img {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-card);
}
.spotlight-img img {
  border-radius: var(--radius-md);
  width: 100%;
}
.spotlight-content h3 {
  font-size: clamp(1.8rem, 2.8vw, 2.3rem);
  margin-bottom: 18px;
}
.spotlight-content p {
  font-size: 1rem;
  color: var(--ink-secondary);
  margin-bottom: 18px;
  line-height: 1.75;
}
.spotlight-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.spotlight-pill {
  font-family: var(--font-mono);
  font-size: 12px;
  background: var(--card-bg);
  border: 1px solid var(--border-mid);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  color: var(--ink-secondary);
}

/* ── HOW IT WORKS STEPS ─────────────────────────────────────── */
.nordic-steps {
  padding: 80px 0;
  background: #fff;
  border-top: 1px solid var(--border-light);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.step-card {
  background: var(--paper-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.step-img-wrap {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}
.step-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.step-body {
  padding: 24px;
}
.step-num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.step-body h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.step-body p {
  font-size: 0.92rem;
  color: var(--ink-secondary);
  line-height: 1.65;
}

/* ── UNBOXING MANIFEST ──────────────────────────────────────── */
.nordic-unboxing {
  padding: 80px 0;
  border-top: 1px solid var(--border-light);
}
.unboxing-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.unboxing-img {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-card);
}
.unboxing-img img {
  border-radius: var(--radius-md);
  width: 100%;
}
.unboxing-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.unboxing-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 14px 18px;
}
.unboxing-item-info strong {
  display: block;
  font-size: 14px;
  color: var(--ink-primary);
  margin-bottom: 2px;
}
.unboxing-item-info span {
  font-size: 12px;
  color: var(--ink-muted);
}
.unboxing-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  background: var(--teal-soft);
  color: var(--teal-dark);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  font-weight: 600;
}

/* ── COST COMPARISON TABLE ──────────────────────────────────── */
.nordic-comparison {
  padding: 80px 0;
  background: #fff;
  border-top: 1px solid var(--border-light);
}
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 14.5px;
}
.comparison-table th,
.comparison-table td {
  padding: 18px 22px;
  border-bottom: 1px solid var(--border-light);
}
.comparison-table th {
  background: var(--paper-bg);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.comparison-table th.highlight-col,
.comparison-table td.highlight-col {
  background: #F0FDF4;
  color: #14532D;
  font-weight: 600;
}
.comparison-table tr:last-child td {
  border-bottom: none;
}

/* ── MASTER SPECIFICATIONS ──────────────────────────────────── */
.nordic-specs {
  padding: 80px 0;
  border-top: 1px solid var(--border-light);
}
.specs-sheet {
  max-width: 860px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
}
.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-light);
  font-size: 14.5px;
}
.spec-row:last-child {
  border-bottom: none;
}
.spec-key {
  color: var(--ink-muted);
  font-family: var(--font-mono);
  font-size: 13px;
}
.spec-val {
  font-weight: 600;
  color: var(--ink-primary);
  text-align: right;
  max-width: 60%;
}

/* ── BUNDLES & PRICING ──────────────────────────────────────── */
.nordic-bundles {
  padding: 90px 0;
  background: var(--paper-bg);
  border-top: 1px solid var(--border-light);
}
.bundles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.bundle-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  cursor: pointer;
}
.bundle-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.bundle-card.active {
  border: 2px solid var(--teal);
  box-shadow: 0 12px 36px rgba(13, 148, 136, 0.18);
}
.bundle-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.bundle-badge.popular {
  background: var(--gold);
}
.bundle-qty {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 6px;
  margin-top: 6px;
}
.bundle-subtitle {
  font-size: 12px;
  color: var(--ink-muted);
  margin-bottom: 16px;
}
.bundle-price-wrap {
  margin-bottom: 16px;
}
.bundle-unit-price {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--ink-primary);
  line-height: 1;
}
.bundle-unit-price span {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--ink-muted);
}
.bundle-total {
  font-size: 13px;
  color: var(--ink-secondary);
  font-family: var(--font-mono);
  margin-top: 6px;
}
.bundle-retail {
  font-size: 12px;
  color: var(--ink-dim);
  text-decoration: line-through;
}
.bundle-features-list {
  list-style: none;
  font-size: 12.5px;
  color: var(--ink-secondary);
  margin: 18px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bundle-features-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.bundle-features-list li::before {
  content: "✓";
  color: var(--teal);
  font-weight: bold;
}
.btn-select-bundle {
  width: 100%;
  background: var(--paper-bg);
  border: 1px solid var(--border-mid);
  color: var(--ink-primary);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  padding: 12px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  text-align: center;
}
.bundle-card.active .btn-select-bundle {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

/* ── DYNAMIC SELECTION BAR ──────────────────────────────────── */
.selection-action-bar {
  background: var(--deep-bg);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.selected-meta-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.selected-meta-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}
.btn-dynamic-cta {
  background: var(--teal);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px var(--teal-glow);
  max-width: 100%;
  box-sizing: border-box;
}
.btn-dynamic-cta:hover {
  background: var(--teal-dark);
  color: #fff;
  transform: translateY(-2px);
}

/* ── REVIEWS ────────────────────────────────────────────────── */
.nordic-reviews {
  padding: 90px 0;
  background: #fff;
  border-top: 1px solid var(--border-light);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--paper-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.review-stars {
  color: var(--gold);
  font-size: 13px;
  margin-bottom: 12px;
}
.review-card h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.review-card p {
  font-size: 0.92rem;
  color: var(--ink-secondary);
  line-height: 1.7;
  margin-bottom: 18px;
}
.review-author {
  display: flex;
  flex-direction: column;
}
.review-author strong {
  font-size: 13.5px;
  color: var(--ink-primary);
}
.review-author span {
  font-size: 11.5px;
  color: var(--ink-dim);
  font-family: var(--font-mono);
}

/* ── FAQ ────────────────────────────────────────────────────── */
.nordic-faq {
  padding: 90px 0;
  background: var(--paper-bg);
  border-top: 1px solid var(--border-light);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.n-faq-item {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.n-faq-q {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-primary);
  gap: 16px;
}
.n-faq-q .n-toggle {
  font-size: 20px;
  color: var(--teal);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.n-faq-a {
  padding: 0 24px 20px;
  color: var(--ink-secondary);
  font-size: 0.94rem;
  line-height: 1.7;
  display: none;
}
.n-faq-item.active .n-faq-a {
  display: block;
}
.n-faq-item.active .n-toggle {
  transform: rotate(45deg);
}

/* ── FINAL CTA ──────────────────────────────────────────────── */
.nordic-cta {
  padding: 90px 0 110px;
}
.cta-card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--deep-bg);
  border-radius: var(--radius-lg);
  padding: 64px 40px;
  text-align: center;
  color: #fff;
}
.cta-card h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: #fff;
  margin-bottom: 14px;
}
.cta-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.cta-price-strip {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.cta-orig {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
  font-family: var(--font-mono);
}
.cta-sale {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  color: #fff;
  line-height: 1;
}
.cta-badge {
  background: var(--teal);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}
.btn-nordic-final {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--teal);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 18px 44px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  box-shadow: 0 8px 28px var(--teal-glow);
}
.btn-nordic-final:hover {
  background: var(--teal-dark);
  color: #fff;
  transform: translateY(-2px);
}
.cta-guarantee-note {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 18px;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.nordic-footer {
  padding: 56px 0;
  background: #fff;
  border-top: 1px solid var(--border-light);
  font-size: 13px;
  color: var(--ink-muted);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  text-align: center;
}
.footer-brand {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--ink-primary);
}
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a:hover {
  color: var(--teal);
}
.footer-merchant-note {
  font-size: 11.5px;
  color: var(--ink-dim);
  max-width: 680px;
  line-height: 1.6;
}

/* ── RESPONSIVE RULES (ZERO OVERFLOW) ────────────────────────── */
@media (max-width: 1280px) {
  .nordic-links {
    gap: 14px;
    font-size: 13px;
  }
  .nordic-links a {
    padding: 5px 8px;
  }
  .nav-inner {
    gap: 18px;
  }
  .btn-nordic-nav {
    padding: 8px 16px;
    font-size: 12.5px;
  }
}

@media (max-width: 1080px) {
  .nordic-links {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }
  .btn-nordic-nav {
    display: none !important;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .spotlight-row,
  .spotlight-row.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 36px;
  }
  .unboxing-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .bundles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nordic-hero {
    padding: 40px 0 60px;
  }
  .nordic-section,
  .nordic-steps,
  .nordic-unboxing,
  .nordic-comparison,
  .nordic-specs,
  .nordic-bundles,
  .nordic-reviews,
  .nordic-faq,
  .nordic-cta {
    padding: 60px 0;
  }
  .benefits-grid,
  .steps-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .bundles-grid {
    grid-template-columns: 1fr;
  }
  .hero-stat-pills {
    grid-template-columns: repeat(2, 1fr);
  }
  .selection-action-bar {
    flex-direction: column;
    text-align: center;
    padding: 20px 16px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .btn-dynamic-cta {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    text-align: center;
    justify-content: center;
    padding: 14px 16px;
    font-size: 14px;
    line-height: 1.3;
  }
  .btn-nordic-final {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    text-align: center;
    justify-content: center;
    padding: 16px 20px;
    font-size: 15px;
  }
  .cta-card {
    padding: 40px 18px;
    max-width: 100%;
    box-sizing: border-box;
  }
  .spec-row {
    flex-direction: column;
    gap: 4px;
  }
  .spec-val {
    text-align: left;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .hero-stat-pills {
    grid-template-columns: 1fr;
  }
  .nav-inner {
    padding: 0 4px;
  }
  .btn-nordic-nav {
    display: none;
  }
  .selection-action-bar {
    padding: 18px 12px;
  }
  .selected-meta-title {
    font-size: 1.2rem;
  }
  .selected-meta-sub {
    font-size: 12px;
  }
  .btn-dynamic-cta {
    font-size: 13px;
    padding: 12px 14px;
  }
}

@media (max-width: 640px) {
  .table-wrap {
    border: none;
    box-shadow: none;
    overflow: visible;
  }
  .comparison-table,
  .comparison-table thead,
  .comparison-table tbody,
  .comparison-table th,
  .comparison-table td,
  .comparison-table tr {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .comparison-table thead {
    display: none;
  }
  .comparison-table tr {
    margin-bottom: 18px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    background: #fff;
    padding: 14px 16px;
    box-shadow: var(--shadow-card);
  }
  .comparison-table td {
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 8px 0;
    font-size: 13px;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .comparison-table td.highlight-col {
    background: #F0FDF4;
    border-radius: var(--radius-sm);
    padding: 8px 10px;
    margin: 4px 0;
  }
  .comparison-table td:last-child {
    border-bottom: none;
  }
  .comparison-table td::before {
    content: attr(data-label);
    font-family: var(--font-mono);
    font-size: 10.5px;
    color: var(--teal-dark);
    font-weight: 700;
    text-transform: uppercase;
  }
}
