/* ==========================================================================
   Milli – millivet.dk
   Fælles stilark for forside, /om-milli/ og /milli-vettigo/
   Overført 1:1 fra de endelige designfiler.
   ========================================================================== */

/* ---------- Skrifttyper (lokalt hostede, SIL Open Font License) ---------- */

@font-face {
  font-family: 'Schibsted Grotesk';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('/fonts/schibsted-grotesk-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Schibsted Grotesk';
  font-style: italic;
  font-weight: 400 900;
  font-display: swap;
  src: url('/fonts/schibsted-grotesk-italic-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/fonts/hanken-grotesk-latin.woff2') format('woff2');
}

/* ---------- Grundlag ---------- */

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Hanken Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  color: #221E18;
  background: linear-gradient(180deg, #F6ECD6 0%, #F2E5C9 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

::selection { background: #CE8645; color: #fff; }

img { max-width: 100%; }

a { color: #1E78B4; }
a:hover { color: #176192; }

h1, h2, h3 { font-family: 'Schibsted Grotesk', 'Hanken Grotesk', sans-serif; }

/* Synlig fokusmarkering – kun ved tastaturnavigation */
:focus-visible {
  outline: 3px solid rgba(30, 120, 180, 0.65);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: #221E18;
  color: #FBF5E8;
  padding: 12px 20px;
  border-radius: 0 0 12px 0;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus {
  left: 0;
  color: #FBF5E8;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(244, 231, 202, 0.72);
  border-bottom: 1px solid rgba(34, 30, 24, 0.06);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
  display: block;
}
.brand-name {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 700;
  font-size: 21px;
  color: #221E18;
  letter-spacing: -0.01em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: #4A4338;
  text-decoration: none;
}
.nav-link:hover { color: #221E18; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.login-link {
  font-size: 15px;
  font-weight: 600;
  color: #221E18;
  text-decoration: none;
  padding: 10px 8px;
}
.login-link:hover { color: #221E18; }

.btn-header-cta {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background: #CE8645;
  padding: 11px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 16px -6px rgba(206, 134, 69, 0.7);
  transition: background .15s;
}
.btn-header-cta:hover { background: #BC7335; color: #fff; }

.back-link {
  font-size: 15px;
  font-weight: 600;
  color: #221E18;
  text-decoration: none;
  padding: 10px 8px;
}
.back-link:hover { color: #221E18; }

/* Mobilmenu-knap (skjult på desktop) */
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(34, 30, 24, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  color: #221E18;
}

.mobile-menu {
  display: none;
  border-top: 1px solid rgba(34, 30, 24, 0.06);
  padding: 8px 20px 18px;
}
.mobile-menu.is-open { display: block; }
.mobile-menu a {
  display: block;
  padding: 12px 4px;
  font-size: 16px;
  font-weight: 600;
  color: #221E18;
  text-decoration: none;
  border-bottom: 1px solid rgba(34, 30, 24, 0.06);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .mobile-cta {
  margin-top: 10px;
  text-align: center;
  background: #CE8645;
  color: #fff;
  border-radius: 12px;
  border-bottom: none;
}

/* ---------- Fælles knapper ---------- */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background: #CE8645;
  padding: 15px 26px;
  border-radius: 13px;
  box-shadow: 0 10px 26px -10px rgba(206, 134, 69, 0.75);
  transition: transform .15s, background .15s;
}
.btn-primary:hover {
  background: #BC7335;
  color: #fff;
  transform: translateY(-1px);
}

.btn-primary--large {
  padding: 16px 30px;
  box-shadow: 0 12px 30px -10px rgba(206, 134, 69, 0.6);
}
.btn-primary--large:hover { transform: none; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  color: #221E18;
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(34, 30, 24, 0.12);
  padding: 15px 24px;
  border-radius: 13px;
  box-shadow: 0 2px 8px -4px rgba(34, 30, 24, 0.18);
  transition: border-color .15s;
}
.btn-outline:hover { border-color: rgba(34, 30, 24, 0.28); color: #221E18; }

.btn-blue {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 15.5px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background: #1E78B4;
  padding: 13px 24px;
  border-radius: 12px;
  box-shadow: 0 10px 24px -10px rgba(30, 120, 180, 0.7);
  transition: background .15s;
}
.btn-blue:hover { background: #176192; color: #fff; }

.btn-blue--compact {
  font-size: 15px;
  padding: 12px 24px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  color: #FBF5E8;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 16px 28px;
  border-radius: 13px;
  transition: background .15s;
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.14); color: #FBF5E8; }

/* ---------- Fælles typografi-elementer ---------- */

.kicker {
  font-size: 14px;
  font-weight: 600;
  color: #CE8645;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-weight: 700;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #1C1813;
  margin-bottom: 16px;
}

.section-lead {
  font-size: 18px;
  line-height: 1.55;
  color: #6E6453;
  font-weight: 450;
}

/* Lys båndsektion */
.band {
  background: #FBF5E6;
  border-top: 1px solid rgba(34, 30, 24, 0.05);
  border-bottom: 1px solid rgba(34, 30, 24, 0.05);
}

/* ---------- Forside: Hero ---------- */

.hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 84px 40px 92px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.04fr;
  gap: 60px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(30, 120, 180, 0.10);
  border: 1px solid rgba(30, 120, 180, 0.16);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 26px;
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5FA98D;
}
.badge-text {
  font-size: 13.5px;
  font-weight: 600;
  color: #1E78B4;
  letter-spacing: 0.01em;
}

.hero-title {
  font-weight: 700;
  font-size: 54px;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #1C1813;
  margin-bottom: 22px;
  text-wrap: balance;
}

.hero-lead {
  font-size: 20px;
  line-height: 1.5;
  color: #5A5345;
  max-width: 500px;
  margin-bottom: 18px;
  font-weight: 500;
}

.hero-sub {
  font-size: 16.5px;
  line-height: 1.6;
  color: #7A715F;
  max-width: 480px;
  margin-bottom: 34px;
  font-weight: 450;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(200px, 1fr));
  gap: 12px 24px;
  max-width: 460px;
  color: #8A8170;
  font-size: 14px;
  font-weight: 500;
}
.check-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Produkt-mockup (Patientoverblik) */
.preview-wrap { position: relative; }
.preview-blob {
  position: absolute;
  border-radius: 50%;
}
.preview-blob--1 {
  top: -26px;
  left: -30px;
  width: 140px;
  height: 140px;
  background: rgba(30, 120, 180, 0.10);
  filter: blur(8px);
}
.preview-blob--2 {
  bottom: -30px;
  right: -26px;
  width: 160px;
  height: 160px;
  background: rgba(95, 169, 141, 0.16);
  filter: blur(10px);
}

.preview-card {
  position: relative;
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(34, 30, 24, 0.07);
  box-shadow: 0 2px 4px rgba(34, 30, 24, 0.04), 0 30px 60px -24px rgba(34, 30, 24, 0.28);
  overflow: hidden;
}

.preview-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px 13px;
  background: linear-gradient(180deg, #FBF5E8, #FFFFFF);
  border-bottom: 1px solid rgba(34, 30, 24, 0.06);
}
.preview-title {
  display: flex;
  align-items: center;
  gap: 9px;
}
.preview-title img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}
.preview-title span {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #1C1813;
  letter-spacing: -0.01em;
}
.preview-status {
  font-size: 11.5px;
  font-weight: 600;
  color: #3E8A6E;
  background: #E7F1EC;
  padding: 4px 10px;
  border-radius: 999px;
}

.patient-row {
  padding: 16px 20px 6px;
  display: flex;
  align-items: center;
  gap: 13px;
}
.patient-avatar {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: #EAF3FA;
  display: flex;
  align-items: center;
  justify-content: center;
}
.patient-info { flex: 1; }
.patient-name {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #1C1813;
}
.patient-meta {
  font-size: 13px;
  color: #8A8170;
  font-weight: 500;
}

.preview-tabs {
  display: flex;
  gap: 6px;
  padding: 8px 18px 6px;
}
.preview-tab {
  font-size: 13px;
  font-weight: 500;
  color: #8A8170;
  padding: 7px 13px;
  border-radius: 9px;
}
.preview-tab--active {
  font-weight: 600;
  color: #1E78B4;
  background: rgba(30, 120, 180, 0.10);
}

.preview-list {
  padding: 8px 18px 4px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.mini-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 14px;
  border: 1px solid rgba(34, 30, 24, 0.07);
  border-radius: 13px;
}
.mini-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  flex-shrink: 0;
  margin-top: 1px;
}
.mini-icon--orange { background: #FCEFDD; }
.mini-icon--green { background: #E7F1EC; }
.mini-icon--blue { background: rgba(30, 120, 180, 0.10); }
.mini-title {
  font-weight: 600;
  font-size: 14px;
  color: #1C1813;
  margin-bottom: 2px;
}
.mini-text {
  font-size: 12.5px;
  color: #79705F;
  line-height: 1.45;
}

.summary-box {
  margin: 11px 18px 20px;
  padding: 14px 15px;
  background: linear-gradient(135deg, #EAF3FA, #F3F8FC);
  border: 1px solid rgba(30, 120, 180, 0.14);
  border-radius: 14px;
}
.summary-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 7px;
}
.summary-head img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}
.summary-label {
  font-size: 12px;
  font-weight: 700;
  color: #176192;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.summary-text {
  font-size: 13px;
  line-height: 1.5;
  color: #3D4B54;
}

/* ---------- Forside: Kerneområder ---------- */

.features {
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px 40px 88px;
}

.section-head { max-width: 560px; margin-bottom: 50px; }
.section-head--center {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 58px;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.feature-card {
  background: #fff;
  border: 1px solid rgba(34, 30, 24, 0.07);
  border-radius: 22px;
  padding: 34px 30px;
  box-shadow: 0 16px 38px -26px rgba(34, 30, 24, 0.28);
  transition: transform .18s, box-shadow .18s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -26px rgba(34, 30, 24, 0.32);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.feature-icon--orange { background: #FCEFDD; }
.feature-icon--green { background: #E7F1EC; }
.feature-icon--blue { background: rgba(30, 120, 180, 0.10); }

.feature-title {
  font-weight: 700;
  font-size: 22px;
  color: #1C1813;
  margin-bottom: 12px;
}
.feature-text {
  font-size: 15.5px;
  line-height: 1.6;
  color: #79705F;
  margin-bottom: 20px;
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: #5A5345;
  font-weight: 500;
}

/* ---------- Før / under / efter (forløb) ---------- */

.flow { padding: 92px 40px; max-width: 1180px; margin: 0 auto; }

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.steps-line {
  position: absolute;
  top: 34px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(34, 30, 24, 0.14) 0 8px, transparent 8px 16px);
  z-index: 0;
}

.step-card {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid rgba(34, 30, 24, 0.07);
  border-radius: 20px;
  padding: 30px 26px;
  box-shadow: 0 14px 34px -22px rgba(34, 30, 24, 0.25);
}
.step-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border: 5px solid #FBF5E6;
}
.step-icon--orange { background: #FCEFDD; }
.step-icon--green { background: #E7F1EC; }
.step-icon--blue { background: rgba(30, 120, 180, 0.10); }

.step-eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: #A39A88;
  margin-bottom: 6px;
}
.step-title {
  font-weight: 700;
  font-size: 21px;
  color: #1C1813;
  margin-bottom: 11px;
}
.step-text {
  font-size: 15.5px;
  line-height: 1.55;
  color: #79705F;
}

/* ---------- Forside: Vettigo-spotlight ---------- */

.integration {
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 40px 128px;
}

.spotlight {
  position: relative;
  background: linear-gradient(160deg, #EAF3FA 0%, #F6ECD6 100%);
  border-radius: 28px;
  padding: 50px 56px;
  text-align: center;
  overflow: hidden;
}
.spotlight-blob--1 {
  position: absolute;
  top: -70px;
  left: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(30, 120, 180, 0.09);
  filter: blur(6px);
}
.spotlight-blob--2 {
  position: absolute;
  bottom: -80px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(206, 134, 69, 0.1);
  filter: blur(6px);
}
.spotlight-inner { position: relative; }

.partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 22px;
}
.partner-badge img {
  height: 28px;
  width: auto;
  object-fit: contain;
  display: block;
  opacity: 0.75;
}
.partner-badge span {
  font-size: 13px;
  font-weight: 600;
  color: #1E78B4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.spotlight-title {
  font-weight: 700;
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #1C1813;
  margin-bottom: 22px;
}
.times {
  color: #A39A88;
  font-weight: 400;
  font-style: italic;
}

.spotlight-lead {
  font-size: 18px;
  line-height: 1.55;
  color: #3D372C;
  max-width: 540px;
  margin: 0 auto 8px;
  font-weight: 500;
}
.spotlight-note {
  font-size: 15px;
  line-height: 1.55;
  color: #7A715F;
  max-width: 460px;
  margin: 0 auto 26px;
  font-style: italic;
}

/* ---------- Forside: For dyreejere ---------- */

.owners {
  max-width: 1180px;
  margin: 0 auto;
  padding: 90px 40px 96px;
}

.owners-card {
  background: linear-gradient(120deg, #EAF3FA 0%, #F2F8FB 100%);
  border: 1px solid rgba(30, 120, 180, 0.14);
  border-radius: 26px;
  padding: 52px 56px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
  overflow: hidden;
}

.owners-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(30, 120, 180, 0.12);
  padding: 6px 13px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.owners-badge span {
  font-size: 13px;
  font-weight: 600;
  color: #176192;
}

.owners-title {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #16242E;
  margin-bottom: 14px;
}
.owners-lead {
  font-size: 17px;
  line-height: 1.6;
  color: #46555F;
  margin-bottom: 14px;
  max-width: 460px;
}
.owners-text {
  font-size: 15px;
  line-height: 1.6;
  color: #5E6C75;
  margin-bottom: 26px;
  max-width: 460px;
}
.owners-note {
  font-size: 13.5px;
  color: #7D8B93;
  margin-top: 16px;
}

.owners-panel {
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(30, 120, 180, 0.10);
  box-shadow: 0 24px 48px -26px rgba(22, 36, 46, 0.4);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.owners-panel-head {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(34, 30, 24, 0.06);
}
.owners-panel-head img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
}
.owners-panel-head span {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #1C1813;
}
.owners-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.owners-item .mini-icon { margin-top: 0; }
.owners-item-title {
  font-size: 14px;
  font-weight: 600;
  color: #1C1813;
  margin-bottom: 2px;
}
.owners-item-text {
  font-size: 12.5px;
  color: #8A8170;
  line-height: 1.45;
}

/* ---------- Forside: Om Milli ---------- */

.about {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px 96px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: center;
}
.about-title {
  font-weight: 700;
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #1C1813;
  margin-bottom: 18px;
}
.about-intro {
  font-size: 18px;
  line-height: 1.5;
  color: #1C1813;
  font-weight: 600;
  margin-bottom: 14px;
}
.about-text {
  font-size: 16.5px;
  line-height: 1.65;
  color: #6E6453;
  max-width: 460px;
  margin-bottom: 28px;
}

.photo-43 {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 38px -26px rgba(34, 30, 24, 0.28);
}
.photo-43 img,
.photo-square img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-square {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 38px -26px rgba(34, 30, 24, 0.28);
}

/* Genskabt beskæring fra designets billed-slot (s=1.015, x=-0.75 %, y=+1.0 %) */
.photo-founder img { object-position: 50% 47%; }

/* ---------- Mørk CTA-sektion ---------- */

.cta-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px 100px;
}

.cta-dark {
  background: #221E18;
  border-radius: 28px;
  padding: 72px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-dark--compact { padding: 64px 56px; }

.cta-blob--1 {
  position: absolute;
  top: -60px;
  right: -40px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(206, 134, 69, 0.16);
}
.cta-blob--2 {
  position: absolute;
  bottom: -70px;
  left: -30px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(30, 120, 180, 0.16);
}
.cta-inner { position: relative; }

.cta-title {
  font-weight: 700;
  font-size: 40px;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #FBF5E8;
  margin-bottom: 16px;
  text-wrap: balance;
}
.cta-title--medium { font-size: 36px; line-height: 1.15; }

.cta-lead {
  font-size: 18.5px;
  line-height: 1.55;
  color: #C7BCA8;
  max-width: 560px;
  margin: 0 auto 44px;
  font-weight: 450;
}
.cta-lead--compact {
  font-size: 17.5px;
  max-width: 480px;
  margin-bottom: 32px;
}

.cta-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 820px;
  margin: 0 auto 44px;
}
.cta-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.cta-step-number {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #FBF5E8;
}
.cta-step-text {
  font-size: 14.5px;
  color: #E4DACB;
  font-weight: 500;
  line-height: 1.4;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.cta-note {
  font-size: 13.5px;
  color: #9C917D;
}

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid rgba(34, 30, 24, 0.08);
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-inner--center { align-items: center; gap: 24px; }

.footer-brand {
  display: flex;
  align-items: center;
  gap: 11px;
}
.footer-brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
}
.footer-brand-name {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #221E18;
  line-height: 1.2;
}
.footer-brand-tagline {
  font-size: 13px;
  color: #8A8170;
  font-weight: 450;
}

.footer-cols {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-head {
  font-size: 12.5px;
  font-weight: 700;
  color: #A39A88;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 14.5px;
  font-weight: 500;
  color: #79705F;
  text-decoration: none;
}
.footer-col a:hover { color: #4A4338; }

.footer-copyright {
  font-size: 13.5px;
  color: #A39A88;
}

/* ---------- Underside: Om Milli ---------- */

.page-hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 88px 40px 96px;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
}
.page-hero-title {
  font-weight: 700;
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #1C1813;
  margin-bottom: 20px;
  text-wrap: balance;
}
.page-hero-lead {
  font-size: 19px;
  line-height: 1.55;
  color: #5A5345;
  max-width: 480px;
  font-weight: 500;
}

.story {
  max-width: 820px;
  margin: 0 auto;
  padding: 92px 40px;
}
.story-title {
  font-weight: 700;
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #1C1813;
  margin-bottom: 22px;
}
.story-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 640px;
}
.story-body p {
  font-size: 17px;
  line-height: 1.7;
  color: #3D372C;
}

.practice {
  max-width: 1180px;
  margin: 0 auto;
  padding: 92px 40px;
}
.practice-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}
.practice-title {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #1C1813;
  margin-bottom: 18px;
}
.practice-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 440px;
}
.practice-body p {
  font-size: 15.5px;
  line-height: 1.7;
  color: #3D372C;
}

/* ---------- Underside: Milli + Vettigo ---------- */

.vettigo-hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 54px 40px 40px;
}
.vettigo-hero-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.vettigo-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 12px;
}
.vettigo-badge img {
  height: 16px;
  width: auto;
  object-fit: contain;
  display: block;
  opacity: 0.75;
}
.vettigo-badge span {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #1C1813;
  letter-spacing: -0.01em;
}
.vettigo-title {
  font-weight: 700;
  font-size: 46px;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #1C1813;
  margin-bottom: 20px;
}
.vettigo-lead {
  font-size: 19px;
  line-height: 1.55;
  color: #5A5345;
  max-width: 520px;
  margin: 0 auto;
  font-weight: 500;
}

.workflow {
  max-width: 1180px;
  margin: 0 auto;
  padding: 92px 40px;
}
.workflow-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 54px;
}
.workflow-title {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #1C1813;
}
.step-title--small { font-size: 20px; }
.step-text--small { font-size: 15px; }

.benefits {
  max-width: 1180px;
  margin: 0 auto;
  padding: 92px 40px;
}
.benefits-head { max-width: 600px; margin-bottom: 50px; }
.benefits-title {
  font-weight: 700;
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #1C1813;
}
.benefit-card {
  background: #fff;
  border: 1px solid rgba(34, 30, 24, 0.07);
  border-radius: 22px;
  padding: 30px 28px;
  box-shadow: 0 16px 38px -26px rgba(34, 30, 24, 0.22);
}
.benefit-label {
  font-size: 13px;
  font-weight: 600;
  color: #A39A88;
  margin-bottom: 10px;
}
.benefit-text {
  font-size: 15.5px;
  line-height: 1.6;
  color: #3D372C;
}

.lesswork {
  max-width: 1180px;
  margin: 0 auto;
  padding: 92px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.lesswork-title {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #1C1813;
  margin-bottom: 18px;
}
.lesswork-text {
  font-size: 17px;
  line-height: 1.65;
  color: #6E6453;
  max-width: 460px;
}
.checkrows {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.checkrow {
  background: #fff;
  border: 1px solid rgba(34, 30, 24, 0.07);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.checkrow span {
  font-size: 15px;
  color: #3D372C;
  font-weight: 500;
}

.partnership {
  max-width: 900px;
  margin: 0 auto;
  padding: 92px 40px;
  text-align: center;
}
.partnership-title {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1C1813;
  margin-bottom: 18px;
}
.partnership-text {
  font-size: 17px;
  line-height: 1.65;
  color: #6E6453;
  max-width: 620px;
  margin: 0 auto;
}

/* ==========================================================================
   Responsivt
   ========================================================================== */

@media (max-width: 900px) {
  .hero { padding: 56px 40px 64px; }
  .hero-grid,
  .page-hero-grid,
  .about-grid,
  .practice-grid,
  .owners-card,
  .lesswork {
    grid-template-columns: 1fr;
  }
  .hero-grid { gap: 48px; }
  .owners-card { padding: 40px 32px; gap: 36px; }

  .cards-3,
  .steps,
  .cta-steps {
    grid-template-columns: 1fr;
  }
  .steps-line { display: none; }

  /* Billedet under teksten på Om Milli-praksis-sektionen */
  .practice-grid .photo-43 { order: 2; }
}

@media (max-width: 880px) {
  .main-nav { display: none; }
  .header-actions .login-link { display: none; }
  .menu-toggle { display: inline-flex; }
}

@media (max-width: 700px) {
  .container,
  .hero, .features, .flow, .integration, .owners, .about, .cta-section,
  .page-hero, .story, .practice,
  .vettigo-hero, .workflow, .benefits, .lesswork, .partnership {
    padding-left: 20px;
    padding-right: 20px;
  }
  .header-inner { padding: 12px 20px; }
  .footer-inner { padding: 32px 20px; }

  .hero { padding-top: 48px; padding-bottom: 56px; }
  .flow, .story, .practice, .workflow, .benefits, .lesswork, .partnership { padding-top: 64px; padding-bottom: 64px; }
  .owners { padding-top: 64px; padding-bottom: 64px; }
  .about { padding-bottom: 64px; }
  .integration { padding-bottom: 84px; }
  .cta-section { padding-bottom: 64px; }

  .hero-title { font-size: 36px; }
  .page-hero-title { font-size: 34px; }
  .vettigo-title { font-size: 32px; }
  .spotlight-title { font-size: 36px; }
  .section-title, .cta-title { font-size: 30px; }
  .workflow-title, .cta-title--medium { font-size: 28px; }
  .about-title, .story-title, .benefits-title { font-size: 27px; }
  .owners-title, .practice-title, .lesswork-title, .partnership-title { font-size: 26px; }

  .hero-lead, .page-hero-lead, .vettigo-lead { font-size: 17.5px; }
  .section-lead { font-size: 16.5px; }

  .spotlight { padding: 36px 24px; }
  .owners-card { padding: 32px 22px; }
  .cta-dark, .cta-dark--compact { padding: 48px 24px; }

  .hero-ctas .btn-primary,
  .hero-ctas .btn-outline,
  .cta-buttons .btn-primary,
  .cta-buttons .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .hero-checks { grid-template-columns: 1fr; }

  .footer-cols { gap: 32px; }
}
