:root {
  --blue: #3292CF;
  --blue-dark: #1D6FA5;
  --blue-tint: #EAF3FB;
  --ink: #111827;
  --text-soft: #5B6472;
  --text-mute: #8A93A3;
  --bg: #FFFFFF;
  --bg-soft: #F6F8FA;
  --border: #E7EAF0;
  --radius-sm: 12px;
  --radius: 16px;
  --radius-lg: 20px;
  --shadow: 0 1px 2px rgba(17,24,39,0.04), 0 12px 28px -16px rgba(17,24,39,0.14);
  --shadow-hover: 0 4px 10px rgba(17,24,39,0.05), 0 20px 40px -18px rgba(50,146,207,0.28);
  --font: "Plus Jakarta Sans", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* Billeder kan ikke trækkes ved et uheld; almindelig tekst kan stadig markeres og kopieres. */
img, svg {
  -webkit-user-drag: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .hero-photo-badge { animation: none !important; }
}


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

.wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-family: var(--font); font-weight: 800; line-height: 1.15; margin: 0 0 0.5em; letter-spacing: -0.02em; color: var(--ink); }
h1 { font-size: clamp(2.2rem, 4.6vw, 3.3rem); line-height: 1.1; }
h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
h3 { font-size: 1.08rem; font-weight: 700; }

p { margin: 0 0 1em; color: var(--text-soft); }

.eyebrow { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: var(--blue); margin: 0 0 0.7em; }
.section-sub { font-size: 1.05rem; max-width: 56ch; color: var(--text-soft); }
.section-head { margin-bottom: 2.4rem; }
.section-divider { border: none; border-top: 1px solid var(--border); margin: 0; }
#top, .hero, .section { scroll-margin-top: 92px; }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 0.85em 1.6em; border-radius: 12px; font-family: var(--font); font-weight: 700; font-size: 0.96rem; border: 1.5px solid transparent; cursor: pointer; transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease; }
.btn:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }
.btn-primary { background: linear-gradient(135deg, #4AA3DE 0%, var(--blue) 55%, var(--blue-dark) 100%); color: #fff; box-shadow: 0 10px 24px -10px rgba(50,146,207,0.6); }
.btn-primary:hover { background: linear-gradient(135deg, #5AB4EC 0%, var(--blue) 45%, var(--blue-dark) 100%); transform: translateY(-2px); box-shadow: 0 16px 32px -10px rgba(50,146,207,0.68); }
.btn { transition: transform 0.25s cubic-bezier(0.22,1,0.36,1), box-shadow 0.25s cubic-bezier(0.22,1,0.36,1), background 0.25s ease, border-color 0.2s ease, color 0.2s ease; }
.btn-outline { border-color: var(--border); color: var(--ink); background: #fff; }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-sm { padding: 0.6em 1.1em; font-size: 0.86rem; border-radius: 10px; }

/* ---------- nav ---------- */
.site-nav { position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,0.92); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.nav-inner { display: flex; align-items: center; gap: 2rem; height: 72px; }
.nav-logo { display: flex; align-items: center; gap: 9px; margin-right: auto; }
.nav-logo img { width: 28px; height: 28px; }
.nav-logo span { font-weight: 800; font-size: 1.08rem; color: var(--ink); }
.main-nav { display: flex; gap: 1.7rem; }
.main-nav a { position: relative; font-size: 0.92rem; font-weight: 600; color: var(--text-soft); transition: color 0.15s ease; padding-bottom: 4px; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px; background: var(--blue); transition: right 0.25s cubic-bezier(0.22,1,0.36,1); }
.main-nav a:hover::after, .main-nav a.is-active::after { right: 0; }
.main-nav a:hover, .main-nav a.is-active { color: var(--ink); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 40px; height: 40px; background: none; border: none; cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.2s ease, opacity 0.2s ease; }
.site-nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; flex-direction: column; padding: 0.4rem 24px 1.3rem; border-top: 1px solid var(--border); }
.mobile-menu a { padding: 0.7em 0; font-weight: 600; color: var(--text-soft); border-bottom: 1px solid var(--border); }
.mobile-menu .btn { margin-top: 0.9em; align-self: flex-start; }
.site-nav.open .mobile-menu { display: flex; }
@media (max-width: 900px) {
  .main-nav, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
}

/* ---------- hero ---------- */
.hero { position: relative; padding: 4.5rem 0 5.5rem; background: var(--bg-soft); overflow: hidden; }
.hero-glow-a, .hero-glow-b { position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; z-index: 0; }
.hero-glow-a { width: 480px; height: 480px; background: radial-gradient(circle, rgba(50,146,207,0.16) 0%, transparent 70%); top: -180px; right: -120px; }
.hero-glow-b { width: 360px; height: 360px; background: radial-gradient(circle, rgba(50,146,207,0.10) 0%, transparent 70%); bottom: -160px; left: -100px; }
.hero-inner { position: relative; z-index: 1; }
.hero-inner { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 3rem; align-items: center; }
.hero-checks { list-style: none; margin: 1.3rem 0 1.5rem; padding: 0; display: flex; flex-wrap: wrap; gap: 0.7rem 1.4rem; }
.hero-checks li { display: flex; align-items: center; gap: 0.5em; font-weight: 600; font-size: 0.92rem; color: var(--ink); }
.hero-checks .tick { width: 18px; height: 18px; border-radius: 50%; background: var(--blue-tint); color: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; flex-shrink: 0; }
.hero p.lead { font-size: 1.08rem; }
.hero-bullets { list-style: none; margin: 0 0 2rem; padding: 0; display: grid; gap: 0.6rem; }
.hero-bullets li { display: flex; align-items: flex-start; gap: 0.6em; font-size: 0.95rem; color: var(--text-soft); }
.hero-bullets .tick { width: 18px; height: 18px; border-radius: 50%; background: var(--blue-tint); color: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; flex-shrink: 0; margin-top: 2px; }
.hero-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-bottom: 1.2rem; }
.hero-note { font-size: 0.88rem; color: var(--text-mute); }
.hero-note strong { color: var(--ink); }

.hero-photo { position: relative; }
.hero-photo-card { border-radius: 22px; overflow: hidden; box-shadow: 0 30px 60px -24px rgba(17,24,39,0.22), 0 0 0 1px rgba(17,24,39,0.03); aspect-ratio: 4/5; background: var(--bg-soft); }
.hero-photo-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-photo-badge { position: absolute; bottom: -18px; left: -18px; background: #fff; border: 1px solid rgba(47,190,122,0.18); border-radius: var(--radius); box-shadow: var(--shadow); padding: 0.9rem 1.2rem; display: flex; align-items: center; gap: 0.7rem; }
.hero-photo-badge .dot { width: 12px; height: 12px; border-radius: 50%; background: #16A34A; box-shadow: 0 0 0 0 rgba(22,163,74,0.55); flex-shrink: 0; position: relative; animation: green-dot-blink 2.2s ease-in-out infinite !important; }
.hero-photo-badge .dot::after { content: ""; position: absolute; inset: -7px; border-radius: 50%; border: 2px solid rgba(22,163,74,0.42); animation: green-dot-ring 2.2s ease-out infinite !important; }
@keyframes green-dot-blink { 0%, 100% { opacity: 1; transform: scale(1); background: #16A34A; box-shadow: 0 0 0 0 rgba(22,163,74,0.55); } 50% { opacity: 0.35; transform: scale(0.78); background: #86EFAC; box-shadow: 0 0 0 7px rgba(22,163,74,0.16); } }
@keyframes green-dot-ring { 0% { opacity: 0.7; transform: scale(0.72); } 100% { opacity: 0; transform: scale(1.75); } }
@media (prefers-reduced-motion: reduce) {
  .hero-photo-badge,
  .hero-photo-badge .dot,
  .hero-photo-badge .dot::after { animation: none !important; }
}
.hero-photo-badge strong { display: block; font-size: 0.88rem; }
.hero-photo-badge span { display: block; font-size: 0.78rem; color: var(--text-mute); }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-photo { order: -1; max-width: 300px; margin: 0 auto 1rem; }
  .hero-photo-badge { left: 12px; bottom: -16px; }
}

/* ---------- generic card grid ---------- */
.section { padding: 5.5rem 0; }
.section, .hero, #top { scroll-margin-top: 96px; }
.section.alt { background: var(--bg-soft); }
.card-grid { display: grid; gap: 1.3rem; }
.g-4 { grid-template-columns: repeat(4, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 980px) { .g-4 { grid-template-columns: repeat(2, 1fr); } .g-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .g-4, .g-3 { grid-template-columns: 1fr; } }

.card { position: relative; background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 1.7rem; overflow: hidden; transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s cubic-bezier(0.22,1,0.36,1), border-color 0.3s ease; }
.card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--blue), #5DB6EC); transform: scaleX(0); transform-origin: left; transition: transform 0.35s cubic-bezier(0.22,1,0.36,1); }
.card:hover::before { transform: scaleX(1); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: transparent; }
.card-icon { width: 42px; height: 42px; border-radius: 12px; background: linear-gradient(135deg, #DCEEFB, var(--blue-tint)); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.card-icon svg { width: 21px; height: 21px; fill: none; stroke: var(--blue); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { margin-bottom: 0.35em; }
.card p { font-size: 0.93rem; margin: 0; }
.card .card-tag { font-size: 0.86rem; color: var(--text-soft); margin-bottom: 0.5em; }
.section-foot { text-align: center; margin-top: 2rem; font-size: 0.88rem; color: var(--text-mute); }

/* ---------- why me ---------- */
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.why-list { list-style: none; margin: 1.4rem 0 0; padding: 0; display: grid; gap: 0.8rem; }
.why-list li { display: flex; align-items: flex-start; gap: 0.6em; font-weight: 600; font-size: 0.96rem; }
.why-list .tick { width: 20px; height: 20px; border-radius: 50%; background: var(--blue-tint); color: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 0.72rem; flex-shrink: 0; margin-top: 1px; }
.why-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.8rem; }
.why-card h3 { margin-bottom: 0.4em; }
.why-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.9rem; margin-top: 1.6rem; }
.why-stat { background: var(--bg-soft); border-radius: var(--radius-sm); padding: 1rem; text-align: center; }
.why-stat strong { display: block; font-size: 0.95rem; color: var(--ink); }
.why-stat span { display: block; font-size: 0.8rem; color: var(--text-mute); margin-top: 0.15em; }

@media (max-width: 900px) { .why-inner { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .why-stats { grid-template-columns: 1fr; } }

/* ---------- pricing ---------- */
.price-card .price-value { font-size: 1.5rem; font-weight: 800; color: var(--ink); }
.price-card .price-unit { font-size: 0.85rem; font-weight: 500; color: var(--text-mute); margin-left: 0.2em; }

/* ---------- process ---------- */
.process-step .step-num { width: 32px; height: 32px; border-radius: 9px; background: var(--blue); color: #fff; font-weight: 800; font-size: 0.92rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }

/* ---------- trust / anmeldelser ---------- */
.trust-head { text-align: center; max-width: 620px; margin: 0 auto 2.6rem; }
.trust-head .section-sub { margin: 0 auto; }
.trustpilot-badge { display: flex; align-items: center; gap: 1.1rem; max-width: 560px; margin: 2.4rem auto 0; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.2rem 1.4rem; box-shadow: var(--shadow); transition: transform 0.25s cubic-bezier(0.22,1,0.36,1), box-shadow 0.25s ease, border-color 0.25s ease; }
.trustpilot-badge:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); border-color: transparent; }
.trustpilot-badge .tp-mark { width: 44px; height: 44px; border-radius: 12px; background: #00b67a; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trustpilot-badge .tp-mark svg { width: 24px; height: 24px; fill: #fff; }
.trustpilot-badge .tp-copy { display: flex; flex-direction: column; gap: 0.15rem; margin-right: auto; }
.trustpilot-badge .tp-copy strong { font-size: 0.98rem; color: var(--ink); }
.trustpilot-badge .tp-copy span { font-size: 0.85rem; color: var(--text-mute); }
.trustpilot-badge .tp-cta { font-size: 0.86rem; font-weight: 700; color: var(--blue); white-space: nowrap; }
@media (max-width: 560px) { .trustpilot-badge { flex-wrap: wrap; text-align: center; justify-content: center; } .trustpilot-badge .tp-copy { margin-right: 0; align-items: center; } }

/* ---------- faq ---------- */
.faq-list { max-width: 740px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.3rem 0; background: none; border: none; cursor: pointer; text-align: left; font-family: var(--font); font-weight: 700; font-size: 1rem; color: var(--ink); transition: color 0.18s ease; }
.faq-question:hover { color: var(--blue); }
.faq-question:focus-visible { outline: 2px solid var(--blue); outline-offset: 4px; }
.faq-icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: var(--blue); top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq-icon::before { width: 13px; height: 2px; }
.faq-icon::after { width: 2px; height: 13px; transition: transform 0.25s ease; }
.faq-question[aria-expanded="true"] .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer p { padding: 0 0 1.3rem; margin: 0; font-size: 0.95rem; max-width: 60ch; }

/* ---------- contact ---------- */
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-facts { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: 1rem; }
.contact-facts li { display: flex; align-items: center; gap: 0.8em; }
.contact-facts .ic { width: 36px; height: 36px; border-radius: 10px; background: var(--blue-tint); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-facts .ic svg { width: 17px; height: 17px; fill: none; stroke: var(--blue); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact-facts strong { display: block; font-size: 0.78rem; color: var(--text-mute); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.contact-facts a, .contact-facts span.val { font-weight: 700; }

.contact-cta-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow); }
.contact-cta-card h3 { font-size: 1.2rem; margin-bottom: 0.4em; }
.contact-cta-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-top: 1.3rem; }

/* ---------- booking modal ---------- */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(10,14,22,0.55); backdrop-filter: blur(3px); z-index: 100; align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.is-open { display: flex; }
.modal-card { background: #fff; border-radius: 22px; max-width: 480px; width: 100%; max-height: 90vh; overflow-y: auto; padding: 2rem; position: relative; box-shadow: 0 40px 80px -20px rgba(10,14,22,0.4); animation: modal-in 0.25s cubic-bezier(0.22,1,0.36,1); }
@keyframes modal-in { from { opacity: 0; transform: translateY(14px) scale(0.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
.modal-close { position: absolute; top: 1.3rem; right: 1.3rem; width: 34px; height: 34px; border-radius: 50%; border: none; background: var(--bg-soft); display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--text-soft); font-size: 1.1rem; transition: background 0.15s ease, color 0.15s ease; }
.modal-close:hover { background: var(--blue-tint); color: var(--blue); }
.modal-card h3.modal-title { font-size: 1.3rem; margin-bottom: 0.3em; padding-right: 2rem; }
#modalFormWrap > p.modal-sub { font-size: 0.84rem; line-height: 1.35; white-space: nowrap; margin-bottom: 1.3rem; }

.modal-progress { height: 3px; background: var(--border); border-radius: 3px; margin-bottom: 1.1rem; overflow: hidden; }
.modal-progress-fill { height: 100%; width: 33.33%; background: linear-gradient(90deg, var(--blue), #5DB6EC); transition: width 0.35s cubic-bezier(0.22,1,0.36,1); }
.modal-steps { display: flex; gap: 0.5rem; margin-bottom: 1.6rem; }
.modal-step-pill { font-size: 0.78rem; font-weight: 700; padding: 0.4em 0.85em; border-radius: 999px; background: var(--bg-soft); color: var(--text-mute); transition: background 0.2s ease, color 0.2s ease; }
.modal-step-pill.is-active { background: var(--blue-tint); color: var(--blue-dark); }
.modal-step-pill.is-done { background: var(--blue); color: #fff; }

.modal-panel { display: none; flex-direction: column; gap: 1rem; }
.modal-panel.is-active { display: flex; }
.modal-panel label { display: flex; flex-direction: column; gap: 0.4em; font-size: 0.85rem; font-weight: 700; color: var(--text-soft); }
.modal-panel input, .modal-panel textarea, .modal-panel select { font-family: var(--font); font-size: 0.98rem; padding: 0.75em 0.95em; border: 1.5px solid var(--border); border-radius: 10px; background: var(--bg-soft); color: var(--ink); resize: vertical; width: 100%; }
.modal-panel input:focus, .modal-panel textarea:focus, .modal-panel select:focus { outline: none; border-color: var(--blue); background: #fff; }
.modal-hint { font-size: 0.82rem; color: var(--text-mute); margin: -0.3rem 0 0; }
.modal-phone-row { display: flex; gap: 0.5rem; align-items: stretch; }
.phone-country { width: 92px; flex-shrink: 0; display: flex; flex-direction: row; gap: 0.35rem; align-items: center; justify-content: center; padding: 0 0.75em; border: 1.5px solid var(--border); border-radius: 10px; background: var(--bg-soft); }
.phone-country .prefix { width: 38px; text-align: left; border: 0; background: transparent; padding: 0; color: var(--ink); font-weight: 700; }
.phone-country .prefix:disabled { opacity: 1; -webkit-text-fill-color: var(--ink); }
.phone-flag { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 17px; flex-shrink: 0; }
.modal-phone-row input[name="telefon"] { flex: 1; }
.address-field { position: relative; display: flex; flex-direction: column; gap: 0.35rem; }
.address-suggestions { position: absolute; left: 0; right: 0; top: calc(100% + 4px); z-index: 130; background: #fff; border: 1px solid var(--border); border-radius: 12px; box-shadow: 0 18px 36px -18px rgba(17,24,39,0.30); overflow: hidden; max-height: 178px; overflow-y: auto; }
.address-suggestion { width: 100%; display: block; text-align: left; padding: 0.68rem 0.85rem; border: none; border-bottom: 1px solid var(--border); background: #fff; color: var(--ink); font-family: var(--font); font-size: 0.9rem; cursor: pointer; }
.address-suggestion:last-child { border-bottom: none; }
.address-suggestion:hover, .address-suggestion.is-active { background: var(--blue-tint); color: var(--blue-dark); }
.address-status { min-height: 1rem; font-size: 0.78rem; color: var(--text-mute); margin-top: -0.1rem; }
.modal-review { background: var(--bg-soft); border-radius: 12px; padding: 1rem 1.1rem; font-size: 0.88rem; display: grid; gap: 0.4rem; }
.modal-review div { display: flex; justify-content: space-between; gap: 1rem; }
.modal-review strong { color: var(--text-mute); font-weight: 600; }
.modal-terms { display: grid; grid-template-columns: 20px 1fr; gap: 0.8rem; align-items: flex-start; padding: 0.9rem 1rem; border: 1px solid var(--border); border-radius: 14px; background: #fff; color: var(--text-soft); box-shadow: 0 10px 24px -20px rgba(17,24,39,0.35); }
.modal-terms input { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; accent-color: var(--blue); }
.modal-terms .terms-copy { display: grid; gap: 0.25rem; font-size: 0.84rem; line-height: 1.45; }
.modal-terms .terms-copy strong { color: var(--ink); font-size: 0.9rem; }
.modal-terms .terms-links { color: var(--text-mute); }
.modal-terms a { color: var(--blue); font-weight: 700; text-decoration: none; }
.modal-terms a:hover { text-decoration: underline; }

.modal-nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 1.6rem; }
.modal-nav .btn-outline:disabled { opacity: 0.4; cursor: default; }
.modal-nav .btn-outline:disabled:hover { border-color: var(--border); color: var(--ink); }
.modal-nav .btn:focus-visible, .scroll-contact-actions .btn:focus-visible, .mobile-sticky-cta .btn:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }

.modal-success { display: none; flex-direction: column; align-items: center; text-align: center; gap: 0.8rem; padding: 1rem 0 0.4rem; }
.modal-success.is-active { display: flex; }
.modal-success .ok-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--blue-tint); display: flex; align-items: center; justify-content: center; }
.modal-success .ok-icon svg { width: 26px; height: 26px; stroke: var(--blue); fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.modal-success h3 { margin: 0; }
.modal-success p { margin: 0; }

@media (max-width: 900px) { .contact-inner { grid-template-columns: 1fr; } }
@media (max-width: 430px) { #modalFormWrap > p.modal-sub { white-space: normal; font-size: 0.82rem; } .modal-terms { padding: 0.85rem; } }



/* ---------- footer ---------- */
.site-footer { background: #0B111D; color: #A9B0BC; padding: 3.2rem 0 1.6rem; }
.site-footer .wrap { max-width: 940px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 4rem; padding-bottom: 2.2rem; border-bottom: 1px solid rgba(255,255,255,0.10); margin-bottom: 1.1rem; }
.footer-brand { display: flex; align-items: center; gap: 9px; margin-bottom: 0.9rem; }
.footer-brand img { width: 26px; height: 26px; }
.footer-brand span { font-weight: 800; font-size: 1.05rem; color: #fff; }
.footer-grid p { color: #A9B0BC; font-size: 0.92rem; max-width: 34ch; }
.footer-col h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: #E8ECF3; margin: 0 0 0.9rem; font-weight: 800; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.62rem; font-size: 0.92rem; }
.footer-col li { color: #A9B0BC; }
.footer-col a { color: #A9B0BC; text-decoration: underline; text-underline-offset: 2px; }
.footer-col a:hover, .footer-legal a:hover { color: #fff; }
.footer-contact li { display: flex; align-items: center; gap: 0.55rem; }
.footer-ic { width: 15px; height: 15px; color: #A9B0BC; display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.footer-ic svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.footer-legal { font-size: 0.82rem; display: flex; gap: 0.5rem; flex-wrap: wrap; color: #A9B0BC; margin: 0; }
.footer-legal a { color: #A9B0BC; text-decoration: underline; text-underline-offset: 2px; }
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } .site-footer .wrap { max-width: 1160px; } }

/* ---------- mobile sticky cta ---------- */
.mobile-sticky-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: rgba(255,255,255,0.96); backdrop-filter: blur(10px); border-top: 1px solid var(--border); padding: 0.7rem 1rem; padding-bottom: calc(0.7rem + env(safe-area-inset-bottom)); z-index: 70; gap: 0.7rem; }
.mobile-sticky-cta .btn { flex: 1; justify-content: center; }
@media (max-width: 780px) { .mobile-sticky-cta { display: flex; } body { padding-bottom: 68px; } }

/* ---------- reveal ---------- */
.reveal { opacity: 1; transform: none; }
.animations-ready .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1); transition-delay: var(--reveal-delay, 0ms); }
.animations-ready .reveal.is-visible { opacity: 1; transform: none; }
.animations-ready .hero-photo.reveal { transform: translateY(14px) scale(0.985); }
.animations-ready .hero-photo.reveal.is-visible { transform: translateY(0) scale(1); }

/* ---------- launch-ready/accessibility additions ---------- */
body.modal-open { overflow: hidden; }
.main-nav a:focus-visible, .mobile-menu a:focus-visible, .trustpilot-badge:focus-visible, .contact-facts a:focus-visible, .footer-col a:focus-visible, .footer-legal a:focus-visible { outline: 2px solid var(--blue); outline-offset: 4px; border-radius: 8px; }
.faq-answer[hidden] { display: none; }
.modal-error { min-height: 1.2rem; color: #B42318; font-size: 0.86rem; font-weight: 600; margin: -0.3rem 0 0.2rem; }
.modal-success-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.8rem; margin-top: 0.4rem; }
.hp-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.price-note { font-size: 0.84rem; color: var(--text-mute); margin-top: 0.25rem; }
.contact-small-note { font-size: 0.86rem; color: var(--text-mute); margin-top: 1rem; }
.footer-legal a { text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 420px) {
  .modal-card { padding: 1.5rem; }
  .modal-steps { flex-direction: column; }
  .modal-step-pill { width: fit-content; }
}


/* ---------- scroll contact prompt ---------- */
.scroll-contact-prompt {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 45;
  width: min(420px, calc(100vw - 32px));
  display: grid;
  grid-template-columns: 84px 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.05rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.99), rgba(245,250,255,0.97));
  backdrop-filter: blur(16px);
  border: 1px solid rgba(50,146,207,0.18);
  border-left: 5px solid var(--blue);
  border-radius: 24px;
  box-shadow: 0 30px 70px -32px rgba(17,24,39,0.42), 0 16px 42px -28px rgba(50,146,207,0.46);
  transform: translateX(calc(100% + 42px));
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
  transition: transform 0.78s cubic-bezier(0.19,1,0.22,1), opacity 0.32s ease, box-shadow 0.28s ease;
}
.scroll-contact-prompt.is-visible {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.scroll-contact-prompt:hover {
  box-shadow: 0 36px 78px -34px rgba(17,24,39,0.46), 0 20px 48px -30px rgba(50,146,207,0.5);
}
.scroll-contact-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17,24,39,0.08);
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: var(--text-mute);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 22px -18px rgba(17,24,39,0.5);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.scroll-contact-close:hover,
.scroll-contact-close:focus-visible {
  background: #fff;
  color: var(--ink);
  transform: scale(1.04);
  outline: none;
}
.scroll-contact-photo {
  position: relative;
  width: 84px;
  height: 84px;
  border-radius: 24px;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, #dceefb, #f5f9fc);
  box-shadow: inset 0 0 0 1px rgba(50,146,207,0.08), 0 16px 28px -18px rgba(17,24,39,0.42);
}
.scroll-contact-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0) 52%, rgba(17,24,39,0.2));
  pointer-events: none;
}
.scroll-contact-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 18%;
  transform: scale(1.34);
}
.scroll-contact-copy {
  min-width: 0;
  padding-right: 1.8rem;
}
.scroll-contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  width: fit-content;
  margin-bottom: 0.45rem;
  padding: 0.28rem 0.58rem;
  border-radius: 999px;
  background: rgba(28,176,99,0.11);
  color: #147a43;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.01em;
}
.scroll-contact-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #1CB063;
  box-shadow: 0 0 0 0 rgba(28,176,99,0.42);
  animation: scrollContactPulse 3.1s ease-out infinite;
}
.scroll-contact-copy strong {
  display: block;
  font-size: 1.08rem;
  line-height: 1.22;
  color: var(--ink);
  margin-bottom: 0.32rem;
}
.scroll-contact-copy p {
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--text-soft);
}
.scroll-contact-actions { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.scroll-contact-actions .btn {
  padding: 0.72em 1.1em;
  font-size: 0.88rem;
}
@keyframes scrollContactPulse {
  0% { box-shadow: 0 0 0 0 rgba(28,176,99,0.42); transform: scale(1); }
  70% { box-shadow: 0 0 0 8px rgba(28,176,99,0); transform: scale(1.06); }
  100% { box-shadow: 0 0 0 0 rgba(28,176,99,0); transform: scale(1); }
}
@media (max-width: 980px) {
  .scroll-contact-prompt {
    left: 16px;
    right: 16px;
    bottom: 90px;
    width: auto;
    grid-template-columns: 78px 1fr;
    transform: translateX(calc(100% + 42px));
  }
  .scroll-contact-photo { width: 78px; height: 78px; }
}
@media (max-width: 640px) {
  .scroll-contact-prompt { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-contact-prompt { transition: opacity 0.2s ease; transform: none; }
  .scroll-contact-badge::before { animation: none; }
}

.phone-country {
  justify-content: flex-start;
}
.phone-flag {
  width: 20px;
  height: 14px;
  min-height: 14px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(17,24,39,0.10);
  overflow: hidden;
  flex-shrink: 0;
}
.phone-flag-dk {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background: #c60c30;
}
.phone-flag-dk::before,
.phone-flag-dk::after {
  content: "";
  position: absolute;
  background: #fff;
}
.phone-flag-dk::before {
  top: 0;
  bottom: 0;
  left: 31%;
  width: 15%;
}
.phone-flag-dk::after {
  left: 0;
  right: 0;
  top: 43%;
  height: 15%;
}



/* Optimeret hero og kontaktstatus: boksen står stille, kun statusprikken pulserer. */
.hero h1 {
  font-size: clamp(1.95rem, 3.85vw, 2.9rem);
  line-height: 1.08;
}
.hero-photo-badge {
  animation: none !important;
  transform: none;
  will-change: auto;
}
.hero-photo-badge::before {
  content: none !important;
  animation: none !important;
}
.hero-photo-badge .dot {
  transform-origin: center;
  will-change: transform, opacity, box-shadow;
  animation: green-dot-blink 2.8s ease-in-out infinite !important;
}
.hero-photo-badge .dot::after {
  will-change: transform, opacity;
  animation: green-dot-ring 2.8s ease-out infinite !important;
}
@media (max-width: 640px) {
  .hero h1 { font-size: clamp(1.85rem, 8.6vw, 2.35rem); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-photo-badge .dot,
  .hero-photo-badge .dot::after {
    animation: none !important;
    will-change: auto;
  }
}



/* Undersider og tydelige links til ydelser. */
.service-card { display: block; min-height: 100%; color: inherit; text-decoration: none; }
.service-card:focus-visible { outline: 3px solid rgba(50,146,207,0.35); outline-offset: 4px; }
.service-card .card-link { display: inline-flex; align-items: center; gap: 0.35rem; margin-top: 1rem; color: var(--blue-dark); font-size: 0.88rem; font-weight: 700; }
.service-card:hover .card-link { gap: 0.55rem; }
#modalFormWrap > p.modal-sub { font-size: 0.78rem; }

.service-hero { position: relative; overflow: hidden; padding: 4.2rem 0 4.6rem; background: var(--bg-soft); }
.service-hero::after { content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%; right: -150px; top: -180px; background: radial-gradient(circle, rgba(50,146,207,0.17), transparent 70%); pointer-events: none; }
.service-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0,1fr) 260px; gap: 3rem; align-items: center; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0 0 1.15rem; color: var(--text-mute); font-size: 0.84rem; }
.breadcrumbs a { color: var(--blue-dark); text-decoration: none; font-weight: 600; }
.service-hero h1 { max-width: 16ch; margin-bottom: 0.55em; font-size: clamp(2.1rem, 4.5vw, 3.6rem); line-height: 1.06; }
.service-hero .lead { max-width: 62ch; font-size: 1.08rem; }
.service-hero .service-intro { max-width: 64ch; }
.service-hero-icon { width: 220px; height: 220px; margin-left: auto; border: 1px solid rgba(50,146,207,0.15); border-radius: 38px; background: linear-gradient(145deg,#fff,#e8f4fc); box-shadow: var(--shadow-hover); display: grid; place-items: center; transform: rotate(2deg); }
.service-hero-icon svg { width: 94px; height: 94px; fill: none; stroke: var(--blue); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.service-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 1.6rem; }
.service-content-grid { display: grid; grid-template-columns: minmax(0,1.35fr) minmax(270px,0.65fr); gap: 2rem; align-items: start; }
.service-copy h2 { margin-top: 0; }
.service-list { list-style: none; padding: 0; margin: 1.3rem 0 0; display: grid; gap: 0.8rem; }
.service-list li { position: relative; padding-left: 1.75rem; color: var(--text-soft); }
.service-list li::before { content: "✓"; position: absolute; left: 0; top: 0.05rem; width: 1.15rem; height: 1.15rem; border-radius: 50%; background: var(--blue-tint); color: var(--blue-dark); display: grid; place-items: center; font-size: 0.68rem; font-weight: 800; }
.service-aside { position: sticky; top: 96px; display: grid; gap: 1rem; }
.service-note { padding: 1.5rem; border: 1px solid var(--border); border-radius: 18px; background: #fff; box-shadow: var(--shadow); }
.service-note h3 { margin-bottom: 0.45rem; }
.service-note p { margin: 0; font-size: 0.92rem; }
.service-prepare { padding: 1.5rem; border-radius: 18px; background: var(--blue-tint); }
.service-prepare h3 { margin-bottom: 0.7rem; }
.service-prepare ul { margin: 0; padding-left: 1.15rem; color: var(--text-soft); font-size: 0.9rem; }
.service-prepare li + li { margin-top: 0.55rem; }
.service-cta-band { padding: 2.1rem; border-radius: 22px; background: #0B111D; color: #fff; display: flex; justify-content: space-between; gap: 2rem; align-items: center; }
.service-cta-band h2 { color: #fff; margin-bottom: 0.25rem; font-size: clamp(1.45rem,3vw,2rem); }
.service-cta-band p { color: #A9B0BC; margin: 0; }
.service-cta-band .service-actions { margin: 0; flex-shrink: 0; }
.service-cta-band .btn-outline { color: #fff; border-color: rgba(255,255,255,0.3); }
.related-links { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1rem; }
.related-link { display: block; padding: 1.15rem 1.25rem; border: 1px solid var(--border); border-radius: 15px; color: var(--ink); text-decoration: none; font-weight: 700; background: #fff; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.related-link span { display: block; margin-top: 0.25rem; color: var(--text-mute); font-size: 0.8rem; font-weight: 500; }
.related-link:hover { transform: translateY(-2px); border-color: rgba(50,146,207,0.4); box-shadow: var(--shadow); }
@media (max-width: 840px) {
  .service-hero { padding: 2.6rem 0 3.4rem; }
  .service-hero-grid { grid-template-columns: 1fr; gap: 1.35rem; }
  .service-hero-icon { width: 122px; height: 122px; margin: 0; order: -1; border-radius: 25px; }
  .service-hero-icon svg { width: 56px; height: 56px; }
  .service-content-grid { grid-template-columns: 1fr; }
  .service-aside { position: static; }
  .service-cta-band { align-items: flex-start; flex-direction: column; }
  .related-links { grid-template-columns: 1fr; }
}
@media (max-width: 430px) { #modalFormWrap > p.modal-sub { font-size: 0.76rem; } }

/* Robust embedded images v7 */
.nav-logo img, .footer-brand img { display: block; flex: 0 0 auto; object-fit: contain; }
.hero-photo-card img { display: block; width: 100%; height: 100%; object-fit: cover; }
.scroll-contact-photo img { display: block; width: 100%; height: 100%; object-fit: cover; }


/* ---------- diskret layoutfinpudsning v8 ---------- */
body { overflow-x: clip; }
.nav-inner { gap: clamp(1.1rem, 2vw, 2rem); }
.main-nav { gap: clamp(0.95rem, 1.7vw, 1.7rem); }
.main-nav a { white-space: nowrap; }
.section { padding: clamp(4.75rem, 7vw, 5.75rem) 0; }
.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 2.65rem); }
.card-grid { align-items: stretch; }
.card-grid > .card { height: 100%; }
.card p:last-child { margin-bottom: 0; }
.service-card { display: flex; flex-direction: column; }
.service-card .card-link { margin-top: auto; padding-top: 1rem; }
.why-inner, .contact-inner { gap: clamp(2.25rem, 5vw, 4rem); }
.site-footer .wrap { max-width: 1160px; }
.footer-grid { gap: clamp(2.25rem, 5vw, 4rem); }

@media (max-width: 1060px) {
  .main-nav, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 640px) {
  .wrap { padding-left: 20px; padding-right: 20px; }
  .section { padding: 4.25rem 0; }
  .section-head { margin-bottom: 1.9rem; }
  .nav-inner { height: 68px; }
  .mobile-menu { padding-left: 20px; padding-right: 20px; }
  .site-footer { padding-top: 2.8rem; }
}


/* Mere ro og tydeligere rytme på undersiderne. */
.service-hero-grid { gap: clamp(2.25rem, 5vw, 4rem); }
.service-content-grid { gap: clamp(2.5rem, 5vw, 4.5rem); }
.service-copy { max-width: 760px; }
.service-note, .service-prepare { padding: clamp(1.35rem, 2.5vw, 1.65rem); }
.service-cta-band { padding: clamp(1.75rem, 4vw, 2.4rem); }
.related-links { align-items: stretch; }
.related-link { height: 100%; }
@media (max-width: 840px) {
  .service-hero h1 { max-width: 18ch; }
  .service-content-grid { gap: 2rem; }
}

/* Release-preserved UI overrides */
/* Version 10: kun den grønne kontaktindikator blinker. Kontaktfeltet står stille. */
@keyframes thyContactGreenBlink {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
    background-color: #16A34A;
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.42);
  }
  48%, 56% {
    opacity: 0.22;
    transform: scale(0.78);
    background-color: #4ADE80;
    box-shadow: 0 0 0 6px rgba(22, 163, 74, 0.10);
  }
}
@keyframes thyContactGreenHalo {
  0% { opacity: 0.48; transform: scale(0.72); }
  62%, 100% { opacity: 0; transform: scale(1.62); }
}
.hero-photo-badge {
  animation: none !important;
  will-change: auto !important;
}
.hero-photo-badge .dot {
  animation: thyContactGreenBlink 2.25s ease-in-out infinite !important;
  transform-origin: center;
  will-change: opacity, transform, box-shadow, background-color;
}
.hero-photo-badge .dot::after {
  animation: thyContactGreenHalo 2.25s ease-out infinite !important;
  will-change: opacity, transform;
}
/* Den grønne statusprik i den flydende kontaktboks bruger samme rolige blink. */
.scroll-contact-badge::before {
  animation: thyContactGreenBlink 2.25s ease-in-out infinite !important;
  transform-origin: center;
}

/* Siden kan ikke tekstmarkeres. Kontaktoplysninger og formularfelter kan stadig markeres. */
html,
body,
body * {
  -webkit-user-select: none !important;
  user-select: none !important;
}
body a[href^="tel:"],
body a[href^="mailto:"],
body input,
body textarea,
body select,
body option,
body [contenteditable="true"],
body .selectable-contact {
  -webkit-user-select: text !important;
  user-select: text !important;
}

/* ThyTeknik v11 — diskret UI/UX- og spacing-finpudsning */
body {
  line-height: 1.58;
}
.wrap {
  max-width: 1140px;
}
.nav-inner {
  height: 68px;
}
.section {
  padding: clamp(4rem, 6vw, 5rem) 0;
}
.section-head {
  max-width: 700px;
  margin-bottom: clamp(1.85rem, 3.2vw, 2.3rem);
}
.section-head h2 {
  margin-bottom: 0.38em;
}
.section-sub {
  line-height: 1.58;
}
.card-grid {
  gap: clamp(1rem, 2vw, 1.25rem);
}
.card {
  padding: clamp(1.35rem, 2vw, 1.55rem);
  border-radius: 16px;
}
.card:hover {
  transform: translateY(-3px);
}
.card-icon {
  margin-bottom: 0.85rem;
}
.card h3 {
  margin-bottom: 0.4em;
}
.section-foot {
  margin-top: 1.65rem;
}
.why-card,
.contact-cta-card {
  padding: clamp(1.5rem, 2.5vw, 1.8rem);
}
.why-stats {
  gap: 0.75rem;
  margin-top: 1.35rem;
}
.why-stat {
  padding: 0.9rem 0.75rem;
}
.faq-question {
  padding: 1.15rem 0;
}
.faq-answer p {
  padding-bottom: 1.15rem;
}
.trust-head {
  margin-bottom: 2.2rem;
}
.trustpilot-badge {
  margin-top: 2rem;
}
.site-footer {
  padding-top: 3rem;
}
.footer-grid {
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: 2rem;
}

/* Forsiden: mere ro, mindre overskrift og en kompakt kontaktbadge. */
.hero {
  padding: clamp(3.25rem, 5.2vw, 4.2rem) 0 clamp(4.15rem, 6.2vw, 5rem);
}
.hero-inner {
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.82fr);
  gap: clamp(2.35rem, 4.5vw, 3.8rem);
}
.hero h1 {
  max-width: 25ch;
  font-size: clamp(1.78rem, 3vw, 2.4rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 0.55em;
}
.hero p.lead {
  max-width: 60ch;
  font-size: 1.02rem;
  line-height: 1.62;
}
.hero-checks {
  margin: 1.1rem 0 1.3rem;
  gap: 0.6rem 1.2rem;
}
.hero-bullets {
  margin-bottom: 1.65rem;
}
.hero-actions {
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.hero-photo {
  width: min(100%, 385px);
}
.hero-photo-card {
  border-radius: 20px;
}
.hero-photo-badge {
  left: -12px;
  bottom: -12px;
  right: auto !important;
  width: auto !important;
  max-width: calc(100% - 8px);
  min-width: 0;
  padding: 0.62rem 0.82rem;
  gap: 0.52rem;
  border-radius: 13px;
  box-shadow: 0 10px 24px -16px rgba(17,24,39,0.3), 0 4px 12px -8px rgba(22,163,74,0.18);
}
.hero-photo-badge:hover {
  transform: translateY(-1px);
}
.hero-photo-badge .dot {
  width: 9px;
  height: 9px;
}
.hero-photo-badge .dot::after {
  inset: -5px;
  border-width: 1.5px;
}
.hero-photo-badge > span:last-child {
  display: grid;
  gap: 0.05rem;
  min-width: 0;
}
.hero-photo-badge strong {
  font-size: 0.8rem;
  line-height: 1.25;
}
.hero-photo-badge > span:last-child > span {
  font-size: 0.68rem;
  line-height: 1.35;
  white-space: nowrap;
}


/* Den flydende kontaktgenvej fylder mindre og er lettere at overskue. */
.scroll-contact-prompt {
  width: min(390px, calc(100vw - 32px));
  grid-template-columns: 74px 1fr;
  gap: 0.85rem;
  padding: 0.85rem 0.9rem;
  border-radius: 20px;
}
.scroll-contact-photo {
  width: 74px;
  height: 74px;
  border-radius: 20px;
}
.scroll-contact-copy {
  padding-right: 1.55rem;
}
.scroll-contact-copy strong {
  font-size: 1rem;
}
.scroll-contact-copy p {
  margin-bottom: 0.7rem;
  font-size: 0.85rem;
}
.scroll-contact-actions .btn {
  padding: 0.66em 1em;
  font-size: 0.84rem;
}

/* Undersider: samme rytme som forsiden uden at ændre udtrykket. */
.service-hero {
  padding: clamp(3rem, 5vw, 3.8rem) 0 clamp(3.35rem, 5vw, 4.1rem);
}
.service-hero-grid {
  grid-template-columns: minmax(0, 1fr) 225px;
  gap: clamp(2rem, 4vw, 3rem);
}
.service-hero h1 {
  font-size: clamp(1.95rem, 4vw, 3.15rem);
  line-height: 1.09;
}
.service-hero .lead {
  font-size: 1.03rem;
  line-height: 1.62;
}
.service-hero-icon {
  width: 195px;
  height: 195px;
  border-radius: 32px;
}
.service-hero-icon svg {
  width: 84px;
  height: 84px;
}
.service-actions {
  margin-top: 1.4rem;
}
.service-content-grid {
  gap: clamp(1.75rem, 3.5vw, 2.5rem);
}
.service-note,
.service-prepare {
  padding: 1.35rem;
  border-radius: 16px;
}
.service-cta-band {
  padding: clamp(1.55rem, 3vw, 1.9rem);
  border-radius: 20px;
}
.related-links {
  gap: 0.85rem;
}
.related-link {
  padding: 1.05rem 1.15rem;
}

/* Betingelser og privatliv: bedre læserytme. */
.legal-hero {
  padding: clamp(3.2rem, 5vw, 4rem) 0 2rem;
}
.legal-main {
  padding: 2.6rem 0 clamp(4.25rem, 6vw, 5rem);
}
.legal-card {
  max-width: 820px;
  padding: clamp(1.4rem, 3vw, 2.2rem);
}
.legal-content h2 {
  margin-top: 2rem;
}

@media (max-width: 900px) {
  .hero {
    padding-top: 2.6rem;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-photo {
    width: min(100%, 325px);
  }
  .service-hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .wrap {
    padding-left: 18px;
    padding-right: 18px;
  }
  .section {
    padding: 3.65rem 0;
  }
  .section-head {
    margin-bottom: 1.7rem;
  }
  .hero {
    padding: 2.35rem 0 3.9rem;
  }
  .hero h1 {
    max-width: 19ch;
    font-size: clamp(1.68rem, 8vw, 2.05rem);
    line-height: 1.14;
  }
  .hero p.lead {
    font-size: 0.98rem;
  }
  .hero-photo {
    width: min(100%, 285px);
  }
  .hero-photo-badge {
    left: 8px;
    right: auto !important;
    bottom: -12px;
    max-width: calc(100% - 16px);
    padding: 0.58rem 0.75rem;
  }
  .hero-photo-badge strong {
    font-size: 0.77rem;
  }
  .hero-photo-badge > span:last-child > span {
    font-size: 0.65rem;
  }
  .card {
    padding: 1.3rem;
  }
  .service-hero {
    padding: 2.45rem 0 3rem;
  }
  .service-hero h1 {
    font-size: clamp(1.78rem, 8.8vw, 2.35rem);
  }
  .service-hero-icon {
    width: 112px;
    height: 112px;
    border-radius: 24px;
  }
  .service-hero-icon svg {
    width: 52px;
    height: 52px;
  }
  .service-cta-band {
    padding: 1.4rem;
  }
  .site-footer {
    padding-top: 2.6rem;
  }
}

/* Automatic booking submission state. */
.modal-nav .btn:disabled {
  opacity: 0.62;
  cursor: wait;
  transform: none;
  box-shadow: none;
}


/* ---------- Version 1.4: roligere bookingflow og tydelig sektionsopdeling ---------- */
#top > .section {
  position: relative;
}
#top > .section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1112px, calc(100% - 48px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent 0, var(--border) 4%, var(--border) 96%, transparent 100%);
}

.modal-card {
  max-width: 520px;
}
.modal-panel[data-step="3"] {
  gap: 0.85rem;
}
.modal-review-intro {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 0.8rem;
  align-items: center;
  padding: 0.8rem 0.9rem;
  border: 1px solid #DCEBF6;
  border-radius: 14px;
  background: linear-gradient(135deg, #F4FAFE 0%, #FFFFFF 100%);
}
.review-intro-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-tint);
  color: var(--blue);
}
.review-intro-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.modal-review-intro > span:last-child {
  display: grid;
  gap: 0.12rem;
}
.modal-review-intro strong {
  color: var(--ink);
  font-size: 0.92rem;
}
.modal-review-intro > span:last-child > span {
  color: var(--text-mute);
  font-size: 0.78rem;
  line-height: 1.4;
}
.modal-review {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  background: transparent;
  border-radius: 0;
  font-size: 0.86rem;
}
.modal-review-section {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
}
.modal-review-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0.85rem;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}
.modal-review-section-head h4 {
  margin: 0;
  color: var(--ink);
  font-size: 0.85rem;
  line-height: 1.3;
}
.modal-review-edit {
  border: 0;
  padding: 0.24rem 0.48rem;
  border-radius: 8px;
  background: transparent;
  color: var(--blue-dark);
  font: inherit;
  font-size: 0.76rem;
  font-weight: 800;
  cursor: pointer;
}
.modal-review-edit:hover,
.modal-review-edit:focus-visible {
  background: var(--blue-tint);
  outline: none;
}
.modal-review-section dl {
  margin: 0;
  padding: 0.28rem 0.85rem;
}
.modal-review-row {
  display: grid;
  grid-template-columns: minmax(88px, 0.36fr) minmax(0, 1fr);
  gap: 0.8rem;
  padding: 0.48rem 0;
  border-bottom: 1px solid #EEF1F4;
}
.modal-review-row:last-child {
  border-bottom: 0;
}
.modal-review-row dt {
  color: var(--text-mute);
  font-size: 0.76rem;
  font-weight: 700;
}
.modal-review-row dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 600;
  overflow-wrap: anywhere;
}
.modal-review-row.is-long {
  grid-template-columns: 1fr;
  gap: 0.2rem;
}
.modal-review-row.is-long dd {
  white-space: pre-wrap;
  line-height: 1.5;
  font-weight: 500;
}
.modal-terms {
  margin-top: 0.05rem;
}
.modal-nav {
  align-items: center;
  margin-top: 1.15rem;
}
#modalNext {
  min-width: 154px;
  justify-content: center;
}
#modalNext.is-sending {
  min-width: 216px;
}
.send-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-top-color: #fff;
  border-radius: 50%;
  animation: thy-send-spin 0.7s linear infinite;
}
@keyframes thy-send-spin {
  to { transform: rotate(360deg); }
}

.modal-success {
  align-items: stretch;
  text-align: left;
  gap: 1rem;
  padding: 0.45rem 0 0.2rem;
}
.modal-success-head {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  gap: 0.9rem;
  padding-right: 2.3rem;
}
.modal-success .ok-icon {
  width: 52px;
  height: 52px;
  border: 1px solid #CFE7F7;
  box-shadow: 0 10px 24px -18px rgba(50, 146, 207, 0.8);
}
.modal-success .ok-icon svg {
  width: 24px;
  height: 24px;
}
.success-kicker {
  display: block;
  margin-bottom: 0.12rem;
  color: var(--blue-dark);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.modal-success h3 {
  font-size: 1.34rem;
  line-height: 1.18;
}
.modal-success .success-lead {
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.55;
}
.modal-success-status {
  display: grid;
  gap: 0.55rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg-soft);
}
.modal-success-status > span {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
  color: var(--text-soft);
  font-size: 0.82rem;
}
.modal-success-status svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--blue);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.modal-success-status strong {
  color: var(--ink);
  overflow-wrap: anywhere;
}
.modal-success .success-note {
  color: var(--text-mute);
  font-size: 0.8rem;
  line-height: 1.5;
}
.modal-success-actions {
  justify-content: flex-start;
  margin-top: 0.05rem;
}

@media (max-width: 640px) {
  #top > .section::before {
    width: calc(100% - 36px);
  }
  .modal-review-row {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 0.55rem;
  }
  .modal-success-head {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 0.75rem;
  }
  .modal-success .ok-icon {
    width: 46px;
    height: 46px;
  }
  .modal-success h3 {
    font-size: 1.18rem;
  }
  #modalNext,
  #modalNext.is-sending {
    min-width: 0;
  }
}


/* Version 1.4 finpudsning: handlinger er altid synlige, og kvitteringen står alene. */
.modal-nav {
  position: sticky;
  bottom: -2rem;
  z-index: 5;
  padding: 1rem 0 0.25rem;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0, #fff 28%, #fff 100%);
}
.modal-card.is-complete #modalFormWrap {
  display: none;
}
.modal-card.is-complete .modal-success {
  padding-top: 0.15rem;
}
@media (max-width: 420px) {
  .modal-nav { bottom: -1.5rem; }
}


/* Version 1.4.2: minimalistisk telefonknap med teksten “Ring”. */
.btn-call,
.hero-actions .btn-call,
.scroll-contact-actions .btn-call,
.mobile-sticky-cta .btn-call,
.service-actions .btn-call {
  background: #fff !important;
  color: #111827 !important;
  border-color: #d7e0e8 !important;
  opacity: 1 !important;
  visibility: visible !important;
  text-indent: 0 !important;
  -webkit-text-fill-color: #111827 !important;
}
.btn-call:hover,
.btn-call:focus-visible {
  background: #f7fbfe !important;
  color: #1f7fba !important;
  border-color: #3292cf !important;
}

/* Version 1.4.3 — sidste release-finpudsning. */
.skip-link {
  position: fixed;
  top: 10px;
  left: 12px;
  z-index: 9999;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  background: #111827;
  color: #fff;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 0.18s ease;
}
.skip-link:focus {
  transform: translateY(0);
  outline: 3px solid rgba(50,146,207,0.35);
  outline-offset: 3px;
}
a, button { -webkit-tap-highlight-color: rgba(50,146,207,0.12); }
.btn { min-height: 44px; justify-content: center; }
.btn-sm { min-height: 38px; }
.btn:active { transform: translateY(0) scale(0.985); }
.site-nav { box-shadow: 0 1px 0 rgba(17,24,39,0.025); }
:where(a, button, input, textarea, select):focus-visible {
  outline: 3px solid rgba(50,146,207,0.34);
  outline-offset: 3px;
}

/* Undersider: mere konsekvente handlinger og læserytme. */
.service-actions .btn { min-width: 112px; }
.service-content-grid > * { min-width: 0; }
.service-note,
.service-prepare,
.service-cta-band { box-shadow: 0 14px 32px -28px rgba(17,24,39,0.35); }
.related-link { min-height: 64px; }
@media (max-width: 560px) {
  .service-actions { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(92px, 0.75fr); }
  .service-actions .btn { width: 100%; min-width: 0; }
}



/* v1.5.0: useful local service and FAQ sections. */
.service-local-section { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.service-local-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr); gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.service-local-grid h2 { max-width: 22ch; }
.service-area-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(1.35rem, 3vw, 2rem); box-shadow: var(--shadow); }
.service-area-card h3 { margin-top: 0; }
.service-area-pills { display: flex; flex-wrap: wrap; gap: .55rem; margin: 1rem 0 1.2rem; padding: 0; list-style: none; }
.service-area-pills li { padding: .48rem .76rem; border: 1px solid rgba(50,146,207,.22); border-radius: 999px; background: rgba(50,146,207,.07); color: var(--ink); font-size: .9rem; font-weight: 700; }
.service-proof { display: flex; gap: .7rem; align-items: flex-start; margin-top: 1.25rem; padding-top: 1.15rem; border-top: 1px solid var(--border); color: var(--muted); font-size: .92rem; }
.service-proof strong { color: var(--ink); }
.service-faq-section .section-head { text-align: center; margin-left: auto; margin-right: auto; }
.service-faq-section .section-sub { margin-left: auto; margin-right: auto; }
@media (max-width: 820px) {
  .service-local-grid { grid-template-columns: 1fr; gap: 1.7rem; }
  .service-local-grid h2 { max-width: none; }
}

/* v1.5.1: skip-link target may receive keyboard focus without a visual box. */
main[tabindex="-1"]:focus { outline: none; }
