/* ================================================================
   NORDIC THEME — Premium Scandinavian Product Landing Page
   Editorial Testing Lab & Product Authority Format
   Palette: Warm Paper (#FAF9F6) + Deep Charcoal (#1C1917) + Forest Teal (#0D9488) + Amber (#D97706)
   Fonts: DM Serif Display (Headings), Plus Jakarta Sans (Body), IBM Plex Mono (Data/Labels)
   ================================================================ */

:root {
  --paper-bg:       #FAF9F6;
  --card-bg:        #FFFFFF;
  --card-subtle:    #F5F3EF;
  --deep-bg:        #1C1917;
  --deep-card:      #292524;
  --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;
  --green:          #059669;
  --green-soft:     #D1FAE5;

  --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, Consolas, monospace;

  --container:      1160px;
  --container-narrow: 860px;
  --radius-sm:      8px;
  --radius-md:      16px;
  --radius-lg:      24px;
  --radius-pill:    9999px;
  --shadow-card:    0 6px 24px rgba(28, 25, 23, 0.06);
  --shadow-hover:   0 12px 36px rgba(28, 25, 23, 0.11);
  --transition:     all 0.25s ease;
}

/* ── RESET & MOBILE OVERFLOW SAFEGUARDS ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden !important;
  scroll-behavior: smooth;
  color-scheme: light;
}

body.theme-nordic {
  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;
}

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 {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  box-sizing: border-box;
}

.container-narrow {
  width: 100%;
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* Utility Labels */
.nordic-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-block;
  margin-bottom: 12px;
}

.nordic-label-white {
  color: rgba(255, 255, 255, 0.7);
}

/* ── NOTICE BANNER ── */
.top-audit-banner {
  background: #1C1917;
  color: #FAF9F6;
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 8px 16px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.top-audit-banner span {
  color: var(--teal-soft);
  font-weight: 600;
}

/* ── STICKY NAVIGATION ── */
.nordic-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 249, 246, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
  padding: 14px 0;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nordic-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nordic-brand-name {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--ink-primary);
  letter-spacing: -0.01em;
}

.nordic-brand-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-muted);
  border: 1px solid var(--border-mid);
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nordic-links {
  display: flex;
  gap: 24px;
  font-size: 13px;
  color: var(--ink-secondary);
  font-weight: 600;
}

.nordic-links a:hover {
  color: var(--teal);
}

.btn-nordic-nav {
  background: var(--ink-primary);
  color: #fff;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-family: var(--font-mono);
  display: inline-block;
}

.btn-nordic-nav:hover {
  background: var(--teal-dark);
  color: #fff;
  transform: translateY(-1px);
}

/* ── HERO ── */
.nordic-hero {
  padding: 60px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-meta-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.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.2rem, 4vw, 3.4rem);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.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-verdict-box {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 30px;
  box-shadow: var(--shadow-card);
}

.verdict-header {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal-dark);
  margin-bottom: 6px;
}

.verdict-text {
  font-size: 0.95rem;
  color: var(--ink-secondary);
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-nordic-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--teal);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  box-shadow: 0 4px 20px var(--teal-glow);
  width: 100%;
  max-width: 480px;
}

.btn-nordic-hero:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--teal-glow);
}

.hero-subtext {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-muted);
}

.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  background: var(--card-bg);
}

.hero-img-wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.hero-badge-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(28, 25, 23, 0.85);
  backdrop-filter: blur(8px);
  color: #FAF9F6;
  padding: 8px 14px;
  border-radius: var(--radius-md);
  font-family: var(--font-mono);
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
}

/* ── EDITORIAL SCORECARD / VERDICT ── */
.nordic-verdict-section {
  padding: 60px 0;
  background: var(--card-bg);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.scorecard-card {
  background: var(--paper-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: center;
}

.score-summary {
  text-align: center;
  padding-right: 36px;
  border-right: 1px solid var(--border-light);
}

.score-big {
  font-family: var(--font-serif);
  font-size: 4.8rem;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 4px;
}

.score-scale {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-muted);
  margin-bottom: 12px;
}

.score-badge {
  display: inline-block;
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

.verdict-breakdown h3 {
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.verdict-breakdown p {
  color: var(--ink-secondary);
  margin-bottom: 24px;
  font-size: 0.98rem;
}

.pro-con-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.pro-box, .con-box {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid var(--border-light);
}

.pro-box h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
  letter-spacing: 0.08em;
}

.con-box h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  letter-spacing: 0.08em;
}

.pro-con-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pro-con-list li {
  font-size: 13px;
  color: var(--ink-secondary);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.pro-con-list li span.icon {
  font-weight: 700;
  font-family: var(--font-mono);
}
.pro-box .icon { color: var(--green); }
.con-box .icon { color: var(--gold); }

/* ── 5-STAGE FIELD TESTING BREAKDOWN ── */
.nordic-stages-section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px;
}

.section-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 14px;
}

.section-header p {
  color: var(--ink-secondary);
  font-size: 1rem;
}

.stage-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 60px;
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
}

.stage-row.reverse {
  direction: rtl;
}
.stage-row.reverse > * {
  direction: ltr;
}

.stage-img-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: var(--paper-bg);
}

.stage-content .stage-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--teal);
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  display: inline-block;
}

.stage-content h3 {
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.stage-content p {
  color: var(--ink-secondary);
  margin-bottom: 18px;
  font-size: 0.96rem;
  line-height: 1.7;
}

.stage-metrics {
  display: flex;
  gap: 24px;
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
}

.stage-metric-item {
  display: flex;
  flex-direction: column;
}

.stage-metric-item .val {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--ink-primary);
}

.stage-metric-item .lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-muted);
  text-transform: uppercase;
}

/* ── UNBOXING MANIFEST ── */
.nordic-unboxing-section {
  padding: 80px 0;
  background: var(--card-bg);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.unboxing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.unboxing-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
}

.manifest-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.manifest-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: var(--paper-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
}

.manifest-num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  background: var(--teal-soft);
  color: var(--teal-dark);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.manifest-info strong {
  display: block;
  font-size: 14px;
  color: var(--ink-primary);
  margin-bottom: 2px;
}

.manifest-info span {
  font-size: 12px;
  color: var(--ink-secondary);
}

/* ── WHO IT IS FOR / SUITABILITY ── */
.nordic-suitability-section {
  padding: 80px 0;
}

.suitability-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.suitability-card {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.suitability-card.best-for {
  border-top: 4px solid var(--teal);
}

.suitability-card.consider-if {
  border-top: 4px solid var(--ink-dim);
}

.suitability-card h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.suitability-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.suitability-card li {
  font-size: 14px;
  color: var(--ink-secondary);
  line-height: 1.6;
  position: relative;
  padding-left: 20px;
}

.suitability-card li::before {
  content: "•";
  position: absolute;
  left: 4px;
  color: var(--teal);
  font-weight: bold;
}

/* ── TECHNICAL SPECIFICATIONS SHEET ── */
.nordic-specs-section {
  padding: 80px 0;
  background: var(--card-bg);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.specs-sheet {
  max-width: 860px;
  margin: 0 auto;
  background: var(--paper-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
}

.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%;
}

/* ── FAQ ACCORDION ── */
.nordic-faq {
  padding: 80px 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 860px;
  margin: 0 auto;
}

.n-faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.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);
  user-select: none;
}

.n-faq-q .n-toggle {
  font-size: 20px;
  color: var(--teal);
  font-family: var(--font-mono);
  transition: transform 0.25s ease;
  flex-shrink: 0;
  margin-left: 12px;
}

.n-faq-a {
  padding: 0 24px 20px;
  color: var(--ink-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
  display: none;
}

.n-faq-item.active {
  border-color: var(--teal);
}

.n-faq-item.active .n-faq-a {
  display: block;
}

.n-faq-item.active .n-toggle {
  transform: rotate(45deg);
}

/* ── FINAL CTA ── */
.nordic-cta {
  padding: 80px 0 100px;
}

.cta-card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--deep-bg);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
}

.cta-card h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  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;
}

.btn-nordic-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--teal);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 18px 40px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
  box-shadow: 0 6px 24px var(--teal-glow);
  max-width: 100%;
}

.btn-nordic-cta:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
}

.cta-subnote {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 18px;
}

/* ── FOOTER ── */
.nordic-footer {
  padding: 48px 0;
  border-top: 1px solid var(--border-light);
  text-align: center;
  font-size: 13px;
  color: var(--ink-muted);
  background: var(--paper-bg);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--ink-primary);
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a:hover {
  color: var(--teal);
}

.footer-disclaimer {
  max-width: 720px;
  font-size: 11px;
  color: var(--ink-dim);
  line-height: 1.6;
  margin-top: 8px;
}

/* ── STRICT RESPONSIVE SAFEGUARDS ── */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .scorecard-card {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .score-summary {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
    padding-right: 0;
    padding-bottom: 24px;
  }
  .stage-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .stage-row.reverse {
    direction: ltr;
  }
  .unboxing-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .suitability-grid {
    grid-template-columns: 1fr;
  }
  .nordic-links {
    display: none;
  }
}

@media (max-width: 640px) {
  .container, .container-narrow {
    padding-left: 16px;
    padding-right: 16px;
  }
  .scorecard-card {
    padding: 24px 18px;
  }
  .pro-con-grid {
    grid-template-columns: 1fr;
  }
  .stage-row {
    padding: 24px 18px;
  }
  .stage-metrics {
    flex-direction: column;
    gap: 12px;
  }
  .spec-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 14px 16px;
  }
  .spec-val {
    text-align: left;
    max-width: 100%;
  }
  .cta-card {
    padding: 40px 20px;
  }
  .nordic-h1 {
    font-size: 2.2rem;
  }
  .btn-nordic-hero, .btn-nordic-cta {
    width: 100%;
    padding: 16px 20px;
    font-size: 14px;
  }
}

@media (max-width: 380px) {
  .container, .container-narrow {
    padding-left: 12px;
    padding-right: 12px;
  }
  .scorecard-card, .stage-row, .cta-card {
    padding: 20px 14px;
  }
  .nordic-h1 {
    font-size: 1.85rem;
  }
  .btn-nordic-hero, .btn-nordic-cta {
    font-size: 13px;
    padding: 14px 16px;
  }
}


/* ── MOBILE HAMBURGER & RESPONSIVE DRAWER NAVIGATION ── */
.nav-right-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  align-items: center;
  z-index: 1001;
}

.mobile-menu-toggle .menu-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink-primary);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.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;
  position: fixed;
  top: 65px;
  left: 0;
  width: 100%;
  background: rgba(250, 249, 246, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--teal);
  padding: 24px 20px 32px;
  z-index: 1000;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  max-height: calc(100vh - 65px);
  overflow-y: auto;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
  margin: 0;
}

.mobile-nav-list li a {
  display: block;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink-primary);
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
  transition: color 0.2s ease;
}

.mobile-nav-list li a:hover {
  color: var(--teal);
}

.btn-nordic-mobile-cta {
  display: block;
  text-align: center;
  background: var(--teal);
  color: #ffffff !important;
  font-family: var(--font-mono);
  font-weight: 700;
  padding: 14px 20px;
  border-radius: var(--radius-pill);
  border-bottom: none !important;
  margin-top: 8px;
}

/* ── NORDIC BUNDLES & PRICING GRID ── */
.nordic-bundles {
  padding: 80px 0;
  background: #FFFFFF;
}

.bundles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.bundle-card {
  background: var(--card-bg);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.bundle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.bundle-card.active {
  border-color: var(--teal);
  box-shadow: 0 0 0 2px var(--teal), 0 12px 32px rgba(13, 148, 136, 0.12);
  background: #FFFFFF;
}

.bundle-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink-primary);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.bundle-badge.popular {
  background: var(--teal);
}

.bundle-badge.best-value {
  background: var(--gold);
}

.bundle-qty {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--ink-primary);
  margin-top: 10px;
  margin-bottom: 4px;
  text-align: center;
}

.bundle-subtitle {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-muted);
  text-align: center;
  margin-bottom: 14px;
}

.bundle-price-wrap {
  text-align: center;
  margin-bottom: 16px;
}

.bundle-unit-price {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--ink-primary);
}

.bundle-unit-price span {
  font-size: 12px;
  font-family: var(--font-sans);
  color: var(--ink-muted);
  font-weight: normal;
}

.bundle-total {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  margin-top: 2px;
}

.bundle-retail {
  font-size: 11px;
  color: var(--ink-muted);
  margin-top: 2px;
}

.bundle-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12.5px;
  color: var(--ink-secondary);
}

.bundle-features-list li {
  position: relative;
  padding-left: 18px;
}

.bundle-features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

.btn-select-bundle {
  width: 100%;
  padding: 12px;
  background: var(--card-subtle);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-primary);
  cursor: pointer;
  transition: all 0.2s ease;
}

.bundle-card.active .btn-select-bundle {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}

.selection-action-bar {
  margin-top: 36px;
  background: var(--deep-bg);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.selected-meta-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 4px;
}

.selected-meta-sub {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--teal-soft);
}

.btn-dynamic-cta {
  background: var(--teal);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  display: inline-block;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-dynamic-cta:hover {
  background: var(--teal-dark);
  color: #fff;
  transform: translateY(-1px);
}

/* ── FAQ ACCORDION STYLING ── */
.n-faq-item, .faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--card-bg);
  transition: border-color 0.2s ease;
}

.n-faq-item.active, .faq-item.active {
  border-color: var(--teal);
}

.n-faq-q, .faq-q {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink-primary);
  background: var(--card-bg);
  user-select: none;
}

.n-faq-q span, .faq-q span {
  flex-grow: 1;
}

.faq-chevron {
  font-size: 1.25rem;
  transition: transform 0.25s ease;
  color: var(--teal);
}

.n-faq-item.active .faq-chevron, .faq-item.active .faq-chevron {
  transform: rotate(45deg);
}

.n-faq-a, .faq-a {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-secondary);
}

.n-faq-item.active .n-faq-a, .faq-item.active .faq-a {
  display: block;
}

/* ── RESPONSIVE RULES & OVERFLOW PREVENTION ── */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

@media (max-width: 1100px) {
  .bundles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 960px) {
  .nordic-links {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }
  .selection-action-bar {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  .btn-dynamic-cta {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .bundles-grid {
    grid-template-columns: 1fr;
  }
  .selection-action-bar {
    padding: 18px 14px;
  }
}

@media (max-width: 390px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }
  .nordic-brand-name {
    font-size: 20px;
  }
  .btn-nordic-nav {
    display: none;
  }
}

/* ── COMPARISON TABLE & OVERFLOW WRAPPER ── */
.table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 32px 0;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.comparison-table {
  width: 100%;
  min-width: 580px;
  border-collapse: collapse;
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  font-size: 13.5px;
}

.comparison-table th,
.comparison-table td {
  padding: 14px 16px;
  border: 1px solid var(--border-light);
  text-align: left;
}

.comparison-table th {
  background: var(--card-subtle);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-primary);
}

.comparison-table th.highlight-col,
.comparison-table td.highlight-col {
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-weight: 700;
}

/* Fix 320px overflow on dynamic cta and action bar */
@media (max-width: 480px) {
  .selection-action-bar {
    padding: 16px 12px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .btn-dynamic-cta {
    white-space: normal !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 14px !important;
    font-size: 13px !important;
    text-align: center !important;
  }
}

/* ── RESPONSIVE COMPARISON MATRIX (ZERO OVERFLOW) ── */
.nordic-comparison {
  padding: 80px 0;
  background: var(--paper-bg);
}

.comparison-matrix-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 40px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.matrix-card {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
}

.matrix-card.card-buzzkrush {
  border-color: var(--teal);
  box-shadow: 0 8px 30px rgba(13, 148, 136, 0.08);
  background: #FFFFFF;
}

.matrix-card-header {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
}

.matrix-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
}

.tag-muted {
  background: var(--card-subtle);
  color: var(--ink-muted);
}

.tag-teal {
  background: var(--teal-soft);
  color: var(--teal-dark);
}

.matrix-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: var(--ink-primary);
  margin-bottom: 6px;
}

.matrix-subtitle {
  font-size: 13.5px;
  color: var(--ink-muted);
  line-height: 1.5;
  margin: 0;
}

.matrix-points-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.matrix-points-list li {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-secondary);
}

.matrix-points-list li strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-primary);
  margin-bottom: 2px;
}

.card-buzzkrush .matrix-points-list li strong {
  color: var(--teal-dark);
}

.bundle-desc-box {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ink-muted);
  background: var(--card-subtle);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  text-align: center;
}

@media (max-width: 860px) {
  .comparison-matrix-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .matrix-card {
    padding: 24px 20px;
  }
}

@media (max-width: 390px) {
  .matrix-card {
    padding: 20px 16px;
  }
  .matrix-title {
    font-size: 1.3rem;
  }
}
