/* ==========================================================================
   1. VARIABLES
   ========================================================================== */
:root {
  --navy: #08254a;
  --navy2: #0b3764;
  --teal: #0b8588;
  --teal2: #17a7a6;
  --ink: #122033;
  --muted: #5f6f82;
  --line: #dfe7ec;
  --paper: #fff;
  --soft: #f4f8f8;
  --soft2: #eef8f7;
  --gold: #f4a600;
  --container-wide: 1320px;
  --container-content: 1180px;
  --page-gutter: clamp(20px, 3vw, 48px);
  --section-space-xl: clamp(88px, 8vw, 128px);
  --section-space-lg: clamp(72px, 6vw, 104px);
  --section-space-md: clamp(56px, 5vw, 80px);
  --card-radius: 18px;
  --button-radius: 8px;
  --panel-border: #dbe5ea;
  --radius: var(--card-radius);
  --shadow: 0 14px 40px rgba(8, 37, 74, 0.11);
  --shadow-lg: 0 18px 50px rgba(8, 37, 74, 0.12);
  --max: var(--container-content);
  --font-serif: Georgia, "Times New Roman", serif;
  --font-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--teal);
  font-weight: 800;
  font-size: 12px;
  margin: 0 0 14px;
}

h1, h2, h3, .display {
  font-family: var(--font-serif);
  color: var(--navy);
  font-weight: 500;
}

h1 { font-size: clamp(52px, 5vw, 74px); line-height: 0.98; letter-spacing: -0.035em; }
h2 { font-size: clamp(36px, 3.4vw, 52px); line-height: 1.08; }
h3 { font-size: clamp(22px, 2vw, 28px); line-height: 1.15; }

.content h1, .content h2, .section-head h2, .panel h2, .process-title {
  font-family: var(--font-serif);
  color: var(--navy);
  font-weight: 500;
}

/* ==========================================================================
   4. LAYOUT
   ========================================================================== */
.container {
  width: min(var(--container-content), calc(100% - var(--page-gutter) * 2));
  margin-inline: auto;
}

.container-wide {
  width: min(var(--container-wide), calc(100% - var(--page-gutter) * 2));
  margin-inline: auto;
}

.section { padding: var(--section-space-lg) 0; }
.section--tight { padding: var(--section-space-md) 0; }
.section--soft { background: linear-gradient(180deg, #fbfdfd, #f5f9f9); }

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 32px;
}

.section-head h2 { margin: 0; font-size: clamp(34px, 3.2vw, 46px); }
.section-head p { max-width: 520px; color: var(--muted); margin: 0; line-height: 1.6; }
.section-head__link { color: var(--teal); font-weight: 700; font-size: 14px; white-space: nowrap; }

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}

.panel {
  border: 1px solid var(--panel-border);
  border-radius: var(--card-radius);
  background: #fff;
  padding: clamp(24px, 3vw, 34px);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.panel h2 { font-size: clamp(26px, 2.4vw, 32px); margin: 0 0 10px; }
.panel > p { color: var(--muted); margin: 0 0 22px; max-width: 680px; }

.lower-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  background: var(--navy);
  color: #fff;
  padding: 12px 18px;
  border-radius: 10px;
  z-index: 9999;
}
.skip-link:focus { top: 16px; }

/* ==========================================================================
   5. TOPBAR
   ========================================================================== */
.topbar {
  background: #fbfcfd;
  border-bottom: 1px solid #edf1f4;
  font-size: 13px;
}

.topbar__inner {
  min-height: 36px;
  height: 36px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: #385066;
}

.topbar__item {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  white-space: nowrap;
}

.topbar__item:nth-child(1) { justify-self: start; }
.topbar__item:nth-child(2) { justify-self: center; }
.topbar__item:nth-child(3) { justify-self: end; }

.topbar svg {
  width: 16px;
  height: 16px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.9;
  flex-shrink: 0;
}

/* ==========================================================================
   6. HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(223, 231, 236, 0.9);
}

.site-header .nav {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
}

.brand { width: 158px; flex-shrink: 0; }
.brand img { width: 100%; height: auto; }

.nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 30px);
  font-size: 15px;
  font-weight: 650;
  color: #203650;
}

.nav__links a {
  position: relative;
  padding: 28px 0;
  white-space: nowrap;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 22px;
  height: 2px;
  background: var(--teal);
  transition: right 0.25s;
}

.nav__links a:hover::after,
.nav__links a[aria-current="page"]::after { right: 0; }

.nav__cta { white-space: nowrap; flex-shrink: 0; }
.nav-toggle { display: none; }

.nav__group { position: relative; }

.nav__dropdown-trigger {
  background: 0;
  border: 0;
  padding: 28px 0;
  font: inherit;
  font-size: 15px;
  font-weight: 650;
  color: #203650;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.nav__dropdown-trigger::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: rotate(45deg);
  margin-top: -3px;
  transition: transform 0.2s;
}

.nav__dropdown-trigger[aria-expanded="true"]::after {
  transform: rotate(-135deg);
  margin-top: 3px;
}

.nav__dropdown {
  position: absolute;
  top: 100%;
  left: -12px;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 8px 0;
  margin: 0;
  list-style: none;
  display: none;
  z-index: 120;
}

.nav__dropdown.is-open { display: block; }
.nav__dropdown a { display: block; padding: 10px 18px; font-size: 14px; font-weight: 600; color: #203650; }
.nav__dropdown a:hover { background: var(--soft2); color: var(--teal); }

/* ==========================================================================
   7. BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: var(--button-radius);
  min-height: 48px;
  padding: 12px 22px;
  font-weight: 750;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--navy); color: #fff; box-shadow: 0 10px 22px rgba(8, 37, 74, 0.18); }
.btn--primary:hover { background: #0b315e; }
.btn--teal { background: linear-gradient(135deg, var(--teal), var(--teal2)); color: #fff; box-shadow: 0 10px 22px rgba(11, 133, 136, 0.2); }
.btn--outline { background: #fff; border: 1px solid #9ebbc5; color: var(--navy); }

.btn:focus-visible,
.nav__links a:focus-visible,
.nav__dropdown-trigger:focus-visible,
.faq summary:focus-visible,
.skip-link:focus-visible,
.nav-toggle:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
}

/* ==========================================================================
   8. HERO
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.hero__container {
  display: grid;
  grid-template-columns: minmax(0, 42%) minmax(0, 58%);
  min-height: 550px;
  align-items: stretch;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 540px;
  padding: 56px 48px 70px 0;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(54px, 5.2vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  max-width: 590px;
  margin: 0 0 26px;
}

.hero h1 span,
.hero h1 em { display: block; }

.hero h1 em { font-weight: 400; font-style: italic; }

.hero__lead {
  font-size: 18px;
  line-height: 1.6;
  max-width: 500px;
  color: #53657a;
  margin: 0 0 28px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero__media {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #eef5f4;
}

.hero__media picture,
.hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 550px;
  object-fit: cover;
  object-position: 58% 50%;
}

.hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.72) 0%, transparent 22%);
  z-index: 1;
  pointer-events: none;
}

.rating-card {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: min(230px, calc(100% - 32px));
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: var(--shadow);
  z-index: 2;
}

.rating-card__label {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.rating-card p { margin: 0; font-size: 14px; line-height: 1.45; }
.rating-card a { color: var(--navy); font-weight: 650; }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 22px;
  margin-top: 28px;
  font-size: 12px;
  color: #637489;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.trust-row svg {
  width: 18px;
  height: 18px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.9;
  flex-shrink: 0;
}

/* ==========================================================================
   9. QUOTE FORM
   ========================================================================== */
.quote-wrap {
  position: relative;
  z-index: 10;
  margin-top: -48px;
  padding-bottom: 8px;
}

.quote-card {
  background: #fff;
  border: 1px solid var(--panel-border);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 24px 28px;
}

.quote-card h2 {
  font: 500 clamp(22px, 2.2vw, 28px) var(--font-serif);
  color: var(--navy);
  margin: 0 0 18px;
}

.quote-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(5, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #5e7185;
  margin: 0 0 6px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--button-radius);
  background: #fff;
  padding: 0 12px;
  color: var(--ink);
  outline: none;
}

.field textarea { height: 120px; padding-top: 12px; resize: vertical; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(11, 133, 136, 0.12);
}

.field input:invalid:not(:placeholder-shown),
.field select:invalid,
.field textarea:invalid:not(:placeholder-shown) { border-color: #c45a5a; }

.field--hp { position: absolute !important; left: -9999px !important; }
.form-status { margin-top: 10px; font-size: 14px; }
.form-privacy { font-size: 12px; color: var(--muted); margin-top: 10px; grid-column: 1 / -1; }
.form-privacy a { color: var(--teal); font-weight: 700; }

/* ==========================================================================
   10. SERVICES
   ========================================================================== */
.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

.service-card {
  border: 1px solid var(--panel-border);
  border-radius: var(--card-radius);
  background: #fff;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: #cadadd;
}

.service-card__image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  display: block;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s;
}

.service-card:hover .service-card__image img { transform: scale(1.04); }

.service-card__image--hem { object-position: center 40%; }
.service-card__image--flytt { object-position: center 45%; }
.service-card__image--fonster { object-position: 55% center; }
.service-card__image--kontor { object-position: center 35%; }
.service-card__image--stor { object-position: center 50%; }
.service-card__image--trapp { object-position: center 55%; }
.service-card__image--glas { object-position: 60% center; }

.service-card__icon {
  position: absolute;
  left: 16px;
  bottom: -18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px rgba(8, 37, 74, 0.08);
  z-index: 2;
}

.service-card__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.9;
}

.service-card__body {
  padding: 28px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card h3 {
  font: 500 clamp(20px, 1.8vw, 24px) var(--font-serif);
  color: var(--navy);
  margin: 0 0 10px;
}

.service-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 14px;
}

.service-card__features {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  font-size: 13px;
  color: #4a6075;
}

.service-card__features li {
  position: relative;
  padding-left: 16px;
  margin: 6px 0;
}

.service-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

.text-link {
  margin-top: auto;
  color: var(--teal);
  font-weight: 800;
  font-size: 14px;
}

.services-secondary { margin-top: 40px; }

.services-secondary__title {
  font: 500 24px var(--font-serif);
  color: var(--navy);
  margin: 0 0 18px;
}

.services-secondary__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card--compact {
  flex-direction: row;
  align-items: stretch;
  min-height: 120px;
}

.service-card--compact .service-card__image {
  width: 38%;
  flex-shrink: 0;
  aspect-ratio: auto;
  min-height: 120px;
}

.service-card--compact .service-card__body {
  padding: 18px 20px;
  justify-content: center;
}

.service-card--compact h3 { font-size: 18px; margin-bottom: 6px; }
.service-card--compact p { margin: 0 0 10px; font-size: 13px; }
.service-card--compact .service-card__icon { display: none; }

/* ==========================================================================
   11. BENEFITS & RUT
   ========================================================================== */
.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 8px;
}

.benefit {
  text-align: center;
  padding: 12px 14px;
  border-right: 1px solid var(--line);
}

.benefit:last-child { border-right: 0; }

.benefit svg {
  width: 34px;
  height: 34px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.9;
  margin: 0 auto 10px;
}

.benefit strong { display: block; color: var(--navy); font-size: 14px; }
.benefit small { display: block; color: var(--muted); font-size: 12px; margin-top: 4px; line-height: 1.45; }

.fact-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-top: 24px;
  overflow: hidden;
}

.fact {
  text-align: center;
  padding: 15px 8px;
  background: #fbfdfd;
  border-right: 1px solid var(--line);
}

.fact:last-child { border-right: 0; }
.fact strong { display: block; color: var(--navy); font-size: 20px; }
.fact span { font-size: 11px; color: var(--muted); }

.rut-panel { background: linear-gradient(145deg, #fff, #eef9f8); }

.calc {
  border: 1px solid #d8e8e8;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.calc__row {
  display: flex;
  justify-content: space-between;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
}

.calc__row:last-child {
  border: 0;
  background: #edf9f8;
  font-weight: 800;
  font-size: 19px;
  color: var(--navy);
}

.calc__minus { color: var(--teal); }
.calc-example-label { font-size: 12px; color: var(--muted); margin: 0 0 8px; font-weight: 650; text-transform: uppercase; letter-spacing: 0.08em; }
.calc-example-note { font-size: 13px; color: var(--muted); margin: 0 0 12px; line-height: 1.5; }
.notice { display: flex; gap: 8px; font-size: 12px; color: #637489; margin-top: 14px; line-height: 1.5; }

/* ==========================================================================
   12. PROCESS
   ========================================================================== */
.process-title {
  text-align: center;
  font: 500 clamp(32px, 3vw, 40px) var(--font-serif);
  color: var(--navy);
  margin: 0 0 36px;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  position: relative;
}

.process::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 29px;
  border-top: 1px dashed #b8c8d2;
}

.process__item { text-align: center; position: relative; }

.process__icon {
  width: 60px;
  height: 60px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(8, 37, 74, 0.06);
}

.process__num {
  position: absolute;
  left: -4px;
  top: -4px;
  width: 22px;
  height: 22px;
  background: var(--teal);
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  display: grid;
  place-items: center;
}

.process svg {
  width: 22px;
  height: 22px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.9;
}

.process strong { display: block; color: var(--navy); margin-bottom: 6px; font-size: 15px; }
.process p { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.5; max-width: 220px; margin-inline: auto; }

/* ==========================================================================
   13. REVIEWS & FAQ
   ========================================================================== */
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--teal); font-size: 18px; flex-shrink: 0; }
.faq details[open] summary::after { content: "−"; }
.faq p { margin: 0 0 18px; color: var(--muted); font-size: 14px; line-height: 1.6; max-width: 680px; }

/* ==========================================================================
   14. CTA
   ========================================================================== */
.cta { padding: 0 0 clamp(24px, 3vw, 40px); }

.cta__inner {
  position: relative;
  overflow: hidden;
  border-radius: var(--card-radius);
  background: linear-gradient(100deg, #08254a, #0c4773);
  color: #fff;
  padding: clamp(28px, 4vw, 40px) clamp(28px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 140px;
}

.cta__inner::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: min(330px, 42%);
  height: 100%;
  background: url("../img/cta-detail.webp") center/cover;
  opacity: 0.28;
  mix-blend-mode: screen;
  pointer-events: none;
}

.cta h2 {
  font: 500 clamp(28px, 3vw, 36px) var(--font-serif);
  margin: 0;
  position: relative;
  z-index: 1;
}

.cta p {
  margin: 8px 0 0;
  color: #d5e2ec;
  max-width: 560px;
  line-height: 1.55;
  position: relative;
  z-index: 1;
}

.cta .btn {
  position: relative;
  z-index: 2;
  background: #fff;
  color: var(--teal);
  min-width: 220px;
  flex-shrink: 0;
}

/* ==========================================================================
   15. FOOTER
   ========================================================================== */
.footer {
  background: linear-gradient(120deg, #062344, #0b4774);
  color: #fff;
  padding: clamp(40px, 5vw, 56px) 0 20px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: clamp(28px, 4vw, 44px);
}

.footer .brand { width: 180px; filter: brightness(0) invert(1); margin-bottom: 14px; }
.footer h3 { font-size: 14px; margin: 0 0 14px; font-weight: 700; }
.footer p, .footer a { font-size: 14px; color: #d4e0e9; line-height: 1.55; }
.footer a { display: block; margin: 8px 0; }
.footer a:hover { color: #fff; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  padding-top: 18px;
  margin-top: 32px;
  font-size: 13px;
  color: #c8d5df;
}

/* ==========================================================================
   16. SERVICE PAGES
   ========================================================================== */
.breadcrumbs { padding: 16px 0 0; font-size: 13px; color: var(--muted); }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; margin: 0; padding: 0; align-items: center; }
.breadcrumbs li { display: flex; align-items: center; gap: 6px; }
.breadcrumbs li + li::before { content: "›"; color: #9aabb8; }
.breadcrumbs a { color: var(--teal); font-weight: 650; }
.breadcrumbs [aria-current="page"] { color: var(--ink); font-weight: 650; }

.page-hero {
  padding: clamp(48px, 5vw, 72px) 0 clamp(40px, 4vw, 56px);
  background: linear-gradient(125deg, #f6fbfb, #eef7f7);
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 46%) minmax(0, 54%);
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
  min-height: 420px;
}

.page-hero h1 {
  font: 500 clamp(40px, 4.2vw, 64px)/1.03 var(--font-serif);
  color: var(--navy);
  margin: 0 0 18px;
}

.page-hero p { font-size: 18px; color: var(--muted); max-width: 680px; line-height: 1.6; }

.page-hero__media {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow);
  min-height: 360px;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.page-hero__media--hem img { object-position: center 40%; }
.page-hero__media--flytt img { object-position: center 45%; }
.page-hero__media--fonster img { object-position: 55% center; }
.page-hero__media--kontor img { object-position: center 35%; }
.page-hero__media--stor img { object-position: center 50%; }
.page-hero__media--trapp img { object-position: center 55%; }
.page-hero__media--glas img { object-position: 60% center; }

.service-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 22px;
  font-size: 13px;
  color: #637489;
}

.service-hero-trust span { display: flex; align-items: center; gap: 7px; }
.service-hero-trust svg { width: 18px; height: 18px; stroke: var(--teal); fill: none; stroke-width: 1.9; }

.service-section { padding: var(--section-space-md) 0; border-bottom: 1px solid var(--line); }
.service-section:last-child { border-bottom: 0; }
.service-section h2 { font: 500 clamp(28px, 2.6vw, 34px) var(--font-serif); color: var(--navy); margin: 0 0 14px; }
.service-section > .container > p { color: var(--muted); max-width: 720px; margin: 0 0 8px; line-height: 1.65; }

.content { padding: 65px 0; }
.content-grid { display: grid; grid-template-columns: 1.5fr 0.7fr; gap: 45px; }
.content h2 { font-size: 34px; margin: 34px 0 14px; }
.content h3 { color: var(--navy); margin: 26px 0 10px; }
.content p, .content li { color: #526478; max-width: 760px; }
.content li { margin: 7px 0; }

.sidebar { position: sticky; top: 110px; align-self: start; }
.price-box { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 22px; box-shadow: var(--shadow); }
.price-note { font-size: 13px; color: var(--muted); border-left: 3px solid var(--teal); padding-left: 12px; margin: 12px 0; }
.price-pending { font-size: 15px; color: var(--navy); background: var(--soft2); border: 1px solid #d5e8e8; border-radius: 12px; padding: 16px 18px; margin: 16px 0; line-height: 1.55; }

.service-intro { max-width: 780px; margin: 0 auto 40px; text-align: center; }
.service-intro p { font-size: 18px; color: var(--muted); margin: 0; line-height: 1.65; }

.scope-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 24px 0; }
.scope-card { border: 1px solid var(--line); border-radius: 14px; padding: 22px; background: #fff; }
.scope-card h3 { font: 500 20px var(--font-serif); color: var(--navy); margin: 0 0 12px; }
.scope-card ul { margin: 0; padding-left: 18px; font-size: 14px; }

.addons { display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0 0; }
.addon-tag { display: inline-flex; padding: 8px 14px; border-radius: 999px; background: var(--soft2); border: 1px solid #d5e8e8; font-size: 13px; font-weight: 650; color: var(--navy); }

.audience-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 20px 0; }
.audience-item { padding: 18px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.audience-item strong { display: block; color: var(--navy); margin-bottom: 4px; font-size: 15px; }
.audience-item p { margin: 0; font-size: 14px; color: var(--muted); }

.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 22px 0; }
.why-item { padding: 20px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.why-item svg { width: 28px; height: 28px; stroke: var(--teal); fill: none; stroke-width: 1.9; margin-bottom: 10px; }
.why-item strong { display: block; color: var(--navy); margin-bottom: 6px; }
.why-item p { margin: 0; font-size: 13px; color: var(--muted); }

.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 22px 0; }
.related-card { border: 1px solid var(--line); border-radius: 14px; padding: 20px; background: #fff; transition: 0.2s; }
.related-card:hover { border-color: #cadadd; box-shadow: 0 8px 24px rgba(8, 37, 74, 0.08); }
.related-card h3 { font: 500 19px var(--font-serif); color: var(--navy); margin: 0 0 8px; }
.related-card p { font-size: 13px; color: var(--muted); margin: 0 0 12px; }

.cta--service .cta__inner { align-items: center; }
.cta--service h2 { font-size: clamp(26px, 3vw, 34px); }

/* ==========================================================================
   17. MISC / LEGAL / FORMS
   ========================================================================== */
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.legal { max-width: 850px; }
.legal h1 { font-size: 50px; }
.alert { padding: 14px 16px; border-radius: 10px; background: #fff8e8; border: 1px solid #f1d699; color: #74580d; font-size: 14px; }
.info-box { border: 1px solid var(--line); border-radius: 12px; padding: 18px 20px; background: #fff; margin: 18px 0; }
.info-box h3 { margin: 0 0 8px; font: 500 20px var(--font-serif); color: var(--navy); }

.form-tabs { display: flex; gap: 8px; margin-bottom: 18px; flex-wrap: wrap; }
.form-tab { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 10px 16px; font-weight: 700; cursor: pointer; color: var(--navy); }
.form-tab.is-active, .form-tab[aria-selected="true"] { background: var(--navy); color: #fff; border-color: var(--navy); }
.form-panel[hidden] { display: none !important; }

.mobile-cta { display: none; }

.cookie {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 14px;
  padding: 17px 20px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.cookie.is-visible { display: flex; }
.cookie p { margin: 0; font-size: 13px; color: var(--muted); }

.areas-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0; }
.areas-list span { padding: 8px 16px; border-radius: 999px; background: var(--soft); border: 1px solid var(--line); font-size: 14px; font-weight: 650; color: var(--navy); }

.price-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.price-table th, .price-table td { padding: 10px 6px; border-bottom: 1px solid var(--line); text-align: left; }

/* ==========================================================================
   18. RESPONSIVE
   ========================================================================== */
@media (max-width: 1180px) {
  .quote-grid { grid-template-columns: repeat(3, 1fr); }
  .quote-grid .btn { grid-column: 1 / -1; width: 100%; }
  .hero__container { grid-template-columns: minmax(0, 44%) minmax(0, 56%); }
}

@media (max-width: 1050px) {
  .nav__links { gap: 16px; font-size: 14px; }
  .services { grid-template-columns: repeat(2, 1fr); }
  .services-secondary__grid { grid-template-columns: 1fr; }
  .split, .lower-grid, .content-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1.3fr repeat(2, 1fr); }
  .footer__grid > div:nth-child(4),
  .footer__grid > div:nth-child(5) { margin-top: 8px; }
  .sidebar { position: static; }
  .scope-grid, .why-grid, .related-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero__grid { grid-template-columns: minmax(0, 48%) minmax(0, 52%); min-height: 380px; }
}

@media (max-width: 820px) {
  .topbar__inner { grid-template-columns: 1fr; justify-items: center; height: auto; min-height: 34px; padding: 6px 0; }
  .topbar__item:nth-child(1) { display: none; }
  .topbar__item:nth-child(2) { justify-self: center; }
  .topbar__item:nth-child(3) { justify-self: center; }

  .site-header .nav { min-height: 68px; grid-template-columns: auto auto; justify-content: space-between; }
  .brand { width: 145px; }
  .nav-toggle {
    display: block;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
  }
  .nav-toggle span { display: block; width: 20px; height: 2px; margin: 4px auto; background: var(--navy); }
  .nav__cta { display: none; }

  .nav__links {
    position: fixed;
    left: 0;
    right: 0;
    top: 104px;
    background: #fff;
    padding: 18px 20px 30px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    max-height: calc(100vh - 68px);
    overflow-y: auto;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: 13px 0; }
  .nav__links a::after { display: none; }
  .nav__group { width: 100%; border-bottom: 1px solid var(--line); }
  .nav__dropdown-trigger { width: 100%; justify-content: space-between; padding: 13px 0; }
  .nav__dropdown { position: static; box-shadow: none; border: 0; padding: 0 0 8px 12px; background: transparent; }

  .hero__container { grid-template-columns: 1fr; min-height: 0; }
  .hero__copy { order: 1; max-width: none; padding: 48px 0 28px; }
  .hero__media { order: 2; min-height: 320px; }
  .hero__media img { min-height: 320px; }
  .hero__media::before { background: linear-gradient(180deg, rgba(255, 255, 255, 0.75), transparent 20%); }
  .quote-wrap { margin-top: 0; padding-top: 8px; }
  .quote-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: var(--section-space-md) 0; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .benefits { grid-template-columns: 1fr 1fr; }
  .benefit { border-bottom: 1px solid var(--line); }
  .fact-row { grid-template-columns: 1fr 1fr; }
  .process { grid-template-columns: 1fr 1fr; gap: 28px; }
  .process::before { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .page-hero__grid { grid-template-columns: 1fr; min-height: 0; gap: 24px; }
  .page-hero__media { order: -1; min-height: 280px; }
  .page-hero__media img { min-height: 280px; }
  .service-card--compact { flex-direction: column; }
  .service-card--compact .service-card__image { width: 100%; min-height: 160px; }
  .mobile-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 200;
    border-radius: 13px;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(8, 37, 74, 0.3);
  }
  .mobile-cta a { padding: 13px; text-align: center; font-weight: 800; background: #fff; color: var(--navy); }
  .mobile-cta a:last-child { background: var(--teal); color: #fff; }
  .footer { padding-bottom: 85px; }
  .cookie { bottom: 75px; flex-direction: column; align-items: stretch; }
}

@media (max-width: 560px) {
  .hero h1 { font-size: 44px; }
  .hero__lead { font-size: 16px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .trust-row { gap: 12px; }
  .quote-card { padding: 18px; }
  .quote-grid { grid-template-columns: 1fr; }
  .services { grid-template-columns: 1fr; }
  .benefits { grid-template-columns: 1fr; }
  .benefit { border-right: 0; }
  .process { grid-template-columns: 1fr; }
  .cta__inner { flex-direction: column; align-items: flex-start; padding: 24px; }
  .cta .btn { width: 100%; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; }
  .topbar { display: none; }
  .nav__links { top: 68px; }
  .scope-grid, .audience-grid, .why-grid, .related-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
