/* ============================================
   VoxIQ - gedeelde stylesheet voor productpagina's
   Versie 2026-06-10
   ============================================ */

:root {
  --vx-gold:       #08172E;
  --vx-gold-deep:  #050e1d;
  --vx-gold-warm:  #4a6da5;
  --vx-gold-mist:  #eef2f8;

  --ln-blue:       #1f86c9;
  --ln-blue-deep:  #155f9c;

  --vx-blue:       #2870c8;
  --vx-blue-soft:  #8aa0c4;

  --vx-accent-1:   #08172E;
  --vx-accent-2:   #4a6da5;
  --vx-accent-3:   #1f86c9;

  --ink:      #08172E;
  --ink-soft: #2d3e5e;
  --ink-mute: #6b7588;
  --paper:    #ffffff;
  --paper-2:  #f5f7fb;
  --line:     #d8dee9;

  --display: 'Fraunces', Georgia, serif;
  --body:    'Inter Tight', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ────────── HEADER ────────── */
header {
  background: white;
  border-bottom: 3px solid var(--vx-gold);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.logo-mark {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--ink);
  line-height: 1;
}
.logo-mark .logo-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 38px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.logo-mark .logo-tagline {
  display: block;
  font-family: var(--body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--vx-blue-soft);
  margin-top: 6px;
  white-space: nowrap;
}
.logo-mark .logo-wave {
  display: inline-flex;
  align-items: center;
  color: var(--vx-blue);
}
.logo-mark .logo-wave svg {
  width: 36px;
  height: 36px;
  display: block;
}
.logo-mark em {
  font-style: normal;
  color: var(--vx-blue);
  font-weight: 600;
}
nav ul.main-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}
nav ul.main-menu > li {
  position: relative;
}
nav a.menu-item {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.2s;
  padding: 10px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
nav a.menu-item .chev {
  width: 10px;
  height: 10px;
  transition: transform 0.2s;
}
nav li:hover > a.menu-item { color: var(--vx-gold-deep); }
nav li:hover > a.menu-item .chev { transform: rotate(180deg); }
nav a.menu-item.active {
  color: var(--vx-blue);
  font-weight: 600;
}
nav .nav-cta {
  background: var(--vx-gold);
  color: white;
  padding: 11px 22px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.2s;
}
nav .nav-cta:hover {
  background: var(--vx-gold-warm);
  color: white;
}

/* Dropdown voor "Producten" */
.dropdown {
  position: absolute;
  top: 100%;
  left: -16px;
  min-width: 280px;
  background: white;
  border: 1px solid var(--line);
  border-top: 3px solid var(--vx-blue);
  border-radius: 0 0 6px 6px;
  box-shadow: 0 16px 40px rgba(8, 23, 46, 0.14);
  padding: 14px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 60;
}
nav li:hover > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a.dd-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--ink);
  transition: background 0.15s, color 0.15s;
  border-left: 3px solid transparent;
}
.dropdown a.dd-item:hover {
  background: var(--vx-gold-mist);
  color: var(--vx-gold-deep);
  border-left-color: var(--vx-blue);
}
.dropdown .dd-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--vx-blue);
  flex-shrink: 0;
  margin-top: 6px;
}
.dropdown .dd-text { flex: 1; }
.dropdown .dd-text strong { display: block; font-weight: 600; margin-bottom: 2px; }
.dropdown .dd-text small { font-size: 12px; color: var(--ink-mute); font-weight: 400; }

/* ────────── PRODUCT-HERO ────────── */
.product-hero {
  background: linear-gradient(135deg, #050e1d 0%, #08172E 50%, #142850 100%);
  color: white;
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}
.product-hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -150px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(74, 109, 165, 0.30) 0%, transparent 70%);
  z-index: 0;
}
.product-hero::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(31, 134, 201, 0.16) 0%, transparent 70%);
  z-index: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vx-blue-soft);
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--vx-blue-soft); transition: color 0.2s; }
.breadcrumb a:hover { color: white; }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }

.coming-soon-badge {
  display: inline-block;
  background: var(--vx-blue);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 4px;
  margin-bottom: 18px;
}

h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(36px, 4.2vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: white;
  margin-bottom: 24px;
}
h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--vx-blue-soft);
}
.hero-lead {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.55;
}
.hero-cta {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--vx-gold);
  color: white;
  padding: 16px 28px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.25s;
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-primary:hover {
  background: var(--vx-blue);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(40, 112, 200, 0.4);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: white;
  padding: 16px 4px;
  font-size: 15px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  transition: gap 0.25s, border-color 0.25s;
}
.btn-secondary:hover {
  gap: 14px;
  border-bottom-color: var(--vx-blue-soft);
  color: var(--vx-blue-soft);
}

/* Hero rechts: demo-kaart */
.hero-phone {
  background: linear-gradient(160deg, rgba(74, 109, 165, 0.20) 0%, rgba(31, 134, 201, 0.12) 100%);
  border: 1px solid rgba(74, 109, 165, 0.40);
  border-radius: 16px;
  padding: 32px 36px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}
.hero-phone::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--vx-blue) 0%, var(--vx-blue-soft) 100%);
}
.phone-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vx-blue-soft);
  margin-bottom: 14px;
}
.phone-badge .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #6dd86d;
  box-shadow: 0 0 0 0 rgba(109, 216, 109, 0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(109, 216, 109, 0.7); }
  70%  { box-shadow: 0 0 0 12px rgba(109, 216, 109, 0); }
  100% { box-shadow: 0 0 0 0 rgba(109, 216, 109, 0); }
}
.phone-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  margin-bottom: 6px;
}
.phone-number {
  font-family: var(--display);
  font-weight: 400;
  font-size: 34px;
  color: white;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  display: block;
}
.phone-number a { color: white; }
.phone-hint {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 14px;
}

/* ────────── SECTIE ────────── */
.section { padding: 100px 0; }
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vx-gold-deep);
  margin-bottom: 20px;
}
.section-eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--vx-blue);
}
h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  max-width: 820px;
  color: var(--ink);
}
h2 em { font-style: italic; color: var(--vx-gold-deep); }
.section-lead {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 720px;
  margin-bottom: 56px;
}

/* ────────── PROBLEEM-SECTIE ────────── */
.problem-section { background: white; }
.problem-quote {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.3;
  color: var(--ink);
  max-width: 920px;
  padding-left: 32px;
  border-left: 4px solid var(--vx-blue);
  letter-spacing: -0.01em;
}
.problem-quote strong {
  font-weight: 500;
  color: var(--vx-gold-deep);
}

/* ────────── FEATURES-SECTIE ────────── */
.features-section { background: var(--vx-gold-mist); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.feature-card {
  background: white;
  border-radius: 8px;
  padding: 32px 32px 30px;
  border-top: 3px solid var(--vx-blue);
  box-shadow: 0 1px 3px rgba(8, 23, 46, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(8, 23, 46, 0.12);
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--vx-gold-mist);
  color: var(--vx-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-card h3 {
  font-family: var(--body);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
}
.feature-card p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.feature-card.feature-highlight {
  background: linear-gradient(180deg, white 0%, var(--vx-gold-mist) 100%);
  border-top-color: var(--vx-gold);
  border-top-width: 4px;
}
.feature-card.feature-highlight .feature-icon {
  background: var(--vx-gold);
  color: white;
}

/* ────────── AUDIENCE + DIFFERENTIATIE ────────── */
.audience-section { background: white; }
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.audience-card {
  background: var(--paper-2);
  padding: 40px 36px;
  border-radius: 8px;
  border-left: 4px solid var(--vx-gold);
}
.audience-card.audience-diff {
  border-left-color: var(--vx-blue);
}
.audience-card h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 24px;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.audience-card p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 14px;
}
.audience-card ul {
  list-style: none;
  margin-top: 18px;
}
.audience-card ul li {
  font-size: 14px;
  color: var(--ink-soft);
  padding: 7px 0 7px 22px;
  position: relative;
  line-height: 1.55;
}
.audience-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 12px;
  height: 2px;
  background: var(--vx-blue);
}
.audience-card.audience-diff ul li::before {
  background: var(--vx-gold);
}

/* ────────── PRICING ────────── */
.pricing-section {
  background: linear-gradient(180deg, var(--vx-gold-mist) 0%, white 100%);
}
.price-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 48px 56px;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: 0 6px 28px rgba(8, 23, 46, 0.08);
  text-align: center;
  border-top: 4px solid var(--vx-blue);
}
.price-card .price-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vx-blue);
  margin-bottom: 12px;
}
.price-amount {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(48px, 5vw, 64px);
  color: var(--vx-gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.price-amount sup {
  font-size: 0.4em;
  font-weight: 500;
  color: var(--ink-soft);
  vertical-align: top;
  margin-right: 6px;
  letter-spacing: 0;
}
.price-unit {
  font-size: 17px;
  color: var(--ink-mute);
  margin-top: 6px;
  margin-bottom: 30px;
}
.price-card.price-quote .price-amount {
  font-size: clamp(34px, 3.5vw, 44px);
  color: var(--vx-gold-deep);
}
.price-card.price-quote .price-unit {
  margin-bottom: 24px;
}
.price-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--vx-gold);
  color: white;
  padding: 16px 32px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.25s;
  margin-top: 8px;
}
.price-card-cta:hover {
  background: var(--vx-blue);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(40, 112, 200, 0.4);
}
.price-card .price-note {
  font-size: 13px;
  color: var(--ink-mute);
  margin-top: 22px;
  line-height: 1.55;
}

/* ────────── CROSS-SELL ────────── */
.cross-sell-section {
  background: linear-gradient(180deg, #08172E 0%, #050e1d 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.cross-sell-section::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(74, 109, 165, 0.25) 0%, transparent 70%);
}
.cross-sell-section .wrap { position: relative; z-index: 1; }
.cross-sell-section .section-eyebrow { color: var(--vx-blue-soft); }
.cross-sell-section .section-eyebrow::before { background: var(--vx-blue); }
.cross-sell-section h2 { color: white; }
.cross-sell-section h2 em { color: var(--vx-blue-soft); }
.cross-sell-section .section-lead { color: rgba(255, 255, 255, 0.78); }
.cross-sell-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cross-sell-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  padding: 28px 24px 26px;
  color: white;
  transition: background 0.25s, transform 0.25s, border-color 0.25s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cross-sell-card:hover {
  background: rgba(74, 109, 165, 0.15);
  border-color: var(--vx-blue);
  transform: translateY(-3px);
}
.cross-sell-card .cs-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 13px;
  color: var(--vx-blue-soft);
  font-weight: 500;
}
.cross-sell-card h4 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: white;
}
.cross-sell-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
  flex: 1;
}
.cross-sell-card .cs-arrow {
  color: var(--vx-blue);
  font-weight: 600;
  font-size: 14px;
  margin-top: 4px;
}

/* ────────── CTA SECTIE ────────── */
.cta-section {
  background: var(--vx-gold);
  color: white;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(74, 109, 165, 0.35) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(31, 134, 201, 0.22) 0%, transparent 50%);
}
.cta-section .wrap { position: relative; z-index: 1; }
.cta-section h2 { color: white; margin: 0 auto 24px; text-align: center; }
.cta-section h2 em { color: var(--vx-blue-soft); }
.cta-lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  max-width: 640px;
  margin: 0 auto 40px;
}
.cta-section .btn-primary { background: white; color: var(--vx-gold); border-color: transparent; }
.cta-section .btn-primary:hover { background: var(--vx-blue-soft); color: white; }
.cta-section .btn-secondary {
  color: white;
  border-bottom-color: rgba(255, 255, 255, 0.4);
}
.cta-section .btn-secondary:hover {
  color: var(--vx-blue-soft);
  border-bottom-color: var(--vx-blue-soft);
}
.cta-section .cta-row {
  display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
}

/* ────────── FOOTER ────────── */
footer {
  background: #050e1d;
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 32px;
  border-top: 4px solid var(--vx-gold-warm);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
footer h5 {
  font-family: var(--body);
  font-weight: 600;
  font-size: 12px;
  color: white;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
footer ul { list-style: none; }
footer li { margin-bottom: 8px; font-size: 14px; }
footer a { color: rgba(255, 255, 255, 0.7); transition: color 0.2s; }
footer a:hover { color: var(--vx-blue-soft); }
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 30px;
  letter-spacing: -0.02em;
  color: white;
  margin-bottom: 8px;
  line-height: 1;
}
.footer-logo .logo-wave {
  display: inline-flex;
  align-items: center;
  color: var(--vx-blue);
}
.footer-logo .logo-wave svg { width: 28px; height: 28px; display: block; }
.footer-logo em {
  font-style: normal;
  color: var(--vx-blue);
  font-weight: 600;
}
.footer-tagline {
  display: block;
  font-family: var(--body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--vx-blue-soft);
  margin-bottom: 22px;
}
.footer-tag {
  font-size: 13px;
  line-height: 1.6;
  max-width: 280px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom .lantronics-credit a { color: var(--vx-blue-soft); }

/* ────────── ANIMATIES ────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.breadcrumb, h1, .hero-lead, .hero-cta {
  animation: fadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) backwards;
}
h1 { animation-delay: 0.1s; }
.hero-lead { animation-delay: 0.2s; }
.hero-cta { animation-delay: 0.3s; }
.hero-phone { animation: fadeUp 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) 0.35s backwards; }

/* ────────── RESPONSIVE ────────── */
@media (max-width: 1024px) {
  nav ul.main-menu { display: none; }
  .nav-toggle { display: block; }
}
@media (max-width: 980px) {
  .product-hero { padding: 56px 0 72px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .features-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; gap: 28px; }
  .cross-sell-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .section { padding: 72px 0; }
  .footer-bottom { flex-direction: column; gap: 12px; }
}
@media (max-width: 600px) {
  .phone-number { font-size: 26px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .cross-sell-grid { grid-template-columns: 1fr; }
  .price-card { padding: 36px 28px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn-primary, .hero-cta .btn-secondary {
    width: 100%; justify-content: center;
  }
  .problem-quote { padding-left: 22px; }
}

/* ────────── MOBILE NAV ────────── */
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
  margin: -8px;
}
.nav-toggle-icon {
  display: block;
  width: 28px;
  height: 22px;
  position: relative;
}
.nav-toggle-icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--vx-gold-deep);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s, top 0.25s;
}
.nav-toggle-icon span:nth-child(1) { top: 2px; }
.nav-toggle-icon span:nth-child(2) { top: 10px; }
.nav-toggle-icon span:nth-child(3) { top: 18px; }
.nav-open .nav-toggle-icon span:nth-child(1) { top: 10px; transform: rotate(45deg); }
.nav-open .nav-toggle-icon span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle-icon span:nth-child(3) { top: 10px; transform: rotate(-45deg); }

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 23, 46, 0.65);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 999;
}
.nav-open .mobile-overlay { opacity: 1; visibility: visible; }

.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: min(360px, 88vw);
  height: 100vh;
  height: 100dvh;
  background: white;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1000;
  overflow-y: auto;
  padding: 80px 28px 32px;
}
.nav-open .mobile-menu { transform: translateX(0); }
.mobile-menu-list { list-style: none; margin: 0; padding: 0; }
.mobile-menu-list > li { border-bottom: 1px solid var(--line); }
.mobile-menu-list > li:last-child { border-bottom: 0; margin-top: 16px; }
.mobile-menu-list a {
  display: block;
  padding: 14px 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
}
.mobile-menu-list a:hover { color: var(--vx-gold-deep); }
.mobile-menu-list .mobile-section {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
  padding: 18px 0 8px;
  font-weight: 600;
}
.mobile-menu-list .mobile-sub {
  list-style: none;
  margin: 0 0 8px 16px;
  padding: 0;
  border-left: 2px solid var(--line);
}
.mobile-menu-list .mobile-sub a {
  padding: 10px 0 10px 14px;
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 400;
}
.mobile-menu-list .mobile-cta {
  display: block;
  background: var(--vx-gold);
  color: white;
  text-align: center;
  padding: 14px 24px;
  border-radius: 4px;
  font-weight: 600;
  margin-top: 8px;
}
body.nav-open { overflow: hidden; }

/* Mobile-nav fix (cascade-override): zet .nav-toggle weer op block ná de base-rule */
@media (max-width: 1024px) {
  nav ul.main-menu { display: none; }
  .nav-toggle { display: block; }
}
