html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #f5f7fa;
  color: #1a2530;
  font-family: 'Public Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: #1f6fd6; text-decoration: none; }
a:hover { color: #12467e; }
select { font-family: 'Public Sans', sans-serif; }
details summary::-webkit-details-marker { display: none; }

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

/* Header */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e4eaf2;
  position: sticky;
  top: 0;
  z-index: 60;
}
.site-header .inner {
  padding-top: 14px;
  padding-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.logo {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #0d3554;
  letter-spacing: -0.02em;
}
.logo:hover { color: #0d3554; }
.logo .accent { color: #1f6fd6; }
.site-nav { display: flex; gap: 6px; flex-wrap: wrap; }
.site-nav a {
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  color: #41546a;
}
.site-nav a:hover { background: #eef4fb; color: #0d3554; }
.site-nav a.active { color: #0d3554; background: #eef4fb; }

/* Hero */
.hero {
  background: linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%);
  border-bottom: 1px solid #e4eaf2;
}
.hero .inner {
  padding-top: 56px;
  padding-bottom: 48px;
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-text { flex: 1 1 420px; min-width: 300px; }
.kicker {
  margin: 0 0 10px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1f6fd6;
}
.hero h1 {
  margin: 0 0 14px;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.08;
  font-weight: 800;
  color: #0d3554;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.hero-lead {
  margin: 0 0 26px;
  font-size: 18px;
  line-height: 1.6;
  color: #41546a;
  max-width: 52ch;
  text-wrap: pretty;
}
.hero-cta-label { margin: 0 0 12px; font-weight: 700; font-size: 16px; color: #0d3554; }
.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary,
.btn-secondary {
  cursor: pointer;
  border: 2px solid #1f6fd6;
  border-radius: 12px;
  padding: 16px 26px;
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 700;
  min-height: 44px;
}
.btn-primary { background: #1f6fd6; color: #fff; }
.btn-primary:hover { background: #12467e; border-color: #12467e; }
.btn-secondary { background: #ffffff; color: #1f6fd6; }
.btn-secondary:hover { background: #eef4fb; }
.hero-media { flex: 1 1 380px; min-width: 280px; }
.hero-media img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 24px 48px -24px rgba(13, 53, 84, 0.35);
  display: block;
}

/* Sticky mode pill */
.sticky-pill-anchor {
  position: sticky;
  top: 70px;
  z-index: 55;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  pointer-events: none;
  height: 0;
}
.sticky-pill {
  pointer-events: auto;
  margin-top: 10px;
  background: #ffffff;
  border: 1px solid #cfdae8;
  border-radius: 999px;
  padding: 6px 8px 6px 18px;
  display: flex;
  gap: 8px;
  align-items: center;
  box-shadow: 0 10px 24px -8px rgba(13, 53, 84, 0.35);
}
.sticky-pill .label { font-size: 13px; font-weight: 700; color: #41546a; }
.sticky-pill .group { display: flex; gap: 2px; }
.pill-btn {
  cursor: pointer;
  border: none;
  border-radius: 999px;
  padding: 8px 16px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  min-height: 46px;
  background: transparent;
  color: #41546a;
}
.pill-btn.active { background: #1f6fd6; color: #fff; }

/* Offer list */
.offers-main { padding-top: 48px; padding-bottom: 20px; }
.offers-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.offers-head h2 {
  margin: 0 0 6px;
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #0d3554;
}
.offers-head p { margin: 0; color: #41546a; font-size: 15px; }
.offers-head .disclosure-link { font-size: 14px; color: #66788c; text-decoration: underline; }

.filter-bar {
  background: #ffffff;
  border: 1px solid #e4eaf2;
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: flex-end;
  margin-bottom: 26px;
}
.filter-field { display: flex; flex-direction: column; gap: 6px; }
.filter-field.push-right { margin-left: auto; }
.filter-field label {
  font-size: 13px;
  font-weight: 700;
  color: #0d3554;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.segmented {
  display: flex;
  border: 1.5px solid #cfdae8;
  border-radius: 10px;
  overflow: hidden;
}
.seg-btn {
  cursor: pointer;
  border: none;
  padding: 10px 18px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 15px;
  min-height: 44px;
  background: #ffffff;
  color: #41546a;
}
.seg-btn.active { background: #1f6fd6; color: #ffffff; }
.filter-field select {
  border: 1.5px solid #cfdae8;
  border-radius: 9px;
  padding: 10px 12px;
  font-size: 15px;
  color: #1a2530;
  background: #fff;
  min-width: 170px;
  min-height: 44px;
}
.btn-reset {
  cursor: pointer;
  border: none;
  background: none;
  color: #1f6fd6;
  font-weight: 600;
  font-size: 15px;
  padding: 10px 4px;
  min-height: 44px;
}
.btn-reset:hover { color: #12467e; }

.offer-list { display: flex; flex-direction: column; gap: 16px; }
.offer-card {
  background: #ffffff;
  border: 1px solid #e4eaf2;
  border-radius: 16px;
  padding: 20px 22px;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  align-items: center;
  box-shadow: 0 6px 18px -14px rgba(13, 53, 84, 0.25);
}
.offer-provider {
  flex: 0 1 190px;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.badge {
  display: inline-block;
  border-radius: 999px;
  padding: 3px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge.koeb { background: #e4f0fd; color: #12467e; }
.badge.leje { background: #fdf1e0; color: #9a6210; }
.provider-id { display: flex; align-items: center; gap: 10px; }
.provider-id img {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  border: 1px solid #e4eaf2;
  background: #fff;
  object-fit: contain;
  padding: 3px;
}
.provider-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #0d3554;
}
.provider-model { font-size: 13px; color: #66788c; }
.offer-specs {
  flex: 2 1 380px;
  min-width: 280px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
}
.spec { border-left: 1px solid #e4eaf2; padding-left: 12px; }
.spec .spec-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #66788c;
  margin-bottom: 3px;
}
.spec .spec-value { font-weight: 700; color: #1a2530; font-size: 15px; }
.spec .spec-note { font-size: 12px; color: #66788c; margin-top: 2px; }
.offer-price {
  flex: 0 1 200px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.price-box { background: #eef4fb; border-radius: 12px; padding: 12px 14px; }
.price-box .price-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #0d3554;
  margin-bottom: 4px;
}
.price-box .price-value {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #0d3554;
  line-height: 1.1;
}
.price-box .price-note { font-size: 13px; color: #41546a; margin-top: 2px; }
.btn-goto {
  display: block;
  text-align: center;
  background: #1f6fd6;
  color: #ffffff;
  border-radius: 10px;
  padding: 12px 16px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 15px;
  min-height: 20px;
}
.btn-goto:hover { background: #12467e; color: #ffffff; }

.empty-state {
  background: #ffffff;
  border: 1px dashed #cfdae8;
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  color: #66788c;
  font-size: 16px;
}
.fine-print {
  margin: 26px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: #8595a8;
  max-width: 90ch;
}

/* Sections */
.section { padding-top: 56px; padding-bottom: 56px; }
.section h2 {
  margin: 0 0 26px;
  font-family: 'Outfit', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: #0d3554;
  text-wrap: balance;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.info-card {
  background: #ffffff;
  border: 1px solid #e4eaf2;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.info-card > img { width: 100%; height: 170px; object-fit: cover; display: block; }
.info-card .body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.info-card h3 {
  margin: 0;
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #0d3554;
}
.info-card p { margin: 0; color: #41546a; font-size: 15px; line-height: 1.6; flex: 1; }
.link-btn {
  cursor: pointer;
  align-self: flex-start;
  border: none;
  background: none;
  color: #1f6fd6;
  font-weight: 700;
  font-size: 15px;
  padding: 6px 0;
  min-height: 44px;
}
.link-btn:hover { color: #12467e; }
a.link-btn { min-height: 0; }

/* FAQ */
.faq-section { background: #ffffff; border-top: 1px solid #e4eaf2; border-bottom: 1px solid #e4eaf2; }
.faq-section .inner { max-width: 900px; margin: 0 auto; padding: 56px 20px; }
.faq-section h2 { margin-bottom: 24px; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-list details {
  border: 1px solid #e4eaf2;
  border-radius: 12px;
  padding: 16px 20px;
  background: #f9fbfd;
}
.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  color: #0d3554;
  list-style: none;
}
.faq-list details p { margin: 12px 0 0; color: #41546a; font-size: 15px; line-height: 1.65; }

/* Guides */
.guides-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.guides-head h2 { margin: 0; }
.guides-head .see-all { font-weight: 700; font-size: 15px; color: #1f6fd6; }
.guides-head .see-all:hover { color: #12467e; }
.guide-card { color: inherit; }
.guide-card:hover { color: inherit; }
.guide-card .placeholder {
  height: 150px;
  background: repeating-linear-gradient(45deg, #eef4fb, #eef4fb 12px, #f9fbfd 12px, #f9fbfd 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8595a8;
  font-family: monospace;
  font-size: 13px;
}
.guide-card .body { padding: 18px 20px 20px; gap: 0; }
.guide-card h3 { margin: 0 0 6px; font-size: 18px; }
.guide-card p { margin: 0; color: #66788c; font-size: 14px; line-height: 1.6; }

/* Page hero (undersider) */
.page-hero { background: #ffffff; border-bottom: 1px solid #e4eaf2; }
.page-hero .inner { padding-top: 48px; padding-bottom: 48px; }
.page-hero h1 {
  margin: 0 0 12px;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  color: #0d3554;
  letter-spacing: -0.02em;
}
.page-hero p.lead {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: #41546a;
  max-width: 66ch;
  text-wrap: pretty;
}

/* Udbydere */
.page-main { padding-top: 48px; padding-bottom: 64px; }
.provider-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}
.provider-card {
  background: #ffffff;
  border: 1px solid #e4eaf2;
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 6px 18px -14px rgba(13, 53, 84, 0.25);
}
.provider-card .head { display: flex; align-items: center; gap: 12px; }
.provider-card .head img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid #e4eaf2;
  background: #fff;
  object-fit: contain;
  padding: 4px;
}
.provider-card h2 {
  margin: 0;
  font-family: 'Outfit', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: #0d3554;
}
.provider-card p { margin: 0; color: #41546a; font-size: 14px; line-height: 1.6; flex: 1; }
.provider-card .actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.btn-visit {
  background: #1f6fd6;
  color: #ffffff;
  border-radius: 9px;
  padding: 10px 16px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
}
.btn-visit:hover { background: #12467e; color: #ffffff; }
.coming-soon { font-size: 13px; color: #8595a8; }

/* Guides page */
.guide-pending {
  background: #ffffff;
  border: 1px dashed #cfdae8;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.guide-pending .placeholder {
  height: 160px;
  background: repeating-linear-gradient(45deg, #eef4fb, #eef4fb 12px, #f9fbfd 12px, #f9fbfd 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8595a8;
  font-family: monospace;
  font-size: 13px;
}
.guide-pending .body { padding: 20px 22px 22px; }
.guide-pending h2 {
  margin: 0 0 6px;
  font-family: 'Outfit', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: #0d3554;
}
.guide-pending p { margin: 0; color: #66788c; font-size: 14px; line-height: 1.6; }
.cta-banner {
  margin-top: 40px;
  background: #eef4fb;
  border-radius: 16px;
  padding: 28px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-banner h2 {
  margin: 0 0 6px;
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #0d3554;
}
.cta-banner p { margin: 0; color: #41546a; font-size: 15px; }
.cta-banner .btn-cta {
  background: #1f6fd6;
  color: #ffffff;
  border-radius: 10px;
  padding: 14px 24px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 16px;
}
.cta-banner .btn-cta:hover { background: #12467e; color: #ffffff; }

/* Footer */
.site-footer { background: #0d3554; color: #c6d5e4; }
.site-footer .inner {
  padding-top: 48px;
  padding-bottom: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.footer-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}
.footer-logo .accent { color: #6fb0f5; }
.footer-heading {
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 15px;
}
.site-footer .contact-list { gap: 6px; }
.site-footer a { color: #c6d5e4; }
.site-footer a:hover { color: #ffffff; }
.site-footer a.mail { color: #6fb0f5; }
.site-footer a.mail:hover { color: #ffffff; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.12); }
.footer-bottom p {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 20px;
  font-size: 13px;
  color: #8ba4bc;
}
