/* ============================================================
   AbbitSmart — "Nordisk morgenlys" design system
   Palette: snow / mist / fjord / glacier / sage / sand / brass
   Type: Schibsted Grotesk (display) · Figtree (body) · Spline Sans Mono (figures)
   ============================================================ */

:root {
  --snow: #F8FAFC;
  --cloud: #FFFFFF;
  --mist: #EAF1F6;
  --mist-deep: #DCE8F0;
  --fjord: #1E3A52;
  --fjord-soft: #48627A;
  --glacier: #6FA8D0;
  --glacier-deep: #4A86B4;
  --glacier-ice: #C7DCEC;
  --sage: #AECBB8;
  --sage-deep: #7FA98D;
  --sand: #F0E9DE;
  --brass: #B98A4E;
  --line: rgba(30, 58, 82, .12);
  --line-soft: rgba(30, 58, 82, .07);

  --font-display: 'Schibsted Grotesk', sans-serif;
  --font-body: 'Figtree', sans-serif;
  --font-mono: 'Spline Sans Mono', monospace;

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow-soft: 0 6px 30px rgba(30, 58, 82, .08);
  --shadow-lift: 0 24px 60px rgba(30, 58, 82, .14);
  --nav-h: 76px;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--snow);
  color: var(--fjord-soft);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--fjord);
  line-height: 1.12;
  letter-spacing: -.02em;
  font-weight: 700;
}

::selection { background: var(--glacier-ice); color: var(--fjord); }

:focus-visible {
  outline: 2px solid var(--glacier-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

.mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }

/* ---------- Language toggle ---------- */
html.lang-da .en { display: none !important; }
html.lang-en .da { display: none !important; }

/* ---------- Layout utilities ---------- */
.container { width: min(1180px, 92vw); margin-inline: auto; }
.section { padding: clamp(72px, 10vw, 128px) 0; position: relative; }
.section-mist { background: linear-gradient(180deg, var(--mist) 0%, var(--snow) 100%); }
.section-sand { background: linear-gradient(180deg, var(--sand) 0%, var(--snow) 100%); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1.5px;
  background: var(--brass);
  display: inline-block;
}

.section-head { max-width: 660px; margin-bottom: clamp(40px, 6vw, 64px); }
.section-head.centered { margin-inline: auto; text-align: center; }
.section-head.centered .eyebrow::after {
  content: ""; width: 26px; height: 1.5px; background: var(--brass); display: inline-block;
}
.section-head h2 { font-size: clamp(30px, 4.2vw, 46px); margin-bottom: 16px; }
.section-head p { font-size: 18px; }

.ledger-rule { border: 0; border-top: 1px solid var(--line-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: .01em;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .35s;
  will-change: transform;
}
.btn-primary {
  background: linear-gradient(135deg, var(--glacier) 0%, var(--glacier-deep) 100%);
  color: #fff;
  box-shadow: 0 10px 26px rgba(74, 134, 180, .32);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(74, 134, 180, .42); }
.btn-ghost {
  background: transparent;
  color: var(--fjord);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--glacier-deep); color: var(--glacier-deep); transform: translateY(-2px); }
.btn-light {
  background: var(--cloud);
  color: var(--fjord);
  box-shadow: var(--shadow-soft);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn .arrow { transition: transform .3s var(--ease-out); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Page loader ---------- */
.page-loader {
  position: fixed; inset: 0; z-index: 200;
  background: var(--snow);
  display: flex; align-items: center; justify-content: center;
}
.loader-inner { text-align: center; }
.loader-bars { display: flex; align-items: flex-end; justify-content: center; gap: 7px; height: 54px; margin-bottom: 18px; }
.loader-bars span {
  width: 11px; border-radius: 6px;
  background: linear-gradient(180deg, var(--glacier) 0%, var(--glacier-deep) 100%);
  transform-origin: bottom;
  animation: loaderRise 1s var(--ease-out) infinite alternate;
}
.loader-bars span:nth-child(1) { height: 40%; animation-delay: 0s; }
.loader-bars span:nth-child(2) { height: 65%; animation-delay: .15s; background: linear-gradient(180deg, var(--sage) 0%, var(--sage-deep) 100%); }
.loader-bars span:nth-child(3) { height: 100%; animation-delay: .3s; }
@keyframes loaderRise { from { transform: scaleY(.45); } to { transform: scaleY(1); } }
.loader-logo { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--fjord); letter-spacing: -.02em; }
.loader-logo b { color: var(--glacier-deep); }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2.5px; width: 100%;
  background: linear-gradient(90deg, var(--glacier), var(--sage-deep));
  transform-origin: left;
  transform: scaleX(0);
  z-index: 150;
}

/* ---------- Navigation ---------- */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  transition: background .4s, box-shadow .4s, height .4s;
}
.site-nav.scrolled {
  background: rgba(248, 250, 252, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line-soft), 0 8px 30px rgba(30, 58, 82, .06);
  height: 64px;
}
.nav-inner {
  width: min(1280px, 94vw); margin-inline: auto;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo { display: flex; align-items: center; gap: 11px; }
.logo-mark svg { width: 30px; height: 30px; display: block; }
.logo-mark .lm1 { fill: var(--glacier); }
.logo-mark .lm2 { fill: var(--sage-deep); }
.logo-mark .lm3 { fill: var(--fjord); }
.logo-text { font-family: var(--font-display); font-weight: 800; font-size: 21px; color: var(--fjord); letter-spacing: -.02em; }
.logo-text b { color: var(--glacier-deep); }
.logo-text.big { font-size: 27px; }

.nav-links { display: flex; gap: 34px; }
.nav-links a {
  font-family: var(--font-display);
  font-weight: 500; font-size: 15.5px;
  color: var(--fjord-soft);
  position: relative;
  padding: 6px 0;
  transition: color .3s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; border-radius: 2px;
  background: var(--glacier-deep);
  transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease-out);
}
.nav-links a:hover, .nav-links a.active { color: var(--fjord); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }

.nav-actions { display: flex; align-items: center; gap: 16px; }
.lang-toggle {
  font-family: var(--font-mono); font-size: 13px; font-weight: 500;
  color: var(--fjord-soft);
  padding: 8px 12px; border-radius: 999px;
  border: 1.5px solid var(--line);
  transition: border-color .3s, color .3s;
}
.lang-toggle:hover { border-color: var(--glacier-deep); }
.lt-divider { opacity: .4; margin: 0 3px; }
html.lang-da .lt-da, html.lang-en .lt-en { color: var(--glacier-deep); font-weight: 600; }
.nav-cta { padding: 11px 22px; font-size: 14.5px; }

.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-burger span { width: 24px; height: 2px; background: var(--fjord); border-radius: 2px; transition: transform .35s var(--ease-out), opacity .3s; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Flash messages ---------- */
.flash-wrap { position: fixed; top: calc(var(--nav-h) + 14px); left: 50%; transform: translateX(-50%); z-index: 140; width: min(560px, 92vw); }
.flash {
  background: var(--cloud); border-left: 4px solid var(--sage-deep);
  color: var(--fjord);
  border-radius: var(--radius-sm);
  padding: 16px 22px;
  box-shadow: var(--shadow-lift);
  font-weight: 500;
}

/* ============================================================
   HERO (home)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + 32px) 0 60px;
  background:
    radial-gradient(1000px 640px at 85% 12%, rgba(199, 220, 236, .55) 0%, transparent 65%),
    radial-gradient(760px 520px at 8% 92%, rgba(174, 203, 184, .3) 0%, transparent 60%),
    linear-gradient(180deg, #FDFEFF 0%, var(--snow) 100%);
  overflow: hidden;
}
#hero3d {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
}
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 600px) 1fr; align-items: center; }
.hero-copy { max-width: 600px; }
.hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  margin: 0 0 24px;
}
.hero h1 .accent { color: var(--glacier-deep); }
.hero-sub { font-size: clamp(17px, 1.6vw, 20px); max-width: 480px; margin-bottom: 36px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 44px; }

.hero-proof { display: flex; flex-wrap: wrap; gap: 12px; }
.proof-chip {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 14px; font-weight: 500;
  color: var(--fjord);
  box-shadow: 0 2px 12px rgba(30, 58, 82, .05);
}
.proof-chip svg { color: var(--sage-deep); flex-shrink: 0; }

.hero-scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--fjord-soft); opacity: .7;
}
.hero-scroll .wheel {
  width: 22px; height: 34px; border: 1.5px solid var(--fjord-soft); border-radius: 12px;
  position: relative;
}
.hero-scroll .wheel::after {
  content: ""; position: absolute; top: 6px; left: 50%; margin-left: -1.5px;
  width: 3px; height: 7px; border-radius: 3px; background: var(--glacier-deep);
  animation: wheelDrop 1.8s ease-in-out infinite;
}
@keyframes wheelDrop { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(11px); opacity: 0; } 100% { opacity: 0; } }

/* ============================================================
   Ledger stats strip
   ============================================================ */
.stats-strip { border-block: 1px solid var(--line-soft); background: var(--cloud); }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: clamp(36px, 5vw, 56px) 0;
}
.stat { text-align: center; padding: 0 18px; position: relative; }
.stat + .stat::before {
  content: ""; position: absolute; left: 0; top: 12%; height: 76%; width: 1px; background: var(--line-soft);
}
.stat-value {
  font-family: var(--font-mono);
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 600;
  color: var(--fjord);
  letter-spacing: -.02em;
  display: flex; align-items: baseline; justify-content: center; gap: 2px;
}
.stat-value .suffix { color: var(--glacier-deep); }
.stat-label { font-size: 14.5px; margin-top: 6px; }

/* ============================================================
   About preview / split sections
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.split.reverse .split-media { order: 2; }

.split-media { position: relative; }
.media-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  position: relative;
  aspect-ratio: 4 / 3;
}
.media-frame img { width: 100%; height: 118%; object-fit: cover; will-change: transform; }
.media-card {
  position: absolute; bottom: -26px; right: -18px;
  background: var(--cloud);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
  padding: 20px 26px;
  display: flex; align-items: center; gap: 16px;
  border: 1px solid var(--line-soft);
}
.media-card .mc-num { font-family: var(--font-mono); font-size: 30px; font-weight: 600; color: var(--glacier-deep); }
.media-card .mc-label { font-size: 13.5px; line-height: 1.35; max-width: 140px; }

.split-copy h2 { font-size: clamp(28px, 3.6vw, 42px); margin-bottom: 20px; }
.split-copy > p { margin-bottom: 18px; }

.check-list { margin: 26px 0 34px; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; font-weight: 500; color: var(--fjord); }
.check-list .tick {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: var(--mist); color: var(--sage-deep);
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 2px;
}

/* ============================================================
   Service cards
   ============================================================ */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--cloud);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 36px 30px 32px;
  position: relative;
  overflow: hidden;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out), border-color .45s;
  will-change: transform;
}
.service-card::before {
  content: ""; position: absolute; inset: 0 auto 0 0; width: 4px;
  background: linear-gradient(180deg, var(--glacier), var(--sage-deep));
  transform: scaleY(0); transform-origin: top;
  transition: transform .5s var(--ease-out);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); border-color: var(--glacier-ice); }
.service-card:hover::before { transform: scaleY(1); }
.service-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: linear-gradient(135deg, var(--mist) 0%, var(--glacier-ice) 100%);
  color: var(--glacier-deep);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.service-card h3 { font-size: 20px; margin-bottom: 10px; }
.service-card p { font-size: 15.5px; }
.service-konto {
  position: absolute; top: 26px; right: 26px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em;
  color: var(--brass); opacity: .85;
}

/* ============================================================
   Brancher — pinned horizontal scroll
   ============================================================ */
.brancher-section { background: linear-gradient(180deg, var(--snow) 0%, var(--mist) 55%, var(--snow) 100%); overflow: hidden; }
.brancher-pin { padding: 0; }
.brancher-head { padding-top: clamp(72px, 9vw, 110px); }
.brancher-track {
  display: flex; gap: clamp(20px, 3vw, 36px);
  padding: 34px 0 clamp(72px, 9vw, 110px);
  width: max-content;
}
.branch-card {
  width: min(460px, 78vw);
  background: var(--cloud);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line-soft);
  flex-shrink: 0;
}
.branch-media { aspect-ratio: 16 / 9; overflow: hidden; }
.branch-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.branch-card:hover .branch-media img { transform: scale(1.05); }
.branch-body { padding: 28px 30px 32px; }
.branch-body h3 { font-size: 21px; margin-bottom: 10px; }
.branch-body p { font-size: 15.5px; }
.branch-tag {
  display: inline-block;
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--glacier-deep);
  background: var(--mist);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 14px;
}

/* ============================================================
   Pricing
   ============================================================ */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}
.pricing-grid.five { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.price-card {
  background: var(--cloud);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 38px 32px 34px;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out);
  will-change: transform;
}
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.price-card.featured {
  background: linear-gradient(170deg, #FDFEFF 0%, var(--mist) 100%);
  border: 1.5px solid var(--glacier);
  box-shadow: 0 20px 50px rgba(74, 134, 180, .18);
}
.price-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--glacier) 0%, var(--glacier-deep) 100%);
  color: #fff;
  font-family: var(--font-mono); font-size: 11.5px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 7px 18px; border-radius: 999px;
  box-shadow: 0 8px 20px rgba(74, 134, 180, .35);
  white-space: nowrap;
}
.price-name { font-family: var(--font-display); font-weight: 700; font-size: 17px; letter-spacing: .02em; color: var(--fjord); margin-bottom: 6px; }
.price-desc { font-size: 14px; margin-bottom: 22px; }
.price-amount { display: flex; align-items: baseline; gap: 7px; margin-bottom: 4px; }
.price-amount .kr { font-family: var(--font-mono); font-size: clamp(34px, 3vw, 42px); font-weight: 600; color: var(--fjord); letter-spacing: -.02em; }
.price-amount .per { font-size: 14px; color: var(--fjord-soft); }
.price-binding { font-family: var(--font-mono); font-size: 12px; color: var(--sage-deep); margin-bottom: 24px; }
.price-features { display: grid; gap: 12px; padding-top: 22px; border-top: 1px dashed var(--line); margin-bottom: 30px; flex: 1; }
.price-features li { display: flex; gap: 11px; font-size: 15px; align-items: flex-start; }
.price-features .tick {
  flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%;
  background: var(--mist); color: var(--sage-deep);
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 3px;
}
.price-card .btn { width: 100%; }

.pricing-note { text-align: center; margin-top: 36px; font-size: 15px; }
.pricing-note a { color: var(--glacier-deep); font-weight: 600; }

/* ============================================================
   Testimonials
   ============================================================ */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: var(--cloud);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  position: relative;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out);
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.testi-stars { color: var(--brass); letter-spacing: 2px; font-size: 13px; margin-bottom: 12px; }
.testi-text { font-size: 15.5px; color: var(--fjord); font-style: italic; margin-bottom: 22px; }
.testi-author { display: flex; align-items: center; gap: 13px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--glacier) 0%, var(--sage-deep) 100%);
  color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
}
.testi-name { font-weight: 600; color: var(--fjord); font-size: 15px; line-height: 1.3; }
.testi-company { font-size: 13px; }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  position: relative;
  background:
    radial-gradient(760px 420px at 15% 20%, rgba(111, 168, 208, .35) 0%, transparent 60%),
    radial-gradient(600px 380px at 85% 85%, rgba(174, 203, 184, .35) 0%, transparent 60%),
    linear-gradient(135deg, var(--mist) 0%, var(--glacier-ice) 100%);
  border-radius: var(--radius-lg);
  padding: clamp(48px, 7vw, 84px) clamp(28px, 6vw, 80px);
  text-align: center;
  overflow: hidden;
}
.cta-band h2 { font-size: clamp(28px, 3.8vw, 44px); margin-bottom: 16px; }
.cta-band p { max-width: 520px; margin: 0 auto 34px; }
.cta-band .btn-row { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 22px; }
.cta-band .phone-link {
  font-family: var(--font-mono); font-weight: 600; color: var(--fjord);
  display: inline-flex; align-items: center; gap: 9px;
}
.cta-band .phone-link:hover { color: var(--glacier-deep); }

/* ============================================================
   Page hero (subpages)
   ============================================================ */
.page-hero {
  padding: calc(var(--nav-h) + clamp(56px, 8vw, 96px)) 0 clamp(48px, 6vw, 80px);
  background:
    radial-gradient(860px 480px at 80% 0%, rgba(199, 220, 236, .5) 0%, transparent 65%),
    linear-gradient(180deg, #FDFEFF 0%, var(--snow) 100%);
  position: relative; overflow: hidden;
}
.page-hero h1 { font-size: clamp(36px, 5vw, 58px); font-weight: 800; margin-bottom: 18px; max-width: 760px; }
.page-hero .lead { font-size: clamp(17px, 1.5vw, 19.5px); max-width: 620px; }
.page-hero-orbs { position: absolute; inset: 0; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(50px); opacity: .5; }
.orb-1 { width: 300px; height: 300px; background: var(--glacier-ice); top: -60px; right: 8%; }
.orb-2 { width: 220px; height: 220px; background: var(--sage); bottom: -80px; left: 4%; opacity: .35; }

/* ============================================================
   Ydelser detail rows (kontoplan)
   ============================================================ */
.ydelse-rows { display: grid; gap: 22px; }
.ydelse-row {
  display: grid; grid-template-columns: 130px 1fr auto;
  gap: clamp(20px, 4vw, 56px);
  align-items: center;
  background: var(--cloud);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3.5vw, 40px) clamp(24px, 3.5vw, 46px);
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out), border-color .45s;
}
.ydelse-row:hover { transform: translateX(8px); box-shadow: var(--shadow-lift); border-color: var(--glacier-ice); }
.ydelse-konto {
  font-family: var(--font-mono); font-size: 15px; color: var(--brass);
  display: flex; flex-direction: column; gap: 4px;
}
.ydelse-konto .konto-nr { font-size: 26px; font-weight: 600; color: var(--fjord); }
.ydelse-konto .konto-label { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }
.ydelse-main h3 { font-size: 21px; margin-bottom: 8px; }
.ydelse-main p { font-size: 15.5px; max-width: 560px; }
.ydelse-icon {
  width: 62px; height: 62px; border-radius: 18px;
  background: linear-gradient(135deg, var(--mist) 0%, var(--glacier-ice) 100%);
  color: var(--glacier-deep);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ============================================================
   Values (om os)
   ============================================================ */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card {
  background: var(--cloud);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out);
}
.value-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.value-icon {
  width: 52px; height: 52px; border-radius: 15px;
  background: linear-gradient(135deg, var(--sand) 0%, var(--mist) 100%);
  color: var(--brass);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.value-card h3 { font-size: 19px; margin-bottom: 10px; }
.value-card p { font-size: 15px; }

/* ============================================================
   Kontakt
   ============================================================ */
.kontakt-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(36px, 5vw, 70px); align-items: start; }

.form-card {
  background: var(--cloud);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: clamp(30px, 4vw, 48px);
  box-shadow: var(--shadow-soft);
}
.form-card h2 { font-size: 26px; margin-bottom: 8px; }
.form-card .form-sub { font-size: 15px; margin-bottom: 30px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--fjord); }
.form-field input, .form-field select, .form-field textarea {
  font: inherit; font-size: 15.5px;
  color: var(--fjord);
  background: var(--snow);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  transition: border-color .3s, box-shadow .3s, background .3s;
  width: 100%;
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--glacier-deep);
  background: var(--cloud);
  box-shadow: 0 0 0 4px rgba(111, 168, 208, .18);
}
.form-field .errorlist { color: #B4593B; font-size: 13px; list-style: none; }
.form-card .btn { margin-top: 26px; width: 100%; }

.kontakt-cards { display: grid; gap: 18px; }
.kontakt-card {
  background: var(--cloud);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 24px 26px;
  display: flex; gap: 18px; align-items: flex-start;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.kontakt-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.kontakt-card .kc-icon {
  width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--mist) 0%, var(--glacier-ice) 100%);
  color: var(--glacier-deep);
  display: flex; align-items: center; justify-content: center;
}
.kontakt-card h3 { font-size: 16.5px; margin-bottom: 4px; }
.kontakt-card p, .kontakt-card a { font-size: 15px; }
.kontakt-card a { color: var(--glacier-deep); font-weight: 600; }

.map-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line-soft);
  height: clamp(320px, 42vw, 440px);
  background: var(--mist);
}
.map-frame iframe {
  width: 100%; height: 100%; border: 0; display: block;
  filter: saturate(.92);
}
.map-badge {
  position: absolute;
  left: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lift);
  max-width: min(440px, calc(100% - 32px));
}
.map-badge-pin {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--glacier) 0%, var(--glacier-deep) 100%);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.map-badge-text { display: flex; flex-direction: column; line-height: 1.35; min-width: 0; }
.map-badge-text strong { font-family: var(--font-display); font-size: 15px; color: var(--fjord); }
.map-badge-text span { font-size: 13.5px; color: var(--fjord-soft); }
.map-badge-link {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-display); font-weight: 600; font-size: 13.5px;
  color: var(--glacier-deep);
  white-space: nowrap;
  transition: gap .3s var(--ease-out);
}
.map-badge-link:hover { gap: 11px; }

@media (max-width: 560px) {
  .map-badge { flex-wrap: wrap; gap: 12px; }
  .map-badge-link { margin-left: 0; width: 100%; }
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  position: relative;
  background: linear-gradient(180deg, var(--snow) 0%, var(--mist) 100%);
  border-top: 1px solid var(--line-soft);
  padding: clamp(56px, 7vw, 88px) 0 0;
  overflow: hidden;
}
.footer-glow {
  position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 640px; height: 240px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(111, 168, 208, .16), transparent);
  pointer-events: none;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(30px, 4vw, 56px);
  padding-bottom: clamp(40px, 5vw, 64px);
  position: relative;
}
.footer-col h4 { font-size: 15px; letter-spacing: .04em; margin-bottom: 16px; }
.footer-col p { font-size: 14.5px; margin-bottom: 12px; }
.footer-col ul { display: grid; gap: 9px; }
.footer-col ul a, .footer-col p a { transition: color .3s; }
.footer-col ul a:hover, .footer-col p a:hover { color: var(--glacier-deep); }
.footer-brand p { max-width: 320px; margin-top: 14px; }
.footer-cvr { opacity: .75; font-size: 13px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--cloud); color: var(--fjord-soft);
  border: 1px solid var(--line-soft);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .3s var(--ease-out), color .3s, border-color .3s;
}
.footer-social a:hover { transform: translateY(-3px); color: var(--glacier-deep); border-color: var(--glacier); }
.footer-bottom {
  border-top: 1px solid var(--line-soft);
  padding: 22px 0;
  text-align: center;
  font-size: 13.5px;
  color: var(--fjord-soft);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1020px) {
  .services-grid, .testi-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; }
  #hero3d { opacity: .45; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav-links {
    position: fixed; inset: 0; z-index: -1;
    background: rgba(248, 250, 252, .97);
    backdrop-filter: blur(18px);
    flex-direction: column; align-items: center; justify-content: center; gap: 30px;
    opacity: 0; pointer-events: none;
    transition: opacity .4s var(--ease-out);
  }
  .nav-links a { font-size: 24px; font-weight: 600; }
  .nav-links.open { opacity: 1; pointer-events: auto; z-index: 99; }
  .nav-burger { display: flex; }
  .nav-cta { display: none; }
  .split, .split.reverse { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .kontakt-layout { grid-template-columns: 1fr; }
  .ydelse-row { grid-template-columns: 1fr; gap: 16px; }
  .ydelse-icon { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 34px; }
  .stat:nth-child(3)::before { display: none; }
}

@media (max-width: 620px) {
  .services-grid, .testi-grid, .values-grid, .pricing-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .media-card { right: 8px; bottom: -20px; padding: 14px 18px; }
  .hero-ctas .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001s !important;
  }
}
