/* Abonnementguiden — fælles base-CSS (cached) */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

:root {
  --accent: #0e7c7b;
  --accent-dark: #0a5e5d;
  --accent-light: rgba(14, 124, 123, 0.06);
  --accent-tint: rgba(14, 124, 123, 0.12);
  --bg: #fafafa;
  --card: #ffffff;
  --text: #1c1827;
  --text-soft: rgba(28, 24, 39, 0.6);
  --text-muted: rgba(28, 24, 39, 0.45);
  --border: rgba(28, 24, 39, 0.08);
  --green: #a5f3a5;
  --green-dark: #5cb85c;
  --shadow-soft: 0 1px 3px rgba(0,0,0,0.04), 0 8px 24px rgba(28,24,39,0.04);
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  letter-spacing: -0.005em;
}

/* Tabular cifre globalt — fjerner dotted-zero */
input[type="text"], input[type="number"], input[type="tel"], input[type="email"],
.mono, .speedo-num, .speed-num,
[class*="mono"], [class*="speedo"], [class*="speed-num"] {
  font-variant-numeric: tabular-nums lining-nums;
  font-feature-settings: "tnum" 1, "lnum" 1, "zero" 0;
}

/* Container baseline */
.container { max-width: 1180px; margin: 0 auto; padding: 0 64px; }
@media (max-width: 768px) { .container { padding: 0 24px; } }
.nav-container { max-width: 1180px; margin: 0 auto; padding: 0 64px; }
@media (max-width: 768px) { .nav-container { padding: 0 24px; } }

/* NAV baseline — gradient fra mørk top til lysere bund (matcher hero-toppen) */
.nav-wrap {
  background: linear-gradient(180deg, #0a5e5d 0%, #0e7c7b 100%);
  color: #fff;
}
.nav { padding: 24px 0; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 19px; letter-spacing: -0.02em; }
.logo-mark { width: 32px; height: 32px; background: #fff; border-radius: 10px; display: grid; place-items: center; color: var(--accent); font-weight: 900; font-size: 18px; }
.nav-links { display: flex; gap: 28px; font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.85); list-style: none; }
.nav-links a:hover { color: #fff; }
@media (max-width: 860px) { .nav-links { display: none; } }
.nav-cta { font-size: 14px; padding: 11px 20px; border-radius: 999px; background: #fff; color: var(--accent); font-weight: 700; }

/* FOOTER baseline */
.footer { background: var(--text); color: rgba(255,255,255,0.7); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.footer-brand { color: #fff; font-size: 20px; font-weight: 800; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.footer-brand .logo-mark { background: var(--accent); color: #fff; width: 28px; height: 28px; font-size: 14px; }
.footer p { font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
.footer h4 { color: #fff; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 16px; }
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer a { color: rgba(255,255,255,0.65); font-size: 14px; transition: color 0.15s; }
.footer a:hover { color: var(--green); }
.footer-bottom { padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 13px; color: rgba(255,255,255,0.5); }


/* MOBILE HAMBURGER-MENU — kun synlig under 860px */
.hamburger-btn {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px;
  margin-right: -8px;
  color: #fff;
  z-index: 1001;
  align-items: center;
  justify-content: center;
}
.hamburger-btn svg { width: 28px; height: 28px; }
@media (max-width: 860px) {
  .nav-links { display: none !important; }
  .hamburger-btn { display: flex !important; }
  .nav-cta { display: none !important; }
}
@media (min-width: 861px) {
  .hamburger-btn { display: none !important; }
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: var(--accent);
  z-index: 1000;
  transition: right 0.25s ease-out;
  box-shadow: -8px 0 32px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  padding: 24px;
  overflow-y: auto;
}
.mobile-drawer.open { right: 0; }
.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.mobile-drawer-overlay.open { opacity: 1; pointer-events: auto; }
.mobile-drawer-close {
  align-self: flex-end;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
}
.mobile-drawer-links {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-drawer-links li { margin: 0; }
.mobile-drawer-links a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 16px 12px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.mobile-drawer-links a:hover { background: rgba(255,255,255,0.1); }
.mobile-drawer-cta {
  margin-top: 24px;
  display: block;
  background: #fff;
  color: var(--accent);
  text-align: center;
  font-weight: 800;
  padding: 14px;
  border-radius: 12px;
  text-decoration: none;
}
body.drawer-open { overflow: hidden; }
