/* ================================================================
   NORDIC THEME — JOYHNNY TITANIUM PRO PAN
   Aesthetic: Clean Scandinavian Culinary Luxury (DTC Cookware)
   Palette: Warm Paper (#FAF9F6) + Deep Charcoal (#1C1917) + Forest Teal (#0D9488) + 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:    #F5F4F0;
  --deep-bg:        #1C1917;
  --border-light:   #E7E5E4;
  --border-mid:     #D6D3D1;
  --border-dark:    #44403C;

  --teal:           #0D9488;
  --teal-dark:      #0F766E;
  --teal-soft:      #CCFBF1;
  --teal-glow:      rgba(13, 148, 136, 0.18);
  --gold:           #D97706;
  --gold-soft:      #FEF3C7;
  --green-online:   #10B981;

  --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', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;

  --container:      1160px;
  --container-narrow: 840px;
  --radius-sm:      6px;
  --radius-md:      14px;
  --radius-lg:      24px;
  --radius-pill:    9999px;
  --shadow-card:    0 8px 30px rgba(28, 25, 23, 0.06);
  --shadow-hover:   0 16px 45px rgba(28, 25, 23, 0.12);
  --transition:     all 0.24s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── RESET & ZERO OVERFLOW ENFORCEMENT ──────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

body.theme-nordic {
  font-family: var(--font-sans);
  background-color: var(--paper-bg);
  color: var(--ink-primary);
  line-height: 1.68;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  position: relative;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--ink-primary);
  line-height: 1.22;
}

p {
  color: var(--ink-secondary);
}

.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 24px;
  width: 100%;
}

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

.gold-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #854D0E;
  background: var(--gold-soft);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  display: inline-block;
}

/* ── ANNOUNCEMENT BAR ──────────────────────────────────────── */
.announcement-bar {
  background: #0F172A;
  color: #F8FAFC;
  padding: 10px 0;
  font-family: var(--font-mono);
  font-size: 11.5px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-online);
  box-shadow: 0 0 10px var(--green-online);
  display: inline-block;
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.8; }
}

.announcement-timer {
  color: #38BDF8;
  font-weight: 700;
}

/* ── STICKY NAVIGATION ─────────────────────────────────────── */
.nordic-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 249, 246, 0.95);
  backdrop-filter: blur(14px);
  -webkit-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: 10px;
}

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

.nav-links {
  display: flex;
  gap: 30px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-secondary);
  list-style: none;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-nordic-nav {
  background: var(--ink-primary);
  color: #FFF;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: var(--transition);
}

.btn-nordic-nav:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px var(--teal-glow);
}

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

/* Mobile Drawer */
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28, 25, 23, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.mobile-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  visibility: hidden;
  width: 300px;
  max-width: 85vw;
  height: 100%;
  background: #FFF;
  border-left: 1px solid var(--border-light);
  z-index: 1001;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.12);
}

.mobile-drawer.active {
  transform: translateX(0);
  visibility: visible;
}

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

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

.drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 28px 0;
  font-weight: 600;
  font-size: 15px;
}

.drawer-links a {
  color: var(--ink-primary);
  display: block;
}

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

.drawer-cta-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── HERO SECTION ──────────────────────────────────────────── */
.nordic-hero {
  padding: 56px 0 80px;
}

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

.hero-copy-col {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.hero-top-meta {
  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.4rem, 4.4vw, 3.8rem);
  margin-bottom: 18px;
  letter-spacing: -0.015em;
  color: var(--ink-primary);
}

.nordic-h1 em {
  font-style: italic;
  color: var(--teal);
}

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

.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);
  box-sizing: border-box;
  max-width: 100%;
}

.price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 8px;
}

.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: 3rem;
  color: var(--ink-primary);
  line-height: 1;
}

.price-badge {
  background: var(--teal);
  color: #FFF;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
}

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

.btn-nordic-hero {
  background: var(--teal);
  color: #FFF;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 15px;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: var(--transition);
  box-shadow: 0 8px 24px var(--teal-glow);
  align-self: flex-start;
  box-sizing: border-box;
  max-width: 100%;
}

.btn-nordic-hero:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px var(--teal-glow);
}

.mobile-hero-cta {
  display: none;
}

.desktop-hero-cta {
  display: inline-flex;
}

.hero-copy-col {
  display: flex;
  flex-direction: column;
  min-width: 0;
  order: 1;
}

.hero-trust-notes {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--ink-muted);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual-col {
  position: relative;
  order: 2;
}

.hero-img-wrap {
  background: #FFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.hero-img-wrap img {
  border-radius: var(--radius-md);
  margin: 0 auto;
  max-height: 480px;
  object-fit: cover;
}

/* ── PURE TITANIUM SECTION ─────────────────────────────────── */
.section {
  padding: 80px 0;
}

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

.section-head h2 {
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  margin-top: 10px;
  margin-bottom: 12px;
}

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

.titanium-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.titanium-visual img {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
}

.titanium-bullets {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.t-bullet h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--ink-primary);
}

.t-bullet p {
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ── 5-PLY THERMAL CLADDING SECTION ─────────────────────────── */
.cladding-section {
  background: var(--card-subtle);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

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

.cladding-card {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

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

.c-layer-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--teal);
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}

.cladding-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.cladding-card p {
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ── HEAD-TO-HEAD COMPARISON TABLE ─────────────────────────── */
.comparison-wrap {
  max-width: 900px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: var(--shadow-card);
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}

.comp-table th, .comp-table td {
  padding: 18px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}

.comp-table th:first-child, .comp-table td:first-child {
  text-align: left;
  font-weight: 600;
}

.comp-table th {
  background: #F8FAFC;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.comp-table th.highlight, .comp-table td.highlight {
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-weight: 700;
}

.check-yes {
  color: var(--teal-dark);
  font-weight: 800;
  font-size: 16px;
}

.check-no {
  color: #EF4444;
  font-weight: 800;
  font-size: 16px;
}

/* ── CHEF-GRADE VERSATILITY GRID ───────────────────────────── */
.versatility-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.v-card {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.v-icon {
  font-size: 32px;
  margin-bottom: 14px;
  display: block;
}

.v-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.v-card p {
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ── UNBOXING MANIFEST ─────────────────────────────────────── */
.unboxing-section {
  background: var(--card-subtle);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.unboxing-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.unboxing-visual img {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
}

.manifest-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.manifest-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-family: var(--font-mono);
  font-size: 13px;
  gap: 10px;
}

.m-qty {
  color: var(--teal);
  font-weight: 700;
  min-width: 30px;
}

.m-item {
  color: var(--ink-primary);
  flex: 1;
}

.m-stat {
  font-size: 10.5px;
  color: var(--teal-dark);
  background: var(--teal-soft);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  font-weight: 700;
}

/* ── 3-STEP CULINARY GUIDE ─────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.step-img-box {
  margin-bottom: 18px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.step-img-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.step-pill {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 6px;
  display: block;
}

.step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ── REVIEWS SECTION ───────────────────────────────────────── */
.reviews-section {
  background: var(--card-subtle);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

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

.review-card {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.reviewer-name {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-secondary);
}

.review-verified {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--teal-dark);
}

.review-stars {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.review-card h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.review-card p {
  font-size: 0.93rem;
  line-height: 1.65;
  margin-bottom: 18px;
}

.review-footer {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-muted);
}

/* ── MASTER SPEC SHEET ─────────────────────────────────────── */
.spec-matrix-table {
  max-width: 860px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.matrix-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border-light);
  font-family: var(--font-mono);
  font-size: 12.5px;
  gap: 16px;
}

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

.matrix-row .k {
  color: var(--ink-muted);
  flex: 1;
}

.matrix-row .v {
  color: var(--ink-primary);
  font-weight: 600;
  text-align: right;
  flex: 1;
}

/* ── GOLDEN FUNNEL PACKAGES SECTION (#packages) ────────────── */
.packages-section {
  padding: 90px 0 110px;
  background: #FFF;
  border-top: 1px solid var(--border-light);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.package-card {
  background: var(--paper-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

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

.package-card.highlight {
  border: 2px solid var(--teal);
  background: #FFF;
  box-shadow: 0 14px 40px var(--teal-glow);
}

.package-badge-wrap {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  z-index: 10;
}

.pkg-header {
  text-align: center;
  margin-bottom: 18px;
  padding-top: 8px;
}

.pkg-tier-name {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

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

.pkg-units {
  font-size: 12px;
  color: var(--teal-dark);
  font-family: var(--font-mono);
}

.pkg-pricing {
  text-align: center;
  background: #FFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 16px 12px;
  margin-bottom: 20px;
}

.package-card.highlight .pkg-pricing {
  background: var(--teal-soft);
  border-color: rgba(13, 148, 136, 0.3);
}

.pkg-strike {
  font-size: 13px;
  color: var(--ink-dim);
  text-decoration: line-through;
  font-family: var(--font-mono);
  margin-bottom: 2px;
}

.pkg-price {
  font-size: 2.2rem;
  font-weight: 700;
  font-family: var(--font-serif);
  color: var(--ink-primary);
  line-height: 1;
  margin-bottom: 6px;
}

.package-card.highlight .pkg-price {
  color: var(--teal-dark);
}

.pkg-per-unit {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-secondary);
}

.pkg-saving {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--green-online);
  font-weight: 700;
  margin-top: 4px;
}

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

.pkg-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

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

.btn-package-cta {
  background: var(--ink-primary);
  color: #FFF;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  padding: 14px 10px;
  border-radius: var(--radius-pill);
  text-align: center;
  display: block;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn-package-cta:hover {
  background: var(--teal-dark);
  box-shadow: 0 6px 20px var(--teal-glow);
  transform: translateY(-2px);
}

.package-card.highlight .btn-package-cta {
  background: var(--teal);
}

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

/* ── FAQ ACCORDION ─────────────────────────────────────────── */
.faq-section {
  padding: 90px 0;
  background: var(--paper-bg);
  border-top: 1px solid var(--border-light);
}

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

.faq-item {
  background: #FFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--teal);
}

.faq-q {
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 13.5px;
  color: var(--ink-primary);
  font-weight: 600;
  gap: 16px;
}

.faq-toggle {
  color: var(--teal);
  font-size: 20px;
  line-height: 1;
  transition: transform 0.25s ease;
  user-select: none;
}

.faq-a {
  padding: 0 24px 22px;
  color: var(--ink-secondary);
  font-size: 0.95rem;
  line-height: 1.68;
  display: none;
}

.faq-item.active .faq-a {
  display: block;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

/* ── STICKY BOTTOM BAR ─────────────────────────────────────── */
.sticky-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border-light);
  padding: 12px 24px;
  z-index: 90;
  box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.sticky-bar-title {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-primary);
}

.sticky-bar-timer {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--teal);
}

.sticky-btn-cta {
  background: var(--teal);
  color: #FFF;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 4px 15px var(--teal-glow);
  white-space: nowrap;
}

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

/* ── FOOTER ────────────────────────────────────────────────── */
.nordic-footer {
  padding: 60px 0 100px;
  border-top: 1px solid var(--border-light);
  font-size: 12px;
  color: var(--ink-muted);
  text-align: center;
  background: #FFF;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  max-width: 780px;
  margin: 0 auto;
}

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

.footer-nav {
  display: flex;
  gap: 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  color: var(--ink-secondary);
}

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

.footer-contact-details {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--ink-secondary);
  line-height: 1.6;
}

.footer-contact-details a {
  color: var(--teal-dark);
}

.footer-disclaim {
  font-size: 11px;
  color: var(--ink-dim);
  line-height: 1.6;
}

/* ── SELECT COUNTRY PAGE ───────────────────────────────────── */
.stepper-section {
  padding: 36px 0 24px;
}

.checkout-stepper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  list-style: none;
  max-width: 600px;
  margin: 0 auto;
}

.checkout-stepper .step {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.5;
}

.checkout-stepper .step.step-active {
  opacity: 1;
}

.checkout-stepper .step.step-complete {
  opacity: 0.85;
}

.step-indicator {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-primary);
  background: #FFF;
}

.step-active .step-indicator {
  border-color: var(--teal);
  background: var(--teal-soft);
  color: var(--teal-dark);
}

.step-complete .step-indicator {
  border-color: var(--green-online);
  color: var(--green-online);
}

.step-details {
  display: flex;
  flex-direction: column;
}

.step-num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-muted);
  text-transform: uppercase;
}

.step-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-primary);
}

.checkout-notice-card {
  background: #FFF;
  border: 1px solid var(--teal);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  max-width: 780px;
  margin: 0 auto 36px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: 0 4px 20px var(--teal-glow);
}

.notice-icon {
  font-size: 22px;
}

.notice-title {
  font-size: 1.1rem;
  color: var(--ink-primary);
  margin-bottom: 6px;
}

.notice-text {
  font-size: 0.9rem;
  color: var(--ink-secondary);
  line-height: 1.5;
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 720px;
  margin: 0 auto 60px;
}

.country-card {
  background: #FFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.country-card:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
}

.country-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.country-flag {
  font-size: 32px;
  line-height: 1;
}

.country-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink-primary);
}

.country-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--teal-dark);
  background: var(--teal-soft);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  display: inline-block;
  margin-top: 2px;
  font-weight: 700;
}

.country-note {
  font-size: 12px;
  color: var(--ink-secondary);
}

.country-currency {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--teal-dark);
  font-weight: 700;
}

.country-card-footer {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--ink-muted);
  text-align: center;
  padding-top: 8px;
  border-top: 1px solid var(--border-light);
}

/* ── POLICY / LEGAL PAGES ──────────────────────────────────── */
.policy-page {
  padding: 60px 0 100px;
}

.policy-content {
  background: #FFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 44px;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
}

.policy-content h1 {
  font-size: 2.2rem;
  margin-bottom: 8px;
}

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

.policy-content h2 {
  font-size: 1.35rem;
  margin-top: 28px;
  margin-bottom: 12px;
  color: var(--teal-dark);
}

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

.policy-content ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

/* ── RESPONSIVE RULES (DOWN TO 320px) ──────────────────────── */
@media (max-width: 1024px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .versatility-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 960px) {
  .nav-links {
    display: none;
  }
  .hamburger-btn {
    display: block;
  }
  .nordic-hero {
    padding: 16px 0 36px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .hero-visual-col {
    order: -1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-img-wrap {
    max-height: 220px;
    display: flex;
    justify-content: center;
  }
  .hero-img-wrap img {
    max-height: 220px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
  }
  .mobile-hero-cta {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 14px;
    padding: 13px 10px;
    font-size: 11.5px;
    line-height: 1.3;
    text-align: center;
    box-sizing: border-box;
  }
  .hero-copy-col {
    order: 2;
  }
  .desktop-hero-cta {
    display: none;
  }
  .titanium-features-grid {
    grid-template-columns: 1fr;
  }
  .cladding-grid {
    grid-template-columns: 1fr;
  }
  .unboxing-layout {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }
  .versatility-grid {
    grid-template-columns: 1fr;
  }
  .btn-nordic-nav {
    display: none;
  }
  .sticky-bottom-bar {
    flex-direction: column;
    gap: 8px;
    padding: 10px 14px;
  }
  .sticky-btn-cta {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container, .container-narrow {
    padding: 0 14px;
  }
  .nordic-h1 {
    font-size: 1.95rem;
  }
  .hero-lead {
    font-size: 0.95rem;
  }
  .hero-price-card {
    padding: 16px 14px;
  }
  .price-row {
    gap: 10px;
  }
  .price-sale {
    font-size: 2.3rem;
  }
  .btn-nordic-hero {
    width: 100%;
    font-size: 12px;
    padding: 12px 10px;
    box-sizing: border-box;
    text-align: center;
    white-space: normal;
  }
  .checkout-stepper {
    gap: 10px;
  }
  .step-label {
    display: none;
  }
  .checkout-notice-card {
    padding: 16px 12px;
    gap: 12px;
  }
  .policy-content {
    padding: 20px 14px;
  }
  .matrix-row {
    padding: 12px 14px;
    font-size: 11.5px;
  }
  .comp-table th, .comp-table td {
    padding: 12px 8px;
    font-size: 11px;
  }
}

/* Hard 320px screen guard */
@media (max-width: 340px) {
  .container, .container-narrow {
    padding: 0 10px;
  }
  .nordic-h1 {
    font-size: 1.7rem;
  }
  .hero-price-card {
    padding: 14px 10px;
  }
  .price-row {
    gap: 8px;
  }
  .btn-nordic-hero {
    font-size: 11px;
    padding: 11px 6px;
    letter-spacing: 0;
    text-align: center;
    box-sizing: border-box;
    white-space: normal;
  }
  .matrix-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .matrix-row .v {
    text-align: left;
  }
}
