:root {
  --bg: #f5f6f8;
  --card: #ffffff;
  --text: #16233a;
  --muted: #5c6675;
  --accent: #1f4e79;
  --accent-dark: #15375a;
  --accent-light: #47709c;
  --ok: #2f7d46;
  --ok-bg: #e9eef4;
  --warn: #8a6a1f;
  --warn-bg: #f6efe0;
  --unknown: #5c6675;
  --unknown-bg: #e8ecf1;
  --border: #e0e4ea;
  --radius: 12px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h3, .how-title, .result-header h2 {
  font-family: "Fraunces", Georgia, serif;
}

.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

/* Icons (inline SVG, replaces emoji) */

.icon {
  display: inline-block;
  vertical-align: -3px;
  flex-shrink: 0;
}

/* Navbar */

.navbar {
  background: var(--card);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 30;
}

.navbar-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar-logo { white-space: nowrap; margin-right: 22px; }

.navbar-logo .logo-link {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}

.navbar-logo .logo-mark { color: var(--accent); }

.navbar-logo-text {
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 300;
  letter-spacing: 0.22em;
  color: var(--ink);
}

.navbar-links {
  display: flex;
  gap: 28px;
}

.navbar-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14.5px;
  white-space: nowrap;
  transition: color 0.15s;
}

.navbar-links a:hover {
  color: var(--text);
}

.navbar-trustpilot {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.navbar-trustpilot .stars {
  color: #1db67a;
  font-size: 12px;
  letter-spacing: 1px;
}

.navbar-trustpilot-text {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

.navbar-login {
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  padding: 9px 20px;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  transition: border-color 0.15s, color 0.15s;
}
.navbar-login:hover { border-color: var(--accent); color: var(--accent); }

.navbar-cta {
  background: var(--accent);
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 999px;
  white-space: nowrap;
  margin-left: auto;
  transition: background 0.15s;
}

.navbar-cta:hover {
  background: var(--accent-dark);
}

@media (max-width: 1040px) {
  .navbar-links { display: none; }
  .navbar-trustpilot { display: none; }
  .navbar-inner { justify-content: space-between; }
}

/* Hero */

header.hero {
  position: relative;
  background: var(--bg);
  padding: 64px 20px 44px;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--accent-dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo .icon { color: var(--accent); }

h1 {
  font-size: 44px;
  font-weight: 600;
  line-height: 1.15;
  margin: 18px 0 16px;
  color: var(--text);
  letter-spacing: -0.01em;
}

.hero-inner p {
  color: var(--muted);
  font-size: 17px;
  max-width: 460px;
  margin: 0 auto;
}

/* Hero benefit chips + social proof */

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 10px;
  max-width: 520px;
  margin: 22px auto 0;
}

.hero-benefit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.hero-benefit svg { color: var(--ok); }

.hero-social {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.hero-social .stars {
  color: #1db67a;
  letter-spacing: 1px;
}

/* Membership / abonnements-flow */

.membership {
  margin-top: 56px;
  background: #14273b;
  border-radius: 16px;
  padding: 40px 28px;
  text-align: center;
}

.membership h3 {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 28px;
  color: #ffffff;
}

.membership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  text-align: left;
}

.membership-step {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 22px 18px;
}

.membership-num {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--accent-light);
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.membership-step-title {
  font-size: 15.5px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.membership-step-text {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.membership-cta {
  display: inline-block;
  margin-top: 28px;
  background: #ffffff;
  color: var(--accent-dark);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 999px;
  transition: transform 0.15s, box-shadow 0.15s;
}

.membership-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

@media (max-width: 620px) {
  .membership { padding: 32px 20px; }
  .membership-grid { grid-template-columns: 1fr; }
}

/* Stats bar */

.statsbar {
  position: relative;
  background: #14273b;
  border-radius: 14px;
  max-width: 640px;
  margin: 40px auto 0;
}

.statsbar-inner {
  margin: 0 auto;
  padding: 24px 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  text-align: center;
  padding: 0 10px;
  border-left: 1px solid rgba(255,255,255,0.12);
}

.stat:first-child { border-left: none; }

.stat-num {
  color: #ffffff;
  font-size: 19px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.stat-label {
  color: rgba(255,255,255,0.55);
  font-size: 11.5px;
  margin-top: 6px;
  line-height: 1.3;
}

@media (max-width: 620px) {
  .statsbar { margin-top: 24px; }
  .statsbar-inner { grid-template-columns: 1fr 1fr; gap: 20px 0; padding: 20px 10px; }
  .stat:nth-child(3) { border-left: none; }
  .stat { border-left: 1px solid rgba(255,255,255,0.12); }
  .stat:nth-child(odd) { border-left: none; }
  .stat-num { white-space: normal; font-size: 17px; }
}

/* Search card */

.search-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  margin-top: 28px;
  position: relative;
  box-shadow: 0 12px 28px -16px rgba(30, 28, 25, 0.15);
}

.search-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 4px 4px 4px 16px;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.suggestions {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(8, 100, 104, 0.14);
  overflow: hidden;
  z-index: 20;
}

.suggestions.open { display: block; }

.suggestion {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  font-size: 14.5px;
  cursor: pointer;
  border-top: 1px solid var(--border);
}

.suggestion:first-child { border-top: none; }

.suggestion.active,
.suggestion:hover {
  background: var(--ok-bg);
}

.suggestion-icon {
  color: var(--muted);
  display: flex;
}

.search-row:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(14, 138, 138, 0.12);
}

.input-icon {
  color: var(--muted);
  display: flex;
}

#addressInput {
  flex: 1;
  padding: 12px 4px;
  font-size: 16px;
  font-family: inherit;
  border: none;
  background: transparent;
  outline: none;
  color: var(--text);
}

button.primary {
  background: var(--accent);
  color: white;
  border: none;
  padding: 13px 22px;
  font-size: 15.5px;
  font-weight: 600;
  border-radius: 9px;
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
  font-family: inherit;
}

button.primary:hover {
  background: var(--accent-dark);
}

button.primary:active {
  transform: translateY(0);
}

.hint {
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
  padding-left: 4px;
}

/* Result */

#result { margin-top: 22px; }

.result-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  animation: fadeIn 0.25s ease-out;
  box-shadow: 0 8px 24px rgba(8, 100, 104, 0.06);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.result-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 4px;
}

.result-header h2 {
  margin: 0;
  font-size: 23px;
  font-weight: 600;
}

.updated {
  font-size: 13px;
  color: var(--muted);
  background: var(--unknown-bg);
  padding: 4px 10px;
  border-radius: 999px;
}

.summary {
  color: var(--muted);
  margin: 12px 0 24px;
  font-size: 15.5px;
}

.param {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
}

.param:first-of-type { border-top: none; padding-top: 0; }

.param-icon {
  font-size: 20px;
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 10px;
  background: var(--unknown-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.param-body { flex: 1; }

.param-name {
  font-weight: 600;
  font-size: 15px;
}

.param-explain {
  color: var(--muted);
  font-size: 13.5px;
  margin-top: 3px;
}

.param-limit {
  color: var(--muted);
  font-size: 12.5px;
  margin-top: 2px;
}

.param-value {
  text-align: right;
  white-space: nowrap;
}

.param-value > div:first-child {
  font-weight: 600;
  font-size: 14.5px;
}

.badge {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  margin-top: 6px;
}

.badge.ok { background: var(--ok-bg); color: var(--ok); }
.badge.opmaerksomhed { background: var(--warn-bg); color: var(--warn); }
.badge.ukendt { background: var(--unknown-bg); color: var(--unknown); }
.badge.info { background: #e5eef6; color: #1e5d8a; }

.source-line {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
}

.source-line a { color: var(--accent-dark); font-weight: 600; }

.vandvaerk-link {
  margin-top: 14px;
  padding: 14px 16px;
  background: var(--ok-bg);
  border: 1px solid #d5e6d0;
  border-radius: 10px;
  font-size: 13px;
  color: var(--text);
}

.vandvaerk-link a {
  color: var(--accent-dark);
  font-weight: 700;
}

.loading-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 40px 20px;
  color: var(--muted);
  font-size: 15px;
}

.loading-spinner {
  width: 28px;
  height: 28px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.haardhed-hero {
  text-align: center;
  padding: 24px 0 20px;
}

.haardhed-value {
  font-family: "Fraunces", serif;
  font-size: 56px;
  font-weight: 600;
  color: var(--accent-dark);
  line-height: 1;
}

.haardhed-unit {
  font-size: 22px;
  font-weight: 500;
  margin-left: 4px;
  color: var(--muted);
}

.haardhed-kategori {
  margin-top: 10px;
  display: inline-block;
  background: var(--ok-bg);
  color: var(--ok);
  font-weight: 700;
  font-size: 14px;
  padding: 5px 14px;
  border-radius: 999px;
}

.precision-note {
  background: var(--warn-bg);
  color: var(--warn);
  font-size: 13px;
  padding: 12px 14px;
  border-radius: 10px;
  margin-bottom: 16px;
}

/* Risiko-framing i vandrapporten */
.risiko { display: grid; gap: 12px; margin: 2px 0; }
.risiko-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  padding: 16px 18px;
}
.risiko-ikon { color: var(--accent); flex-shrink: 0; display: flex; }
.risiko-ikon svg { width: 26px; height: 26px; }
.risiko-body { flex: 1; }
.risiko-titel { font-size: 15.5px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.risiko-tekst { font-size: 14px; color: var(--text); line-height: 1.5; }
.risiko-alarm {
  background: #fdecea;
  border-color: #f3c7c1;
  border-left-color: #d1493c;
}
.risiko-alarm .risiko-ikon { color: #d1493c; }
.risiko-alarm .risiko-titel { color: #b23b30; }

.disclaimer-inline {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  padding: 0 10px 18px;
  font-style: italic;
}

.not-found {
  text-align: center;
  padding: 14px 8px 8px;
}

.not-found .not-found-icon {
  color: var(--muted);
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
}

.not-found h2 { font-size: 19px; margin-bottom: 8px; font-weight: 600; }
.not-found p { color: var(--muted); font-size: 15px; margin: 0 auto; max-width: 420px; }

/* Recommendation */

#recommendation { margin-top: 16px; }

.reco-card {
  background: linear-gradient(160deg, #ffffff, #f3faf9);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  animation: fadeIn 0.25s ease-out;
  box-shadow: 0 10px 28px rgba(8, 100, 104, 0.08);
}

.reco-label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 14px;
}

.reco-produkt {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.reco-produkt-billede {
  width: 150px;
  min-width: 150px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg);
}

@media (max-width: 620px) {
  .reco-produkt { flex-direction: column; }
  .reco-produkt-billede { width: 100%; min-width: 0; aspect-ratio: 16 / 10; }
}

.reco-body h3 {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 600;
  font-family: "Fraunces", serif;
}

.reco-bedst {
  display: inline-block;
  background: var(--sand);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  margin: 0 0 10px;
}

.reco-desc {
  color: var(--muted);
  font-size: 14.5px;
  margin: 0 0 10px;
}

.reco-reasons {
  margin: 0;
  padding-left: 18px;
  font-size: 13.5px;
  color: var(--text);
  display: grid;
  gap: 4px;
}

.reco-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.reco-price-main {
  font-size: 20px;
  font-weight: 700;
}

.reco-price-sub {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 2px;
}

/* Hverdagseffekt */

.hverdag {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.hverdag-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--muted);
  margin-bottom: 14px;
}

.hverdag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.hverdag-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 2px solid var(--accent);
  border-radius: 8px;
  padding: 14px 16px;
}

.hverdag-item-title {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent-dark);
  margin-bottom: 6px;
}

.hverdag-item-text {
  font-size: 12.5px;
  color: var(--muted);
}

/* Reco CTA buttons */

.reco-ctas {
  display: flex;
  gap: 10px;
}

button.secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 1.5px solid var(--border);
  padding: 13px 20px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 9px;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: border-color 0.15s, background 0.15s;
}

button.secondary:hover {
  border-color: var(--accent);
  background: var(--ok-bg);
}

/* Checkout */

.checkout {
  margin-top: 4px;
}

/* Pakkekort */

.pakker-section {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.pakke-banner {
  background: var(--accent);
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 600;
  text-align: center;
  padding: 11px 16px;
  border-radius: 10px;
  margin-bottom: 14px;
}

.pakker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-items: stretch;
}

.pakke {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 22px 18px 18px;
}

.pakke-anbefalet {
  border-color: var(--accent);
  box-shadow: 0 8px 24px -12px rgba(47, 111, 104, 0.35);
}

.pakke-valgt {
  border-color: var(--accent-dark);
}

.pakke-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.pakke-navn {
  font-family: "Fraunces", serif;
  font-size: 18px;
  font-weight: 600;
}

.pakke-pris {
  font-size: 24px;
  font-weight: 700;
  margin-top: 6px;
}

.pakke-pris-sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
  min-height: 30px;
}

.pakke-beskrivelse {
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
}

.pakke-punkter {
  margin: 12px 0 16px;
  padding-left: 18px;
  font-size: 12.5px;
  color: var(--text);
  display: grid;
  gap: 6px;
  flex: 1;
}

.pakke .primary,
.pakke .secondary {
  width: 100%;
  padding: 11px 12px;
  font-size: 14px;
}

.pakke-raadgivning {
  margin-top: 16px;
  text-align: center;
  font-size: 13.5px;
  color: var(--muted);
}

.link-btn {
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}

/* Testresultater */

.test-results {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.test-table {
  display: grid;
  gap: 8px;
}

.test-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.test-gruppe { color: var(--text); }

.test-badge {
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.test-badge.test-hoej { background: var(--ok-bg); color: var(--ok); }
.test-badge.test-mellem { background: var(--warn-bg); color: var(--warn); }
.test-badge.test-lav { background: var(--unknown-bg); color: var(--unknown); }

.test-source {
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
}

.checkout-summary {
  margin-top: 22px;
  padding: 18px 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.checkout-summary-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--muted);
  margin-bottom: 12px;
}

.checkout-line {
  display: flex;
  justify-content: space-between;
  font-size: 14.5px;
  padding: 6px 0;
}

.checkout-line-sub {
  color: var(--muted);
  font-size: 13.5px;
}

.checkout-total {
  border-top: 1px solid var(--border);
  margin-top: 6px;
  padding-top: 12px;
  font-weight: 700;
  font-size: 16px;
}

.checkout-note {
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted);
}

/* Order form */

.order-form {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 12px;
}

.order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.order-grid input {
  padding: 11px 14px;
  font-size: 14.5px;
  font-family: inherit;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  outline: none;
}

.order-grid input:focus { border-color: var(--accent); }

.order-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  color: var(--muted);
}

.order-note {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

.order-confirm {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  font-size: 15px;
  text-align: center;
}

.confirm-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--ok);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  margin-right: 4px;
}

/* Booking-vælger (dag + tidsrum) */

.booking-picker {
  display: grid;
  gap: 8px;
}

.booking-label {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--muted);
  margin-top: 6px;
}

.booking-days {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}

.day-btn {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: var(--card);
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.day-btn:hover { border-color: var(--accent); }

.day-btn.active {
  border-color: var(--accent);
  background: var(--ok-bg);
}

.day-name {
  font-size: 11.5px;
  color: var(--muted);
  text-transform: uppercase;
}

.day-num {
  font-size: 13.5px;
  font-weight: 700;
  white-space: nowrap;
}

.booking-slots {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.slot-btn {
  padding: 10px 18px;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  background: var(--card);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.slot-btn:hover { border-color: var(--accent); }

.slot-btn.active {
  border-color: var(--accent);
  background: var(--ok-bg);
  color: var(--accent-dark);
}

.booking-error {
  color: var(--warn);
  font-size: 13px;
}

/* Product perks (vises kun i anbefalingskortet, efter opslag) */

.perks {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.perk {
  text-align: center;
  padding-top: 14px;
  border-top: 2px solid var(--accent);
}

.perk-text {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.4;
}

/* How it works */

.how {
  margin-top: 56px;
  text-align: center;
}

.how h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 28px;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.how-step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 16px;
  text-align: left;
}

.how-num {
  font-family: "Fraunces", serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--accent);
  opacity: 0.55;
  margin-bottom: 10px;
}

.how-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.how-text {
  font-size: 13.5px;
  color: var(--muted);
}

/* Trust section */

.trust {
  margin-top: 56px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
}

.trust h3 {
  font-size: 21px;
  font-weight: 600;
  margin: 0 0 20px;
  text-align: center;
}

.trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text);
}

.check {
  background: var(--ok);
  color: white;
  font-size: 12px;
  font-weight: 700;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

/* FAQ */

.faq {
  margin-top: 56px;
}

.faq h3 {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 24px;
}

.faq-item {
  border-top: 1px solid var(--border);
  padding: 18px 2px;
}

.faq-item:last-child {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 600;
  font-size: 15.5px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-family: "Fraunces", serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.15s;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14.5px;
  max-width: 620px;
}

/* Disclaimer + footer */

.disclaimer {
  margin-top: 40px;
  padding: 0 10px;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--muted);
  text-align: center;
}

.disclaimer strong {
  color: var(--text);
}

.site-footer {
  margin-top: 60px;
  background: #101d33;
  color: rgba(255,255,255,0.65);
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 20px 32px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 24px;
}

.footer-brand p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  margin-top: 10px;
  max-width: 240px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #ffffff;
}

.footer-logo .logo-mark { color: #ffffff; }

.footer-logo-text {
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 300;
  letter-spacing: 0.22em;
  color: #ffffff;
}

.footer-heading {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 14px;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-bottom {
  max-width: 900px;
  margin: 0 auto;
  padding: 22px 20px 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
}

.footer-placeholder-note {
  display: inline-block;
  margin-top: 4px;
  color: #e8b34d;
  font-style: italic;
}

.trust-badges {
  max-width: 900px;
  margin: 0 auto;
  padding: 28px 20px 0;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 10px 16px;
}

.trust-badge .stars {
  color: #1db67a;
  font-size: 13px;
  letter-spacing: 1px;
}

.trust-badge .gazelle-mark {
  font-family: "Fraunces", serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #e8b34d;
  border: 1px solid #e8b34d;
  border-radius: 4px;
  padding: 2px 5px;
}

.trust-badge-text {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}

.trust-badge-text strong {
  color: #ffffff;
}

/* Om os */

.about {
  margin-top: 56px;
  scroll-margin-top: 90px;
}

.about h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 16px;
}

.about p {
  color: var(--muted);
  font-size: 15.5px;
  max-width: 640px;
  margin: 0 0 14px;
}

.about-placeholder {
  margin-top: 18px;
  padding: 14px 18px;
  background: var(--warn-bg);
  border: 1px solid #e8d9b0;
  border-radius: 10px;
  font-size: 13px;
  color: var(--warn);
}

/* Chatboks */

.chat-launcher {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--text);
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0,0,0,0.2);
  z-index: 50;
  transition: background 0.15s, transform 0.15s;
}

.chat-launcher:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.chat-panel {
  position: fixed;
  bottom: 90px;
  right: 22px;
  width: 320px;
  max-width: calc(100vw - 44px);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 20px 48px rgba(0,0,0,0.18);
  z-index: 50;
  overflow: hidden;
  display: none;
}

.chat-panel.open { display: block; }

.chat-panel-header {
  background: var(--text);
  color: #ffffff;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-panel-header-title {
  font-weight: 600;
  font-size: 14.5px;
}

.chat-panel-header-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

.chat-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
}

.chat-close:hover { color: #ffffff; }

.chat-body {
  padding: 16px 18px;
}

.chat-bubble {
  background: var(--bg);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13.5px;
  color: var(--text);
  margin-bottom: 14px;
}

.chat-form {
  display: grid;
  gap: 8px;
}

.chat-form input,
.chat-form textarea {
  padding: 10px 12px;
  font-size: 13.5px;
  font-family: inherit;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  outline: none;
  resize: none;
}

.chat-form input:focus,
.chat-form textarea:focus { border-color: var(--accent); }

.chat-sent {
  font-size: 13.5px;
  text-align: center;
  padding: 8px 0;
}

@media (max-width: 620px) {
  h1 { font-size: 32px; }
  .how-grid { grid-template-columns: 1fr 1fr; }
  .perks { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .trust-badges { padding-top: 22px; }
  .search-row { flex-wrap: wrap; }
  #addressInput { width: 100%; order: 1; }
  .input-icon { order: 0; }
  button.primary { order: 2; width: 100%; margin-top: 4px; }
  .suggestions { order: 3; }
  .param-value { text-align: left; }
  .param { flex-wrap: wrap; }
  .order-grid { grid-template-columns: 1fr; }
  .pakker { grid-template-columns: 1fr; }
  .pakke-pris-sub { min-height: 0; }
}

/* ============================================================
   PREMIUM PROTOTYPE THEME (elome-inspireret) — overrides herunder
   ============================================================ */

:root {
  --ink: #0b1533;
  --ink-2: #14224a;
  --aqua: #2e8bb0;
  --sand: #f1f4fb;
  --sand-2: #e7edfb;
  --shadow-lg: 0 30px 60px -30px rgba(11, 21, 51, 0.35);
  /* Blå palet (nedtonet, mindre elektrisk) */
  --accent: #3a5fd0;
  --accent-dark: #2a469f;
  --accent-light: #8aa0e8;
  --text: #0b1533;
  --border: #e3e7f0;
}

body { background: #f5f6fa; }

/* Promo bar */
.promo-bar {
  background: var(--ink);
  color: #eaf3f7;
  overflow: hidden;
  padding: 0;
}
.promo-track {
  display: flex;
  width: max-content;
  animation: promoScroll 45s linear infinite;
}
.promo-item {
  flex: 0 0 auto;
  min-width: 34vw;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 11px 24px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.promo-drop {
  width: 12px;
  height: 14px;
  flex-shrink: 0;
  color: #7fd0ec;
}
@keyframes promoScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .promo-track { animation: none; }
}

/* Klæbende top (banner + menu) på forsiden, så banneret altid er synligt. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
}
.site-header .navbar {
  position: static;
}

/* Buttons (pill) */
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 15.5px;
  padding: 15px 30px;
  border-radius: 999px;
  box-shadow: 0 14px 30px -12px rgba(31, 78, 121, 0.6);
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
}
.btn-pill:hover { transform: translateY(-2px); box-shadow: 0 20px 38px -14px rgba(31, 78, 121, 0.7); background: var(--accent-dark); }
.btn-pill.btn-light { background: #fff; color: var(--accent-dark); box-shadow: 0 14px 30px -12px rgba(0,0,0,0.35); }
.btn-center { margin: 34px auto 0; }
.how a.btn-center { display: flex; width: fit-content; }

/* Section eyebrow */
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-eyebrow.light { color: #7fd0ec; }

/* ---------- HERO ---------- */
header.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1100px 500px at 50% -10%, #e6ecff 0%, rgba(230,236,255,0) 60%),
    linear-gradient(180deg, #f7f8fc 0%, #eef1fb 100%);
  border-bottom: 1px solid var(--border);
  padding: 72px 20px 60px;
}
.hero-orbs { position: absolute; inset: 0; pointer-events: none; }
.hero-orbs span {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.5;
}
.hero-orbs span:nth-child(1) { width: 240px; height: 240px; left: -60px; top: 40px; background: radial-gradient(circle at 30% 30%, #c3d0ff, transparent 70%); }
.hero-orbs span:nth-child(2) { width: 320px; height: 320px; right: -90px; top: 10px; background: radial-gradient(circle at 30% 30%, #d7e0ff, transparent 70%); }
.hero-orbs span:nth-child(3) { width: 170px; height: 170px; right: 20%; bottom: -40px; background: radial-gradient(circle at 30% 30%, #cdd9ff, transparent 70%); }

.hero-inner { position: relative; max-width: 760px; z-index: 2; }

.hero-eyebrow {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.hero-eyebrow .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22b07d; box-shadow: 0 0 0 0 rgba(34,176,125,0.5);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34,176,125,0.5); }
  70% { box-shadow: 0 0 0 8px rgba(34,176,125,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,176,125,0); }
}

.hero-proof {
  margin-top: 12px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--muted);
}

header.hero h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 56px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 22px 0 18px;
}
header.hero h1 em { font-style: italic; color: var(--accent); }
.hero-sub {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  max-width: 540px;
  margin: 0 auto;
}
.hero .search-card {
  max-width: 620px;
  margin: 34px auto 0;
  box-shadow: var(--shadow-lg);
  border-radius: 18px;
  padding: 20px;
}

/* Fallback-offset, så anker-hop ikke gemmer feltet bag den klæbende menu */
.search-card { scroll-margin-top: 100px; }

/* Kort fremhævning når man klikker en CTA der fører til søgningen */
.search-card.search-flash {
  animation: searchFlash 0.9s ease-out;
}
@keyframes searchFlash {
  0%   { box-shadow: 0 0 0 0 rgba(31, 78, 121, 0.0), var(--shadow-lg); }
  25%  { box-shadow: 0 0 0 5px rgba(31, 78, 121, 0.35), var(--shadow-lg); }
  100% { box-shadow: 0 0 0 0 rgba(31, 78, 121, 0.0), var(--shadow-lg); }
}

.hero-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 26px;
  flex-wrap: wrap;
}
.hero-avatars { display: flex; }
.hero-avatars span {
  width: 34px; height: 34px; border-radius: 50%;
  margin-left: -10px;
  border: 2px solid #fff;
  background: var(--accent-light);
  color: #fff;
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.hero-avatars span:first-child { margin-left: 0; }
.hero-avatars span:last-child { background: var(--ink-2); }
.hero-social-text { font-size: 14px; color: var(--muted); font-weight: 600; }
.hero-social-text .stars { color: #1db67a; letter-spacing: 1px; }
.hero-social-text strong { color: var(--ink); }

/* ---------- LOGOS STRIP ---------- */
.logos-strip { background: #fff; border-bottom: 1px solid var(--border); }
.logos-strip-inner {
  max-width: 1040px; margin: 0 auto;
  padding: 20px; display: flex; align-items: center;
  justify-content: center; gap: 14px 30px; flex-wrap: wrap;
}
.logos-label { font-size: 12px; color: var(--muted); font-weight: 600; letter-spacing: 0.03em; }
.logo-item { font-size: 15px; font-weight: 700; color: #9aa6b2; letter-spacing: 0.02em; }

/* ---------- HOW (override) ---------- */
.how {
  margin-top: 90px;
  /* Bryd ud af den smalle 720px-container, så trinnene bliver store og centrerede */
  width: min(1000px, 100vw - 40px);
  margin-left: 50%;
  transform: translateX(-50%);
}
.how .section-eyebrow {
  font-size: 15px;
  letter-spacing: 0.16em;
  margin-bottom: 16px;
}
.how h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 38px; font-weight: 500; letter-spacing: -0.01em;
  margin-bottom: 48px;
}
.how-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 1000px; margin: 0 auto; }
.how-step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 44px 30px;
  text-align: center;
  box-shadow: 0 24px 46px -30px rgba(14,32,51,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.how-step:hover { transform: translateY(-5px); box-shadow: 0 30px 54px -28px rgba(14,32,51,0.4); }
.how-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #eaf2f9;
  color: var(--accent);
  font-family: "Fraunces", Georgia, serif;
  font-size: 25px;
  font-weight: 600;
  opacity: 1;
}
.how-title { font-size: 19px; margin-bottom: 10px; }
.how-text { font-size: 14.5px; max-width: 260px; margin: 0 auto; line-height: 1.55; }
@media (max-width: 780px) {
  .how-grid { grid-template-columns: 1fr; max-width: 400px; }
  .how h3 { font-size: 30px; }
}

/* ---------- PRODUCT ---------- */
.product {
  margin-top: 90px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 44px;
  align-items: center;
}
.product-shot {
  position: relative;
  border-radius: 24px;
  background: linear-gradient(150deg, #5b7bff 0%, #2e5bff 55%, #1b41cc 100%);
  min-height: 380px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.product-shot::before {
  content: ""; position: absolute; width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,0.35), transparent 65%);
  top: -40px; left: -40px;
}
.product-shot img { max-width: 78%; max-height: 320px; border-radius: 16px; position: relative; z-index: 1; }
.product-fallback { display: none; position: relative; z-index: 1; align-items: center; justify-content: center; }
.product-badge {
  position: absolute; bottom: 20px; left: 20px; z-index: 2;
  background: rgba(255,255,255,0.95); color: var(--accent-dark);
  font-size: 12.5px; font-weight: 700; padding: 9px 15px; border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.product-body h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 38px; font-weight: 500; line-height: 1.1; letter-spacing: -0.01em;
  margin: 4px 0 18px;
}
.product-body p { color: var(--muted); font-size: 16px; line-height: 1.6; margin: 0 0 22px; }
.product-points { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 12px; }
.product-points li { display: flex; align-items: flex-start; gap: 11px; font-size: 15px; }
.product-points .tick {
  background: var(--ok); color: #fff; width: 21px; height: 21px; min-width: 21px;
  border-radius: 50%; font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.product-price { background: var(--sand); border-radius: 14px; padding: 16px 20px; margin-bottom: 24px; }
.product-price-main { font-size: 19px; font-weight: 600; color: var(--ink); }
.product-price-main strong { color: var(--accent); }
.product-price-sub { font-size: 13.5px; color: var(--muted); margin-top: 3px; }
@media (max-width: 820px) { .product { grid-template-columns: 1fr; gap: 28px; } .product-shot { min-height: 300px; } }

/* ---------- REMOVES / HVAD FILTERET FJERNER ---------- */
.removes { margin-top: 90px; text-align: center; }
.removes h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 34px; font-weight: 500; letter-spacing: -0.01em; margin: 0 0 12px;
}
.removes-lead { color: var(--muted); font-size: 16px; max-width: 560px; margin: 0 auto 36px; line-height: 1.6; }
.removes-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.remove-card {
  background: #fff; border: 1px solid var(--border); border-radius: 18px;
  padding: 28px 18px; text-align: center;
  box-shadow: 0 20px 40px -32px rgba(11,21,51,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.remove-card:hover { transform: translateY(-4px); box-shadow: 0 26px 48px -28px rgba(11,21,51,0.45); }
.remove-pct {
  font-family: "Fraunces", Georgia, serif;
  font-size: 36px; font-weight: 600; line-height: 1;
  color: var(--accent); margin-bottom: 12px;
}
.remove-pre {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}
.remove-name { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 5px; }
.remove-sub { font-size: 12.5px; color: var(--muted); line-height: 1.45; }
.removes-certs { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 30px; }
.cert-badge {
  background: var(--sand); color: var(--accent-dark);
  font-size: 12.5px; font-weight: 600;
  padding: 8px 16px; border-radius: 999px; border: 1px solid var(--border);
}
@media (max-width: 780px) { .removes-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- KONTO / LOGIN ---------- */
.konto-main {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 20px 90px;
  min-height: 60vh;
}
.konto-proto-note {
  text-align: center;
  font-size: 12.5px;
  color: var(--muted);
  font-style: italic;
  margin-top: 28px;
}

/* Login-kort */
.login-card {
  max-width: 420px;
  margin: 20px auto 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 34px 30px;
  box-shadow: var(--shadow-lg);
}
.login-head { text-align: center; margin-bottom: 22px; }
.login-head h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 30px; font-weight: 500; margin: 0 0 8px; color: var(--ink);
}
.login-head p { color: var(--muted); font-size: 14.5px; margin: 0; }
.login-tabs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
  background: var(--sand); border-radius: 999px; padding: 4px; margin-bottom: 22px;
}
.login-tab {
  border: none; background: transparent; cursor: pointer;
  padding: 9px 12px; border-radius: 999px; font-size: 14px; font-weight: 600;
  color: var(--muted); font-family: inherit; transition: background 0.15s, color 0.15s;
}
.login-tab.active { background: #fff; color: var(--accent); box-shadow: 0 2px 8px rgba(11,21,51,0.08); }

.konto-form { display: grid; gap: 14px; }
.konto-form label { display: grid; gap: 6px; font-size: 13px; font-weight: 600; color: var(--ink); }
.konto-form input, .konto-form select {
  font-family: inherit; font-size: 15px;
  padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 10px;
  background: var(--bg); color: var(--text); outline: none; transition: border-color 0.15s, box-shadow 0.15s;
}
.konto-form input:focus, .konto-form select:focus {
  border-color: var(--accent); box-shadow: 0 0 0 4px rgba(46,91,255,0.12);
}
.konto-full { width: 100%; justify-content: center; margin-top: 4px; }
.login-alt { text-align: center; font-size: 13.5px; color: var(--muted); margin-top: 18px; }
.link-a { color: var(--accent); font-weight: 700; text-decoration: none; }
.link-a:hover { text-decoration: underline; }
.alt-sep { color: var(--border); margin: 0 8px; }
.demo-kode {
  background: var(--sand);
  border: 1px dashed var(--accent);
  color: var(--accent-dark);
  border-radius: 12px;
  padding: 12px 14px;
  text-align: center;
  font-size: 13.5px;
  margin-bottom: 18px;
}
.demo-kode strong { font-size: 18px; letter-spacing: 3px; }
.demo-kode span { color: var(--muted); font-size: 12px; }
.kode-fejl { color: #b23b30; font-size: 13px; font-weight: 600; text-align: center; }
.link-btn {
  background: none; border: none; color: var(--accent); font-weight: 700;
  cursor: pointer; font-family: inherit; font-size: inherit; padding: 0;
}
.link-btn:hover { text-decoration: underline; }

/* Dashboard */
.konto-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 16px; margin-bottom: 24px; flex-wrap: wrap;
}
.konto-hello { font-size: 14px; color: var(--muted); font-weight: 600; }
.konto-header h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 34px; font-weight: 500; margin: 4px 0 0; color: var(--ink);
}
.konto-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 18px; align-items: start; }
.konto-card {
  background: #fff; border: 1px solid var(--border); border-radius: 18px;
  padding: 26px 24px; box-shadow: 0 20px 40px -32px rgba(11,21,51,0.4);
}
.konto-label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 6px;
}
.sub-card-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 20px; }
.sub-produkt { font-size: 19px; font-weight: 700; color: var(--ink); }
.status-badge {
  font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 999px; white-space: nowrap;
}
.status-aktiv { background: var(--ok-bg); color: var(--ok); }
.status-pause { background: var(--warn-bg); color: var(--warn); }
.status-opsagt { background: #fbe4e2; color: #b23b30; }

.sub-rows { display: grid; gap: 2px; }
.sub-row {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 12px 0; border-top: 1px solid var(--border); font-size: 14.5px;
}
.sub-row:first-child { border-top: none; }
.sub-row span { color: var(--muted); }
.sub-row strong { color: var(--ink); }

.sub-actions { margin-top: 22px; border-top: 1px solid var(--border); padding-top: 20px; }
.interval-vaelger { margin-bottom: 16px; }
.interval-vaelger select { width: 100%; margin-top: 6px; }
.action-btns { display: grid; gap: 10px; }
.btn-outline {
  font-family: inherit; font-size: 14.5px; font-weight: 600; cursor: pointer;
  padding: 12px 16px; border-radius: 10px; border: 1.5px solid var(--border);
  background: #fff; color: var(--ink); transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-danger { color: #b23b30; }
.btn-danger:hover { border-color: #b23b30; background: #fbe4e2; color: #b23b30; }
.btn-ghost {
  font-family: inherit; font-size: 14px; font-weight: 600; cursor: pointer;
  padding: 10px 18px; border-radius: 999px; border: 1.5px solid var(--border);
  background: #fff; color: var(--muted); transition: border-color 0.15s, color 0.15s;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.sub-opsagt-note {
  background: #fbe4e2; color: #b23b30; border-radius: 12px;
  padding: 14px 16px; font-size: 14px; margin: 4px 0 18px;
}

.historik { display: grid; gap: 2px; }
.historik-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-top: 1px solid var(--border); font-size: 13.5px; color: var(--muted);
}
.historik-status { color: var(--ok); font-weight: 600; }

.konto-toast {
  position: fixed; left: 50%; bottom: 28px; transform: translateX(-50%);
  background: var(--ink); color: #fff; font-size: 14px; font-weight: 600;
  padding: 13px 22px; border-radius: 999px; box-shadow: 0 14px 30px rgba(0,0,0,0.3); z-index: 50;
}

@media (max-width: 760px) {
  .konto-grid { grid-template-columns: 1fr; }
}

/* ---------- BENEFITS ---------- */
.benefits {
  margin-top: 60px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.benefit { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 24px 20px; }
.benefit-ic { margin-bottom: 14px; line-height: 0; color: var(--accent); }
.benefit-ic svg {
  width: 34px;
  height: 34px;
  padding: 6px;
  background: var(--sand);
  border-radius: 10px;
}
.benefit-t { font-weight: 700; font-size: 15px; margin-bottom: 6px; }
.benefit-x { font-size: 13.5px; color: var(--muted); line-height: 1.5; }
@media (max-width: 820px) { .benefits { grid-template-columns: 1fr 1fr; } }

/* ---------- NEWS / I MEDIERNE ---------- */
.news { margin-top: 90px; text-align: center; }
.news h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 34px; font-weight: 500; letter-spacing: -0.01em; margin: 0 0 12px;
}
.news-lead { color: var(--muted); font-size: 16px; max-width: 560px; margin: 0 auto 36px; line-height: 1.6; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; text-align: left; }
.news-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--border); border-radius: 18px;
  padding: 24px; text-decoration: none; color: inherit;
  box-shadow: 0 20px 40px -32px rgba(14,32,51,0.4);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.news-card:hover { transform: translateY(-4px); box-shadow: 0 26px 48px -28px rgba(14,32,51,0.45); border-color: #c9d6e2; }
.news-source { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.news-badge {
  background: var(--ink); color: #fff; font-size: 11.5px; font-weight: 700;
  padding: 4px 10px; border-radius: 6px; letter-spacing: 0.02em;
}
.news-date { font-size: 12.5px; color: var(--muted); }
.news-headline { font-size: 17px; font-weight: 700; line-height: 1.3; color: var(--ink); margin-bottom: 10px; }
.news-sum { font-size: 14px; color: var(--muted); line-height: 1.55; flex: 1; margin-bottom: 16px; }
.news-link { font-size: 14px; font-weight: 700; color: var(--accent); }
.news-card:hover .news-link { color: var(--accent-dark); }
.news-note { font-size: 12.5px; color: var(--muted); font-style: italic; max-width: 620px; margin: 24px auto 0; }
@media (max-width: 820px) { .news-grid { grid-template-columns: 1fr; } }

/* ---------- MISSION ---------- */
.mission {
  margin-top: 90px;
  background: linear-gradient(160deg, var(--ink) 0%, var(--ink-2) 100%);
  border-radius: 24px;
  padding: 64px 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.mission::before {
  content: "“"; position: absolute; top: -30px; right: 30px;
  font-family: "Fraunces", serif; font-size: 220px; color: rgba(255,255,255,0.06);
}
.mission-inner { max-width: 680px; position: relative; }
.mission-quote {
  font-family: "Fraunces", Georgia, serif;
  font-size: 28px; font-weight: 500; line-height: 1.35; letter-spacing: -0.01em;
  color: #fff; margin: 0 0 22px;
}
.mission-text { color: rgba(255,255,255,0.75); font-size: 16px; line-height: 1.7; margin: 0 0 28px; }
.mission-sign { display: flex; align-items: center; gap: 14px; }
.mission-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--accent-light); color: #fff; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.mission-name { font-weight: 700; }
.mission-role { font-size: 13px; color: rgba(255,255,255,0.6); }
@media (max-width: 620px) { .mission { padding: 44px 24px; } .mission-quote { font-size: 23px; } }

/* ---------- REVIEWS ---------- */
.reviews { margin-top: 90px; text-align: center; }
.reviews h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 34px; font-weight: 500; letter-spacing: -0.01em; margin: 0 0 10px;
}
.reviews-rating { color: var(--muted); font-size: 15px; margin-bottom: 34px; }
.reviews-rating .stars.big { color: #1db67a; font-size: 18px; letter-spacing: 2px; }
.reviews-rating strong { color: var(--ink); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; text-align: left; }
.review {
  background: #fff; border: 1px solid var(--border); border-radius: 18px;
  padding: 26px 24px; box-shadow: 0 20px 40px -32px rgba(14,32,51,0.4);
}
.review-stars { color: #1db67a; letter-spacing: 2px; font-size: 15px; margin-bottom: 12px; }
.review p { font-size: 15px; line-height: 1.6; color: var(--text); margin: 0 0 20px; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--accent); color: #fff; font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.review-name { font-weight: 700; font-size: 14px; white-space: nowrap; }
.review-city { font-size: 12.5px; color: var(--muted); white-space: nowrap; }
.review-verified { margin-left: auto; font-size: 11.5px; color: var(--ok); font-weight: 700; white-space: nowrap; }
@media (max-width: 820px) { .reviews-grid { grid-template-columns: 1fr; } }

/* Anmeldelses-slider (auto-kørende bånd) */
.reviews-slider {
  overflow: hidden;
  margin-top: 8px;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
}
.reviews-track {
  display: flex;
  width: max-content;
  padding: 6px 0 4px;
  animation: reviewScroll 70s linear infinite;
}
.reviews-slider:hover .reviews-track { animation-play-state: paused; }
.reviews-track .review {
  flex: 0 0 330px;
  width: 330px;
  margin-right: 18px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.reviews-track .review p { flex: 1; }
@keyframes reviewScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .reviews-track { animation: none; }
  .reviews-slider { overflow-x: auto; }
}

/* "Mange flere"-kort i slideren */
.review-more {
  background: linear-gradient(150deg, var(--accent) 0%, var(--accent-dark) 100%);
  border: none;
  color: #fff;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.review-more-num {
  font-family: "Fraunces", Georgia, serif;
  font-size: 44px;
  font-weight: 600;
  line-height: 1;
}
.review-more-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.85;
  margin: 6px 0 14px;
}
.review-more .review-stars { color: #ffffff; margin-bottom: 10px; }
.review-more-text { font-size: 13.5px; opacity: 0.9; line-height: 1.5; max-width: 220px; }

/* ---------- SAMMENLIGNING (vs, med faneblade) ---------- */
.vs {
  margin-top: 90px;
  text-align: center;
  width: min(940px, 100vw - 40px);
  margin-left: 50%;
  transform: translateX(-50%);
}
.vs-title {
  font-family: "Fraunces", Georgia, serif;
  font-size: 32px; font-weight: 500; line-height: 1.2; letter-spacing: -0.01em;
  max-width: 640px; margin: 0 auto 28px;
}
.vs-tabs { display: flex; justify-content: center; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.vs-tab {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  width: 96px; padding: 14px 8px;
  background: #fff; border: 1.5px solid var(--border); border-radius: 14px;
  cursor: pointer; font-family: inherit;
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted); transition: border-color 0.15s, color 0.15s, box-shadow 0.15s;
}
.vs-tab-ic { display: flex; }
.vs-tab-ic svg { width: 26px; height: 26px; color: var(--muted); }
.vs-tab:hover { border-color: #c9d3e6; }
.vs-tab.active { border-color: var(--accent); color: var(--accent); box-shadow: 0 0 0 3px rgba(46,91,255,0.12); }
.vs-tab.active .vs-tab-ic svg { color: var(--accent); }

.vs-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 46px -30px rgba(11, 21, 51, 0.35);
}
.vs-cell {
  padding: 15px 12px;
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.vs-grid > .vs-cell:nth-last-child(-n+3) { border-bottom: none; }
.vs-label { justify-content: flex-start; text-align: left; color: var(--muted); font-weight: 600; }
.vs-head.vs-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }
.vs-head-alt { flex-direction: column; gap: 8px; color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 20px 12px; }
.vs-alt-ic svg { width: 30px; height: 30px; color: var(--muted); }

.vs-featured { background: var(--accent); color: #fff; }
.vs-head-featured { flex-direction: column; gap: 8px; padding: 22px 12px; color: #fff; }
.vs-logo-ic svg { width: 26px; height: 26px; color: #fff; }
.vs-logo-tekst { font-weight: 300; letter-spacing: 0.18em; font-size: 14px; }

.vs-ic { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; font-size: 13px; font-weight: 700; }
.vs-ic-on { background: rgba(255, 255, 255, 0.22); color: #fff; }
.vs-ic-yes { background: var(--accent); color: #fff; }
.vs-ic-no { background: #fdecea; color: #d1493c; }

.vs-pill { padding: 6px 15px; border-radius: 999px; font-size: 12.5px; font-weight: 700; }
.vs-pill-light { background: rgba(255, 255, 255, 0.92); color: var(--accent-dark); }
.vs-pill-neutral { background: #eef0f4; color: var(--muted); }
.vs-pill-bad { background: #fdecea; color: #c0392b; }

@media (max-width: 620px) {
  .vs-title { font-size: 23px; }
  .vs-tab { width: 78px; padding: 12px 6px; }
  .vs-cell { padding: 12px 7px; font-size: 12.5px; }
  .vs-grid { grid-template-columns: 1.25fr 1fr 1fr; }
  .vs-logo-tekst { font-size: 12px; letter-spacing: 0.1em; }
}

/* Besparelses-hero */
.save-hero { text-align: center; max-width: 620px; margin: 0 auto; }
.save-amount {
  font-family: "Fraunces", Georgia, serif;
  font-size: 72px; font-weight: 600; line-height: 1; color: var(--ink);
  margin-top: 6px;
}
.save-sublabel { font-size: 18px; font-weight: 600; color: var(--accent); margin-top: 6px; }
.save-text { color: var(--muted); font-size: 16px; line-height: 1.6; margin: 18px auto 22px; max-width: 480px; }
.save-points { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px 18px; }
.save-point { position: relative; padding-left: 22px; font-size: 14px; font-weight: 600; color: var(--ink); }
.save-point::before { content: "✓"; position: absolute; left: 0; color: var(--ok); font-weight: 700; }
@media (max-width: 620px) { .save-amount { font-size: 52px; } }

/* Links i tekst-sektioner (fx kontakt-mail) */
.about a { color: var(--accent); text-decoration: none; }
.about a:hover { text-decoration: underline; }

/* ---------- JURIDISKE SIDER ---------- */
.legal { max-width: 780px; margin: 0 auto; padding: 56px 24px 90px; }
.legal h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 40px; font-weight: 500; letter-spacing: -0.01em; margin: 0 0 6px; color: var(--ink);
}
.legal-sub { color: var(--muted); font-size: 14px; margin: 0 0 40px; }
.legal h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 22px; font-weight: 600; margin: 40px 0 12px; color: var(--ink);
}
.legal h3 { font-size: 15.5px; font-weight: 700; margin: 22px 0 6px; color: var(--ink); }
.legal p { color: var(--text); font-size: 15px; line-height: 1.7; margin: 0 0 14px; }
.legal ul { margin: 0 0 16px; padding-left: 22px; }
.legal li { font-size: 15px; line-height: 1.7; color: var(--text); margin-bottom: 6px; }
.legal a { color: var(--accent); }
.legal address { font-style: normal; color: var(--muted); font-size: 15px; line-height: 1.7; margin: 4px 0 16px; }
.legal-updated { color: var(--muted); font-size: 14px; margin-top: 8px; }
.legal-note { background: var(--sand); border-radius: 12px; padding: 14px 16px; font-size: 13.5px; color: var(--muted); margin: 8px 0 18px; }
.legal-cat { font-size: 16px; font-weight: 700; margin: 26px 0 8px; color: var(--ink); }
.legal-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 0 0 10px; }
.legal-table { width: 100%; min-width: 560px; border-collapse: collapse; font-size: 13px; }
.legal-table th, .legal-table td { text-align: left; padding: 9px 12px; border-bottom: 1px solid var(--border); vertical-align: top; }
.legal-table th { font-weight: 700; color: var(--ink); background: var(--bg); }
.legal-table td { color: var(--muted); }

/* ---------- OM OS ---------- */
.about-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, #2e5bff 0%, #1b41cc 100%);
  color: #fff;
  padding: 100px 24px;
}
.about-hero-drop {
  position: absolute;
  right: -80px; top: -60px;
  width: 420px; height: 420px;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,0.18), transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.about-hero-inner { max-width: 1040px; margin: 0 auto; position: relative; z-index: 1; }
.about-hero-eyebrow { text-transform: uppercase; letter-spacing: 0.16em; font-size: 13px; font-weight: 700; opacity: 0.85; }
.about-hero h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 56px; font-weight: 500; letter-spacing: -0.02em;
  color: #fff; margin: 14px 0 16px;
}
.about-hero p { font-size: 18px; max-width: 480px; line-height: 1.6; opacity: 0.92; margin: 0; }
.about-hero-cta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 28px; }
.about-hero-rating { font-size: 14px; font-weight: 600; opacity: 0.95; display: inline-flex; align-items: center; gap: 8px; }
.about-hero-rating strong { font-weight: 700; }

/* Trustpilot-lignende stjerner (grøn firkant med hvid stjerne) */
.tp-stars { display: inline-flex; gap: 3px; }
.tp-stars i {
  width: 22px; height: 22px;
  background-color: #00b67a;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/%3E%3C/svg%3E");
  background-size: 17px 17px;
  background-position: center;
  background-repeat: no-repeat;
}

.about-wrap { max-width: 1040px; margin: 0 auto; padding: 0 24px 20px; }

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  margin: 84px auto;
}
.about-split.reverse .about-media { order: 2; }
.about-media {
  border-radius: 24px;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}
.about-media svg { width: 116px; height: 116px; color: rgba(255,255,255,0.92); }
.about-media-a { background: linear-gradient(150deg, #5b7bff 0%, #2e5bff 60%, #1b41cc 100%); }
.about-media-b { background: linear-gradient(150deg, #eaf0ff 0%, #cdd9ff 100%); }
.about-media-b svg { color: var(--accent); }
.about-media-c { background: linear-gradient(150deg, #1b2a55 0%, #0b1533 100%); }

.about-body h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 34px; font-weight: 500; letter-spacing: -0.01em; margin: 4px 0 16px;
}
.about-body p { color: var(--muted); font-size: 16px; line-height: 1.7; margin: 0 0 14px; }
.about-points { list-style: none; padding: 0; margin: 6px 0 22px; display: grid; gap: 11px; }
.about-points li { display: flex; align-items: flex-start; gap: 11px; font-size: 15px; }
.about-points .tick {
  background: var(--ok); color: #fff; width: 21px; height: 21px; min-width: 21px;
  border-radius: 50%; font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.about-reviews { margin-top: 84px; }

@media (max-width: 800px) {
  .about-hero { padding: 72px 20px; }
  .about-hero h1 { font-size: 40px; }
  .about-split { grid-template-columns: 1fr; gap: 26px; margin: 56px auto; }
  .about-split.reverse .about-media { order: 0; }
  .about-media { min-height: 260px; }
}

/* ---------- COMPARE ---------- */
.compare {
  margin-top: 90px;
  background: var(--sand);
  border-radius: 24px;
  padding: 56px 40px;
  text-align: center;
}
.compare h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 32px; font-weight: 500; margin: 0 0 34px; letter-spacing: -0.01em;
}
.compare .section-eyebrow.light { color: var(--accent); }
.compare-cols { display: grid; grid-template-columns: 1fr auto 1fr; gap: 18px; align-items: stretch; max-width: 680px; margin: 0 auto; }
.compare-col { background: #fff; border-radius: 18px; padding: 28px 24px; text-align: left; border: 1px solid var(--border); }
.compare-good { border-color: var(--accent); box-shadow: 0 24px 46px -30px rgba(31,78,121,0.5); }
.compare-col-label { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.compare-good .compare-col-label { color: var(--accent); }
.compare-col-price { font-family: "Fraunces", serif; font-size: 34px; font-weight: 600; margin: 6px 0 16px; color: var(--ink); }
.compare-col-price span { font-family: "Inter", sans-serif; font-size: 14px; font-weight: 500; color: var(--muted); }
.compare-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.compare-col li { font-size: 14px; color: var(--text); padding-left: 22px; position: relative; }
.compare-bad li::before { content: "✕"; position: absolute; left: 0; color: #c25b52; font-weight: 700; }
.compare-good li::before { content: "✓"; position: absolute; left: 0; color: var(--ok); font-weight: 700; }
.compare-vs { align-self: center; font-weight: 700; color: var(--muted); font-size: 14px; }
.compare-save { margin-top: 28px; font-size: 18px; font-weight: 600; color: var(--ink); }
.compare-save strong { color: var(--accent); font-size: 22px; }
@media (max-width: 620px) { .compare { padding: 40px 22px; } .compare-cols { grid-template-columns: 1fr; } .compare-vs { padding: 4px 0; } }

/* ---------- CTA BAND ---------- */
.cta-band {
  margin-top: 90px;
  background: linear-gradient(140deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.cta-band h3 { font-family: "Fraunces", Georgia, serif; font-size: 34px; font-weight: 500; margin: 0 0 12px; color: #fff; }
.cta-band p { color: rgba(255,255,255,0.85); font-size: 16px; margin: 0 0 28px; }

/* FAQ spacing */
.faq { margin-top: 90px; }
.faq h3 { font-family: "Fraunces", Georgia, serif; font-weight: 500; }

@media (max-width: 620px) {
  header.hero h1 { font-size: 38px; }
  .hero-sub { font-size: 16px; }
  .how h3, .reviews h3, .cta-band h3, .product-body h3 { font-size: 28px; }
}
