:root {
  --ink: #07131d;
  --navy: #081827;
  --navy-2: #102236;
  --teal: #5ecde1;
  --teal-dark: #167a8c;
  --gold: #c9a451;
  --paper: #f6f7f4;
  --mist: #dbe9ea;
  --line: rgba(8, 24, 39, 0.14);
  --muted: #60717d;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(6, 18, 29, 0.18);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /* Sørger for at ankersektioner ikke gemmer sig bag den sticky header */
  scroll-padding-top: 84px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 20;
  padding: 12px 16px;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
}

.skip-link:focus {
  top: 8px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
  /* Undgår at width/height-attributter låser højden, når CSS skalerer bredden */
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 24, 39, 0.92);
  color: var(--white);
  backdrop-filter: blur(16px);
}

.brand,
.primary-nav,
.hero-actions,
.contact-lines {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  min-width: max-content;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(94, 205, 225, 0.42);
  background: rgba(94, 205, 225, 0.12);
  color: var(--teal);
  font-size: 0.78rem;
}

.primary-nav {
  gap: clamp(12px, 2.2vw, 28px);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.94rem;
}

.primary-nav a,
.header-cta {
  transition:
    color 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.primary-nav a:hover {
  color: var(--white);
}

.header-cta {
  padding: 10px 16px;
  border: 1px solid rgba(94, 205, 225, 0.5);
  color: var(--teal);
  font-weight: 800;
}

.header-cta:hover {
  background: rgba(94, 205, 225, 0.12);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--white);
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.section-shell {
  width: min(1120px, calc(100% - 36px));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  gap: clamp(36px, 6vw, 74px);
  min-height: min(760px, calc(100vh - 68px));
  align-items: center;
  padding: clamp(42px, 6vw, 76px) 0 clamp(34px, 5vw, 60px);
}

.hero-copy {
  max-width: 700px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  color: var(--navy);
  font-size: clamp(3.7rem, 8vw, 7.7rem);
  line-height: 0.92;
}

.hero-lede {
  max-width: 720px;
  margin: 28px 0 0;
  font-size: clamp(1.35rem, 2.5vw, 2.18rem);
  line-height: 1.13;
  font-weight: 780;
  color: var(--navy-2);
}

.hero-text {
  max-width: 650px;
  margin: 20px 0 0;
  color: #3c4f5a;
  font-size: 1.08rem;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 0;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  font-weight: 900;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--teal-dark);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(22, 122, 140, 0.24);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.7);
  color: var(--navy);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 34px 0 0;
}

.hero-facts div {
  min-height: 94px;
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
}

.hero-facts dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 8px 0 0;
  color: var(--navy);
  font-weight: 800;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 580px;
  padding: 24px;
  background:
    linear-gradient(155deg, rgba(94, 205, 225, 0.18), transparent 44%),
    linear-gradient(20deg, rgba(201, 164, 81, 0.16), transparent 36%),
    var(--navy);
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: min(100%, 430px);
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.36));
}

.visual-note {
  position: absolute;
  right: -18px;
  bottom: 44px;
  width: min(240px, calc(100% - 28px));
  padding: 18px;
  border: 1px solid rgba(94, 205, 225, 0.35);
  background: rgba(246, 247, 244, 0.94);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.visual-note span {
  display: block;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.visual-note strong {
  display: block;
  margin-top: 4px;
  color: var(--navy);
  font-size: 1.05rem;
}

.problem,
.why-section {
  background: var(--navy);
  color: var(--white);
}

.problem {
  margin-top: 16px;
}

.split {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: clamp(58px, 8vw, 100px) 0;
}

.problem .eyebrow,
.why-section .eyebrow,
.content-section .eyebrow,
.contact-section .eyebrow {
  color: var(--teal);
}

h2 {
  margin: 0;
  color: inherit;
  font-size: clamp(2rem, 4.3vw, 4.4rem);
  line-height: 0.98;
}

.problem-panel,
.why-copy {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 2vw, 1.5rem);
}

.problem-panel p,
.why-copy p {
  margin: 0;
}

.problem-panel p + p,
.why-copy p + p {
  margin-top: 18px;
}

.section-heading {
  max-width: 770px;
  padding: clamp(62px, 8vw, 104px) 0 28px;
}

.section-heading.compact {
  padding-bottom: 26px;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding-bottom: clamp(62px, 8vw, 104px);
}

.outcome-card,
.audience-grid article,
.proof-grid article {
  min-height: 252px;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--white);
}

.outcome-card {
  display: flex;
  flex-direction: column;
}

.card-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(22, 122, 140, 0.28);
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 900;
}

h3 {
  margin: 22px 0 0;
  color: var(--navy);
  font-size: 1.3rem;
}

.outcome-card p,
.audience-grid p,
.proof-grid p,
.speaker-bio p,
.faq p,
.contact-copy p {
  color: #4f606a;
}

.outcome-card p {
  margin: 14px 0 0;
}

.content-section {
  background:
    linear-gradient(145deg, rgba(94, 205, 225, 0.08), transparent 35%),
    var(--navy-2);
  color: var(--white);
}

.lecture-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
  padding: clamp(64px, 8vw, 108px) 0;
}

.lecture-copy p {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.topic-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.topic-list li {
  min-height: 72px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 760;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding-bottom: clamp(60px, 8vw, 100px);
}

.audience-grid article {
  min-height: 210px;
}

.audience-grid h3 {
  margin-top: 0;
}

.proof-section {
  background: #edf2f0;
}

.proof-layout {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  padding: clamp(62px, 8vw, 100px) 0;
}

.proof-grid {
  display: grid;
  gap: 12px;
}

.proof-grid article {
  min-height: 0;
}

.proof-grid h3 {
  margin-top: 0;
}

.proof-grid p {
  margin-bottom: 0;
}

.speaker {
  padding: clamp(62px, 8vw, 104px) 0;
}

.speaker-card {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: clamp(26px, 5vw, 70px);
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 18px 54px rgba(7, 19, 29, 0.08);
}

.speaker-bio p {
  margin: 0;
  font-size: 1.06rem;
}

.speaker-bio p + p {
  margin-top: 16px;
}

.practical {
  padding-bottom: clamp(64px, 8vw, 104px);
}

.practical-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.practical-grid div {
  min-height: 130px;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--white);
}

.practical-grid span {
  display: block;
  color: var(--navy);
  font-size: clamp(1.2rem, 1.8vw, 1.65rem);
  font-weight: 900;
  line-height: 1.05;
}

.practical-grid p {
  margin: 10px 0 0;
  color: var(--muted);
}

.price-band {
  margin-top: 14px;
  padding: 20px 24px;
  border: 1px solid rgba(22, 122, 140, 0.2);
  background: rgba(94, 205, 225, 0.12);
}

.price-band p {
  margin: 0;
}

.materials {
  background: #e6eeee;
}

.materials-layout {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(62px, 8vw, 104px) 0;
}

.material-list {
  display: grid;
  gap: 10px;
}

.material-list a {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border: 1px solid rgba(8, 24, 39, 0.12);
  background: rgba(255, 255, 255, 0.68);
  color: var(--navy);
  font-weight: 850;
}

.material-list a::after {
  content: "Hent";
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.material-list a.request-material::after {
  content: "Anmod";
}

.faq {
  padding-bottom: clamp(64px, 8vw, 104px);
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  background: var(--white);
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--navy);
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
}

.contact-section {
  background: var(--navy);
  color: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.88fr 1fr;
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
  padding: clamp(64px, 8vw, 108px) 0;
}

.contact-copy p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.08rem;
}

.contact-lines {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.contact-points {
  display: grid;
  gap: 9px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.contact-points li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 780;
}

.contact-points li::before {
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  background: var(--teal);
  content: "";
}

.contact-lines a,
.contact-lines span {
  padding: 12px 14px;
  border: 1px solid rgba(94, 205, 225, 0.28);
  color: var(--teal);
  font-weight: 850;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 850;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.94);
  color: var(--navy);
  font: inherit;
}

input {
  height: 46px;
  padding: 0 13px;
}

textarea {
  resize: vertical;
  min-height: 132px;
  padding: 12px 13px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 4vw, 54px);
  background: #06111b;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.form-status {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(94, 205, 225, 0.35);
  background: rgba(94, 205, 225, 0.1);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.94rem;
}

.form-status a {
  color: var(--teal);
  font-weight: 800;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: flex;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(8, 24, 39, 0.97);
    backdrop-filter: blur(16px);
  }

  .nav-open .primary-nav {
    display: flex;
  }

  .primary-nav a {
    padding: 14px clamp(18px, 4vw, 54px);
  }

  .hero,
  .split,
  .lecture-layout,
  .speaker-card,
  .materials-layout,
  .proof-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 0;
  }

  .visual-note {
    right: 18px;
  }

  .outcome-grid,
  .audience-grid,
  .practical-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 12px;
  }

  .brand span:last-child {
    display: none;
  }

  .section-shell {
    width: min(100% - 28px, 1120px);
  }

  .hero h1 {
    font-size: clamp(3.25rem, 18vw, 4.5rem);
  }

  .hero-facts,
  .outcome-grid,
  .topic-list,
  .audience-grid,
  .practical-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    padding: 18px;
  }

  .visual-note {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .material-list a {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .site-footer {
    flex-direction: column;
  }
}
