/*
 * Forbrugshjælpen – fælles UI-redesign til alle prisguider
 * Kun præsentation: eksisterende links, tracking, quizzer og indhold ændres ikke.
 */

:root {
  --fh-navy-950: #0e2236;
  --fh-navy-900: #14304a;
  --fh-blue-700: #245b89;
  --fh-blue-600: #3475aa;
  --fh-ink: #17212b;
  --fh-copy: #465768;
  --fh-muted: #687787;
  --fh-line: #d9e3eb;
  --fh-soft: #f3f7fa;
  --fh-soft-blue: #eaf2f7;
  --fh-white: #ffffff;
  --fh-success: #138a5b;
  --fh-radius-sm: 10px;
  --fh-radius-md: 15px;
  --fh-radius-lg: 20px;
  --fh-shadow-sm: 0 5px 18px rgba(18, 48, 74, 0.06);
  --fh-shadow-md: 0 14px 38px rgba(18, 48, 74, 0.10);
}

/* V48: concise price overview and mobile-friendly price cards */
.fh-quick-answer {
    width: calc(100% - 2rem);
    max-width: 1080px;
    margin: 1.1rem auto 1.6rem;
    padding: 1.2rem 1.25rem;
    box-sizing: border-box;
    border: 1px solid #cddde8;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(20, 48, 74, .07);
}
.fh-quick-answer-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}
.fh-quick-answer-label {
    display: block;
    margin-bottom: .25rem;
    color: #2d5a8a;
    font-size: .68rem;
    font-weight: 850;
    letter-spacing: .11em;
    text-transform: uppercase;
}
.fh-quick-answer h2 {
    margin: 0;
    color: #152d4a;
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.2rem, 2.3vw, 1.65rem);
    line-height: 1.2;
    letter-spacing: -.025em;
}
.fh-quick-answer-scroll {
    display: inline-flex;
    min-height: 40px;
    padding: .62rem .85rem;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    flex: 0 0 auto;
    border: 1px solid #b8cfdf;
    border-radius: 9px;
    background: #f1f7fb;
    color: #1e4f76;
    font-family: 'DM Sans', sans-serif;
    font-size: .78rem;
    font-weight: 800;
    cursor: pointer;
}
.fh-quick-answer-scroll:hover,
.fh-quick-answer-scroll:focus-visible {
    border-color: #2d5a8a;
    background: #e6f0f7;
}
.fh-quick-answer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .65rem;
}
.fh-quick-answer-item {
    min-width: 0;
    padding: .78rem .85rem;
    border: 1px solid #e0e8ee;
    border-radius: 11px;
    background: #f8fbfd;
}
.fh-quick-answer-item span {
    display: block;
    margin-bottom: .22rem;
    color: #687b8c;
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .025em;
    text-transform: uppercase;
}
.fh-quick-answer-item strong {
    display: block;
    color: #17324d;
    font-size: .88rem;
    font-weight: 850;
    line-height: 1.32;
}
.fh-mobile-price-toggle {
    display: none;
}
.price-card i[data-lucide="check"]:empty::before {
    content: '\2713';
    display: inline-block;
    color: #16a34a;
    font-style: normal;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
}
.price-card i[data-lucide="x"]:empty::before {
    content: '\00d7';
    display: inline-block;
    color: #ef4444;
    font-style: normal;
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
}
.benefit-icon i[data-lucide]:empty::before {
    content: '\2726';
    display: inline-block;
    color: currentColor;
    font-style: normal;
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
}

@media (max-width: 768px) {
    .fh-quick-answer {
        width: calc(100% - 1.5rem);
        margin: .8rem auto 1.15rem;
        padding: 1rem .85rem;
        border-radius: 13px;
        box-shadow: none;
    }
    .fh-quick-answer-head {
        display: block;
        margin-bottom: .8rem;
    }
    .fh-quick-answer h2 {
        font-size: 1.18rem;
    }
    .fh-quick-answer-scroll {
        width: 100%;
        margin-top: .75rem;
    }
    .fh-quick-answer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: .5rem;
    }
    .fh-quick-answer-item {
        padding: .68rem .65rem;
    }
    .fh-quick-answer-item span {
        font-size: .58rem;
    }
    .fh-quick-answer-item strong {
        font-size: .78rem;
    }
    html body .price-card.fh-mobile-price-enhanced,
    html body .price-card.fh-mobile-price-enhanced.featured {
        padding: 1rem !important;
        border-radius: 13px !important;
        box-shadow: 0 3px 13px rgba(20, 48, 74, .065) !important;
        transform: none !important;
    }
    html body .fh-mobile-price-enhanced .price-badge {
        position: static !important;
        display: inline-flex !important;
        width: auto !important;
        max-width: 100%;
        margin: 0 0 .55rem !important;
        padding: .28rem .55rem !important;
        align-items: center;
        border-radius: 7px !important;
        font-size: .58rem !important;
        line-height: 1.15 !important;
        letter-spacing: .035em !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }
    .fh-mobile-price-enhanced .price-label {
        margin-bottom: .28rem !important;
        font-size: .92rem !important;
        line-height: 1.3 !important;
    }
    .fh-mobile-price-enhanced .price-range {
        margin: .15rem 0 .45rem !important;
        color: #17324d !important;
        font-size: clamp(1.2rem, 6vw, 1.55rem) !important;
        line-height: 1.15 !important;
    }
    .fh-mobile-price-enhanced .price-total {
        margin: 0 !important;
        padding: .58rem .65rem !important;
        border-radius: 9px !important;
        background: #eef5f9 !important;
        font-size: .74rem !important;
        line-height: 1.35 !important;
    }
    .fh-mobile-price-enhanced .fh-mobile-price-detail {
        display: none !important;
    }
    .fh-mobile-price-enhanced.fh-price-open .fh-mobile-price-detail {
        display: block !important;
    }
    .fh-mobile-price-toggle {
        display: flex;
        width: 100%;
        margin: .7rem 0 0;
        padding: .55rem .65rem;
        align-items: center;
        justify-content: space-between;
        gap: .5rem;
        border: 1px solid #cbdbe6;
        border-radius: 9px;
        background: #fff;
        color: #245b89;
        font-family: 'DM Sans', sans-serif;
        font-size: .72rem;
        font-weight: 800;
        cursor: pointer;
    }
    .fh-mobile-price-toggle-symbol {
        font-size: 1rem;
        line-height: 1;
    }
    .fh-mobile-price-enhanced.fh-price-open .price-description {
        margin-top: .8rem !important;
    }
}

/* V52: unmistakable completed/continuing state for the quiz CTA */
html body .solution-guide .sg-cta-main.fh-cta-ready,
html body .solution-guide .sg-cta-main.fh-cta-processing,
html body .solution-guide .sg-cta-main.sg-cta-success {
    position: relative;
    padding-right: 3.1rem !important;
    padding-left: 3.1rem !important;
    border-color: #15803d !important;
    background: linear-gradient(135deg, #15803d 0%, #22a447 100%) !important;
    color: #fff !important;
    box-shadow: 0 8px 22px rgba(21, 128, 61, .27) !important;
    filter: none !important;
    transform: none !important;
}
html body .solution-guide .sg-cta-main.fh-cta-ready::after {
    content: '✓';
    position: absolute;
    right: 1rem;
    top: 50%;
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.72);
    border-radius: 50%;
    color: #fff;
    font-size: .78rem;
    line-height: 1;
    transform: translateY(-50%);
}
html body .solution-guide .sg-cta-main.fh-cta-processing .sg-cta-main-text {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: .55rem;
    white-space: nowrap;
}
html body .solution-guide .sg-cta-main.fh-cta-processing .sg-cta-main-text::after {
    content: '✓';
    display: inline-grid;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.72);
    border-radius: 50%;
    color: #fff;
    font-size: .72rem;
    font-weight: 900;
    line-height: 1;
}
@media (max-width: 420px) {
    html body .solution-guide .sg-cta-main.fh-cta-processing .sg-cta-main-text {
        gap: .42rem;
        font-size: .9rem !important;
    }
    html body .solution-guide .sg-cta-main.fh-cta-processing .sg-cta-main-text::after {
        width: 18px;
        height: 18px;
        flex-basis: 18px;
        font-size: .65rem;
    }
}

/* V51: clearer quiz progress and calmer CTA arrow treatment */
html body .solution-guide-card {
    display: flex;
    flex-direction: column;
}
html body .solution-guide-card > .sg-progress-label {
    order: -2;
    align-self: center;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 26px;
    margin: 0 auto .55rem !important;
    padding: .28rem .7rem;
    border: 1px solid #cfe0ee;
    border-radius: 999px;
    background: #eef5fa;
    color: #244f78 !important;
    font-size: .68rem !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    letter-spacing: .075em !important;
    text-transform: uppercase;
}
html body .solution-guide-card > .sg-progress-bar {
    order: -1;
    width: min(100%, 360px) !important;
    height: 4px !important;
    margin: 0 auto 1.25rem !important;
    border-radius: 999px !important;
    background: #dfe9f1 !important;
    box-shadow: none !important;
}
html body .solution-guide-card > .sg-progress-bar .sg-progress-fill {
    border-radius: 999px !important;
    background: linear-gradient(90deg, #245987 0%, #4d8cbd 100%) !important;
    box-shadow: none !important;
}

/* Decorative arrows are only kept in the hero CTA and mobile sticky CTA. */
html body .cta-button:not(.cta-button-pulse) .cta-arrow,
html body .cta-button:not(.cta-button-pulse) .lucide-arrow-right,
html body .cta-modal-option .arrow {
    display: none !important;
}

/* Thin, consistent arrow in the hero CTA. */
html body .hero .cta-button .cta-arrow,
html body .hero .cta-button .lucide-arrow-right {
    display: inline-block !important;
    width: 17px !important;
    height: 17px !important;
    stroke-width: 1.55 !important;
    transition: transform .2s ease !important;
}
html body .hero .cta-button:hover .cta-arrow,
html body .hero .cta-button:hover .lucide-arrow-right {
    transform: translateX(3px) !important;
}

/* Replace the heavy arrow glyph in the sticky CTA with a slim CSS arrow. */
html body .sticky-mobile-cta .sticky-arrow {
    position: relative;
    display: inline-block !important;
    width: 18px;
    height: 12px;
    margin-left: .05rem;
    overflow: visible;
    color: transparent !important;
    font-size: 0 !important;
    animation: none !important;
    transform: none !important;
}
html body .sticky-mobile-cta .sticky-arrow::before {
    content: '';
    position: absolute;
    left: 1px;
    top: 5px;
    width: 14px;
    height: 1.5px;
    border-radius: 999px;
    background: currentColor;
    background: #fff;
}
html body .sticky-mobile-cta .sticky-arrow::after {
    content: '';
    position: absolute;
    right: 1px;
    top: 2px;
    width: 6px;
    height: 6px;
    border-top: 1.5px solid #fff;
    border-right: 1.5px solid #fff;
    transform: rotate(45deg);
}
html body .sticky-mobile-cta a:hover .sticky-arrow {
    transform: translateX(2px) !important;
}

@media (max-width: 768px) {
    html body .solution-guide-card > .sg-progress-label {
        min-height: 24px;
        margin-bottom: .48rem !important;
        padding: .25rem .62rem;
        font-size: .62rem !important;
    }
    html body .solution-guide-card > .sg-progress-bar {
        width: min(100%, 270px) !important;
        height: 4px !important;
        margin-bottom: 1rem !important;
    }
}

html {
  scroll-padding-top: 110px;
  background: var(--fh-white);
}

html body {
  background: var(--fh-white) !important;
  color: var(--fh-ink) !important;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html body p,
html body li {
  color: var(--fh-copy);
}

/* ---------- Toplinje og navigation ---------- */
html body .trust-bar {
  min-height: 32px !important;
  padding: 0.43rem 1rem !important;
  background: var(--fh-navy-950) !important;
  color: #fff !important;
  font-size: 0.74rem !important;
  letter-spacing: 0 !important;
  box-shadow: none !important;
}

html body .trust-bar-inner {
  max-width: 1180px;
  margin: 0 auto;
  gap: 1.15rem !important;
}

html body .navbar {
  top: 32px !important;
  height: 102px !important;
  padding: 0 !important;
  background: rgba(255, 255, 255, 0.97) !important;
  border-bottom: 1px solid var(--fh-line) !important;
  box-shadow: none !important;
  backdrop-filter: blur(14px);
}

html body .nav-container {
  width: 100%;
  max-width: 1180px !important;
  height: 102px !important;
  padding: 0 1.5rem !important;
}

html body .logo {
  display: grid !important;
  grid-template-columns: auto !important;
  align-content: center;
  gap: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
  text-decoration: none;
}

html body .logo img {
  display: block !important;
  width: auto !important;
  height: 92px !important;
  max-width: min(300px, 48vw) !important;
  object-fit: contain;
}

html body .logo::before {
  display: none !important;
  content: none !important;
}

html body .logo::after {
  display: none !important;
  content: none !important;
}

html body .nav-menu {
  gap: 0.65rem !important;
}

html body .dropdown-toggle {
  min-height: 42px;
  padding: 0.6rem 1rem !important;
  gap: 0.45rem !important;
  border: 1px solid #cdd9e3 !important;
  border-radius: var(--fh-radius-sm) !important;
  background: #fff !important;
  color: var(--fh-navy-900) !important;
  font-size: 0.93rem !important;
  box-shadow: none !important;
  transform: none !important;
}

html body #guides-toggle {
  border-color: var(--fh-navy-900) !important;
  background: var(--fh-navy-900) !important;
  color: #fff !important;
}

html body .dropdown-toggle:hover {
  border-color: var(--fh-blue-700) !important;
  background: var(--fh-soft) !important;
  box-shadow: none !important;
}

html body #guides-toggle:hover {
  background: var(--fh-blue-700) !important;
}

@media (min-width: 769px) {
  /*
   * Sammenhængende hover-zone mellem menuknap og dropdown.
   * De oprindelige sider placerer menuen et stykke under knappen, hvilket
   * ellers kort kan lukke og genåbne menuen, når markøren føres nedad.
   */
  html body .dropdown.mega-dropdown {
    position: relative !important;
  }

  html body .dropdown-menu.mega-menu {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0.34rem !important;
    min-width: 730px !important;
    max-width: min(730px, calc(100vw - 2rem)) !important;
    max-height: calc(100vh - 135px) !important;
    padding: 0.95rem !important;
    overflow-y: auto !important;
    background: rgba(255, 255, 255, 0.995) !important;
    border: 1px solid var(--fh-line) !important;
    border-radius: var(--fh-radius-md) !important;
    box-shadow: 0 22px 55px rgba(14, 34, 54, 0.17) !important;
    top: 100% !important;
    transform: none !important;
    transition: opacity 0.1s ease 0.22s, visibility 0s linear 0.32s !important;
  }

  html body .dropdown.mega-dropdown:hover .dropdown-menu.mega-menu,
  html body .dropdown.mega-dropdown:focus-within .dropdown-menu.mega-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    transition-delay: 0s !important;
  }

  html body .dropdown-menu.mega-menu::before {
    content: "" !important;
    position: absolute !important;
    display: block !important;
    top: -1px !important;
    right: 0 !important;
    left: 0 !important;
    width: auto !important;
    height: 2px !important;
    border: 0 !important;
    background: transparent !important;
    transform: none !important;
    pointer-events: auto !important;
  }

  html body .dropdown.mega-dropdown .dropdown-toggle::after {
    display: none !important;
  }

  html body .dropdown-menu .menu-section-label {
    grid-column: 1 / -1;
    margin: 0 0 0.15rem !important;
    padding: 0.1rem 0.42rem 0.7rem !important;
    border-bottom: 1px solid var(--fh-line);
    color: #748292 !important;
    font-size: 0.67rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase;
  }

  html body .dropdown-menu.mega-menu .dropdown-item {
    position: relative;
    display: flex !important;
    align-items: center !important;
    min-height: 48px;
    margin: 0 !important;
    padding: 0.48rem 0.58rem !important;
    gap: 0.62rem !important;
    overflow: visible !important;
    border: 0 !important;
    border-radius: 9px !important;
    background: transparent !important;
    color: #2a3a49 !important;
    font-size: 0.81rem !important;
    font-weight: 650 !important;
    line-height: 1.25 !important;
    box-shadow: none !important;
    transform: none !important;
  }

  html body .dropdown-menu.mega-menu .dropdown-item::after {
    display: none !important;
  }

  html body .dropdown-menu.mega-menu .dropdown-item:hover {
    padding-left: 0.58rem !important;
    background: var(--fh-soft-blue) !important;
    color: var(--fh-navy-900) !important;
    transform: none !important;
  }

  html body .dropdown-menu.mega-menu .dropdown-item.active {
    background: #dfedf5 !important;
    color: var(--fh-navy-900) !important;
  }

  html body .dropdown-menu.mega-menu .dropdown-item > svg,
  html body .dropdown-menu.mega-menu .dropdown-item > i {
    width: 30px !important;
    height: 30px !important;
    flex: 0 0 30px;
    box-sizing: border-box;
    padding: 7px;
    border-radius: 8px;
    background: var(--fh-soft-blue) !important;
    color: var(--fh-blue-700) !important;
    stroke-width: 2 !important;
    transform: none !important;
    filter: none !important;
  }

  html body .dropdown-menu.mega-menu .dropdown-item.active > svg,
  html body .dropdown-menu.mega-menu .dropdown-item.active > i {
    background: var(--fh-blue-700) !important;
    color: #fff !important;
  }
}

/* ---------- Hero ---------- */
html body .hero {
  width: 100%;
  max-width: 1180px !important;
  min-height: 0 !important;
  height: auto !important;
  margin: 0 auto !important;
  padding: 9.25rem 1.5rem 4.6rem !important;
  display: grid !important;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr) !important;
  align-items: center !important;
  gap: clamp(2.6rem, 6vw, 5.3rem) !important;
  overflow: visible !important;
  background: linear-gradient(120deg, #eaf2f7 0%, #f8fafc 60%, #e6eff5 100%) !important;
  box-shadow: 0 0 0 100vmax #edf4f8;
  clip-path: inset(0 -100vmax);
}

html body .hero-content {
  width: 100%;
  max-width: 530px !important;
}

html body .hero-badge {
  display: inline-flex !important;
  align-items: center;
  margin: 0 0 1.1rem !important;
  padding: 0 0 0 0.72rem !important;
  border: 0 !important;
  border-left: 3px solid var(--fh-blue-700) !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--fh-blue-700) !important;
  font-size: 0.76rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.075em !important;
  line-height: 1.35 !important;
  text-transform: uppercase;
  box-shadow: none !important;
}

html body .hero-title {
  margin: 0 0 1rem !important;
  color: var(--fh-ink) !important;
  font-family: "Sora", sans-serif !important;
  font-size: clamp(2.45rem, 4.05vw, 3.55rem) !important;
  font-weight: 800 !important;
  line-height: 1.08 !important;
  letter-spacing: -0.052em !important;
  text-align: left !important;
}

html body .hero-title span,
html body .hero-title .highlight {
  color: var(--fh-blue-700) !important;
  text-shadow: none !important;
}

html body .hero-byline {
  margin: 0 0 0.85rem !important;
  color: #647486 !important;
  font-size: 0.8rem !important;
  line-height: 1.55 !important;
}

html body .hero-byline a {
  color: var(--fh-navy-900) !important;
  text-underline-offset: 3px;
}

html body .hero-subtitle {
  max-width: 500px !important;
  margin: 0 0 1.45rem !important;
  color: var(--fh-copy) !important;
  font-size: 1.04rem !important;
  line-height: 1.65 !important;
  text-align: left !important;
}

html body .hero-image {
  position: relative;
  overflow: hidden !important;
  border: 1px solid #d4e0e8;
  border-radius: var(--fh-radius-lg) !important;
  background: #dfe9ef;
  box-shadow: var(--fh-shadow-md) !important;
}

html body .hero-image::before,
html body .hero-image::after {
  display: none !important;
}

html body .hero-image img {
  display: block;
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  aspect-ratio: 16 / 10;
  object-fit: cover !important;
  object-position: center !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transform: none !important;
}

html body .hero .cta-button,
html body .hero .cta-button.cta-button-pulse {
  min-width: 315px;
  max-width: 100%;
  margin: 0 !important;
  padding: 0.94rem 1.4rem !important;
  border: 0 !important;
  border-radius: 11px !important;
  background: var(--fh-blue-700) !important;
  color: #fff !important;
  box-shadow: 0 8px 22px rgba(36, 91, 137, 0.22) !important;
  text-shadow: none !important;
  transform: none !important;
}

html body .hero .cta-button:hover,
html body .hero .cta-button.cta-button-pulse:hover {
  background: var(--fh-navy-900) !important;
  box-shadow: 0 11px 26px rgba(20, 48, 74, 0.24) !important;
  transform: translateY(-2px) !important;
}

html body .hero .cta-trust-badges {
  justify-content: center !important;
  width: 100% !important;
  text-align: center !important;
  flex-wrap: nowrap !important;
  gap: 0.3rem 0.6rem !important;
}

html body .hero .cta-trust-badges span {
  padding: 0.2rem 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: #455666 !important;
}

html body .hero-powered {
  color: #687787 !important;
  font-size: 0.73rem !important;
}

html body .scroll-arrows {
  display: none !important;
}

/* Den lodrette desktop-CTA gjorde siden mere reklamepræget end hjælpsom. */
html body .floating-cta {
  display: none !important;
}

/* ---------- Sektioner og visuel rytme ---------- */
html body .page-bg {
  overflow: hidden;
  background: var(--fh-white) !important;
}

html body .page-bg > section,
html body .page-bg > div > section {
  border-radius: 0 !important;
}

html body #saadan-virker-det,
html body #badevaerelse,
html body #hvordan-det-fungerer,
html body .technical-section,
html body .benefits-section {
  background: var(--fh-soft) !important;
  box-shadow: 0 0 0 100vmax var(--fh-soft);
  clip-path: inset(0 -100vmax);
}

html body .price-section:nth-of-type(even) {
  background: var(--fh-soft) !important;
  box-shadow: 0 0 0 100vmax var(--fh-soft);
  clip-path: inset(0 -100vmax);
}

html body .section-header {
  max-width: 820px;
  margin-left: auto !important;
  margin-right: auto !important;
}

html body .section-label,
html body .solution-guide-header .section-label {
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--fh-blue-700) !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase;
  box-shadow: none !important;
}

html body .section-title,
html body .solution-guide-header h2,
html body .technical-title {
  color: var(--fh-ink) !important;
  font-family: "Sora", sans-serif !important;
  letter-spacing: -0.038em !important;
  line-height: 1.17 !important;
}

html body .section-subtitle,
html body .technical-text,
html body .price-description {
  color: var(--fh-copy) !important;
}

/* ---------- Quiz ---------- */
html body .solution-guide {
  width: 100%;
  max-width: 770px !important;
  padding: 3.1rem 1.5rem 3.8rem !important;
}

html body .solution-guide-card {
  padding: 2rem !important;
  border: 1px solid var(--fh-line) !important;
  border-radius: var(--fh-radius-md) !important;
  background: var(--fh-white) !important;
  box-shadow: var(--fh-shadow-md) !important;
}

html body .sg-progress-bar {
  background: #e4ebf0 !important;
}

html body .sg-progress-fill {
  background: var(--fh-blue-700) !important;
}

html body .sg-option {
  min-height: 54px;
  border: 1px solid #cbd8e2 !important;
  border-radius: var(--fh-radius-sm) !important;
  background: #fff !important;
  color: var(--fh-ink) !important;
  box-shadow: none !important;
  transform: none !important;
}

html body .sg-option:hover,
html body .sg-option.selected {
  border-color: var(--fh-blue-700) !important;
  background: #eef5f9 !important;
  box-shadow: none !important;
  transform: none !important;
}

html body .sg-cta-main {
  border-radius: var(--fh-radius-sm) !important;
  background: var(--fh-blue-700) !important;
  box-shadow: 0 8px 22px rgba(36, 91, 137, 0.22) !important;
}

/* ---------- Kort, tabeller og tekstbokse ---------- */
html body .price-card,
html body .benefit-item,
html body .testimonial-card,
html body .technical-card,
html body .faq-item,
html body details.mobil-accordion,
html body .how-it-works-grid > div,
html body .process-grid > div {
  border: 1px solid var(--fh-line) !important;
  border-radius: var(--fh-radius-md) !important;
  background: var(--fh-white) !important;
  box-shadow: var(--fh-shadow-sm) !important;
  transform: none;
}

html body .price-card:hover,
html body .benefit-item:hover,
html body .testimonial-card:hover {
  transform: translateY(-2px) !important;
  box-shadow: var(--fh-shadow-md) !important;
}

html body .price-card.featured {
  border: 1px solid #b7ccdc !important;
  border-top: 3px solid var(--fh-blue-700) !important;
  background: #f4f9fc !important;
  box-shadow: var(--fh-shadow-md) !important;
}

html body .price-amount,
html body .price-value,
html body .price-card h3 {
  color: var(--fh-navy-900) !important;
}

html body table {
  overflow: hidden;
  border: 1px solid var(--fh-line) !important;
  border-radius: var(--fh-radius-sm);
  background: #fff;
}

html body th {
  background: var(--fh-navy-900) !important;
  color: #fff !important;
}

html body tr:nth-child(even) td {
  background: #f7fafc;
}

html body .faq-question {
  color: var(--fh-ink) !important;
}

html body .faq-question:focus-visible,
html body .sg-option:focus-visible,
html body a:focus-visible,
html body button:focus-visible {
  outline: 3px solid rgba(52, 117, 170, 0.38) !important;
  outline-offset: 3px !important;
}

/* ---------- CTA og footer ---------- */
html body .cta-button:not(.hero .cta-button) {
  border-radius: var(--fh-radius-sm) !important;
  background: var(--fh-blue-700) !important;
  box-shadow: 0 8px 22px rgba(36, 91, 137, 0.20) !important;
  text-shadow: none !important;
}

html body .cta-button:not(.hero .cta-button):hover {
  background: var(--fh-navy-900) !important;
  transform: translateY(-2px) !important;
}

html body .cta-section {
  background: linear-gradient(135deg, var(--fh-navy-950), #1b4668) !important;
}

html body .footer {
  background: #0b1d2d !important;
}

/* ---------- Mobil ---------- */
@media (max-width: 768px) {
  html {
    scroll-padding-top: 86px;
  }

  html body {
    overflow-x: hidden !important;
  }

  html body .trust-bar {
    min-height: 27px !important;
    padding: 0.35rem 0.5rem !important;
    font-size: 0.64rem !important;
  }

  html body .trust-bar-inner {
    gap: 0 !important;
  }

  html body .trust-bar-item:not(:first-child) {
    display: none !important;
  }

  html body .trust-bar-stars {
    letter-spacing: 0 !important;
  }

  html body .navbar {
    top: 27px !important;
    height: 70px !important;
    padding: 0 !important;
  }

  html body .nav-container {
    height: 70px !important;
    padding: 0 1rem !important;
  }

  html body .logo img {
    width: auto !important;
    height: 62px !important;
    max-width: min(205px, 60vw) !important;
  }

  html body .hamburger {
    display: flex !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 9px !important;
  }

  html body .nav-menu {
    top: 105px !important;
    left: 0.65rem !important;
    right: 0.65rem !important;
    border: 1px solid var(--fh-line) !important;
    border-radius: 17px !important;
    background: #f7f9fb !important;
    box-shadow: 0 22px 55px rgba(14, 34, 54, 0.22) !important;
  }

  html body .nav-menu-header {
    min-height: 62px !important;
    background: #fff !important;
    border-bottom-color: var(--fh-line) !important;
  }

  html body .dropdown-item {
    min-height: 47px !important;
    border-color: var(--fh-line) !important;
    border-radius: 10px !important;
    box-shadow: none !important;
  }

  html body .hero {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    min-height: 0 !important;
    height: auto !important;
    margin: 0 !important;
    padding: 6.85rem 1rem 2.45rem !important;
    gap: 1.15rem !important;
    background: linear-gradient(180deg, #eaf2f7 0%, #f8fafc 100%) !important;
  }

  html body .hero-content {
    order: 2 !important;
    display: flex !important;
    flex-direction: column !important;
    max-width: none !important;
  }

  html body .hero-image {
    order: 1 !important;
    width: 100% !important;
    margin: 0 !important;
    border-radius: 13px !important;
  }

  html body .hero-image img {
    width: 100% !important;
    max-height: none !important;
    aspect-ratio: 16 / 9 !important;
    object-fit: cover !important;
    border-radius: 0 !important;
  }

  html body .hero-badge {
    order: 1 !important;
    margin: 0 0 0.68rem !important;
    font-size: 0.66rem !important;
  }

  html body .hero-title {
    order: 2 !important;
    margin: 0 0 0.72rem !important;
    font-size: clamp(1.9rem, 8.5vw, 2.45rem) !important;
    line-height: 1.09 !important;
    letter-spacing: -0.047em !important;
  }

  html body .hero-byline {
    order: 3 !important;
    margin: 0 0 0.65rem !important;
    font-size: 0.73rem !important;
  }

  html body .hero-subtitle {
    order: 4 !important;
    display: block !important;
    margin: 0 0 1rem !important;
    font-size: 0.92rem !important;
    line-height: 1.55 !important;
  }

  html body .hero .cta-group {
    order: 5 !important;
    display: flex !important;
    width: 100% !important;
    align-items: stretch !important;
  }

  html body .hero .cta-button,
  html body .hero .cta-button.cta-button-pulse {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0.86rem 1rem !important;
    border-radius: var(--fh-radius-sm) !important;
  }

  html body .hero .cta-trust-badges {
    justify-content: center !important;
    width: 100% !important;
    text-align: center !important;
    flex-wrap: nowrap !important;
    margin: 0.45rem 0 0 !important;
    overflow: visible !important;
    white-space: normal !important;
  }

  html body .hero-powered {
    display: none !important;
  }

  html body .solution-guide {
    padding: 2.2rem 0.8rem 2.8rem !important;
  }

  html body .solution-guide-header {
    margin-bottom: 1rem !important;
  }

  html body .solution-guide-header h2 {
    font-size: 1.45rem !important;
  }

  html body .solution-guide-card {
    padding: 1.05rem !important;
    border-radius: 13px !important;
  }

  html body .sg-option {
    min-height: 49px !important;
    padding: 0.72rem !important;
    border-radius: 9px !important;
  }

  html body .price-section,
  html body .guide-section,
  html body .technical-section,
  html body .benefits-section,
  html body .cta-section,
  html body #saadan-virker-det,
  html body #hvordan-det-fungerer,
  html body #guide-teaser {
    padding: 2.5rem 1rem !important;
  }

  html body .section-header {
    margin-bottom: 1.35rem !important;
  }

  html body .section-title,
  html body .technical-title {
    font-size: clamp(1.45rem, 6.4vw, 1.8rem) !important;
    line-height: 1.18 !important;
  }

  html body .price-grid,
  html body .benefits-list,
  html body .how-it-works-grid {
    gap: 0.85rem !important;
  }

  html body .price-card,
  html body .price-card.featured {
    padding: 1.2rem !important;
    padding-top: 3.5rem !important;
    border-radius: 13px !important;
  }

  html body .how-it-works-grid > div,
  html body .benefit-item {
    padding: 1rem !important;
    border-radius: 12px !important;
  }

  html body .faq-section {
    padding: 2.5rem 1rem !important;
  }

  html body .faq-question {
    min-height: 54px;
    padding: 0.95rem !important;
    font-size: 0.9rem !important;
  }

  html body .sticky-mobile-cta {
    width: calc(100% - 1.1rem) !important;
    bottom: calc(0.45rem + env(safe-area-inset-bottom, 0px)) !important;
    padding: 0 !important;
  }

  html body .sticky-mobile-cta a {
    min-height: 52px;
    padding: 0.72rem 1rem !important;
    border: 0 !important;
    border-radius: var(--fh-radius-sm) !important;
    background: var(--fh-blue-700) !important;
    box-shadow: 0 9px 26px rgba(14, 34, 54, 0.26) !important;
    text-shadow: none !important;
  }

  html body .fab-nav {
    bottom: 4.4rem !important;
  }

  html body .footer {
    padding-bottom: 6rem !important;
  }
}

@media (max-width: 390px) {
  html body .hero {
    padding-left: 0.85rem !important;
    padding-right: 0.85rem !important;
  }

  html body .hero-title {
    font-size: 1.82rem !important;
  }

  html body .hero .cta-button-sub {
    font-size: 0.72rem !important;
  }

  html body .cta-trust-badges {
    font-size: 0.65rem !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html body *,
  html body *::before,
  html body *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Pilotbilleder: tydelig luft mellem indholdsbilleder og prisafsnit */
html body .tag-img-wrap.pilot-visual {
  margin-top: 2.25rem !important;
  margin-bottom: 3rem !important;
}

@media (max-width: 768px) {
  html body .tag-img-wrap.pilot-visual {
    margin-top: 1.25rem !important;
    margin-bottom: 2rem !important;
  }
}

/* Samme header som forsiden */
@media (min-width: 769px) {
  html body .navbar {
    top: 32px !important;
    height: 80px !important;
  }

  html body .nav-container {
    height: 80px !important;
  }

  html body .logo img {
    height: 92px !important;
    max-width: min(300px, 48vw) !important;
  }
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 94px;
  }

  html body .navbar {
    top: 27px !important;
    height: 78px !important;
  }

  html body .nav-container {
    height: 78px !important;
  }

  html body .logo img {
    width: min(250px, calc(100vw - 96px)) !important;
    height: auto !important;
    max-width: none !important;
  }

  html body .nav-menu {
    top: 113px !important;
  }

  html body[data-project]:not([data-project$="-guide"]) .sticky-mobile-cta a {
    background: linear-gradient(135deg, #1e3a5f, #2d5a8a) !important;
    border: 0 !important;
    border-bottom: 3px solid #152d4a !important;
    box-shadow: 0 4px 14px rgba(30, 58, 95, 0.35) !important;
  }
}

/* Samme CTA-farve som forsiden – kun de 16 prisguides */
html body[data-project]:not([data-project$="-guide"]) .cta-button,
html body[data-project]:not([data-project$="-guide"]) .bekraeft-cta,
html body[data-project]:not([data-project$="-guide"]) .sg-cta-main:not(.sg-cta-success) {
  background: linear-gradient(135deg, #1e3a5f, #2d5a8a) !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.24) !important;
  box-shadow: 0 7px 20px rgba(30, 58, 95, 0.28) !important;
}

html body[data-project]:not([data-project$="-guide"]) .cta-button:hover,
html body[data-project]:not([data-project$="-guide"]) .bekraeft-cta:hover,
html body[data-project]:not([data-project$="-guide"]) .sg-cta-main:not(.sg-cta-success):hover {
  background: linear-gradient(135deg, #1e3a5f, #2d5a8a) !important;
  color: #ffffff !important;
  filter: brightness(1.07);
}

/* V31 – let og mere visuel mobilmenu på hele hjemmesiden */
@media (max-width: 768px) {
  html body .nav-menu {
    overflow: hidden !important;
    border: 1px solid rgba(30, 58, 95, 0.18) !important;
    border-radius: 20px !important;
    background: #edf4f8 !important;
    box-shadow: 0 24px 58px rgba(14, 34, 54, 0.28) !important;
  }

  html body .nav-menu.open {
    max-height: min(620px, calc(100dvh - 126px)) !important;
  }

  html body .nav-menu-header {
    min-height: 66px !important;
    padding: 0.72rem 0.8rem 0.72rem 1rem !important;
    border: 0 !important;
    background: linear-gradient(135deg, #152d4a, #234f79) !important;
  }

  html body .nav-menu-title {
    color: #ffffff !important;
    font-size: 1.02rem !important;
    font-weight: 800 !important;
    letter-spacing: -0.01em !important;
  }

  html body .nav-menu-title::after {
    display: block !important;
    content: "Vælg emne og se priser" !important;
    grid-column: 2 !important;
    margin-top: 0.08rem !important;
    color: rgba(255, 255, 255, 0.72) !important;
    font-size: 0.69rem !important;
    font-weight: 550 !important;
    letter-spacing: 0 !important;
  }

  html body .nav-menu-title i,
  html body .nav-menu-title svg {
    grid-row: 1 / 3 !important;
    width: 36px !important;
    height: 36px !important;
    padding: 8px !important;
    box-sizing: border-box !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.11) !important;
    color: #ffffff !important;
  }

  html body .nav-menu-close,
  html body .nav-menu-close:hover,
  html body .nav-menu-close:active {
    width: 38px !important;
    height: 38px !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.11) !important;
    color: #ffffff !important;
    box-shadow: none !important;
  }

  html body .dropdown-menu,
  html body .dropdown-menu.mega-menu {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.55rem !important;
    padding: 0.7rem !important;
    background: linear-gradient(180deg, #edf4f8 0%, #f7fafc 100%) !important;
  }

  html body .dropdown-menu .menu-section-label {
    display: none !important;
  }

  html body .dropdown-menu .dropdown-item,
  html body .dropdown-menu.mega-menu .dropdown-item {
    display: grid !important;
    grid-template-columns: 34px minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 0.55rem !important;
    min-height: 62px !important;
    margin: 0 !important;
    padding: 0.55rem 0.6rem !important;
    overflow: hidden !important;
    border: 1px solid #d9e5ed !important;
    border-radius: 13px !important;
    background: rgba(255, 255, 255, 0.96) !important;
    color: #24384b !important;
    font-size: 0.79rem !important;
    font-weight: 720 !important;
    line-height: 1.2 !important;
    box-shadow: 0 3px 10px rgba(20, 48, 74, 0.06) !important;
    transform: none !important;
    animation: none !important;
    transition: background 0.14s ease, border-color 0.14s ease, color 0.14s ease !important;
  }

  html body .dropdown-menu .dropdown-item::after,
  html body .dropdown-menu.mega-menu .dropdown-item::after {
    display: none !important;
    content: none !important;
  }

  html body .dropdown-menu .dropdown-item i,
  html body .dropdown-menu .dropdown-item > svg,
  html body .dropdown-menu.mega-menu .dropdown-item i,
  html body .dropdown-menu.mega-menu .dropdown-item > svg {
    width: 34px !important;
    height: 34px !important;
    padding: 8px !important;
    box-sizing: border-box !important;
    border: 0 !important;
    border-radius: 10px !important;
    background: #e4eef6 !important;
    color: #245b89 !important;
    stroke-width: 2 !important;
  }

  html body .dropdown-menu .dropdown-item:hover,
  html body .dropdown-menu .dropdown-item:active,
  html body .dropdown-menu.mega-menu .dropdown-item:hover,
  html body .dropdown-menu.mega-menu .dropdown-item:active {
    padding: 0.55rem 0.6rem !important;
    border-color: #a9c5d9 !important;
    background: #ffffff !important;
    color: #14304a !important;
    box-shadow: 0 4px 12px rgba(20, 48, 74, 0.09) !important;
    transform: none !important;
  }

  html body .dropdown-menu .dropdown-item.active,
  html body .dropdown-menu.mega-menu .dropdown-item.active {
    border-color: #2d5a8a !important;
    background: linear-gradient(135deg, #1e3a5f, #2d5a8a) !important;
    color: #ffffff !important;
    box-shadow: 0 6px 15px rgba(30, 58, 95, 0.2) !important;
  }

  html body .dropdown-menu .dropdown-item.active i,
  html body .dropdown-menu .dropdown-item.active > svg,
  html body .dropdown-menu.mega-menu .dropdown-item.active i,
  html body .dropdown-menu.mega-menu .dropdown-item.active > svg {
    background: rgba(255, 255, 255, 0.14) !important;
    color: #ffffff !important;
  }
}

@media (max-width: 360px) {
  html body .dropdown-menu,
  html body .dropdown-menu.mega-menu {
    grid-template-columns: 1fr !important;
  }
}

/* V32 – emner skal altid være synlige, og lukknappen får sikker højremargin */
@media (max-width: 768px) {
  html body .nav-menu-header {
    width: 100% !important;
    box-sizing: border-box !important;
  }

  html body .nav-menu-title {
    min-width: 0 !important;
  }

  html body .nav-menu-close,
  html body .nav-menu-close:hover,
  html body .nav-menu-close:active {
    flex: 0 0 38px !important;
    margin-right: 0.3rem !important;
    transform: translateX(-2px) !important;
  }

  html body .dropdown-menu,
  html body .dropdown-menu.mega-menu {
    opacity: 1 !important;
    visibility: visible !important;
  }

  html body .dropdown-menu .dropdown-item,
  html body .dropdown-menu.mega-menu .dropdown-item,
  html body .nav-menu.open .dropdown-item {
    opacity: 1 !important;
    visibility: visible !important;
  }
}

/* V33 – skarpere og mere eksklusiv desktopmenu uden overlap mellem fanerne */
@media (min-width: 769px) {
  html body .dropdown-menu.mega-menu {
    padding: 0.75rem !important;
    gap: 0.42rem !important;
    overflow: hidden auto !important;
    border: 1px solid #cfdee9 !important;
    border-radius: 0 0 18px 18px !important;
    background: linear-gradient(180deg, #f7fafc 0%, #ffffff 100%) !important;
    box-shadow: 0 24px 60px rgba(14, 34, 54, 0.2), 0 4px 14px rgba(14, 34, 54, 0.08) !important;
    pointer-events: none !important;
    transition: opacity 0.07s ease 0.04s, visibility 0s linear 0.11s !important;
  }

  html body .dropdown.mega-dropdown:hover .dropdown-menu.mega-menu,
  html body .dropdown.mega-dropdown:focus-within .dropdown-menu.mega-menu {
    pointer-events: auto !important;
    transition: opacity 0.07s ease, visibility 0s linear 0s !important;
  }

  html body .dropdown-menu .menu-section-label {
    grid-column: 1 / -1 !important;
    margin: 0 0 0.25rem !important;
    padding: 0.68rem 0.82rem !important;
    border: 0 !important;
    border-radius: 11px !important;
    background: linear-gradient(135deg, #152d4a, #234f79) !important;
    color: #ffffff !important;
    font-size: 0.68rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.11em !important;
    box-shadow: 0 5px 14px rgba(21, 45, 74, 0.14) !important;
  }

  html body .dropdown-menu.mega-menu .dropdown-item {
    min-height: 52px !important;
    padding: 0.48rem 0.55rem !important;
    gap: 0.6rem !important;
    border: 1px solid transparent !important;
    border-radius: 11px !important;
    background: transparent !important;
    color: #263a4c !important;
    font-size: 0.82rem !important;
    font-weight: 680 !important;
    transition: background 0.1s ease, border-color 0.1s ease, color 0.1s ease !important;
  }

  html body .dropdown-menu.mega-menu .dropdown-item:hover {
    padding: 0.48rem 0.55rem !important;
    border-color: #d7e5ef !important;
    background: #eaf2f7 !important;
    color: #14304a !important;
  }

  html body .dropdown-menu.mega-menu .dropdown-item.active {
    border-color: #2d5a8a !important;
    background: linear-gradient(135deg, #1e3a5f, #2d5a8a) !important;
    color: #ffffff !important;
    box-shadow: 0 5px 13px rgba(30, 58, 95, 0.17) !important;
  }

  html body .dropdown-menu.mega-menu .dropdown-item > svg,
  html body .dropdown-menu.mega-menu .dropdown-item > i {
    width: 32px !important;
    height: 32px !important;
    flex: 0 0 32px !important;
    padding: 7px !important;
    border: 1px solid #d7e5ef !important;
    border-radius: 9px !important;
    background: #e8f1f7 !important;
    color: #245b89 !important;
  }

  html body .dropdown-menu.mega-menu .dropdown-item:hover > svg,
  html body .dropdown-menu.mega-menu .dropdown-item:hover > i {
    border-color: #bfd5e5 !important;
    background: #ffffff !important;
  }

  html body .dropdown-menu.mega-menu .dropdown-item.active > svg,
  html body .dropdown-menu.mega-menu .dropdown-item.active > i {
    border-color: rgba(255, 255, 255, 0.2) !important;
    background: rgba(255, 255, 255, 0.13) !important;
    color: #ffffff !important;
  }
}

/* V34 – mobilmenuen flugter direkte med headerens underkant */
@media (max-width: 768px) {
  html body .nav-menu {
    top: calc(27px + 78px) !important;
    border-top: 0 !important;
    border-radius: 0 0 20px 20px !important;
  }
}

/* V35 – forankr menuen til den faktiske headerhøjde i stedet for faste pixels */
@media (max-width: 768px) {
  html body .navbar {
    overflow: visible !important;
  }

  html body .nav-container {
    position: relative !important;
  }

  html body .nav-menu {
    position: absolute !important;
    top: 100% !important;
    margin-top: 0 !important;
    border-top: 0 !important;
    border-radius: 0 0 20px 20px !important;
  }
}

/* V36 – prøve: kompakt sektionsnavigation på badeværelsessiden */
html body[data-project="badevaerelse"] .section-jump {
  display: none;
}

@media (max-width: 768px) {
  html body[data-project="badevaerelse"] .fab-nav {
    display: none !important;
  }

  html body[data-project="badevaerelse"] .section-jump {
    position: sticky;
    top: 105px;
    z-index: 880;
    display: block;
    width: 100%;
    padding: 0.48rem 0.75rem;
    box-sizing: border-box;
    border-top: 1px solid #d7e5ef;
    border-bottom: 1px solid #d7e5ef;
    background: rgba(247, 250, 252, 0.98);
    box-shadow: 0 7px 18px rgba(14, 34, 54, 0.08);
  }

  html body[data-project="badevaerelse"] .section-jump-toggle {
    display: grid;
    width: 100%;
    min-height: 50px;
    padding: 0.48rem 0.65rem;
    grid-template-columns: 36px minmax(0, 1fr) 28px;
    align-items: center;
    gap: 0.65rem;
    border: 1px solid #cbdde9;
    border-radius: 13px;
    background: #ffffff;
    color: #14304a;
    font-family: inherit;
    text-align: left;
    box-shadow: 0 3px 10px rgba(20, 48, 74, 0.06);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  html body[data-project="badevaerelse"] .section-jump-icon {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, #1e3a5f, #2d5a8a);
    color: #ffffff;
  }

  html body[data-project="badevaerelse"] .section-jump-icon svg {
    width: 19px;
    height: 19px;
  }

  html body[data-project="badevaerelse"] .section-jump-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 0.06rem;
  }

  html body[data-project="badevaerelse"] .section-jump-copy > span {
    color: #657789;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
  }

  html body[data-project="badevaerelse"] .section-jump-copy strong {
    overflow: hidden;
    color: #14304a;
    font-size: 0.9rem;
    font-weight: 780;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  html body[data-project="badevaerelse"] .section-jump-chevron {
    width: 20px;
    height: 20px;
    justify-self: center;
    color: #43627c;
    transition: transform 0.16s ease;
  }

  html body[data-project="badevaerelse"] .section-jump-toggle.open .section-jump-chevron {
    transform: rotate(180deg);
  }

  html body[data-project="badevaerelse"] .section-jump-panel {
    position: absolute;
    top: calc(100% - 0.12rem);
    right: 0.75rem;
    left: 0.75rem;
    display: grid;
    padding: 0.65rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.48rem;
    border: 1px solid #cddde8;
    border-radius: 0 0 16px 16px;
    background: #f4f8fb;
    box-shadow: 0 18px 38px rgba(14, 34, 54, 0.18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-5px);
    transition: opacity 0.14s ease, transform 0.14s ease, visibility 0s linear 0.14s;
  }

  html body[data-project="badevaerelse"] .section-jump-panel.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }

  html body[data-project="badevaerelse"] .section-jump-panel a {
    display: grid;
    min-height: 48px;
    padding: 0.5rem 0.55rem;
    grid-template-columns: 27px minmax(0, 1fr);
    align-items: center;
    gap: 0.48rem;
    border: 1px solid #dbe6ee;
    border-radius: 10px;
    background: #ffffff;
    color: #294157;
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
  }

  html body[data-project="badevaerelse"] .section-jump-panel a > span {
    display: inline-flex;
    width: 27px;
    height: 27px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #e7f0f6;
    color: #2d5a8a;
    font-size: 0.63rem;
    font-weight: 850;
  }

  html body[data-project="badevaerelse"] .section-jump-panel a.active {
    border-color: #2d5a8a;
    background: linear-gradient(135deg, #1e3a5f, #2d5a8a);
    color: #ffffff;
  }

  html body[data-project="badevaerelse"] .section-jump-panel a.active > span {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
  }

  html body[data-project="badevaerelse"] section[id] {
    scroll-margin-top: 174px !important;
  }
}

@media (max-width: 350px) {
  html body[data-project="badevaerelse"] .section-jump-panel {
    grid-template-columns: 1fr;
  }
}

/* V37 – lav og stabil sektionsnavigation på alle 16 prisguider */
html body[data-project]:not([data-project$="-guide"]) .section-jump-slot,
html body[data-project]:not([data-project$="-guide"]) .section-jump {
  display: none;
}

@media (max-width: 768px) {
  html body[data-project]:not([data-project$="-guide"]) .fab-nav {
    display: none !important;
  }

  html body[data-project]:not([data-project$="-guide"]) .section-jump-slot {
    position: relative;
    z-index: 880;
    display: block;
    width: 100%;
    min-height: 50px;
  }

  html body[data-project]:not([data-project$="-guide"]) .section-jump {
    position: relative !important;
    top: auto;
    z-index: 880;
    display: block;
    width: 100%;
    margin: 0 !important;
    padding: 0.25rem 0.75rem;
    box-sizing: border-box;
    border: 0;
    border-bottom: 1px solid #d7e5ef;
    background: #f7fafc;
    box-shadow: 0 5px 13px rgba(14, 34, 54, 0.06);
  }

  html body[data-project]:not([data-project$="-guide"]) .section-jump.is-fixed {
    position: fixed !important;
    right: 0;
    left: 0;
    width: 100%;
  }

  html body[data-project]:not([data-project$="-guide"]) .section-jump-toggle {
    display: grid;
    width: 100%;
    min-height: 42px;
    padding: 0.25rem 0.5rem;
    grid-template-columns: 28px minmax(0, 1fr) 22px;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #cbdde9;
    border-radius: 10px;
    background: #ffffff;
    color: #14304a;
    font-family: inherit;
    text-align: left;
    box-shadow: 0 2px 7px rgba(20, 48, 74, 0.05);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  html body[data-project]:not([data-project$="-guide"]) .section-jump-icon {
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: linear-gradient(135deg, #1e3a5f, #2d5a8a);
    color: #ffffff;
  }

  html body[data-project]:not([data-project$="-guide"]) .section-jump-icon svg {
    width: 15px;
    height: 15px;
  }

  html body[data-project]:not([data-project$="-guide"]) .section-jump-copy {
    display: flex;
    min-width: 0;
    align-items: baseline;
    gap: 0.45rem;
  }

  html body[data-project]:not([data-project$="-guide"]) .section-jump-copy > span {
    flex: 0 0 auto;
    color: #657789;
    font-size: 0.59rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    line-height: 1.2;
    text-transform: uppercase;
  }

  html body[data-project]:not([data-project$="-guide"]) .section-jump-copy strong {
    min-width: 0;
    overflow: hidden;
    color: #14304a;
    font-size: 0.82rem;
    font-weight: 780;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  html body[data-project]:not([data-project$="-guide"]) .section-jump-chevron {
    width: 18px;
    height: 18px;
    justify-self: center;
    color: #43627c;
    transition: transform 0.14s ease;
  }

  html body[data-project]:not([data-project$="-guide"]) .section-jump-toggle.open .section-jump-chevron {
    transform: rotate(180deg);
  }

  html body[data-project]:not([data-project$="-guide"]) .section-jump-panel {
    position: absolute;
    top: 100%;
    right: 0.75rem;
    left: 0.75rem;
    display: grid;
    padding: 0.58rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.42rem;
    border: 1px solid #cddde8;
    border-radius: 0 0 14px 14px;
    background: #f4f8fb;
    box-shadow: 0 16px 34px rgba(14, 34, 54, 0.17);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-4px);
    transition: opacity 0.12s ease, transform 0.12s ease, visibility 0s linear 0.12s;
  }

  html body[data-project]:not([data-project$="-guide"]) .section-jump-panel.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }

  html body[data-project]:not([data-project$="-guide"]) .section-jump-panel a {
    display: grid;
    min-height: 44px;
    padding: 0.45rem 0.5rem;
    grid-template-columns: 25px minmax(0, 1fr);
    align-items: center;
    gap: 0.42rem;
    border: 1px solid #dbe6ee;
    border-radius: 9px;
    background: #ffffff;
    color: #294157;
    font-size: 0.73rem;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
  }

  html body[data-project]:not([data-project$="-guide"]) .section-jump-panel a > span {
    display: inline-flex;
    width: 25px;
    height: 25px;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: #e7f0f6;
    color: #2d5a8a;
    font-size: 0.59rem;
    font-weight: 850;
  }

  html body[data-project]:not([data-project$="-guide"]) .section-jump-panel a.active {
    border-color: #2d5a8a;
    background: linear-gradient(135deg, #1e3a5f, #2d5a8a);
    color: #ffffff;
  }

  html body[data-project]:not([data-project$="-guide"]) .section-jump-panel a.active > span {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
  }

  html body[data-project]:not([data-project$="-guide"]) section[id] {
    scroll-margin-top: 164px !important;
  }
}

@media (max-width: 350px) {
  html body[data-project]:not([data-project$="-guide"]) .section-jump-panel {
    grid-template-columns: 1fr;
  }
}

/* V38: automatic CTA description helper */
.cta-auto-description-note {
    display: flex;
    align-items: center;
    gap: .45rem;
    margin: .65rem auto 0;
    padding: .55rem .7rem;
    max-width: 34rem;
    border: 1px solid rgba(147,197,253,.72);
    border-radius: 10px;
    background: #eff6ff;
    color: #334155;
    font-size: .76rem;
    font-weight: 650;
    line-height: 1.35;
    text-align: left;
}
.cta-auto-description-note svg {
    width: 15px;
    height: 15px;
    flex: 0 0 15px;
    color: #2563eb;
}
.cta-modal-valg > .cta-auto-description-note,
.sticky-valg-modal-options > .cta-auto-description-note,
.kloak-modal-grid > .cta-auto-description-note,
.projekt-modal-grid > .cta-auto-description-note,
.tilbygning-valg-modal-options > .cta-auto-description-note {
    margin: .7rem 0 0;
    max-width: none;
}
@media (max-width: 600px) {
    .cta-auto-description-note {
        margin-top: .5rem;
        padding: .48rem .6rem;
        font-size: .7rem;
    }
}

/* V46 – conversion polish: færre konkurrerende signaler og mere tillid */
html body .hero .cta-group > .hero-powered,
html body .cta-section .cta-micro {
    display: none !important;
}

html body .cta-group > .cta-auto-description-note {
    margin-top: .5rem !important;
    padding: .42rem .65rem !important;
    border: 1px solid #c8dceb !important;
    border-radius: 999px !important;
    background: #f1f7fb !important;
    color: #314b61 !important;
    font-size: .72rem !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
}

html body .fh-credibility-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: calc(100% - 2rem);
    max-width: 1080px;
    margin: 1.15rem auto 0;
    padding: .85rem;
    gap: .65rem;
    box-sizing: border-box;
    border: 1px solid #d7e3ec;
    border-radius: 14px;
    background: #f8fbfd;
    box-shadow: 0 8px 24px rgba(20, 48, 74, .055);
}

html body .fh-credibility-mobile-summary {
    display: none;
}

html body .fh-credibility-item {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: center;
    gap: .65rem;
    min-width: 0;
    padding: .35rem .45rem;
}

html body .fh-credibility-item + .fh-credibility-item {
    border-left: 1px solid #dce6ed;
    padding-left: 1rem;
}

html body .fh-credibility-icon {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #e5f0f7;
    color: #245b89;
}

html body .fh-credibility-icon svg {
    width: 18px;
    height: 18px;
}

html body .fh-credibility-item strong,
html body .fh-credibility-item small {
    display: block;
}

html body .fh-credibility-item strong {
    margin-bottom: .12rem;
    color: #17324d;
    font-size: .78rem;
    font-weight: 800;
    line-height: 1.25;
}

html body .fh-credibility-item small {
    color: #607487;
    font-size: .68rem;
    font-weight: 550;
    line-height: 1.35;
}

html body .fh-review-source {
    margin: -.45rem 0 .9rem;
    color: #64748b;
    font-size: .72rem;
    font-weight: 600;
    line-height: 1.4;
}

html body .fh-review-source-fallback {
    margin: 0 0 .9rem;
}

@media (max-width: 768px) {
    html body .cta-group > .cta-auto-description-note {
        width: auto !important;
        max-width: 100% !important;
        margin: .45rem auto 0 !important;
        padding: .35rem .55rem !important;
        font-size: clamp(.6rem, 2.75vw, .68rem) !important;
        white-space: nowrap !important;
    }

    html body .fh-credibility-strip {
        display: block;
        width: calc(100% - 1.5rem);
        margin-top: .5rem;
        padding: .4rem .55rem;
        border-radius: 10px;
        box-shadow: none;
    }

    html body .fh-credibility-mobile-summary {
        display: block !important;
        margin: 0;
        color: #36546f;
        font-size: .61rem !important;
        font-weight: 700 !important;
        line-height: 1.3 !important;
        text-align: center;
        white-space: normal !important;
        word-break: normal !important;
    }

    html body .fh-credibility-mobile-summary > span {
        color: #138a5b;
        margin-right: .18rem;
        font-size: .68rem !important;
        font-weight: 900 !important;
    }

    html body .fh-credibility-mobile-summary > b {
        color: #93a4b3;
        padding: 0 .12rem;
        font-size: inherit !important;
        font-weight: 800 !important;
    }

    html body .fh-credibility-item {
        display: none !important;
        grid-template-columns: 30px minmax(0, 1fr);
        gap: .6rem;
        padding: .6rem .25rem;
    }

    html body .fh-credibility-item + .fh-credibility-item {
        padding-left: .25rem;
        border-top: 1px solid #e2eaf0;
        border-left: 0;
    }

    html body .fh-credibility-icon {
        width: 30px;
        height: 30px;
        border-radius: 9px;
    }

    html body .fh-credibility-item strong {
        font-size: .75rem;
    }

    html body .fh-credibility-item small {
        font-size: .66rem;
    }

    html body .testimonials-side {
        padding: 0 !important;
        border: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    html body .testimonials-side .testimonial-card {
        border-radius: 12px !important;
        box-shadow: 0 3px 12px rgba(20, 48, 74, .07) !important;
    }

    html body .benefits-section .benefit-item {
        border-radius: 10px !important;
        box-shadow: none !important;
    }

    html body .mid-cta {
        box-shadow: none !important;
    }
}

/* V41: keep the helper line below the CTA without adding visual weight */
.cta-group > .cta-auto-description-note {
    position: static !important;
    order: 99 !important;
    width: 100%;
    max-width: 30rem;
    box-sizing: border-box;
    justify-content: center;
    border: 0;
    background: transparent;
    color: var(--text-muted, #64748b);
    padding: .18rem 0 0;
    font-size: .72rem;
    font-weight: 600;
}
.cta-group > .cta-auto-description-note svg {
    width: 14px;
    height: 14px;
    flex-basis: 14px;
    color: #2d5a8a;
}
@media (max-width: 600px) {
    .cta-group > .cta-auto-description-note {
        margin: .45rem 0 0;
        padding: .12rem 0 0;
        font-size: .68rem;
        line-height: 1.3;
        white-space: normal;
    }
}

/* V44: unified choice-modal styling for price guides */
#cta-modal-overlay,
.kloak-modal-overlay,
.tilbygning-valg-modal-overlay,
.sticky-valg-modal-overlay {
    background: rgba(15, 39, 68, .72) !important;
    backdrop-filter: blur(10px) saturate(115%);
    -webkit-backdrop-filter: blur(10px) saturate(115%);
}
#cta-modal-boks,
.kloak-modal,
.tilbygning-valg-modal,
.sticky-valg-modal {
    border: 1px solid rgba(148, 163, 184, .28) !important;
    border-radius: 24px !important;
    background: #f8fbff !important;
    box-shadow: 0 28px 70px rgba(15, 39, 68, .28), 0 0 0 1px rgba(255,255,255,.5) inset !important;
}
#cta-modal-header,
.cta-modal-header {
    background: linear-gradient(135deg, #102b49 0%, #1e3a5f 58%, #2d5a8a 100%) !important;
}
#cta-modal-header::before,
.cta-modal-header::before {
    background: rgba(147, 197, 253, .17) !important;
}
#cta-modal-luk,
.cta-modal-luk,
.kloak-modal-close-x,
.tilbygning-valg-modal-close-x,
.sticky-valg-modal-close-x {
    border: 1px solid rgba(255,255,255,.24) !important;
    background: rgba(255,255,255,.12) !important;
}
#cta-modal-valg,
.cta-modal-valg {
    background: #f8fbff !important;
}
.cta-modal-option {
    border: 1px solid #d7e3ee !important;
    background: #fff !important;
    color: #1e3a5f !important;
    box-shadow: 0 5px 16px rgba(30,58,95,.06) !important;
}
.cta-modal-option:hover {
    border-color: #2d5a8a !important;
    background: #f0f7ff !important;
    box-shadow: 0 12px 26px rgba(30,58,95,.13) !important;
}
.cta-modal-option .icon {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8a 100%) !important;
    box-shadow: 0 6px 14px rgba(30,58,95,.2) !important;
}
.cta-modal-option .text strong,
.kloak-modal-item-title,
.tilbygning-valg-modal-btn .option-title,
.sticky-valg-modal-btn .option-title {
    color: #183654 !important;
}
.cta-modal-option .text span,
.kloak-modal-item-desc,
.tilbygning-valg-modal-subtitle,
.sticky-valg-modal-subtitle {
    color: #60758c !important;
}
.kloak-modal::after,
.tilbygning-valg-modal::after,
.sticky-valg-modal::after {
    background: linear-gradient(90deg, #1e3a5f, #5b8def, #2d5a8a) !important;
}
.kloak-modal-item,
.tilbygning-valg-modal-btn {
    border-color: #d7e3ee !important;
    background: #fff !important;
    color: #183654 !important;
    box-shadow: 0 5px 16px rgba(30,58,95,.06) !important;
}
.kloak-modal-item:hover,
.tilbygning-valg-modal-btn:hover {
    border-color: #2d5a8a !important;
    background: #f0f7ff !important;
    box-shadow: 0 12px 26px rgba(30,58,95,.13) !important;
}
.kloak-modal-item-icon,
.tilbygning-valg-modal-btn .option-icon {
    display: inline-flex !important;
    width: 42px !important;
    height: 42px !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 12px !important;
    background: #e7f0f6 !important;
    color: #2d5a8a !important;
    font-size: 1.2rem !important;
    flex-shrink: 0 !important;
}
.sticky-valg-modal-btn,
.tilbygning-valg-modal-btn.tilbygning,
.tilbygning-valg-modal-btn.totalentreprise {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8a 100%) !important;
    border: 1px solid rgba(255,255,255,.16) !important;
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(30,58,95,.2) !important;
}
.sticky-valg-modal-btn:hover,
.tilbygning-valg-modal-btn.tilbygning:hover,
.tilbygning-valg-modal-btn.totalentreprise:hover {
    background: linear-gradient(135deg, #183654 0%, #244a73 100%) !important;
}
.sticky-valg-modal-btn .option-title,
.sticky-valg-modal-btn .option-desc,
.tilbygning-valg-modal-btn .option-title,
.tilbygning-valg-modal-btn .option-desc {
    color: #fff !important;
}
.sticky-valg-modal-btn .option-icon,
.tilbygning-valg-modal-btn .option-icon {
    background: rgba(255,255,255,.15) !important;
    color: #fff !important;
    box-shadow: none !important;
}
@media (max-width: 768px) {
    #cta-modal-boks,
    .kloak-modal,
    .tilbygning-valg-modal,
    .sticky-valg-modal {
        border-radius: 20px !important;
        max-width: calc(100vw - 1.25rem) !important;
    }
    #cta-modal-header,
    .cta-modal-header {
        padding: 1.25rem 1.1rem 1.1rem !important;
    }
    #cta-modal-valg,
    .cta-modal-valg,
    .sticky-valg-modal-options,
    .tilbygning-valg-modal-options {
        gap: .62rem !important;
    }
    .cta-modal-option,
    .kloak-modal-item,
    .sticky-valg-modal-btn,
    .tilbygning-valg-modal-btn {
        border-radius: 14px !important;
    }
}

/* V55: calmer first view and safer quiz flow */
html body .hero-byline {
    display: none !important;
}
html body .hero-title {
    margin-bottom: .72rem !important;
}
html body .hero-subtitle {
    margin-bottom: 1.1rem !important;
    line-height: 1.5 !important;
}
html body .fh-quick-answer,
html body .tag-quick-answer {
    margin-bottom: .7rem !important;
}
html body .fh-credibility-strip {
    margin-top: 0 !important;
    margin-bottom: 1.55rem !important;
}
html body .solution-guide .sg-cta-main.fh-cta-locked {
    pointer-events: none !important;
    cursor: wait !important;
    opacity: .97;
}

@media (max-width: 768px) {
    html body .hero-title {
        margin-bottom: .58rem !important;
    }
    html body .hero-subtitle {
        margin-bottom: .82rem !important;
        line-height: 1.45 !important;
    }
    html body .fh-quick-answer,
    html body .tag-quick-answer {
        margin-top: .68rem !important;
        margin-bottom: .55rem !important;
    }
    html body .fh-credibility-strip {
        margin-top: 0 !important;
        margin-bottom: 1.05rem !important;
    }
    html body .sticky-mobile-cta.fh-hidden-during-quiz {
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transform: translateY(calc(100% + 1.25rem)) !important;
    }
}

/* V56: keep ordinary price-guide CTA labels on one calm, readable line. */
@media (max-width: 768px) {
    html body[data-project]:not([data-project$="-guide"])
    .cta-button:not(.hero .cta-button):not(.sticky-mobile-cta a) {
        box-sizing: border-box !important;
        width: min(100%, 22rem) !important;
        max-width: 22rem !important;
        padding-left: .72rem !important;
        padding-right: .72rem !important;
    }

    html body[data-project]:not([data-project$="-guide"])
    .cta-button:not(.hero .cta-button):not(.sticky-mobile-cta a) > span:first-child {
        max-width: 100% !important;
        font-size: clamp(.78rem, 3.7vw, .98rem) !important;
        line-height: 1.2 !important;
        white-space: nowrap !important;
    }
}
