/* ============================================================
   ASTRA — Premium Design System
   ============================================================ */

:root {
  /* Nordic palette */
  --nordic-primary: #0F3460;
  --nordic-accent: #E94560;
  --nordic-gradient: linear-gradient(135deg, rgba(15,52,96,0.72) 0%, rgba(15,52,96,0.32) 50%, rgba(15,52,96,0.06) 100%);

  /* Mediterranean palette */
  --med-primary: #1a5c2a;
  --med-accent: #d4a843;
  --med-gradient: linear-gradient(135deg, rgba(30,50,25,0.82) 0%, rgba(45,50,20,0.38) 48%, rgba(60,45,15,0.08) 100%);

  /* Sol / Cura brand colors */
  --sol-primary: #0F3460;
  --sol-primary-light: #1a4a80;
  --sol-primary-dark: #0a2340;
  --cura-primary: #1a5c2a;
  --cura-primary-light: #237a35;
  --cura-primary-dark: #134420;

  /* Active theme — set by [data-journey] */
  --theme-primary: var(--nordic-primary);
  --theme-primary-light: var(--sol-primary-light);
  --theme-primary-dark: var(--sol-primary-dark);
  --theme-accent: var(--nordic-accent);
  --theme-gradient: var(--nordic-gradient);

  /* Warm neutrals */
  --white: #ffffff;
  --off-white: #faf9f6;
  --cream: #f4f1eb;
  --gray-50: #f5f4f2;
  --gray-100: #e8e6e1;
  --gray-200: #d4d1cb;
  --gray-300: #b0ada6;
  --gray-500: #706d66;
  --gray-700: #3d3b37;
  --gray-900: #1a1917;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Sizes */
  --header-height: 64px;
  --total-header: var(--header-height);

  /* Spacing */
  --section-pad-y: 5.5rem;
  --container-max: 1200px;
  --container-narrow-max: 780px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   JOURNEY-VIEW THEME SCOPES
   ============================================================ */
[data-journey="nordic"] {
  --theme-primary: var(--nordic-primary);
  --theme-primary-light: var(--sol-primary-light);
  --theme-primary-dark: var(--sol-primary-dark);
  --theme-accent: var(--nordic-accent);
  --theme-gradient: var(--nordic-gradient);
}

[data-journey="med"] {
  --theme-primary: var(--med-primary);
  --theme-primary-light: var(--cura-primary-light);
  --theme-primary-dark: var(--cura-primary-dark);
  --theme-accent: var(--med-accent);
  --theme-gradient: var(--med-gradient);
}

/* Content visibility */
body.mode-sol .mode-cura-content { display: none; }
body.mode-cura .mode-sol-content { display: none; }
[data-journey="nordic"] .jv-med-content { display: none; }
[data-journey="med"]    .jv-nordic-content { display: none; }

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-900);
  background: var(--off-white);
  overflow-x: hidden;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }

:focus-visible {
  outline: 3px solid var(--theme-accent);
  outline-offset: 2px;
  border-radius: 3px;
}

#services, #how-it-works, #faq, #final-cta, #protect, #brands {
  scroll-margin-top: calc(var(--total-header) + 1.5rem);
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-narrow { max-width: var(--container-narrow-max); }
.section { padding: var(--section-pad-y) 0; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--theme-primary);
}

h1 { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 500; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

.section-title {
  text-align: center;
  margin-bottom: 1rem;
}

.section-overline {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--theme-accent);
  margin-bottom: 0.5rem;
}

.section-lead {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.75;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: 8px;
  padding: 0.7rem 1.5rem;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  min-height: 48px;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--theme-primary);
  color: var(--white);
}
.btn-primary:hover { background: var(--theme-primary-light); }

.btn-hero-primary {
  background: var(--theme-accent);
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
[data-journey="med"] .btn-hero-primary { color: var(--gray-900); }
.btn-hero-primary:hover {
  filter: brightness(1.08);
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
  transform: translateY(-1px);
}

.btn-hero-outline {
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
  background: rgba(255,255,255,0.10);
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.8);
}

.btn-outline {
  border: 2px solid var(--theme-primary);
  color: var(--theme-primary);
  background: transparent;
}
.btn-outline:hover { background: var(--theme-primary); color: var(--white); }

.btn-lg {
  padding: 0.85rem 2rem;
  font-size: 1rem;
  min-height: 52px;
  border-radius: 10px;
}

.btn-text {
  font-weight: 600;
  color: var(--theme-primary);
  border-bottom: 2px solid var(--theme-accent);
  padding-bottom: 2px;
  transition: color 0.2s var(--ease);
  min-height: 48px;
  display: inline-flex;
  align-items: center;
}
.btn-text:hover { color: var(--theme-primary-light); }

/* ============================================================
   HEADER — Refined, single-line
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  height: var(--header-height);
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  gap: 1rem;
  overflow: hidden;
}

.header-brand { flex-shrink: 0; margin-right: auto; }

.logo-lockup {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.logo-icon {
  width: 6rem;
  height: auto;
  color: var(--theme-primary);
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--theme-primary);
  letter-spacing: 0.14em;
}

.logo-sublabel {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gray-500);
  white-space: nowrap;
  letter-spacing: 0.02em;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-nav { display: none; flex-shrink: 0; }

.nav-list { display: flex; gap: 1.25rem; white-space: nowrap; }

.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray-700);
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
  min-height: 48px;
  display: inline-flex;
  align-items: center;
}
.nav-link:hover {
  color: var(--theme-primary);
  border-bottom-color: var(--theme-accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.btn-header-cta {
  display: none;
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
  white-space: nowrap;
}

/* Language toggle — compact segmented control */
.lang-toggle {
  display: flex;
  align-items: center;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  background: var(--white);
}

.lang-btn {
  padding: 0.3rem 0.55rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gray-500);
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
  min-height: 32px;
  min-width: 32px;
  letter-spacing: 0.03em;
  text-align: center;
}

.lang-btn[aria-pressed="true"] {
  background: var(--gray-700);
  color: var(--white);
}

.lang-btn[aria-pressed="false"]:hover {
  background: var(--gray-100);
  color: var(--gray-700);
}

/* Journey toggle wrapper — mobile-first: fixed pill at viewport bottom */
.journey-toggle-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 90;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  border-radius: 14px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0,0,0,0.08);
  padding: 0.35rem 0.5rem;
}

/* Inner button group */
.journey-toggle {
  display: flex;
  align-items: center;
  border-radius: 10px;
  overflow: hidden;
}

/* Toggle explainer line — subtle one-liner under the toggle */
.jv-explainer {
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--gray-500);
  white-space: nowrap;
  letter-spacing: 0.01em;
  line-height: 1.3;
  text-align: center;
  padding: 0 0.25rem;
}

/* When JS moves it into header on desktop, reset to inline styles */
.header-actions .journey-toggle-wrap {
  position: static;
  transform: none;
  box-shadow: none;
  border-radius: 10px;
  background: var(--white);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid var(--gray-200);
  z-index: auto;
  padding: 0.25rem 0.35rem;
  gap: 0.15rem;
}

.header-actions .jv-explainer {
  font-size: 0.6rem;
  color: var(--gray-300);
}

.jv-btn {
  padding: 0.35rem 0.75rem;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--gray-500);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
  white-space: nowrap;
  min-height: 36px;
  letter-spacing: 0.01em;
}

.jv-btn[aria-pressed="true"] { color: var(--white); }
.jv-btn--nordic[aria-pressed="true"] { background: var(--nordic-primary); }
.jv-btn--med[aria-pressed="true"] { background: var(--med-primary); }
.jv-btn[aria-pressed="false"]:hover { background: var(--gray-100); color: var(--gray-700); }

/* Hamburger */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  border-radius: 8px;
}

.hamburger-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gray-900);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle[aria-expanded="true"] .hamburger-bar:nth-child(2) { opacity: 0; }
.mobile-menu-toggle[aria-expanded="true"] .hamburger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.header-nav.is-open {
  display: flex;
  position: absolute;
  top: var(--header-height);
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  z-index: 99;
}
.header-nav.is-open .nav-list {
  flex-direction: column;
  gap: 0;
  width: 100%;
  padding: 0.5rem 1.5rem 1rem;
}
.header-nav.is-open .nav-link {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--gray-100);
  width: 100%;
  font-size: 1rem;
}

/* ============================================================
   HERO — Full-bleed cinematic with glassmorphic panel
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  min-height: min(85vh, 720px);
  display: flex;
  align-items: stretch;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  transition: opacity 0.5s ease;
  will-change: opacity;
}

/* Hero images — Unsplash (auto=format serves WebP/AVIF to supporting browsers)
   Local fallbacks: assets/hero-nordic-start.jpg, assets/hero-villa-coast-golden-hour.jpg */
.hero-bg--nordic {
  /* Calm Icelandic fjord with snow-capped mountains in soft daylight */
  background-image: url('https://images.unsplash.com/photo-1760842715984-1a22dc152e0a?w=1920&q=80&auto=format&fit=crop');
  background-color: #3a5a6e;
  background-position: center 40%;
}

.hero-bg--med {
  /* Benidorm panorama at sunset, Costa Blanca, Spain */
  background-image: url('https://images.unsplash.com/photo-1584725173614-98c5925b7a02?w=1920&q=80&auto=format&fit=crop');
  background-color: #5c4a2a;
  background-position: center;
}

[data-journey="nordic"] .hero-bg--nordic { opacity: 1; }
[data-journey="nordic"] .hero-bg--med    { opacity: 0; }
[data-journey="med"]    .hero-bg--nordic { opacity: 0; }
[data-journey="med"]    .hero-bg--med    { opacity: 1; }

/* Gradient overlay — diagonal fade revealing right side of photo */
.hero-gradient {
  position: absolute;
  inset: 0;
  background: var(--theme-gradient);
  transition: background 0.5s ease;
}

/* Hero layout */
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.5rem) 1.5rem clamp(2rem, 5vw, 3rem);
  display: flex;
  align-items: center;
}

/* Glassmorphic panel */
.hero-panel {
  width: 100%;
  max-width: 620px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1.5rem, 4vw, 2.75rem);
  transition: background 0.4s var(--ease);
}

/* Cool, crisp panel for Nordic view */
[data-journey="nordic"] .hero-panel {
  background: rgba(15,40,70,0.19);
  border-color: rgba(180,210,240,0.12);
}

/* Warm, softer panel for Mediterranean view */
[data-journey="med"] .hero-panel {
  background: rgba(45,35,15,0.21);
  border-color: rgba(255,230,180,0.10);
}

/* Hero in-panel nav */
.hero-nav {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.hero-nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s var(--ease);
  padding: 0.25rem 0;
  letter-spacing: 0.02em;
}
.hero-nav-link:hover { color: var(--white); }

/* Hero content */
.hero-content { max-width: 560px; }

.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.hero .hero-headline {
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.18;
  font-weight: 500;
  font-style: normal;
  letter-spacing: -0.01em;
}

.hero .hero-sub {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.75rem;
  max-width: 500px;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Hero watermark — subtle brand stamp, right side on desktop only.
   Positioned absolute inside .hero-inner (which has position:relative)
   so placement is anchored to the hero layout grid, not the photo. */
.hero-watermark {
  display: none;            /* hidden on mobile */
  position: absolute;
  /* Anchor: center-right of the open space beside the panel,
     aligned slightly above vertical midpoint for better visual balance. */
  right: clamp(2.5rem, 7vw, 7rem);
  top: 46%;
  transform: translateY(-50%);
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  pointer-events: none;
  user-select: none;
  opacity: 0.13;
  max-width: 280px;
  transition: opacity 0.4s var(--ease);
}

.hero-watermark-icon {
  width: clamp(56px, 7vw, 84px);
  height: auto;
  color: var(--white);
}

.hero-watermark-name {
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 1.6vw, 1.3rem);
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  letter-spacing: 0.06em;
}

/* Per-mode subtle tint */
[data-journey="nordic"] .hero-watermark { color: rgba(200,220,245,1); }
[data-journey="med"]    .hero-watermark { color: rgba(255,240,210,1); }

@media (min-width: 960px) {
  .hero-watermark { display: flex; }
}

/* Hero badges — demoted, non-interactive brand indicators */
.hero-badges {
  display: none;         /* hidden on mobile — toggle explainer provides context */
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

@media (min-width: 768px) {
  .hero-badges { display: flex; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.01em;
  padding: 0.2rem 0;
}

/* Highlight the active badge */
[data-journey="nordic"] .hero-badge--sol,
[data-journey="med"] .hero-badge--cura {
  color: rgba(255,255,255,0.8);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.6;
}
.hero-badge-dot--sol { background: #7aacd6; }
.hero-badge-dot--cura { background: #7ecb82; }

[data-journey="nordic"] .hero-badge--sol .hero-badge-dot,
[data-journey="med"] .hero-badge--cura .hero-badge-dot {
  opacity: 1;
}

/* ============================================================
   PROTECT (shared)
   ============================================================ */
.section-protect {
  background: var(--theme-primary);
  color: var(--white);
  transition: background 0.4s var(--ease);
}
.section-protect .section-title { color: var(--white); }
.section-protect .section-lead { color: rgba(255, 255, 255, 0.8); }

/* ============================================================
   CARDS (Services)
   ============================================================ */
.card-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  border-color: var(--gray-200);
  transform: translateY(-2px);
}

.card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid var(--gray-100);
  background: var(--off-white);
  color: var(--theme-primary);
  margin-bottom: 1.25rem;
}

.card-title { margin-bottom: 0.5rem; font-size: 1.15rem; }
.card-body { color: var(--gray-500); line-height: 1.7; font-size: 0.93rem; }

.section-services { background: var(--gray-50); }

/* ============================================================
   STEPS
   ============================================================ */
.steps-list { max-width: 680px; margin: 2.5rem auto 0; }

.step {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--gray-100);
}
.step:last-child { border-bottom: none; }

.step-number {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--theme-primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
}

.step-title { margin-bottom: 0.3rem; }
.step-content p { color: var(--gray-500); font-size: 0.93rem; line-height: 1.7; }

/* ============================================================
   BRANDS
   ============================================================ */
.section-brands { background: var(--cream); }

.brands-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  margin-top: 1rem;
}

.brand-col {
  background: var(--white);
  border-radius: 14px;
  padding: 2rem 1.75rem;
  border-left: 4px solid transparent;
}
.brand-col-sol { border-left-color: var(--sol-primary); }
.brand-col-cura { border-left-color: var(--cura-primary); }

.brand-label { margin-bottom: 0.5rem; font-size: 1.1rem; }
.brand-col-sol .brand-label { color: var(--sol-primary); }
.brand-col-cura .brand-label { color: var(--cura-primary); }
.brand-col p { color: var(--gray-500); line-height: 1.7; font-size: 0.93rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { margin-top: 1rem; }
.faq-item { border-bottom: 1px solid var(--gray-100); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  cursor: pointer;
  line-height: 1.4;
  min-height: 56px;
  list-style: none;
}
.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '+';
  flex-shrink: 0;
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--gray-500);
  margin-left: 1rem;
}
.faq-item[open] > .faq-question::after { content: '\2212'; }

.faq-answer { padding: 0 0 1.25rem; }
.faq-answer p { color: var(--gray-500); line-height: 1.7; font-size: 0.93rem; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.section-final-cta {
  background: var(--theme-primary);
  color: var(--white);
  text-align: center;
  transition: background 0.4s var(--ease);
}
.section-final-cta .section-title { color: var(--white); }
.section-final-cta .section-lead { color: rgba(255,255,255,0.8); }

.final-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.section-final-cta .btn-primary {
  background: var(--theme-accent);
  color: var(--white);
}
[data-journey="med"] .section-final-cta .btn-primary { color: var(--gray-900); }
.section-final-cta .btn-primary:hover { filter: brightness(1.08); }

.section-final-cta .btn-text {
  color: rgba(255,255,255,0.85);
  border-bottom-color: var(--theme-accent);
}
.section-final-cta .btn-text:hover { color: var(--white); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--gray-900);
  color: var(--gray-300);
  padding: 2.5rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  color: var(--white);
}

.footer-logo-icon {
  width: 8rem;
  height: auto;
  color: var(--white);
}

.footer-copy { font-size: 0.82rem; }

/* ============================================================
   RESPONSIVE — TABLET (768px+)
   ============================================================ */
@media (min-width: 768px) {
  .card-grid { grid-template-columns: 1fr 1fr; }
  .brands-grid { grid-template-columns: 1fr 1fr; }
  .final-cta-actions { flex-direction: row; justify-content: center; }

  .hero-panel { max-width: 560px; }
}

/* ============================================================
   RESPONSIVE — DESKTOP (960px+)
   ============================================================ */
@media (min-width: 960px) {
  .container { padding: 0 2rem; }

  .hero { min-height: min(88vh, 780px); }

  .hero-inner { padding: 3.5rem 2rem 3rem; }

  .hero-panel {
    max-width: 580px;
    padding: 2.5rem 2.75rem;
  }

  .hero-bg--nordic { background-position: center; }
  .hero-bg--med { background-position: 70% center; }

  .card-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
}

/* Header becomes full desktop layout only when there's enough room */
@media (min-width: 1100px) {
  .header-nav { display: flex; }
  .mobile-menu-toggle { display: none; }
}

/* CTA button hidden — hero and final CTA sections provide the call to action */

/* ============================================================
   RESPONSIVE — LARGE DESKTOP (1200px+)
   ============================================================ */
@media (min-width: 1200px) {
  .hero-panel { max-width: 600px; padding: 2.75rem 3rem; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (< 480px)
   ============================================================ */
/* ============================================================
   RESPONSIVE — MOBILE (< 960px)
   ============================================================ */
@media (max-width: 1099px) {
  .logo-sublabel { display: none; }

  .logo-icon { width: 5.5rem; }

  .header-inner { padding: 0 1rem; gap: 0.75rem; }

  .hero-inner {
    padding-top: clamp(2.5rem, 6vw, 3.5rem);
    padding-bottom: clamp(2rem, 5vw, 3rem);
  }

  /* Add bottom padding so fixed toggle doesn't cover page content */
  body { padding-bottom: 4.5rem; }

  .journey-toggle-wrap .jv-btn { padding: 0.5rem 0.9rem; font-size: 0.76rem; }

  /* Keep only logo, lang toggle, and hamburger in the header */
  .header-actions { gap: 0.4rem; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (< 480px)
   ============================================================ */
@media (max-width: 479px) {
  .hero-nav { display: none; }

  .hero-panel {
    padding: 1.25rem 1.25rem;
    border-radius: 14px;
  }

  .hero-badges { display: none; }  /* Already hidden, but explicit for small mobile */

  .hero .hero-headline { font-size: 1.7rem; }

  .logo-icon { width: 5rem; }
}
