/* ═══════════════════════════════════════════════
   NORDIC IPTV — Aurora Borealis Theme v3.0
   Nordic Night Sky · Space Grotesk
═══════════════════════════════════════════════ */

/* ── 1. CUSTOM PROPERTIES ── */
:root {
  --bg: #0A0E1A;
  --surface: #111730;
  --surface-alt: #0D1226;
  --surface-hover: #1A2040;
  --border: rgba(61,245,176,.12);
  --border-hover: rgba(61,245,176,.28);
  --text: #FFFFFF;
  --text-secondary: #A8B3C7;
  --text-tertiary: #6B7690;
  --aurora-green: #3DF5B0;
  --aurora-cyan: #22D3EE;
  --aurora-violet: #8B5CF6;
  --aurora-gradient: linear-gradient(120deg, #3DF5B0 0%, #22D3EE 40%, #8B5CF6 100%);
  --accent: #3DF5B0;
  --accent-hover: #2DD4A0;
  --accent-rgb: 61,245,176;
  --aurora-3: #22D3EE;
  --whatsapp: #25D366;
  --whatsapp-hover: #1EAA55;
  --whatsapp-rgb: 37,211,102;
  --bg-rgb: 10,14,26;
  --text-rgb: 255,255,255;
  --border-rgb: 61,245,176;
  --section-py: 96px;
  --nav-h: 64px;
}

/* ── 2. RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { background: none; border: none; cursor: pointer; font: inherit; }

/* ── 3. LAYOUT ── */
.nordic-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: var(--section-py) 0;
  background: var(--bg);
}
.section-alt {
  background: var(--surface-alt);
}
.section-heading { margin-bottom: 56px; }
.section-heading p { color: var(--text-secondary); font-size: 17px; max-width: 600px; }
.text-center { text-align: center; }
.text-center p { margin: 0 auto; }

/* ── 4. TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}
h1 { font-size: clamp(36px, 5vw, 68px); font-weight: 800; line-height: 1.08; }
h2 { font-size: clamp(28px, 3.5vw, 48px); margin-bottom: 16px; }
h3 { font-size: clamp(18px, 2vw, 22px); font-weight: 600; margin-bottom: 8px; }
h4 { font-size: 15px; font-weight: 600; letter-spacing: 0; margin-bottom: 16px; }
p { color: var(--text-secondary); font-size: 16px; line-height: 1.7; }
.nordic-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--aurora-green);
  margin-bottom: 14px;
}
.nordic-prose p + p { margin-top: 16px; }

/* Aurora gradient text */
.aurora-text {
  background: var(--aurora-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── 5. OFFER BANNER ── */
.nordic-offer-banner {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}
.nordic-offer-banner strong { color: var(--aurora-green); }
.nordic-offer-banner a {
  color: var(--aurora-green);
  text-decoration: underline;
  text-decoration-color: rgba(61,245,176,.4);
  margin-left: 6px;
}
.nordic-offer-banner a:hover { text-decoration-color: var(--aurora-green); }

/* ── 6. NAVBAR ── */
.nordic-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,14,26,.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  transition: background 300ms;
}
.nordic-nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
}
.nordic-nav-links { display: flex; gap: 4px; flex: 1; }
.nordic-nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 12px;
  border-radius: 8px;
  transition: color 200ms, background 200ms;
}
.nordic-nav-link:hover { color: var(--text); background: rgba(255,255,255,.06); }

/* Logo */
.nordic-navbar-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nordic-navbar-logo img {
  height: 44px;
  width: auto;
  display: block;
}
.nordic-footer-logo {
  display: inline-flex;
}
.nordic-footer-logo img {
  height: 40px;
  width: auto;
  display: block;
}
@media (max-width: 767px) {
  .nordic-navbar-logo img { height: 36px; }
  .nordic-footer-logo img { height: 36px; }
}

.nordic-hamburger { display: none; color: var(--text); padding: 4px; }

/* Mobile menu */
.nordic-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
}
.nordic-mobile-menu.open { display: flex; }
.nordic-mobile-menu .nordic-nav-link { font-size: 16px; padding: 10px 16px; }

/* ── 7. BUTTONS ── */
.nordic-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 10px;
  background: var(--aurora-gradient);
  color: #0A0E1A;
  transition: opacity 200ms, transform 200ms;
  white-space: nowrap;
}
.nordic-btn:hover { opacity: .88; transform: translateY(-1px); }
.nordic-btn:focus-visible { outline: 2px solid var(--aurora-green); outline-offset: 3px; }

.nordic-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 12px;
  background: var(--whatsapp);
  color: #fff;
  transition: background 200ms, transform 200ms, box-shadow 200ms;
  white-space: nowrap;
}
.nordic-btn-wa:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.3);
}
.nordic-btn-wa:focus-visible { outline: 2px solid var(--whatsapp); outline-offset: 3px; }

.nordic-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 12px;
  border: 1.5px solid var(--border-hover);
  color: var(--text);
  background: transparent;
  transition: border-color 200ms, background 200ms, transform 200ms;
  white-space: nowrap;
}
.nordic-btn-outline:hover {
  border-color: var(--aurora-green);
  background: rgba(61,245,176,.06);
  transform: translateY(-2px);
}
.nordic-btn-outline:focus-visible { outline: 2px solid var(--aurora-green); outline-offset: 3px; }

.nordic-btn-lg { font-size: 16px; padding: 16px 36px; border-radius: 14px; }
.nordic-btn-lg.nordic-btn-outline { padding: 15px 36px; }

/* ── 8. AURORA HERO ── */
.nordic-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
  padding: 80px 0 64px;
}

/* Aurora wave background */
.aurora-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.aurora-wave {
  position: absolute;
  width: 120%;
  height: 65%;
  background: linear-gradient(120deg, rgba(61,245,176,.35) 0%, rgba(34,211,238,.25) 40%, rgba(139,92,246,.35) 100%);
  filter: blur(80px);
  border-radius: 50%;
}
.aurora-wave-1 {
  top: -25%;
  left: -10%;
  opacity: .55;
  animation: auroraWave 18s ease-in-out infinite alternate;
}
.aurora-wave-2 {
  top: 15%;
  right: -15%;
  opacity: .35;
  background: linear-gradient(120deg, rgba(139,92,246,.3) 0%, rgba(34,211,238,.25) 60%, rgba(61,245,176,.25) 100%);
  animation: auroraWave 24s ease-in-out infinite alternate-reverse;
}
.aurora-wave-3 {
  bottom: -15%;
  left: 10%;
  opacity: .3;
  background: linear-gradient(120deg, rgba(34,211,238,.2) 0%, rgba(61,245,176,.25) 50%, rgba(139,92,246,.2) 100%);
  animation: auroraWave 30s ease-in-out infinite alternate;
}
@keyframes auroraWave {
  0%   { transform: translateX(-10%) translateY(0)   rotate(-2deg); }
  50%  { transform: translateX(10%)  translateY(5%)  rotate(2deg);  }
  100% { transform: translateX(-5%)  translateY(-3%) rotate(-1deg); }
}

/* Star field */
.aurora-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.aurora-stars::before,
.aurora-stars::after {
  content: '';
  position: absolute;
  inset: 0;
}
.aurora-stars::before {
  background-image:
    radial-gradient(1.5px 1.5px at 8%  12%, rgba(255,255,255,.85) 0%, transparent 100%),
    radial-gradient(1px   1px   at 22% 35%, rgba(255,255,255,.6)  0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 48% 8%,  rgba(255,255,255,.9)  0%, transparent 100%),
    radial-gradient(1px   1px   at 68% 28%, rgba(255,255,255,.7)  0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 82% 5%,  rgba(255,255,255,.8)  0%, transparent 100%),
    radial-gradient(1px   1px   at 14% 60%, rgba(255,255,255,.55) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 38% 72%, rgba(255,255,255,.7)  0%, transparent 100%),
    radial-gradient(1px   1px   at 58% 50%, rgba(255,255,255,.65) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 92% 58%, rgba(255,255,255,.9)  0%, transparent 100%),
    radial-gradient(1px   1px   at 28% 88%, rgba(255,255,255,.5)  0%, transparent 100%),
    radial-gradient(1px   1px   at 74% 78%, rgba(255,255,255,.7)  0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 5%  90%, rgba(255,255,255,.6)  0%, transparent 100%),
    radial-gradient(1px   1px   at 55% 95%, rgba(255,255,255,.45) 0%, transparent 100%),
    radial-gradient(1px   1px   at 96% 82%, rgba(255,255,255,.8)  0%, transparent 100%),
    radial-gradient(1px   1px   at 18% 47%, rgba(255,255,255,.5)  0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 44% 3%,  rgba(255,255,255,.9)  0%, transparent 100%),
    radial-gradient(1px   1px   at 78% 42%, rgba(255,255,255,.6)  0%, transparent 100%),
    radial-gradient(1px   1px   at 33% 22%, rgba(255,255,255,.75) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 62% 18%, rgba(255,255,255,.8)  0%, transparent 100%),
    radial-gradient(1px   1px   at 89% 15%, rgba(255,255,255,.5)  0%, transparent 100%);
  animation: starTwinkle 7s ease-in-out infinite alternate;
}
.aurora-stars::after {
  background-image:
    radial-gradient(1px 1px at 3%  30%, rgba(255,255,255,.45) 0%, transparent 100%),
    radial-gradient(1px 1px at 17% 75%, rgba(255,255,255,.55) 0%, transparent 100%),
    radial-gradient(1px 1px at 42% 55%, rgba(255,255,255,.4)  0%, transparent 100%),
    radial-gradient(1px 1px at 65% 85%, rgba(255,255,255,.6)  0%, transparent 100%),
    radial-gradient(1px 1px at 87% 40%, rgba(255,255,255,.5)  0%, transparent 100%),
    radial-gradient(1px 1px at 50% 65%, rgba(255,255,255,.35) 0%, transparent 100%),
    radial-gradient(1px 1px at 76% 20%, rgba(255,255,255,.55) 0%, transparent 100%),
    radial-gradient(1px 1px at 31% 10%, rgba(255,255,255,.7)  0%, transparent 100%),
    radial-gradient(1px 1px at 98% 68%, rgba(255,255,255,.45) 0%, transparent 100%),
    radial-gradient(1px 1px at 11% 52%, rgba(255,255,255,.5)  0%, transparent 100%);
  animation: starTwinkle 11s ease-in-out infinite alternate-reverse;
}
@keyframes starTwinkle {
  0%   { opacity: .5; }
  100% { opacity: 1;  }
}

/* Hero content — centered single column */
.nordic-hero .nordic-container { position: relative; z-index: 1; }
.nordic-hero-content {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.nordic-hero-content h1 { margin-bottom: 20px; letter-spacing: -0.03em; }
.nordic-hero-subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

/* Price pill */
.nordic-hero-price-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(61,245,176,.08);
  border: 1px solid rgba(61,245,176,.25);
  border-radius: 50px;
  padding: 10px 24px;
  margin-bottom: 32px;
}
.nordic-hero-price-main {
  font-size: 28px;
  font-weight: 800;
  background: var(--aurora-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
}
.nordic-hero-price-sub { font-size: 14px; color: var(--text-secondary); font-weight: 500; }

/* CTAs row */
.nordic-hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Feature chips */
.nordic-hero-chips {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.nordic-hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 7px 14px;
}
.nordic-chip-num { font-weight: 700; color: var(--aurora-green); }

/* ── 9. STATS ── */
.nordic-stats {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}
.nordic-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.nordic-stat-item {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.nordic-stat-item:last-child { border-right: none; }
.nordic-stat-number {
  display: block;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
  background: var(--aurora-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nordic-stat-label { font-size: 14px; color: var(--text-secondary); font-weight: 500; }

/* ── 10. CARDS ── */
.nordic-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
}

.nordic-card-feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  transition: transform 300ms, box-shadow 300ms, border-color 300ms;
}
.nordic-card-feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(61,245,176,.08);
  border-color: rgba(61,245,176,.3);
}

.nordic-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(61,245,176,.1);
  border: 1px solid rgba(61,245,176,.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--aurora-green);
  margin-bottom: 20px;
}
.nordic-icon-wrap svg { width: 24px; height: 24px; }

.nordic-card-stat {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
  background: var(--aurora-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* Price card */
.nordic-card-price {
  background: var(--surface);
  border: 1px solid rgba(61,245,176,.2);
  border-radius: 24px;
  padding: 48px 40px;
  position: relative;
  box-shadow: 0 0 60px rgba(61,245,176,.06);
}
.nordic-badge-best {
  display: inline-block;
  background: var(--aurora-gradient);
  color: #0A0E1A;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.nordic-price-big {
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  background: var(--aurora-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}
.nordic-price-nok { font-size: 16px; color: var(--text-secondary); margin-bottom: 6px; }
.nordic-price-period { font-size: 14px; color: var(--text-tertiary); margin-bottom: 32px; }

.nordic-include-list { margin-bottom: 32px; }
.nordic-include-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--text-secondary);
}
.nordic-include-item:last-child { border-bottom: none; }
.nordic-icon { color: var(--aurora-green); flex-shrink: 0; margin-top: 2px; }

/* Device cards */
.nordic-grid-8 {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
}
.nordic-card-device {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 12px;
  text-align: center;
  transition: border-color 250ms, transform 250ms;
}
.nordic-card-device:hover {
  border-color: rgba(61,245,176,.35);
  transform: translateY(-3px);
}

/* ── 11. STEPS ── */
.nordic-steps { display: flex; flex-direction: column; gap: 32px; }
.nordic-step { display: flex; gap: 20px; align-items: flex-start; }
.nordic-step-num {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--aurora-gradient);
  color: #0A0E1A;
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nordic-step-body h3 { margin-bottom: 4px; }
.nordic-step-body p { font-size: 15px; }

/* ── 12. ACCORDION ── */
.nordic-accordion { max-width: 760px; margin: 0 auto; }
.nordic-accordion-item { border-bottom: 1px solid var(--border); }
.nordic-accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: color 200ms;
}
.nordic-accordion-trigger:hover { color: var(--aurora-green); }
.nordic-accordion-item.open .nordic-accordion-trigger { color: var(--aurora-green); }
.nordic-accordion-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--text-tertiary);
  transition: transform 300ms;
}
.nordic-accordion-item.open .nordic-accordion-trigger .nordic-accordion-icon {
  transform: rotate(45deg);
  color: var(--aurora-green);
}
.nordic-accordion-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 300ms ease;
}
.nordic-accordion-item.open .nordic-accordion-body { grid-template-rows: 1fr; }
.nordic-accordion-content { overflow: hidden; }
.nordic-accordion-inner {
  padding: 0 0 20px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

/* ── 13. CTA SECTION ── */
.nordic-cta-section {
  position: relative;
  overflow: hidden;
  padding: var(--section-py) 0;
  text-align: center;
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.nordic-cta-section::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 140%;
  background: linear-gradient(120deg, rgba(61,245,176,.12) 0%, rgba(34,211,238,.08) 40%, rgba(139,92,246,.12) 100%);
  filter: blur(60px);
  pointer-events: none;
}
.nordic-cta-section .nordic-container { position: relative; z-index: 1; }
.nordic-cta-section h2 { color: var(--text); }
.nordic-cta-section .nordic-eyebrow { color: var(--aurora-green); }
.nordic-cta-section p { color: var(--text-secondary); max-width: 520px; margin: 0 auto 32px; }
.nordic-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── 14. LINKS ── */
.nordic-link {
  color: var(--aurora-green);
  text-decoration: underline;
  text-decoration-color: rgba(61,245,176,.35);
  transition: text-decoration-color 200ms;
  font-weight: 500;
}
.nordic-link:hover { text-decoration-color: var(--aurora-green); }

/* ── 15. PAGE HERO (inner pages) ── */
.page-hero {
  padding: 80px 0 64px;
  background: var(--surface-alt);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { font-size: clamp(30px, 4vw, 52px); }

/* ── 16. FOOTER ── */
.nordic-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}
.nordic-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.nordic-footer p { font-size: 14px; color: var(--text-tertiary); line-height: 1.7; margin-bottom: 0; }
.nordic-footer h4 {
  color: var(--text);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.nordic-footer-links { display: flex; flex-direction: column; gap: 10px; }
.nordic-footer-links a { font-size: 14px; color: var(--text-tertiary); transition: color 200ms; }
.nordic-footer-links a:hover { color: var(--aurora-green); }
.nordic-footer-price-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(61,245,176,.08);
  border: 1px solid rgba(61,245,176,.15);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--aurora-green);
  margin-top: 16px;
}
.nordic-footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-tertiary);
}
.nordic-footer-bottom a { color: var(--text-tertiary); transition: color 200ms; }
.nordic-footer-bottom a:hover { color: var(--aurora-green); }

/* ── 17. WA FLOAT ── */
.nordic-wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  z-index: 200;
  transition: transform 200ms, box-shadow 200ms;
}
.nordic-wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,.5);
}

/* ── 18. SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.reveal.in-view { opacity: 1; transform: none; }
.stagger-reveal > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.stagger-reveal > *.in-view { opacity: 1; transform: none; }
.reveal-scale {
  opacity: 0;
  transform: scale(.95);
  transition: opacity 600ms ease, transform 600ms ease;
}
.reveal-scale.in-view { opacity: 1; transform: none; }

/* ── 19. RESPONSIVE ── */
@media (max-width: 1023px) {
  .nordic-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .nordic-grid-8 { grid-template-columns: repeat(4, 1fr); }
  .nordic-footer-grid { grid-template-columns: 1fr 1fr; }
  .nordic-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .nordic-stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); padding: 24px; }
  .nordic-stat-item:last-child { border-bottom: none; }
  .nordic-nav-links { display: none; }
  .nordic-hamburger { display: flex; }
}
@media (max-width: 767px) {
  :root { --section-py: 64px; }
  .nordic-hero { min-height: 80vh; padding: 56px 0 48px; }
  .nordic-hero-content h1 { font-size: clamp(32px, 8vw, 48px); }
  .nordic-grid-4 { grid-template-columns: 1fr; }
  .nordic-grid-8 { grid-template-columns: repeat(2, 1fr); }
  .nordic-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .nordic-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .nordic-stat-item { border-right: none; }
  .nordic-card-price { padding: 32px 24px; }
  .nordic-hero-price-pill { flex-direction: column; gap: 4px; padding: 14px 20px; }
  .nordic-hero-chips { gap: 8px; }
  .nordic-hero-chip { font-size: 12px; padding: 6px 12px; }
  .nordic-btn-lg { font-size: 15px; padding: 14px 28px; }
  #editorial-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  #slik-fungerer-det .nordic-container > div { grid-template-columns: 1fr !important; }
}

/* ── 20. REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  .aurora-wave,
  .aurora-stars::before,
  .aurora-stars::after { animation: none; }
  .reveal,
  .stagger-reveal > *,
  .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
