/* ─────────────────────────────────────────────
   Ventipartner v3 — full stylesheet
   ───────────────────────────────────────────── */

:root {
  --navy-900: #0a2c4a;
  --navy-800: #0c3e67;
  --navy-700: #14507f;
  --teal-500: #4dd0c7;
  --teal-600: #2bb5ac;
  --teal-700: #178f87;
  --teal-50:  #e8f7f6;
  --ink-900: #0e1620;
  --ink-700: #3a4655;
  --ink-500: #6b7787;
  --ink-300: #aab2bd;
  --bg:      #ffffff;
  --bg-soft: #f5f7fa;
  --line:    #e4e8ee;
  --line-2:  #d6dce5;
  --shadow-sm: 0 1px 2px rgba(10,44,74,.04);
  --shadow:    0 8px 28px rgba(10,44,74,.10);
  --shadow-lg: 0 24px 60px rgba(10,44,74,.18);
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  overflow-x: hidden;
  position: relative;
  max-width: 100vw;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-900);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--teal-700); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font-family: inherit; cursor: pointer; border: 0; background: 0; }

/* ─────────────────────────────────────────────
   Nav
   ───────────────────────────────────────────── */
.v3-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; gap: 32px;
  padding: 20px 48px;
  transition: background .3s ease, padding .3s ease, box-shadow .3s ease;
}
.v3-nav.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 48px;
  box-shadow: 0 1px 0 var(--line), 0 8px 24px rgba(10,44,74,.06);
}
.v3-nav-logo {
  display: flex; align-items: center; gap: 12px;
  color: #fff;
  font-weight: 800; font-size: 14px; letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
}
.v3-nav.scrolled .v3-nav-logo { color: var(--navy-900); }
.v3-nav-logo svg { width: 36px; height: 36px; flex: none; }
.v3-nav-logo .sub {
  display: block;
  font-size: 10px; letter-spacing: .08em; font-weight: 500;
  text-transform: none;
  color: rgba(255,255,255,.65);
  margin-top: 2px;
}
.v3-nav.scrolled .v3-nav-logo .sub { color: var(--ink-500); }

.v3-nav-links {
  display: flex; align-items: center; gap: 6px;
  margin-left: auto;
}
.v3-nav-links a {
  color: rgba(255,255,255,.85);
  font-size: 14px; font-weight: 500;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.v3-nav-links a:hover {
  background: rgba(255,255,255,.12);
  color: #fff;
}
.v3-nav.scrolled .v3-nav-links a { color: var(--ink-700); }
.v3-nav.scrolled .v3-nav-links a:hover { background: var(--bg-soft); color: var(--navy-900); }
.v3-nav-links a.active {
  color: #fff;
  background: rgba(255,255,255,.18);
}
.v3-nav.scrolled .v3-nav-links a.active {
  color: var(--teal-700);
  background: var(--teal-50);
}

.v3-nav-actions {
  display: flex; align-items: center; gap: 8px; flex: none;
}
.v3-nav-ring {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 16px; border-radius: 10px;
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,.85);
  white-space: nowrap;
  transition: background .2s, color .2s;
}
.v3-nav-ring svg { width: 15px; height: 15px; flex-shrink: 0; }
.v3-nav-ring:hover { background: rgba(255,255,255,.12); color: #fff; text-decoration: none; }
.v3-nav.scrolled .v3-nav-ring { color: var(--ink-700); }
.v3-nav.scrolled .v3-nav-ring:hover { background: var(--bg-soft); color: var(--navy-900); }

.v3-nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px;
  background: var(--teal-500);
  color: var(--navy-900) !important;
  font-weight: 700; font-size: 14px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  flex: none;
  border: none; cursor: pointer;
  transition: background .2s, transform .2s;
}
.v3-nav-cta:hover { background: var(--teal-600); color: #fff !important; transform: translateY(-1px); text-decoration: none; }
.v3-nav-cta svg { width: 16px; height: 16px; }

/* ── Lead modal ── */
.vp-modal-overlay {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(10,44,74,.55);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.vp-modal-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 36px 36px;
  width: 100%; max-width: 440px;
  position: relative;
  box-shadow: 0 32px 80px rgba(10,44,74,.28);
}
.vp-modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-soft); color: var(--ink-500);
  display: flex; align-items: center; justify-content: center;
  border: none; cursor: pointer;
}
.vp-modal-close svg { width: 16px; height: 16px; }
.vp-modal-close:hover { background: var(--line-2); }

.vp-modal-kicker {
  display: inline-block;
  background: var(--teal-50); color: var(--teal-700);
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 999px; margin-bottom: 12px;
}
.vp-modal-title { font-size: 26px; font-weight: 800; color: var(--navy-900); margin: 0 0 6px; }
.vp-modal-sub { color: var(--ink-500); margin: 0 0 24px; font-size: 15px; }
.vp-modal-field { margin-bottom: 16px; }
.vp-modal-field label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--ink-700); margin-bottom: 6px;
}
.vp-modal-field input {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--line-2); border-radius: 10px;
  font-size: 15px; font-family: inherit; color: var(--ink-900);
  background: var(--bg); transition: border-color .15s;
}
.vp-modal-field input:focus { outline: none; border-color: var(--teal-500); }
.vp-modal-field.error input { border-color: #e05252; }
.vp-modal-err { display: block; font-size: 12px; color: #e05252; margin-top: 4px; }
.vp-modal-submit {
  width: 100%; padding: 15px;
  background: var(--teal-500); color: var(--navy-900);
  font-size: 16px; font-weight: 700; font-family: inherit;
  border: none; border-radius: 12px; cursor: pointer;
  margin-top: 8px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background .2s, transform .15s;
}
.vp-modal-submit svg { width: 16px; height: 16px; }
.vp-modal-submit:hover:not(:disabled) { background: var(--teal-600); color: #fff; transform: translateY(-1px); }
.vp-modal-submit:disabled { opacity: .6; cursor: not-allowed; }
.vp-modal-trust {
  display: flex; gap: 12px; justify-content: center;
  margin-top: 14px; font-size: 12px; color: var(--ink-500);
}
.vp-modal-trust span { display: flex; align-items: center; gap: 4px; }
.vp-modal-trust svg { width: 12px; height: 12px; color: var(--teal-600); }

.vp-modal-success { text-align: center; padding: 12px 0 8px; }
.vp-modal-success-icon {
  width: 64px; height: 64px;
  background: var(--teal-50); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; color: var(--teal-700);
}
.vp-modal-success-icon svg { width: 28px; height: 28px; }
.vp-modal-success h3 { font-size: 26px; font-weight: 800; color: var(--navy-900); margin: 0 0 12px; }
.vp-modal-success p { color: var(--ink-700); margin: 0 0 8px; line-height: 1.6; }
.vp-modal-success-sub { font-size: 14px; color: var(--ink-500) !important; }

@media (max-width: 760px) {
  .vp-modal-overlay { align-items: flex-end; padding: 0; }
  .vp-modal-card { border-radius: 20px 20px 0 0; padding: 32px 24px 44px; max-width: 100%; }
}

.v3-nav-phone {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s, color .2s;
}
.v3-nav-phone:hover { background: rgba(255,255,255,.12); color: #fff; }
.v3-nav-phone svg { width: 15px; height: 15px; flex-shrink: 0; }
.v3-nav.scrolled .v3-nav-phone { color: var(--ink-700); }
.v3-nav.scrolled .v3-nav-phone:hover { background: var(--bg-soft); color: var(--navy-900); }

.v3-nav-dropdown {
  position: relative;
}
.v3-nav-dd-btn {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,.85);
  background: none; border: none; cursor: pointer;
  transition: background .2s, color .2s;
}
.v3-nav-dd-btn:hover, .v3-nav-dd-btn[aria-expanded="true"] { background: rgba(255,255,255,.12); color: #fff; }
.v3-nav-dd-btn.active { color: #fff; background: rgba(255,255,255,.18); }
.v3-nav.scrolled .v3-nav-dd-btn { color: var(--ink-700); }
.v3-nav.scrolled .v3-nav-dd-btn:hover,
.v3-nav.scrolled .v3-nav-dd-btn[aria-expanded="true"] { background: var(--bg-soft); color: var(--navy-900); }
.v3-nav.scrolled .v3-nav-dd-btn.active { color: var(--teal-700); background: var(--teal-50); }
.v3-nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border-radius: 14px;
  padding: 8px;
  min-width: 220px;
  box-shadow: 0 8px 32px rgba(10,44,74,.14), 0 1px 4px rgba(10,44,74,.08);
  z-index: 50;
  display: flex; flex-direction: column; gap: 2px;
}
.v3-nav-dropdown-panel a {
  color: var(--navy-900) !important;
  padding: 10px 14px !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  background: none !important;
  text-decoration: none;
  transition: background .15s;
}
.v3-nav-dropdown-panel a:hover { background: var(--bg-soft) !important; }

.v3-nav-burger { display: none; color: #fff; padding: 8px; }
.v3-nav-burger svg { width: 24px; height: 24px; }
.v3-nav.scrolled .v3-nav-burger { color: var(--navy-900); }

/* ─────────────────────────────────────────────
   Hero (fullscreen video)
   ───────────────────────────────────────────── */
.v3-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 48px 80px;
  color: #fff;
  overflow: hidden;
}
.v3-hero-video {
  position: absolute; inset: 0;
  z-index: 0;
  pointer-events: none;
  background: #0a1929;
}
.v3-hero-video iframe {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  /* 16:9 cover */
  width: 100vw;
  height: calc(100vw * 9 / 16);
  min-height: 100vh;
  min-width: calc(100vh * 16 / 9);
  border: 0;
}
.v3-hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,44,74,.55) 0%, rgba(10,44,74,.35) 40%, rgba(10,44,74,.85) 100%),
    radial-gradient(ellipse at top right, rgba(77,208,199,.15), transparent 50%);
  z-index: 1;
}
.v3-hero-trust {
  position: absolute; top: 100px; right: 48px;
  z-index: 3;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 10px 18px;
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  font-size: 13px;
  color: #fff;
  white-space: nowrap;
}
.v3-hero-trust .tp { color: #00b67a; font-weight: 700; display: flex; align-items: center; gap: 4px; }
.v3-hero-trust .tp svg { width: 14px; height: 14px; }
.v3-hero-trust .stars { color: #00b67a; }
.v3-hero-trust .stars svg { width: 14px; height: 14px; }
.v3-hero-trust b { font-weight: 700; }

.v3-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.v3-hero-kicker {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(77,208,199,.18);
  border: 1px solid rgba(77,208,199,.4);
  border-radius: 999px;
  color: var(--teal-500);
  font-size: 12px; font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
  margin-bottom: 28px;
}
.v3-hero h1 {
  font-size: clamp(44px, 6.4vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 800;
  margin: 0 0 28px;
  max-width: 16ch;
  text-wrap: balance;
}
.v3-hero h1 em {
  font-style: normal;
  color: var(--teal-500);
  font-weight: 800;
}
.v3-hero-lede {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
  color: rgba(255,255,255,.84);
  max-width: 56ch;
  margin: 0 0 44px;
  text-wrap: pretty;
}

.v3-hero-cta {
  display: flex; gap: 14px; flex-wrap: wrap;
}
.v3-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  font-size: 15px; font-weight: 700;
  text-decoration: none;
  transition: transform .2s, background .2s, box-shadow .2s;
  white-space: nowrap;
}
.v3-btn svg { width: 18px; height: 18px; }
.v3-btn-primary {
  background: var(--teal-500);
  color: var(--navy-900);
}
.v3-btn-primary:hover { background: var(--teal-600); transform: translateY(-1px); box-shadow: var(--shadow); text-decoration: none; }
.v3-btn-ghost {
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.v3-btn-ghost:hover { background: rgba(255,255,255,.14); text-decoration: none; }
.v3-btn-dark {
  background: var(--navy-900);
  color: #fff;
}
.v3-btn-dark:hover { background: var(--navy-800); transform: translateY(-1px); text-decoration: none; }

/* Hero Privat/Erhverv split cards (Forside) */
.v3-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 12px;
  max-width: 920px;
}
.v3-hero-card {
  position: relative;
  display: flex; flex-direction: column; gap: 8px;
  padding: 32px 30px 28px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 22px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #fff;
  text-decoration: none;
  transition: background .3s, border-color .3s, transform .3s;
  overflow: hidden;
}
.v3-hero-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(77,208,199,.25), transparent 60%);
  opacity: 0;
  transition: opacity .3s;
}
.v3-hero-card:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(77,208,199,.45);
  transform: translateY(-3px);
  text-decoration: none;
}
.v3-hero-card:hover::before { opacity: 1; }
.v3-hero-card .tag {
  position: relative;
  font-size: 11px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--teal-500);
}
.v3-hero-card h3 {
  position: relative;
  font-size: 26px; font-weight: 800;
  margin: 0;
  letter-spacing: -0.01em;
}
.v3-hero-card p {
  position: relative;
  font-size: 14px;
  color: rgba(255,255,255,.78);
  margin: 4px 0 14px;
  line-height: 1.55;
}
.v3-hero-card .arrow {
  position: relative;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700;
  color: var(--teal-500);
  margin-top: auto;
}
.v3-hero-card .arrow svg { width: 16px; height: 16px; transition: transform .25s; }
.v3-hero-card:hover .arrow svg { transform: translateX(4px); }

.v3-scroll-cue {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 11px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.6);
  display: flex; align-items: center; gap: 10px;
}
.v3-scroll-cue::after {
  content: '';
  width: 1px; height: 36px;
  background: linear-gradient(180deg, rgba(255,255,255,.6), transparent);
  animation: v3scroll 2s ease-in-out infinite;
}
@keyframes v3scroll {
  0%, 100% { transform: scaleY(.4); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
}

/* ─────────────────────────────────────────────
   Sections
   ───────────────────────────────────────────── */
.v3-section {
  padding: 110px 48px;
  background: var(--bg);
}
.v3-section.soft { background: var(--bg-soft); }
.v3-section.dark {
  background: linear-gradient(180deg, var(--navy-900), #061a2e);
  color: #fff;
}
.v3-section.dark h2, .v3-section.dark h3, .v3-section.dark h4 { color: #fff; }
.v3-section.dark p { color: rgba(255,255,255,.78); }
.v3-section.dark .v3-kicker { color: var(--teal-500); }

.v3-section-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.v3-section-head {
  max-width: 720px;
  margin: 0 auto 60px;
  text-align: center;
}
.v3-kicker {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--teal-700);
  margin-bottom: 18px;
}
.v3-section h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  color: var(--navy-900);
  text-wrap: balance;
}
.v3-section-head p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-700);
  margin: 0;
  text-wrap: pretty;
}

/* ─────────────────────────────────────────────
   Hover-reveal grid (services / segments)
   ───────────────────────────────────────────── */
.v3-reveal-grid {
  display: grid;
  gap: 18px;
}
.v3-reveal-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.v3-reveal-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.v3-reveal {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  background: #1a3553;
  isolation: isolate;
}
.v3-reveal-ph {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 12px, transparent 12px 24px),
    linear-gradient(135deg, #1a3553, #0c3e67);
  display: grid; place-items: center;
  color: rgba(255,255,255,.25);
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
}
.v3-reveal-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(7,21,38,.92) 100%);
  z-index: 1;
  transition: background .35s ease;
}
.v3-reveal:hover .v3-reveal-overlay {
  background: linear-gradient(180deg, rgba(7,21,38,.4) 0%, rgba(7,21,38,.95) 60%);
}
.v3-reveal-content {
  position: absolute; left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 28px 26px 26px;
  color: #fff;
}
.v3-reveal-tag {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--teal-500);
  margin-bottom: 10px;
}
.v3-reveal-title {
  font-size: 22px; font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0;
  color: #fff;
}
.v3-reveal-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s ease, margin-top .35s ease, opacity .3s ease;
  opacity: 0;
}
.v3-reveal-body p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,.82) !important;
  margin: 0;
}
.v3-reveal:hover .v3-reveal-body {
  max-height: 200px;
  margin-top: 14px;
  opacity: 1;
}

/* ─────────────────────────────────────────────
   Brand strip
   ───────────────────────────────────────────── */
.v3-brandstrip {
  padding: 36px 48px;
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.v3-brandstrip-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex; align-items: center; gap: 40px;
  flex-wrap: wrap;
}
.v3-brandstrip .label {
  font-size: 12px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-500);
}
.v3-brandstrip-logos {
  display: flex; gap: 36px; flex-wrap: wrap;
  margin-left: auto;
}
.v3-brandstrip-logos span {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink-300);
  letter-spacing: -0.01em;
  font-family: 'Inter', serif;
  font-style: italic;
}

/* ─────────────────────────────────────────────
   Trustpilot section
   ───────────────────────────────────────────── */
.v3-tp-bar {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 10px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-bottom: 18px;
  font-size: 14px;
  color: var(--ink-700);
}
.v3-section.dark .v3-tp-bar { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); color: #fff; }
.v3-tp-bar .tp-logo { color: #00b67a; font-weight: 800; display: flex; align-items: center; gap: 5px; }
.v3-tp-bar .tp-logo svg { width: 16px; height: 16px; }
.v3-tp-bar .stars { color: #00b67a; display: inline-flex; gap: 2px; }
.v3-tp-bar .stars svg { width: 16px; height: 16px; }
.v3-tp-bar b { color: var(--navy-900); font-weight: 800; }
.v3-section.dark .v3-tp-bar b { color: #fff; }

.v3-tp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.v3-tp-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px 28px 26px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .25s, box-shadow .25s;
}
.v3-tp-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.v3-tp-stars { color: #00b67a; display: inline-flex; gap: 2px; }
.v3-tp-stars svg { width: 18px; height: 18px; }
.v3-tp-headline {
  font-size: 17px; font-weight: 800;
  color: var(--navy-900);
  margin: 0;
  letter-spacing: -0.01em;
}
.v3-tp-quote {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-700);
  margin: 0;
  flex: 1;
}
.v3-tp-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  margin-top: 4px;
}
.v3-tp-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--teal-50);
  color: var(--teal-700);
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .02em;
}
.v3-tp-name {
  font-size: 14px; font-weight: 700;
  color: var(--navy-900);
}
.v3-tp-verified {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px;
  color: var(--ink-500);
  margin-top: 2px;
}
.v3-tp-verified .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #00b67a;
}

/* ─────────────────────────────────────────────
   Before/After slider
   ───────────────────────────────────────────── */
.v3-ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.v3-ba-card {
  display: flex; flex-direction: column;
  gap: 14px;
}
.v3-ba-slider {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 18px;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  background: #1a3553;
  box-shadow: var(--shadow);
  touch-action: none;
}
.v3-ba-slider .v3-ba-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  user-select: none;
}
.v3-ba-after-clip {
  position: absolute; inset: 0;
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
  pointer-events: none;
}
.v3-ba-tag {
  position: absolute;
  top: 14px;
  padding: 6px 12px;
  color: #fff;
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em;
  border-radius: 999px;
  pointer-events: none;
  z-index: 3;
}
.v3-ba-tag.before {
  left: 14px;
  background: rgba(10,44,74,.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.v3-ba-tag.after {
  right: 14px;
  background: rgba(77,208,199,.92);
  color: var(--navy-900);
}

.v3-ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--pos);
  width: 3px;
  background: #fff;
  box-shadow: 0 0 16px rgba(10,44,74,.45);
  pointer-events: none;
  transform: translateX(-50%);
  z-index: 2;
}
.v3-ba-handle::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 16px rgba(10,44,74,.35);
}
.v3-ba-handle svg {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 22px; height: 22px;
  color: var(--navy-900);
  z-index: 4;
}
.v3-ba-caption {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-700);
  padding: 0 4px;
}
.v3-section.dark .v3-ba-caption { color: rgba(255,255,255,.78); }

@media (max-width: 1100px) {
  .v3-ba-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .v3-ba-grid { grid-template-columns: 1fr; gap: 18px; }
}

/* ─────────────────────────────────────────────
   Privat — pris card
   ───────────────────────────────────────────── */
.v3-price {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.v3-price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 38px 36px;
  box-shadow: var(--shadow);
  position: relative;
}
.v3-price-card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, var(--teal-500), transparent 50%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.v3-price-label {
  font-size: 12px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--teal-700);
  margin-bottom: 14px;
}
.v3-price-amount {
  display: flex; align-items: baseline; gap: 10px;
  margin-bottom: 6px;
}
.v3-price-amount b {
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -0.03em;
  line-height: 1;
}
.v3-price-amount span {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink-500);
}
.v3-price-note {
  font-size: 13px;
  color: var(--ink-500);
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
}
.v3-price-list {
  list-style: none; padding: 0; margin: 0 0 26px;
  display: flex; flex-direction: column; gap: 12px;
}
.v3-price-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px;
  color: var(--ink-700);
}
.v3-price-list li svg {
  width: 18px; height: 18px;
  color: var(--teal-600);
  flex: none;
  margin-top: 2px;
}

/* ─────────────────────────────────────────────
   Two-col with visual
   ───────────────────────────────────────────── */
.v3-two {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
}
.v3-two h3 {
  font-size: 18px; font-weight: 800;
  color: var(--navy-900);
  margin: 28px 0 8px;
  letter-spacing: -0.005em;
}
.v3-two h3:first-of-type { margin-top: 32px; }
.v3-two p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-700);
  margin: 0 0 4px;
}
.v3-two-visual {
  position: sticky; top: 100px;
  aspect-ratio: 4/5;
  border-radius: 24px;
  background: #1a3553;
  overflow: hidden;
}
.v3-two-visual .ph {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 12px, transparent 12px 24px),
    linear-gradient(135deg, #1a3553, #0c3e67);
  display: grid; place-items: center;
  color: rgba(255,255,255,.3);
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
}

/* ─────────────────────────────────────────────
   Geo
   ───────────────────────────────────────────── */
.v3-geo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.v3-geo-cities {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 28px;
}
.v3-city {
  padding: 8px 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  font-size: 14px; font-weight: 600;
  color: #fff;
}

/* ─────────────────────────────────────────────
   FAQ
   ───────────────────────────────────────────── */
.v3-faq {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.v3-faq-item { border-bottom: 1px solid var(--line); }
.v3-faq-q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 4px;
  font-size: 17px; font-weight: 700;
  color: var(--navy-900);
  text-align: left;
  letter-spacing: -0.005em;
  background: 0; border: 0;
  font-family: inherit;
}
.v3-faq-q:hover { color: var(--teal-700); }
.v3-faq-toggle {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: grid; place-items: center;
  font-size: 18px; font-weight: 600;
  color: var(--ink-700);
  flex: none;
  transition: transform .3s, background .25s, color .25s;
}
.v3-faq-item.open .v3-faq-toggle {
  transform: rotate(45deg);
  background: var(--teal-500);
  color: var(--navy-900);
}
.v3-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s ease;
}
.v3-faq-item.open .v3-faq-a { max-height: 500px; }
.v3-faq-a-inner {
  padding: 0 4px 26px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-700);
  max-width: 65ch;
}

/* ─────────────────────────────────────────────
   Quote / form
   ───────────────────────────────────────────── */
.v3-quote-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  padding: 36px 32px;
}
.v3-form {
  display: flex; flex-direction: column; gap: 12px;
}
.v3-form .row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.v3-form input,
.v3-form textarea,
.v3-form select {
  padding: 14px 16px;
  font-family: inherit;
  font-size: 15px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  color: #fff;
  transition: border-color .2s, background .2s;
}
.v3-form input::placeholder,
.v3-form textarea::placeholder { color: rgba(255,255,255,.5); }
.v3-form input:focus,
.v3-form textarea:focus,
.v3-form select:focus {
  outline: 0;
  border-color: var(--teal-500);
  background: rgba(255,255,255,.10);
}
.v3-form textarea { min-height: 110px; resize: vertical; }
.v3-form select { color: rgba(255,255,255,.75); }
.v3-form select option { color: var(--navy-900); }

.v3-form button[type=submit] {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 24px;
  background: var(--teal-500);
  color: var(--navy-900);
  font-weight: 700; font-size: 15px;
  border-radius: 12px;
  transition: background .2s, transform .2s;
  margin-top: 4px;
}
.v3-form button[type=submit]:hover {
  background: var(--teal-600);
  transform: translateY(-1px);
}
.v3-form button[type=submit] svg { width: 16px; height: 16px; }
.v3-form .small {
  font-size: 12px;
  color: rgba(255,255,255,.55);
  margin-top: 4px;
  text-align: center;
}

/* ─────────────────────────────────────────────
   Footer
   ───────────────────────────────────────────── */
.v3-footer {
  background: #061a2e;
  color: rgba(255,255,255,.72);
  padding: 80px 48px 32px;
}
.v3-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
}
.v3-footer h5 {
  font-size: 12px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: #fff;
  margin: 0 0 16px;
}
.v3-footer ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
  font-size: 14px;
}
.v3-footer a {
  color: rgba(255,255,255,.72);
  text-decoration: none;
}
.v3-footer a:hover { color: var(--teal-500); text-decoration: none; }
.v3-footer p { font-size: 14px; line-height: 1.65; margin: 0; }
.v3-footer-bottom {
  max-width: 1280px;
  margin: 56px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.10);
  display: flex; justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,.45);
  flex-wrap: wrap; gap: 12px;
}

/* ─────────────────────────────────────────────
   By-side / lokal stat-bånd
   ───────────────────────────────────────────── */
.v3-localbar {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
  padding: 22px 48px;
}
.v3-localbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.v3-localbar-stat { display: flex; flex-direction: column; gap: 4px; }
.v3-localbar-stat .num {
  font-size: 26px;
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -0.02em;
  line-height: 1;
}
.v3-localbar-stat .lbl {
  font-size: 12px;
  color: var(--ink-500);
  letter-spacing: .04em;
}
@media (max-width: 760px) {
  .v3-localbar { padding: 18px 20px; }
  .v3-localbar-inner { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .v3-localbar-stat .num { font-size: 22px; }
}

/* Postnummer-chips */
.v3-postal-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.v3-postal {
  padding: 8px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-700);
}
.v3-postal b { color: var(--navy-900); margin-right: 6px; }

/* ─────────────────────────────────────────────
   Service-områdekort
   ───────────────────────────────────────────── */
.v3-map {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 24px;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(77,208,199,0.06), transparent 60%),
    linear-gradient(135deg, #0a2c4a 0%, #061a2e 100%);
  border: 1px solid rgba(255,255,255,0.10);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.v3-map svg {
  width: 100%;
  height: 100%;
  display: block;
  flex: 1;
}
.v3-map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 14px 22px;
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  color: rgba(255,255,255,0.78);
}
.v3-map-legend .item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}
.v3-map-legend .dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  flex: none;
}
.v3-map-legend .dot.hub {
  background: #4dd0c7;
  box-shadow: 0 0 0 2px rgba(77,208,199,0.25);
}
.v3-map-legend .dot.city {
  background: #fff;
  opacity: 0.85;
}
.v3-map-legend .ring {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 1.5px dashed rgba(77,208,199,0.7);
  flex: none;
}

/* ─────────────────────────────────────────────
   Pricing grid (4 pakker)
   ───────────────────────────────────────────── */
.v3-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}
.v3-pricing-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 32px 28px 28px;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.v3-pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.v3-pricing-card.featured {
  background: linear-gradient(180deg, #fff, var(--teal-50));
  border-color: var(--teal-500);
  box-shadow: var(--shadow);
}
.v3-pricing-card .badge {
  position: absolute;
  top: -10px; left: 28px;
  padding: 5px 12px;
  background: var(--teal-500);
  color: var(--navy-900);
  font-size: 10px; font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 999px;
  white-space: nowrap;
}
.v3-pricing-card .label {
  font-size: 12px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal-700);
  margin-bottom: 10px;
}
.v3-pricing-card .name {
  font-size: 18px; font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  line-height: 1.3;
  min-height: 2.6em;
}
.v3-pricing-card .price {
  display: flex; align-items: baseline; gap: 6px;
  margin-bottom: 4px;
}
.v3-pricing-card .price b {
  font-size: 36px;
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -0.02em;
  line-height: 1;
}
.v3-pricing-card .price .from {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-500);
  margin-right: 2px;
}
.v3-pricing-card .price .unit {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-500);
}
.v3-pricing-card .scope {
  font-size: 12px;
  color: var(--ink-500);
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}
.v3-pricing-card ul {
  list-style: none; padding: 0; margin: 0 0 22px;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.v3-pricing-card ul li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-700);
}
.v3-pricing-card ul li svg {
  width: 14px; height: 14px;
  color: var(--teal-600);
  flex: none;
  margin-top: 4px;
}
.v3-pricing-card .v3-btn {
  width: 100%; justify-content: center;
  padding: 13px 20px;
  font-size: 14px;
}

@media (max-width: 1100px) {
  .v3-pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .v3-pricing-grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────
   Check-grid (10 ting vi tjekker)
   ───────────────────────────────────────────── */
.v3-check-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.v3-check-tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 20px;
  display: flex; flex-direction: column; gap: 10px;
  transition: transform .25s, border-color .25s;
}
.v3-check-tile:hover { transform: translateY(-2px); border-color: var(--teal-500); }
.v3-check-tile .num {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--teal-50);
  color: var(--teal-700);
  display: grid; place-items: center;
  font-size: 13px; font-weight: 800;
  letter-spacing: -0.01em;
}
.v3-check-tile h4 {
  font-size: 15px; font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.3;
}
.v3-check-tile p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-500);
  margin: 0;
}
@media (max-width: 1100px) { .v3-check-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { .v3-check-grid { grid-template-columns: repeat(2, 1fr); } }

/* ─────────────────────────────────────────────
   Service-interval tabel
   ───────────────────────────────────────────── */
.v3-interval {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.v3-interval-row {
  display: grid;
  grid-template-columns: 200px 1fr 160px;
  gap: 24px;
  padding: 22px 28px;
  align-items: center;
  border-top: 1px solid var(--line);
}
.v3-interval-row:first-child {
  border-top: 0;
  background: var(--navy-900);
  color: #fff;
  padding: 16px 28px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.v3-interval-when {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -0.01em;
}
.v3-interval-what {
  font-size: 15px;
  color: var(--ink-700);
  line-height: 1.55;
}
.v3-interval-price {
  text-align: right;
  font-size: 15px;
  font-weight: 700;
  color: var(--teal-700);
}
.v3-interval-row:first-child .v3-interval-when,
.v3-interval-row:first-child .v3-interval-what,
.v3-interval-row:first-child .v3-interval-price {
  color: rgba(255,255,255,.85);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
@media (max-width: 760px) {
  .v3-interval-row { grid-template-columns: 1fr; gap: 6px; padding: 18px 20px; }
  .v3-interval-row:first-child { display: none; }
  .v3-interval-price { text-align: left; }
}

/* ─────────────────────────────────────────────
   Cross-link grid (andre ydelser)
   ───────────────────────────────────────────── */
.v3-xlink-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.v3-xlink {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 26px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  text-decoration: none;
  color: var(--navy-900);
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.v3-xlink:hover {
  transform: translateY(-3px);
  border-color: var(--teal-500);
  box-shadow: var(--shadow);
  text-decoration: none;
}
.v3-xlink .tag {
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal-700);
}
.v3-xlink h4 {
  font-size: 18px; font-weight: 800;
  margin: 4px 0 4px;
  letter-spacing: -0.01em;
  color: var(--navy-900);
}
.v3-xlink p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-700);
  margin: 0;
}
.v3-xlink .arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700;
  color: var(--teal-700);
  margin-top: auto;
  padding-top: 10px;
}
.v3-xlink .arrow svg { width: 14px; height: 14px; transition: transform .25s; }
.v3-xlink:hover .arrow svg { transform: translateX(4px); }
.v3-xlink.current {
  background: var(--teal-50);
  border-color: var(--teal-500);
  pointer-events: none;
}
.v3-xlink.current .tag::after { content: ' · du er her'; opacity: .6; }
@media (max-width: 1100px) { .v3-xlink-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .v3-xlink-grid { grid-template-columns: 1fr; } }

/* ─────────────────────────────────────────────
   Mobile sticky CTA
   ───────────────────────────────────────────── */
.v3-mobile-cta {
  display: none;
  position: fixed; left: 12px; right: 12px; bottom: 12px;
  z-index: 90;
  gap: 10px;
}
.v3-mobile-cta a, .v3-mobile-cta button {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px;
  border-radius: 14px;
  font-weight: 700; font-size: 14px;
  text-decoration: none;
  box-shadow: var(--shadow);
  border: none; cursor: pointer; font-family: inherit;
}
.v3-mobile-cta .call { background: var(--navy-900); color: #fff; }
.v3-mobile-cta .quote { background: var(--teal-500); color: var(--navy-900); }
.v3-mobile-cta svg { width: 16px; height: 16px; }

/* ─────────────────────────────────────────────
   Responsive
   ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .v3-nav { padding: 16px 28px; gap: 20px; }
  .v3-nav.scrolled { padding: 12px 28px; }
  .v3-nav-links { gap: 2px; }
  .v3-nav-links a { padding: 8px 10px; font-size: 13px; }
  .v3-section { padding: 80px 28px; }
  .v3-hero { padding: 110px 28px 70px; }
  .v3-hero-trust { right: 28px; top: 88px; }
  .v3-footer { padding: 64px 28px 24px; }
  .v3-reveal-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .v3-tp-grid { grid-template-columns: repeat(2, 1fr); }
  .v3-footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 760px) {
  .v3-nav-links, .v3-nav-actions { display: none; }
  .v3-nav-burger { display: inline-flex; margin-left: auto; }
  .v3-hero { padding: 66px 20px 100px; min-height: 92vh; }
  .v3-hero-trust { display: none; }
  .v3-hero-kicker {
    display: block;
    background: rgba(10,44,74,.55);
    border: none;
    border-bottom: 1px solid rgba(77,208,199,.2);
    border-radius: 0;
    width: calc(100% + 40px);
    margin: 0 -20px 28px;
    padding: 11px 20px;
    text-align: center;
    font-size: 11px;
    letter-spacing: .13em;
    color: rgba(255,255,255,.8);
  }
  .v3-hero h1 { font-size: clamp(34px, 9vw, 50px); }
  .v3-hero-split { grid-template-columns: 1fr; }
  .v3-hero-card { padding: 24px 22px 22px; }
  .v3-section { padding: 60px 20px; }
  .v3-section-head { margin-bottom: 40px; }
  .v3-reveal-grid.cols-3,
  .v3-reveal-grid.cols-4 { grid-template-columns: 1fr; gap: 14px; }
  .v3-reveal { aspect-ratio: 5/3; }
  .v3-reveal-body { max-height: 200px; margin-top: 14px; opacity: 1; } /* always show on mobile */
  .v3-tp-grid { grid-template-columns: 1fr; }
  .v3-price { grid-template-columns: 1fr; gap: 32px; }
  .v3-two { grid-template-columns: 1fr; gap: 32px; }
  .v3-two-visual { position: static; aspect-ratio: 5/3; }
  .v3-geo { grid-template-columns: 1fr; gap: 32px; }
  .v3-section { overflow-x: hidden; }
  .v3-section-inner { overflow-x: hidden; }

  /* Reveal cards: split layout på mobil — illustration øverst, tekst nedenunder */
  .v3-reveal {
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    overflow: visible;
  }
  .v3-reveal-ph {
    position: relative;
    inset: auto;
    aspect-ratio: 16/9;
    flex-shrink: 0;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
  }
  .v3-reveal-overlay { display: none; }
  .v3-reveal-content {
    position: static;
    background: var(--navy-900);
    padding: 18px 20px 20px;
    border-radius: 0 0 16px 16px;
  }
  .v3-reveal-body {
    max-height: none;
    overflow: visible;
    opacity: 1;
    margin-top: 10px;
  }
  .v3-section-inner > div[style*="grid-template-columns"] { grid-template-columns: 1fr !important; gap: 24px !important; }
  .v3-form .row { grid-template-columns: 1fr !important; }
  .v3-footer { padding: 48px 20px 100px; overflow-x: hidden; }
  .v3-footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .v3-brandstrip { padding: 24px 20px; overflow-x: hidden; }
  .v3-brandstrip-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .v3-brandstrip-logos { margin-left: 0; gap: 14px; flex-wrap: wrap; }
  .v3-tp-bar {
    gap: 8px;
    font-size: 13px;
    padding: 10px 16px;
  }
  .v3-tp-bar > span:last-child { display: none; }
  .v3-mobile-cta { display: flex; }
  .v3-scroll-cue { display: none; }
  .v3-hero { overflow: hidden; }
}

/* ─────────────────────────────────────────────
   Mobile nav drawer
   ───────────────────────────────────────────── */
.v3-mobile-nav {
  display: none;
  position: fixed; inset: 0; z-index: 200;
  flex-direction: column;
}
.v3-mobile-nav.open { display: flex; }
.v3-mobile-nav-backdrop {
  position: absolute; inset: 0;
  background: rgba(10,44,74,.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.v3-mobile-nav-panel {
  position: relative; z-index: 1;
  background: #fff;
  padding: 24px 24px 32px;
  margin-top: auto;
  border-radius: 24px 24px 0 0;
  display: flex; flex-direction: column; gap: 4px;
  max-height: 85vh; overflow-y: auto;
}
.v3-mobile-nav-section {
  display: block;
  padding: 10px 12px 2px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-400);
}
.v3-mobile-nav-panel a.sub {
  padding-left: 20px;
  font-size: 15px; font-weight: 500;
}
.v3-mobile-nav-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.v3-mobile-nav-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: grid; place-items: center;
  font-size: 20px; font-weight: 300;
  color: var(--ink-700);
}
.v3-mobile-nav-panel a {
  display: flex; align-items: center;
  padding: 14px 12px;
  border-radius: 12px;
  font-size: 16px; font-weight: 600;
  color: var(--navy-900);
  text-decoration: none;
  transition: background .15s;
}
.v3-mobile-nav-panel a:hover { background: var(--bg-soft); }
.v3-mobile-nav-cta {
  margin-top: 8px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px;
  background: var(--teal-500);
  color: var(--navy-900) !important;
  font-weight: 700; font-size: 15px;
  border-radius: 14px;
  text-decoration: none !important;
  border: none; cursor: pointer; width: 100%;
  font-family: inherit;
}

.v3-mobile-nav-brand {
  display: flex; flex-direction: column;
  font-size: 13px; font-weight: 800;
  color: var(--navy-900); text-decoration: none;
  letter-spacing: .1em; text-transform: uppercase;
}
.v3-mobile-nav-sub {
  font-size: 10px; font-weight: 500;
  text-transform: none; letter-spacing: .04em;
  color: var(--ink-500); margin-top: 2px;
}
