:root {
  --forest: #102d25;
  --forest-light: #183d33;
  --forest-deep: #09231c;
  --paper: #f4f7f5;
  --white: #fff;
  --ink: #102d25;
  --muted: #687872;
  --line: #dfe7e3;
  --accent: #b4f035;
  --accent-soft: #e9fac2;
  --mint: #aee7d6;
  --coral: #ff806d;
  --yellow: #ffdc5d;
  --violet: #c8bef2;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --shadow-sm: 0 1px 2px #102d250a, 0 12px 34px #102d250b;
  --shadow-md: 0 24px 70px #071d1730;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
button, a { touch-action: manipulation; }
button, input { font: inherit; }
button:focus-visible, a:focus-visible, summary:focus-visible {
  outline: 3px solid #70cfae80;
  outline-offset: 3px;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 12px;
  z-index: 100;
  padding: 11px 15px;
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform .18s;
}
.skip-link:focus { transform: translateY(0); }

/* Navigation */
.landing-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 72px;
  padding: 0 max(24px, 4vw);
  display: flex;
  align-items: center;
  gap: 34px;
  border-bottom: 1px solid #ffffff13;
  background: #102d25ed;
  color: #fff;
  backdrop-filter: blur(18px);
}
.landing-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .08em;
  text-decoration: none;
  white-space: nowrap;
}
.landing-logo {
  width: 36px;
  height: 36px;
  display: block;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 5px 16px rgba(4, 24, 18, .18);
}
.landing-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.landing-nav a, .text-link, .support-menu-toggle {
  color: #ffffffb3;
  font-size: 11px;
  font-weight: 750;
  text-decoration: none;
  transition: color .16s;
}
.landing-nav a:hover, .text-link:hover, .support-menu-toggle:hover { color: #fff; }
.support-nav-item { position: static; }
.support-menu-toggle {
  min-height: 38px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}
.support-menu-toggle span { font-size: 14px; transition: transform .18s; }
.support-nav-item.open .support-menu-toggle,
.support-nav-item:focus-within .support-menu-toggle {
  background: #ffffff10;
  color: #fff;
}
.support-nav-item.open .support-menu-toggle span { transform: rotate(180deg); }
.support-mega-menu {
  position: fixed;
  z-index: 45;
  top: 72px;
  left: 0;
  right: 0;
  padding: 34px max(28px, 7vw) 38px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(30px, 6vw, 90px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .985);
  color: var(--ink);
  box-shadow: 0 30px 70px #071d1726;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .18s, transform .18s;
}
.support-nav-item.open .support-mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.support-mega-column { display: grid; align-content: start; gap: 8px; }
.support-mega-column > p {
  margin: 0 0 8px;
  color: #668078;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .14em;
}
.landing-nav .support-mega-link {
  min-height: 68px;
  padding: 10px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  border-radius: 14px;
  color: var(--ink);
  transition: background .16s, transform .16s;
}
.landing-nav .support-mega-link:hover { background: #f1f6f3; color: var(--ink); transform: translateX(3px); }
.support-mega-link strong,
.support-mega-link small { display: block; }
.support-mega-link strong { margin-bottom: 3px; font-size: 13px; }
.support-mega-link small { color: var(--muted); font-size: 10px; font-weight: 550; line-height: 1.45; }
.support-mega-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--forest);
  font-size: 18px;
  font-weight: 900;
}
.support-mega-icon.mint { background: #cef1e5; }
.support-mega-icon.yellow { background: #ffed9b; }
.support-mega-icon.coral { background: #ffd6cf; }
.support-mega-icon.violet { background: #e5e0fa; }
.support-mega-icon.green { background: #dbf6a0; }
.support-mega-icon.paper { background: #edf1ef; }
.landing-header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 0;
  border-radius: 11px;
  background: #ffffff10;
}
.mobile-menu-button span {
  width: 18px;
  height: 2px;
  display: block;
  margin: 4px auto;
  border-radius: 2px;
  background: #fff;
}

/* Fælles */
.button {
  min-height: 46px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 850;
  text-decoration: none;
  transition: transform .16s, box-shadow .16s, background .16s, border-color .16s;
}
.button:hover { transform: translateY(-2px); }
.button span { font-size: 16px; }
.button-small { min-height: 40px; padding: 0 15px; border-radius: 10px; }
.button-large { min-height: 52px; padding: 0 22px; }
.button-accent {
  background: var(--accent);
  color: var(--forest);
  box-shadow: 0 10px 28px #071a142b;
}
.button-accent:hover { background: #c1fa48; box-shadow: 0 15px 34px #071a1440; }
.button-quiet { border-color: #ffffff2c; background: #ffffff08; color: #fff; }
.button-quiet:hover { border-color: #ffffff50; background: #ffffff11; }
.button-outline { border-color: #c7d3ce; background: #fff; color: var(--ink); }
.button-outline:hover { border-color: var(--forest); background: var(--forest); color: #fff; }
.eyebrow, .kicker, .card-label {
  margin: 0 0 15px;
  color: #e7614d;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .14em;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #c1d4ce;
}
.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px #b4f03517;
}
.kicker-light { color: var(--accent); }
.section-intro h2, .steps-copy h2, .faq-heading h2, .final-cta h2 {
  margin: 0;
  font-size: clamp(40px, 4.5vw, 66px);
  font-weight: 740;
  line-height: 1.02;
  letter-spacing: -.055em;
}
.section-intro h2 em { color: #6a7a74; font-style: normal; }
.section-intro > p:last-child, .faq-heading > p:last-child {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}
.section-intro.centered { text-align: center; }
.section-intro.centered > p:last-child { margin-inline: auto; }

/* Hero */
.hero {
  position: relative;
  min-height: 790px;
  padding: 90px max(24px, 4vw) 104px;
  display: grid;
  grid-template-columns: minmax(390px, .8fr) minmax(600px, 1.2fr);
  align-items: center;
  gap: 5vw;
  overflow: hidden;
  background: var(--forest);
  color: #fff;
}
.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 40%, #b4f03514, transparent 26rem),
    radial-gradient(circle at 90% 10%, #aee7d60d, transparent 32rem);
}
.hero::before {
  content: "";
  position: absolute;
  right: -270px;
  bottom: -520px;
  width: 940px;
  height: 940px;
  border: 1px solid #ffffff0b;
  border-radius: 50%;
  box-shadow: 0 0 0 100px #ffffff04, 0 0 0 200px #ffffff025;
}
.hero-copy { position: relative; z-index: 2; }
.hero h1 {
  max-width: 740px;
  margin: 25px 0 23px;
  font-size: clamp(56px, 6vw, 88px);
  font-weight: 730;
  line-height: .94;
  letter-spacing: -.065em;
}
.hero h1 em { color: var(--accent); font-style: normal; }
.hero-lead {
  max-width: 620px;
  margin: 0;
  color: #b8cbc5;
  font-size: 16px;
  line-height: 1.75;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 33px; }
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  margin: 27px 0 0;
  padding: 0;
  color: #9fb5ae;
  font-size: 10px;
  list-style: none;
}
.hero-facts li { display: flex; align-items: center; gap: 7px; }
.hero-facts span { color: var(--accent); font-weight: 900; }

/* Produktmockup */
.product-scene {
  position: relative;
  z-index: 2;
  min-height: 580px;
  display: grid;
  place-items: center;
}
.product-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: #b4f03510;
  filter: blur(25px);
}
.product-window {
  position: relative;
  width: min(760px, 100%);
  overflow: hidden;
  border: 1px solid #ffffff25;
  border-radius: 22px;
  background: #f6f8f6;
  color: var(--ink);
  box-shadow: 0 45px 90px #05171270;
  transform: perspective(1400px) rotateY(-3deg) rotateX(1deg);
}
.product-topbar {
  height: 58px;
  padding: 0 17px;
  display: flex;
  align-items: center;
  background: #0e2b23;
  color: #fff;
}
.mini-brand { display: flex; align-items: center; gap: 7px; font-size: 8px; letter-spacing: .06em; }
.mini-brand img {
  width: 25px;
  height: 25px;
  display: block;
  border-radius: 8px;
  object-fit: contain;
}
.mini-nav { display: flex; gap: 18px; margin: auto; color: #ffffff75; font-size: 7px; }
.mini-nav b { padding: 6px 8px; border-radius: 6px; background: #fff; color: var(--forest); }
.mini-profile { display: flex; align-items: center; gap: 8px; color: #ffffff7d; font-size: 6px; }
.mini-profile b {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--mint);
  color: var(--forest);
  font-size: 7px;
}
.product-body { padding: 24px; }
.product-heading { display: flex; align-items: center; justify-content: space-between; }
.product-heading div { display: flex; flex-direction: column; gap: 4px; }
.product-heading small { color: #87958f; font-size: 6px; font-weight: 900; letter-spacing: .1em; }
.product-heading strong { font-size: 19px; letter-spacing: -.04em; }
.product-heading > span { padding: 8px 10px; border-radius: 7px; background: var(--forest); color: #fff; font-size: 7px; font-weight: 800; }
.product-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin: 19px 0; }
.product-stats article { min-height: 58px; padding: 11px 12px; border: 1px solid #dfe6e2; border-radius: 10px; }
.product-stats b { display: block; font-size: 19px; letter-spacing: -.05em; }
.product-stats span { color: #687872; font-size: 6px; }
.stat-coral { background: #fff0ed; }
.stat-mint { background: #e7f7f1; }
.stat-yellow { background: #fff8d9; }
.product-stats .stat-dark { border-color: var(--forest); background: var(--forest); color: #fff; }
.product-stats .stat-dark span { color: #ffffff86; }
.calendar-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 9px;
}
.calendar-tools > div:first-child { display: flex; flex-direction: column; }
.calendar-tools b { font-size: 8px; }
.calendar-tools span { color: #87958f; font-size: 6px; }
.calendar-tools > div:last-child { display: flex; align-items: center; gap: 4px; padding: 3px; border-radius: 7px; background: #e9efec; }
.calendar-tools > div:last-child span, .calendar-tools > div:last-child b { padding: 4px 7px; border-radius: 5px; font-size: 6px; }
.calendar-tools > div:last-child b { background: #fff; box-shadow: 0 2px 7px #102d2513; }
.mock-calendar {
  height: 250px;
  display: grid;
  grid-template-columns: 30px repeat(5, 1fr);
  overflow: hidden;
  border: 1px solid #dfe5e1;
  border-radius: 10px;
  background: #fff;
}
.time-labels {
  padding-top: 34px;
  display: grid;
  grid-template-rows: repeat(6, 1fr);
  border-right: 1px solid #e2e8e4;
  background: #f2f5f3;
}
.time-labels span { padding-right: 5px; color: #8d9893; font-size: 5px; text-align: right; }
.mock-day {
  position: relative;
  border-right: 1px solid #e2e8e4;
  background: repeating-linear-gradient(to bottom, #fff 0, #fff 39px, #e8ece9 40px);
}
.mock-day:last-child { border-right: 0; }
.mock-day > strong {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-bottom: 1px solid #e2e8e4;
  background: #f2f5f3;
  color: #72817b;
  font-size: 5px;
}
.mock-day > strong b {
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  font-size: 6px;
}
.mock-day:first-of-type > strong b { background: var(--forest); color: #fff; }
.mock-shift {
  position: absolute;
  right: 4px;
  left: 4px;
  padding: 6px;
  overflow: hidden;
  border: 1px solid #d9e0dc;
  border-left: 3px solid;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 3px 9px #102d2512;
}
.mock-shift small, .mock-shift b, .mock-shift span { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mock-shift small { color: #73817c; font-size: 5px; }
.mock-shift b { margin: 3px 0; font-size: 7px; }
.mock-shift span { color: #89958f; font-size: 5px; }
.shift-mint { top: 68px; height: 116px; border-left-color: #56b89b; }
.shift-yellow { top: 83px; height: 82px; border-left-color: #d6ad13; }
.shift-violet { top: 97px; height: 105px; border-left-color: #8a72dd; }
.shift-coral { top: 154px; height: 69px; border-left-color: var(--coral); }
.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 13px;
  border: 1px solid #dce4e0;
  border-radius: 13px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 20px 44px #061b1542;
}
.floating-card small, .floating-card strong { display: block; }
.floating-card small { margin-bottom: 2px; color: #82918b; font-size: 6px; letter-spacing: .08em; }
.floating-card strong { font-size: 9px; }
.float-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #fff2ad;
  font-size: 14px;
}
.float-icon.mint { background: #d9f2ea; color: #337b67; }
.floating-request { right: -15px; top: 46px; }
.floating-request > b { margin-left: 8px; padding: 6px 8px; border-radius: 6px; background: var(--forest); color: #fff; font-size: 6px; }
.floating-time { left: -20px; bottom: 44px; }

/* Proof */
.proof-bar {
  min-height: 82px;
  padding: 18px max(24px, 4vw);
  display: flex;
  align-items: center;
  gap: 35px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.proof-bar p { margin: 0; color: #8a9691; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.proof-bar div { flex: 1; display: flex; align-items: center; justify-content: space-around; gap: 18px; }
.proof-bar span { font-size: 11px; font-weight: 800; }
.proof-bar i { width: 4px; height: 4px; border-radius: 50%; background: #bfd0c9; }

/* Problem */
.problem-section { padding: 120px max(24px, 6vw); }
.before-after {
  margin-top: 54px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
}
.before-card, .after-card {
  min-height: 310px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.before-card { background: #fff; }
.after-card { background: var(--forest); color: #fff; box-shadow: var(--shadow-md); }
.before-card > span, .after-card > span { font-size: 9px; font-weight: 900; letter-spacing: .13em; }
.before-card > span { color: #d15b49; }
.after-card > span { color: var(--accent); }
.before-card ul, .after-card ul { margin: 30px 0 0; padding: 0; display: grid; gap: 20px; list-style: none; }
.before-card li, .after-card li { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 650; }
.before-card i, .after-card i {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 9px;
  font-style: normal;
}
.before-card i { background: #fff0ed; color: #d15b49; }
.after-card i { background: #b4f03520; color: var(--accent); }
.change-arrow {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  font-size: 21px;
  font-weight: 900;
}

/* Bento features */
.feature-section { padding: 120px max(24px, 4vw); background: #edf2ef; }
.bento-grid {
  max-width: 1360px;
  margin: 58px auto 0;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.bento-card {
  position: relative;
  min-height: 310px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.bento-card h3 { max-width: 520px; margin: 0 0 12px; font-size: 25px; line-height: 1.15; letter-spacing: -.04em; }
.bento-card > p:not(.card-label), .bento-card > div > p:not(.card-label) { max-width: 520px; margin: 0; color: var(--muted); font-size: 11px; line-height: 1.7; }
.card-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #edf2ef;
  font-size: 18px;
}
.card-label { margin-bottom: 10px; }
.bento-plan { grid-column: span 7; display: grid; grid-template-columns: .8fr 1.2fr; gap: 30px; background: #fff; }
.bento-team { grid-column: span 5; background: #e1f5ef; }
.bento-hours { grid-column: span 4; background: #fff7d3; }
.bento-locations { grid-column: span 4; }
.bento-integrations { grid-column: span 8; display: grid; grid-template-columns: .8fr 1.2fr; gap: 30px; background: var(--forest); color: #fff; }
.bento-integrations > div > p:not(.card-label) { color: #a9beb7; }
.bento-integrations .card-icon { background: #ffffff12; color: var(--accent); }
.bento-integrations .card-label { color: var(--accent); }
.bento-notify { grid-column: span 4; background: #f0edff; }
.mini-week {
  align-self: end;
  height: 220px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: 30px 1fr 1fr;
  border: 1px solid #dce4e0;
  border-radius: 12px;
  background: #f8faf9;
}
.mini-week span { display: grid; place-items: center; border-bottom: 1px solid #dce4e0; color: #7a8882; font-size: 6px; font-weight: 900; }
.mini-week i { margin: 5px; border-radius: 6px; border-left: 3px solid transparent; background: #fff; box-shadow: 0 3px 9px #102d2512; }
.mini-week i:not(.mini-block) { opacity: 0; }
.mint-block { border-left-color: #51b392 !important; }
.yellow-block { border-left-color: #d3aa12 !important; }
.coral-block { border-left-color: var(--coral) !important; }
.people-flow {
  position: absolute;
  right: 25px;
  bottom: 25px;
  left: 25px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.people-flow b {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex: none;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--yellow);
  font-size: 8px;
}
.people-flow b:nth-of-type(2) { margin-left: -15px; background: var(--coral); }
.people-flow span { color: #668078; font-size: 8px; }
.people-flow i { margin-left: auto; padding: 7px 9px; border-radius: 7px; background: var(--forest); color: #fff; font-size: 7px; font-style: normal; font-weight: 800; }
.hours-total {
  position: absolute;
  right: 25px;
  bottom: 24px;
  left: 25px;
  padding: 16px;
  border: 1px solid #e4d898;
  border-radius: 13px;
  background: #fffdf4;
}
.hours-total small { display: block; color: #8b8261; font-size: 6px; font-weight: 900; letter-spacing: .09em; }
.hours-total strong { display: block; margin-top: 6px; font-size: 25px; letter-spacing: -.05em; }
.hours-total strong span { font-size: 9px; }
.hours-total i { position: absolute; right: 13px; top: 15px; color: #397965; font-size: 7px; font-style: normal; font-weight: 900; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 34px; }
.tag-cloud span { padding: 8px 10px; border: 1px solid var(--line); border-radius: 999px; background: #f8faf9; color: #586a63; font-size: 8px; font-weight: 750; }
.integration-flow { display: flex; align-items: center; justify-content: center; gap: 12px; }
.integration-flow > i { color: #ffffff4b; font-style: normal; }
.system {
  min-width: 92px;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  border: 1px solid #ffffff1e;
  border-radius: 20px;
  background: #ffffff09;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}
.system b { font-size: 7px; }
.system-understory { color: #c8bef2; }
.system-letvagt { border-color: #b4f0354a; background: #b4f03514; color: var(--accent); }
.system-danlon { color: var(--coral); }
.feature-catalog { max-width: 1360px; margin: 18px auto 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.feature-detail { min-height: 180px; padding: 25px; display: flex; gap: 18px; border: 1px solid var(--line); border-radius: 20px; background: #f8faf9; }
.feature-detail > span { width: 34px; height: 34px; display: grid; place-items: center; flex: none; border-radius: 10px; background: var(--forest); color: var(--accent); font-size: 8px; font-weight: 900; letter-spacing: .08em; }
.feature-detail h3 { margin: 3px 0 9px; font-size: 18px; letter-spacing: -.025em; }
.feature-detail p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.7; }

/* Steps */
.steps-section {
  padding: 120px max(24px, 6vw);
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 9vw;
  background: var(--forest);
  color: #fff;
}
.steps-copy { position: sticky; top: 120px; align-self: start; }
.steps-copy > p:not(.kicker) { max-width: 540px; margin: 24px 0 30px; color: #a8bdb6; font-size: 13px; line-height: 1.75; }
.step-list { margin: 0; padding: 0; list-style: none; }
.step-list li {
  min-height: 176px;
  padding: 27px 0;
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 10px;
  border-top: 1px solid #ffffff18;
}
.step-list li:last-child { border-bottom: 1px solid #ffffff18; }
.step-list > li > span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid #ffffff2d;
  border-radius: 16px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}
.step-list small { color: var(--mint); font-size: 7px; font-weight: 900; letter-spacing: .14em; }
.step-list h3 { margin: 8px 0; font-size: 24px; letter-spacing: -.035em; }
.step-list p { max-width: 520px; margin: 0; color: #91aaa2; font-size: 11px; line-height: 1.7; }

/* Pricing */
.pricing-section { padding: 120px max(24px, 5vw); background: #f8faf9; }
.pricing-grid { max-width: 1240px; margin: 60px auto 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; align-items: stretch; }
.price-card {
  position: relative;
  min-height: 565px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.price-card.featured { border-color: var(--forest); background: var(--forest); color: #fff; box-shadow: var(--shadow-md); transform: translateY(-8px); }
.popular { position: absolute; top: 22px; right: 22px; padding: 6px 9px; border-radius: 999px; background: var(--accent); color: var(--forest); font-size: 7px; font-weight: 900; letter-spacing: .08em; }
.price-head { display: flex; flex-direction: column; gap: 5px; }
.price-head > span { font-size: 24px; font-weight: 750; letter-spacing: -.04em; }
.price-head small { color: var(--muted); font-size: 7px; font-weight: 900; letter-spacing: .12em; }
.featured .price-head small { color: #91aaa2; }
.price { display: flex; align-items: flex-end; gap: 11px; margin: 31px 0 18px; }
.price strong { font-size: 62px; line-height: .85; letter-spacing: -.07em; }
.price strong::after { content: " kr."; font-size: 9px; font-weight: 900; letter-spacing: 0; }
.price span { color: var(--muted); font-size: 8px; line-height: 1.45; }
.price-contact strong { max-width: 190px; font-size: 42px; line-height: .92; letter-spacing: -.05em; }
.price-contact strong::after { content: none; }
.featured .price span, .featured > p { color: #a8bdb6; }
.price-card > p { min-height: 34px; margin: 0; color: var(--muted); font-size: 10px; }
.price-card ul { margin: 24px 0 30px; padding: 23px 0 0; display: grid; gap: 14px; border-top: 1px solid var(--line); list-style: none; }
.featured ul { border-color: #ffffff1b; }
.price-card li { display: flex; gap: 9px; color: #405b53; font-size: 9px; }
.featured li { color: #d2dfda; }
.price-card li i { color: #35806b; font-style: normal; font-weight: 900; }
.featured li i { color: var(--accent); }
.price-card li.unavailable { color: #a1aaa6; }
.price-card li.unavailable i { color: #a1aaa6; }
.price-card .button { width: 100%; margin-top: auto; }
.pricing-note { margin: 24px 0 0; color: var(--muted); font-size: 9px; text-align: center; }
.pricing-value-line { max-width: 930px; margin: 28px auto 0; padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 28px; border: 1px solid #d7e5df; border-radius: 12px; background: linear-gradient(115deg, #edf7f3, #fffdf8); text-align: left; }
.pricing-value-line strong { max-width: 420px; font-family: Georgia, serif; font-size: 22px; font-weight: 500; line-height: 1.12; letter-spacing: -.025em; }
.pricing-value-line span { max-width: 420px; color: var(--muted); font-size: 11px; line-height: 1.55; text-align: right; }
.plan-comparison { max-width: 1240px; margin: 42px auto 0; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: var(--shadow-sm); }
.comparison-heading { padding: 30px 32px 25px; border-bottom: 1px solid var(--line); }
.comparison-heading h3 { margin: 8px 0 6px; font-size: 28px; letter-spacing: -.035em; }
.comparison-heading > p:last-child { margin: 0; color: var(--muted); font-size: 11px; }
.comparison-scroll { overflow-x: auto; }
.plan-comparison table { width: 100%; min-width: 760px; border-collapse: collapse; text-align: center; }
.plan-comparison th, .plan-comparison td { padding: 15px 20px; border-bottom: 1px solid #e8ece9; font-size: 11px; }
.plan-comparison thead th { background: #f0f5f2; color: #53665f; font-size: 8px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.plan-comparison thead th:nth-child(3) { background: var(--forest); color: #fff; }
.plan-comparison th:first-child { width: 42%; text-align: left; }
.plan-comparison tbody th { color: #334b43; font-weight: 750; }
.plan-comparison tbody tr:last-child th, .plan-comparison tbody tr:last-child td { border-bottom: 0; }
.plan-comparison td i { color: #308069; font-size: 14px; font-style: normal; font-weight: 900; }
.plan-comparison td.not-included { color: #a8b0ad; }

/* FAQ */
.faq-section { padding: 120px max(24px, 7vw); display: grid; grid-template-columns: .75fr 1.25fr; gap: 9vw; }
.faq-heading > p:last-child { max-width: 440px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 750;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 10px;
  background: #e9efec;
  transition: transform .18s, background .18s;
}
.faq-list details[open] summary span { background: var(--accent); transform: rotate(45deg); }
.faq-list details p { max-width: 700px; margin: -6px 50px 25px 0; color: var(--muted); font-size: 12px; line-height: 1.75; }

/* CTA og footer */
.final-cta {
  position: relative;
  padding: 100px max(24px, 6vw);
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 65px;
  overflow: hidden;
  background: var(--forest);
  color: #fff;
}
.cta-glow { position: absolute; right: -90px; bottom: -210px; width: 450px; height: 450px; border-radius: 50%; background: #b4f03512; box-shadow: 0 0 0 70px #ffffff025; }
.final-cta > div { position: relative; z-index: 1; }
.final-cta h2 { max-width: 760px; }
.final-cta > div:last-child p { max-width: 520px; margin: 0 0 25px; color: #a8bdb6; font-size: 13px; line-height: 1.75; }
.landing-footer {
  padding: 55px max(24px, 5vw) 28px;
  display: grid;
  grid-template-columns: 1fr 180px 180px;
  gap: 40px;
  background: var(--forest-deep);
  color: #fff;
}
.footer-brand p { margin: 16px 0 0; color: #78938a; font-size: 10px; }
.landing-footer nav { display: flex; flex-direction: column; gap: 10px; }
.landing-footer nav strong { margin-bottom: 5px; color: #d6e1dd; font-size: 9px; }
.landing-footer nav a { color: #829b93; font-size: 9px; text-decoration: none; }
.landing-footer nav a:hover { color: #fff; }
.footer-bottom {
  grid-column: 1/-1;
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ffffff11;
  color: #58766d;
  font-size: 8px;
}

/* Diskrete scroll-animationer */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.8,.2,1); }
.js .reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1120px) {
  .hero { grid-template-columns: 1fr; padding-top: 84px; }
  .hero-copy { max-width: 820px; }
  .product-scene { width: min(860px, 100%); margin: 0 auto; }
  .bento-plan, .bento-integrations { grid-column: span 12; }
  .bento-team { grid-column: span 7; }
  .bento-hours { grid-column: span 5; }
  .bento-locations, .bento-notify { grid-column: span 6; }
  .pricing-grid { gap: 10px; }
  .price-card { padding: 24px; }
}

@media (max-width: 800px) {
  .landing-header { height: 66px; padding: 0 16px; gap: 12px; }
  .landing-header-actions { margin-left: auto; }
  .landing-header-actions .text-link { display: none; }
  .mobile-menu-button { display: block; margin-left: 0; }
  .landing-nav {
    position: absolute;
    top: 62px;
    right: 12px;
    left: 12px;
    padding: 10px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 2px;
    border: 1px solid #ffffff19;
    border-radius: 16px;
    background: #0b251f;
    box-shadow: 0 22px 50px #06181280;
  }
  .support-nav-item { width: 100%; }
  .support-menu-toggle {
    width: 100%;
    min-height: 44px;
    padding: 0 12px;
    justify-content: space-between;
    color: #fff;
  }
  .support-mega-menu {
    position: static;
    padding: 8px;
    display: none;
    grid-template-columns: 1fr;
    gap: 16px;
    border: 0;
    border-radius: 14px;
    background: #fff;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .support-nav-item.open .support-mega-menu { display: grid; }
  .landing-nav .support-mega-link { padding: 7px; }
  .landing-nav.open { display: flex; }
  .landing-nav a { padding: 12px; border-radius: 9px; }
  .landing-nav a:hover { background: #ffffff0b; }
  .hero { min-height: auto; padding: 70px 20px 80px; }
  .hero h1 { font-size: clamp(50px, 12vw, 74px); }
  .product-scene { min-height: 470px; }
  .product-window { transform: none; }
  .floating-card { display: none; }
  .proof-bar { align-items: flex-start; flex-direction: column; gap: 15px; }
  .proof-bar div { width: 100%; justify-content: space-between; }
  .problem-section, .feature-section, .pricing-section, .faq-section { padding: 82px 20px; }
  .before-after { grid-template-columns: 1fr; }
  .change-arrow { margin: -6px auto; transform: rotate(90deg); }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-plan, .bento-team, .bento-hours, .bento-locations, .bento-integrations, .bento-notify { grid-column: auto; }
  .feature-catalog { grid-template-columns: 1fr 1fr; }
  .steps-section { padding: 82px 20px; grid-template-columns: 1fr; }
  .steps-copy { position: static; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card { min-height: 0; }
  .price-card.featured { transform: none; }
  .pricing-value-line { align-items: flex-start; flex-direction: column; }
  .pricing-value-line span { text-align: left; }
  .faq-section { grid-template-columns: 1fr; }
  .final-cta { padding: 82px 20px; grid-template-columns: 1fr; gap: 35px; }
  .landing-footer { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}

@media (max-width: 520px) {
  .landing-brand { font-size: 13px; }
  .landing-logo { width: 33px; height: 33px; }
  .landing-header-actions .button { min-height: 38px; padding: 0 11px; }
  .hero h1 { font-size: 50px; }
  .hero-lead { font-size: 14px; }
  .hero-actions { flex-direction: column; }
  .feature-catalog { grid-template-columns: 1fr; }
  .feature-detail { min-height: 0; }
  .comparison-heading { padding: 24px 20px; }
  .hero-actions .button { width: 100%; }
  .hero-facts { flex-direction: column; gap: 9px; }
  .product-scene { min-height: 355px; margin-top: 20px; }
  .product-body { padding: 14px; }
  .product-topbar { height: 46px; }
  .mini-nav, .mini-profile span { display: none; }
  .mini-profile { margin-left: auto; }
  .product-heading > span { display: none; }
  .product-stats { gap: 5px; margin: 12px 0; }
  .product-stats article { min-height: 48px; padding: 8px; }
  .product-stats b { font-size: 15px; }
  .mock-calendar { height: 165px; grid-template-columns: 24px repeat(5, 1fr); }
  .time-labels { padding-top: 26px; }
  .mock-day > strong { height: 26px; }
  .shift-mint { top: 48px; height: 78px; }
  .shift-yellow { top: 58px; height: 58px; }
  .shift-violet { top: 69px; height: 72px; }
  .shift-coral { top: 100px; height: 48px; }
  .proof-bar div { display: grid; grid-template-columns: 1fr 1fr; }
  .proof-bar i { display: none; }
  .section-intro h2, .steps-copy h2, .faq-heading h2, .final-cta h2 { font-size: 39px; }
  .before-card, .after-card { min-height: 0; padding: 24px; border-radius: 22px; }
  .before-card li, .after-card li { font-size: 12px; }
  .bento-card { min-height: 290px; padding: 23px; }
  .bento-plan, .bento-integrations { grid-template-columns: 1fr; }
  .mini-week { height: 170px; margin-top: 25px; }
  .integration-flow { gap: 5px; margin-top: 22px; }
  .system { min-width: 74px; min-height: 74px; border-radius: 15px; font-size: 15px; }
  .integration-flow > i { font-size: 10px; }
  .people-flow span { display: none; }
  .step-list li { grid-template-columns: 62px 1fr; }
  .faq-list summary { min-height: 78px; font-size: 14px; }
  .landing-footer { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 7px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}

/* Større brødtekst og tydeligere hjælpetekster */
.landing-nav a,
.text-link,
.button { font-size: 12px; }
.eyebrow,
.kicker,
.card-label { font-size: 10px; }
.hero-lead { font-size: 17px; }
.hero-facts { font-size: 12px; }
.proof-bar p { font-size: 10px; }
.proof-bar span { font-size: 13px; }
.section-intro > p:last-child,
.faq-heading > p:last-child { font-size: 16px; }
.before-card li,
.after-card li { font-size: 15px; }
.bento-card h3 { font-size: 27px; }
.bento-card > p:not(.card-label),
.bento-card > div > p:not(.card-label) { font-size: 13px; }
.feature-detail p { font-size: 13px; }
.plan-comparison th,
.plan-comparison td { font-size: 12px; }
.people-flow span,
.people-flow i,
.tag-cloud span,
.system b { font-size: 10px; }
.hours-total small { font-size: 8px; }
.hours-total i { font-size: 9px; }
.steps-copy > p:not(.kicker) { font-size: 15px; }
.step-list small { font-size: 9px; }
.step-list p { font-size: 13px; }
.price-head small { font-size: 9px; }
.price span { font-size: 10px; }
.price-card > p { font-size: 12px; line-height: 1.6; }
.price-card li { font-size: 12px; }
.pricing-note { font-size: 11px; }
.faq-list details p { font-size: 14px; }
.final-cta > div:last-child p { font-size: 15px; }
.footer-brand p,
.landing-footer nav strong,
.landing-footer nav a { font-size: 11px; }
.footer-bottom { font-size: 10px; }
