/* ─────────────────────────────────────────────────────────
   Kickstart Bedrift — full marketing site
   Component-scoped styles (prefix: ks-)
   Uses tokens from ../colors_and_type.css
   ───────────────────────────────────────────────────────── */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--fg); }
img { max-width: 100%; display: block; }
button { font: inherit; }
a { color: inherit; text-decoration: none; }

.ks-page { min-height: 100vh; display: flex; flex-direction: column; }
.ks-main { flex: 1; }

/* ──────────────── NAV ──────────────── */
.ks-nav {
  position: sticky; top: 0; z-index: 60;
  background: var(--ks-yellow-tint);
  border-bottom: 1px solid var(--divider);
}
.ks-nav-inner {
  max-width: 1360px; margin: 0 auto;
  padding: 18px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
}
.ks-nav-logo { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.ks-nav-logo svg { width: 44px; height: 44px; color: var(--ks-navy); }
.ks-nav-logo-text { font-weight: 700; font-size: 18px; letter-spacing: -0.01em; color: var(--ks-navy); }
.ks-nav-links { display: flex; gap: 28px; list-style: none; padding: 0; margin: 0; }
.ks-nav-link {
  background: transparent; border: 0; padding: 6px 0;
  color: var(--ks-navy); font-family: inherit; font-size: 15px; font-weight: 500;
  cursor: pointer; position: relative; letter-spacing: -0.005em;
}
.ks-nav-link::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--ks-navy);
  transform-origin: left; transform: scaleX(0);
  transition: transform 240ms var(--ease-snap);
}
.ks-nav-link:hover::after, .ks-nav-link.active::after { transform: scaleX(1); }
.ks-nav-cta {
  background: var(--ks-navy); color: var(--ks-yellow);
  border: 0; padding: 10px 20px; border-radius: 999px;
  font-family: inherit; font-size: 14px; font-weight: 600;
  cursor: pointer; transition: transform 120ms var(--ease-out), background 140ms;
  letter-spacing: -0.005em; white-space: nowrap;
}
.ks-nav-cta:hover { background: #0f1827; }
.ks-nav-cta:active { transform: scale(0.97); }

/* Hamburger (skjult på desktop) */
.ks-nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 0; margin-left: 8px;
  background: transparent; border: 0; cursor: pointer;
}
.ks-nav-toggle span {
  display: block; width: 26px; height: 2px; background: var(--ks-navy);
  transition: transform 200ms var(--ease-out), opacity 160ms;
}
.ks-nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ks-nav-toggle.open span:nth-child(2) { opacity: 0; }
.ks-nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobilmeny-panel */
.ks-nav-mobile { display: none; }

/* ──────────────── COMMON ──────────────── */
.ks-container { max-width: 1360px; margin: 0 auto; padding: 0 32px; }
.ks-section { padding: 112px 0; }
.ks-section.tight { padding: 80px 0; }
.ks-section.dark { background: var(--ks-navy); color: var(--ks-yellow); }
.ks-section.yellow { background: var(--ks-yellow); color: var(--ks-navy); }
.ks-section.paper { background: #FBFAEA; color: var(--ks-navy); }
.ks-section.paper .ks-h2, .ks-section.paper .ks-h3, .ks-section.paper .ks-h4 { color: var(--ks-navy); }
.ks-section.paper .ks-lede { color: var(--fg-muted); }

.ks-eyebrow {
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.16em;
  font-weight: 600; color: var(--fg-muted); margin: 0 0 18px;
}
.ks-section.dark .ks-eyebrow { color: rgba(247,254,117,0.7); }

.ks-h1 {
  font-size: clamp(56px, 7vw, 120px);
  line-height: 0.94; font-weight: 500;
  letter-spacing: -0.025em;
  margin: 0; text-wrap: balance;
}
.ks-h2 {
  font-size: clamp(40px, 5vw, 80px);
  line-height: 1.0; font-weight: 500;
  letter-spacing: -0.022em;
  margin: 0 0 24px; text-wrap: balance;
}
.ks-h3 {
  font-size: clamp(28px, 2.8vw, 40px);
  line-height: 1.08; font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 16px;
}
.ks-h4 { font-size: 22px; font-weight: 600; letter-spacing: -0.01em; margin: 0 0 8px; line-height: 1.2;}
.ks-lede {
  font-size: clamp(18px, 1.3vw, 22px); line-height: 1.45;
  color: var(--fg-muted); max-width: 56ch; margin: 0 0 28px;
}
.ks-section.dark .ks-lede { color: rgba(255,254,233,0.86); }

/* ──────────────── BUTTONS ──────────────── */
.ks-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; border-radius: 999px;
  font-family: inherit; font-size: 16px; font-weight: 600;
  border: 0; cursor: pointer; letter-spacing: -0.005em;
  transition: transform 120ms var(--ease-out), background 140ms, color 140ms, border-color 140ms;
  white-space: nowrap;
}
.ks-btn:active { transform: scale(0.97); }
.ks-btn-arrow { font-size: 18px; line-height: 1; margin-top: -1px; }

.ks-btn-primary { background: var(--ks-navy); color: var(--ks-yellow); }
.ks-btn-primary:hover { background: #0f1827; }

.ks-btn-accent { background: var(--ks-yellow); color: var(--ks-navy); }
.ks-btn-accent:hover { background: #ecf365; }

.ks-btn-ghost-dark { background: transparent; color: var(--ks-navy); border: 1.5px solid var(--ks-navy); }
.ks-btn-ghost-dark:hover { background: var(--ks-navy); color: var(--ks-yellow); }

.ks-btn-ghost-light { background: transparent; color: var(--ks-yellow); border: 1.5px solid rgba(247,254,117,0.5); }
.ks-btn-ghost-light:hover { background: var(--ks-yellow); color: var(--ks-navy); border-color: var(--ks-yellow); }

.ks-btn-link {
  background: transparent; color: var(--ks-navy); padding: 0;
  font-size: 16px; font-weight: 600;
  display: inline-flex; gap: 6px; align-items: center;
  position: relative;
}
.ks-btn-link::after { content: '→'; transition: transform 200ms var(--ease-snap); }
.ks-btn-link:hover::after { transform: translateX(4px); }
.ks-section.dark .ks-btn-link { color: var(--ks-yellow); }

/* ──────────────── HERO ──────────────── */
.ks-hero {
  position: relative; overflow: hidden;
  background: var(--ks-navy); color: var(--ks-yellow);
  min-height: 760px;
}
.ks-hero-photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 30%;
  filter: brightness(0.95);
}
.ks-hero-cut {
  position: absolute; inset: 0;
  background: var(--ks-navy);
  clip-path: polygon(0 0, 58% 0, 42% 100%, 0 100%);
}
.ks-hero-inner {
  position: relative; z-index: 2;
  max-width: 1360px; margin: 0 auto;
  padding: 120px 32px 112px;
  min-height: 760px;
  display: flex; align-items: center;
}
.ks-hero-inner-split {
  display: grid !important;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}
.ks-hero-photo-square {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: rgba(247,254,117,0.04);
  position: relative;
}
.ks-hero-photo-square img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}
.ks-hero-content { max-width: 100%; }

/* Slankere helt-variant (brukt på 3-mnd Kickstart-siden) */
.ks-hero-slim { min-height: 0; }
.ks-hero-slim .ks-hero-inner { min-height: 0; padding: 88px 32px; align-items: center; }
.ks-hero-slim .ks-hero-inner-split { grid-template-columns: 1.25fr 1fr; gap: 56px; }
.ks-hero-slim .ks-hero-photo-square { aspect-ratio: 5 / 4; border-radius: 4px; }

.ks-hero-eb { font-size: 14px; text-transform: uppercase; letter-spacing: 0.18em; font-weight: 600; color: rgba(247,254,117,0.78); margin-bottom: 26px; }
.ks-hero h1 {
  font-size: clamp(64px, 9vw, 156px);
  line-height: 0.92; font-weight: 500;
  letter-spacing: -0.028em;
  color: var(--ks-yellow);
  margin: 0 0 28px; text-wrap: balance;
}
.ks-hero h1 .ks-h1-line2 { display: block; }
.ks-hero-lede {
  font-size: 22px; line-height: 1.45;
  color: rgba(255,254,233,0.88);
  max-width: 38ch; margin: 0 0 36px;
}
.ks-hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.ks-hero-k {
  position: absolute; top: 16px; right: 36px;
  width: 96px; height: 96px;
  z-index: 3;
}
.ks-hero-k img { width: 100%; height: 100%; }

/* ──────────────── STATS BAND ──────────────── */
.ks-stats {
  background: var(--ks-navy); color: var(--ks-yellow);
  padding: 96px 0;
}
.ks-stats-eb { font-size: 14px; text-transform: uppercase; letter-spacing: 0.16em; font-weight: 600; color: rgba(247,254,117,0.7); margin-bottom: 56px; max-width: 60ch;}
.ks-stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px; }
.ks-stat { }
.ks-stat-value {
  font-size: clamp(80px, 10vw, 168px);
  font-weight: 500;
  letter-spacing: -0.045em;
  word-spacing: -0.12em;
  line-height: 0.95;
  color: var(--ks-yellow);
  margin-bottom: 20px;
  font-variant-numeric: tabular-nums;
}
.ks-stat-desc { font-size: 18px; line-height: 1.4; color: rgba(255,254,233,0.86); max-width: 22ch; }

/* ──────────────── SERVICES GRID ──────────────── */
.ks-section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; margin-bottom: 64px; flex-wrap: wrap;}
.ks-section-head .left { max-width: 24ch; }
.ks-services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.ks-service {
  position: relative; overflow: hidden;
  aspect-ratio: 1/1.08;
  padding: 24px;
  display: flex; flex-direction: column; justify-content: space-between;
  cursor: pointer;
  transition: transform 240ms var(--ease-snap), box-shadow 240ms var(--ease-snap);
}
.ks-service:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ks-service-num { font-size: 13px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.72; position: relative; z-index: 2; }
.ks-service h3 {
  font-size: clamp(22px, 1.7vw, 28px);
  line-height: 1.04; letter-spacing: -0.015em; font-weight: 600;
  margin: 0; position: relative; z-index: 2;
  max-width: 12ch; text-wrap: balance;
}
.ks-service-fig {
  position: absolute; bottom: -10%; right: -10%;
  width: 64%; pointer-events: none;
}
.ks-service-arrow { width: 36px; height: 36px; border-radius: 999px; display: flex; align-items: center; justify-content: center; border: 1.5px solid currentColor; position: relative; z-index: 2; align-self: flex-end;}
.ks-service-arrow svg { width: 16px; height: 16px; }

.ks-tone-navy   { background: var(--ks-navy);  color: var(--ks-yellow); }
.ks-tone-yellow { background: var(--ks-yellow); color: var(--ks-navy); }
.ks-tone-coral  { background: #ff855f; color: #4a1700; }
.ks-tone-mint   { background: #97ffaf; color: #0e3a17; }
.ks-tone-lilac  { background: #c1bbff; color: #2a1d4a; }
.ks-tone-blue   { background: #4282a4; color: #fffee9; }
.ks-tone-bronze { background: #9e783b; color: #fffee9; }
.ks-tone-aubergine { background: #3e1651; color: var(--ks-yellow); }

.ks-tone-coral .ks-service-fig img,
.ks-tone-coral .ks-fig-recolor img { filter: brightness(0) saturate(100%) invert(8%) sepia(70%) saturate(2800%) hue-rotate(8deg); }
.ks-tone-mint  .ks-service-fig img,
.ks-tone-mint .ks-fig-recolor img  { filter: brightness(0) saturate(100%) invert(15%) sepia(20%) saturate(2000%) hue-rotate(85deg); }
.ks-tone-lilac .ks-service-fig img,
.ks-tone-lilac .ks-fig-recolor img { filter: brightness(0) saturate(100%) invert(13%) sepia(40%) saturate(2400%) hue-rotate(245deg); }
.ks-tone-blue .ks-service-fig img,
.ks-tone-blue .ks-fig-recolor img  { filter: brightness(0) saturate(100%) invert(99%) sepia(11%) saturate(488%) hue-rotate(351deg) brightness(105%); }
.ks-tone-bronze .ks-service-fig img,
.ks-tone-bronze .ks-fig-recolor img { filter: brightness(0) saturate(100%) invert(99%) sepia(11%) saturate(488%) hue-rotate(351deg) brightness(105%); }
.ks-tone-aubergine .ks-service-fig img,
.ks-tone-aubergine .ks-fig-recolor img { filter: none; }
.ks-tone-yellow .ks-service-fig img,
.ks-tone-yellow .ks-fig-recolor img { filter: brightness(0); }

/* ──────────────── FLAGSHIP ──────────────── */
.ks-flagship {
  position: relative; overflow: hidden;
  background: var(--ks-navy); color: var(--ks-yellow);
  padding: 0;
}
.ks-flagship-inner {
  max-width: 1360px; margin: 0 auto;
  display: grid; grid-template-columns: 1.15fr 1fr;
  min-height: 600px; align-items: stretch;
}
.ks-flagship-text {
  padding: 112px 32px 112px 32px;
  display: flex; flex-direction: column; justify-content: center;
}
.ks-flagship-eb { font-size: 14px; text-transform: uppercase; letter-spacing: 0.16em; font-weight: 600; color: rgba(247,254,117,0.7); margin-bottom: 24px;}
.ks-flagship h2 {
  font-size: clamp(48px, 6vw, 104px);
  line-height: 0.94; letter-spacing: -0.025em; font-weight: 500;
  margin: 0 0 8px; color: var(--ks-yellow);
}
.ks-flagship h2 em { font-style: italic; font-weight: 500;}
.ks-flagship-tag { font-size: 18px; font-weight: 600; color: rgba(247,254,117,0.7); text-transform: uppercase; letter-spacing: 0.12em; margin: 4px 0 28px;}
.ks-flagship-desc { font-size: 19px; line-height: 1.5; color: rgba(255,254,233,0.86); max-width: 44ch; margin: 0 0 32px;}
.ks-flagship-list { list-style: none; padding: 0; margin: 0 0 36px; display: flex; flex-direction: column; gap: 14px;}
.ks-flagship-list li { font-size: 17px; display: flex; gap: 18px; align-items: baseline; padding-bottom: 14px; border-bottom: 1px solid rgba(247,254,117,0.16);}
.ks-flagship-list .n { font-weight: 700; color: var(--ks-yellow); font-variant-numeric: tabular-nums; opacity: 0.9; min-width: 32px;}
.ks-flagship-photo { position: relative; aspect-ratio: 1 / 1; min-height: 0; }
.ks-flagship-photo .photo { position: absolute; inset: 56px 56px 56px 0; background-size: cover; background-position: center; }
.ks-flagship-photo .cut {
  position: absolute; inset: 0; background: var(--ks-navy);
  clip-path: polygon(0 0, 9% 0, 0 100%);
}

/* ──────────────── PRINCIPLES (4 numbered) ──────────────── */
.ks-principles-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.ks-principle .pn { display: flex; align-items: center; height: 80px; margin-bottom: 18px;}
.ks-principle .pn img { height: 100%; width: auto;}
.ks-principle h4 { font-size: 24px; font-weight: 600; letter-spacing: -0.012em; line-height: 1.16; margin: 0 0 10px; }
.ks-principle p { font-size: 16px; line-height: 1.5; color: var(--fg-muted); margin: 0; }

/* ──────────────── OUTCOMES (chips) ──────────────── */
.ks-outcomes {
  background: var(--ks-yellow); color: var(--ks-navy);
  position: relative; overflow: hidden;
}
.ks-outcomes-inner { position: relative; z-index: 2; padding: 104px 32px; }
.ks-outcomes-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; }
.ks-outcomes-text { min-width: 0; }
.ks-outcomes h2 { font-size: clamp(38px, 4.2vw, 72px); line-height: 0.99; letter-spacing: -0.025em; font-weight: 500; margin: 0 0 38px; max-width: 16ch; text-wrap: balance; }
.ks-outcomes-photo img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; object-position: center; display: block; }
.ks-outcomes-chips { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px;}
.ks-outcome-chip {
  padding: 14px 24px; border-radius: 999px;
  background: var(--ks-navy); color: var(--ks-yellow);
  font-size: 18px; font-weight: 600; letter-spacing: -0.005em;
}

/* ──────────────── TESTIMONIALS ──────────────── */
.ks-testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;}
.ks-testimonial {
  padding: 36px 32px;
  background: var(--ks-navy); color: var(--ks-yellow);
  display: flex; flex-direction: column; gap: 24px;
  min-height: 320px;
}
.ks-testimonial.alt-yellow { background: var(--ks-yellow); color: var(--ks-navy); }
.ks-testimonial.alt-light  { background: #fff; color: var(--ks-navy); border: 1px solid var(--divider); }
.ks-testimonial .stars { font-size: 18px; letter-spacing: 2px; color: currentColor; }
.ks-testimonial blockquote {
  font-size: 22px; line-height: 1.32; font-weight: 500; letter-spacing: -0.01em;
  margin: 0; flex: 1;
}
.ks-testimonial .who { font-size: 14px; opacity: 0.78; letter-spacing: 0.02em; line-height: 1.4; }
.ks-testimonial .who .b { font-weight: 700; font-size: 16px; display: block; margin-bottom: 2px; letter-spacing: -0.005em; }

/* ──────────────── CONTACT SECTION (home + page) ──────────────── */
.ks-contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;}
.ks-contact-info h2 { color: var(--ks-yellow); }
.ks-contact-meta { display: flex; flex-direction: column; gap: 16px; margin-top: 24px;}
.ks-contact-meta .row { display: flex; gap: 16px; align-items: center; color: rgba(255,254,233,0.92); font-size: 17px; }
.ks-contact-meta .row .ico { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; border-radius: 999px; border: 1px solid rgba(247,254,117,0.4); color: var(--ks-yellow); flex-shrink: 0;}
.ks-contact-meta .row .ico svg { width: 14px; height: 14px;}

.ks-form { display: flex; flex-direction: column; gap: 14px; }
.ks-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ks-field { display: flex; flex-direction: column; gap: 6px; }
.ks-field label { font-size: 12px; font-weight: 600; color: rgba(247,254,117,0.8); text-transform: uppercase; letter-spacing: 0.1em;}
.ks-input, .ks-textarea {
  font-family: inherit; font-size: 16px; padding: 14px 16px;
  border-radius: 8px; border: 1.5px solid rgba(247,254,117,0.2);
  background: rgba(255,254,233,0.06); color: var(--ks-yellow);
  outline: none; transition: border-color 140ms, background 140ms;
}
.ks-input:focus, .ks-textarea:focus { border-color: var(--ks-yellow); background: rgba(247,254,117,0.08);}
.ks-input::placeholder, .ks-textarea::placeholder { color: rgba(247,254,117,0.45);}
.ks-textarea { min-height: 110px; resize: vertical; font-family: inherit; }

.ks-checkgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-top: 4px;}
.ks-check { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 999px; border: 1.5px solid rgba(247,254,117,0.22); cursor: pointer; transition: all 140ms; font-size: 14px; user-select: none;}
.ks-check:hover { border-color: var(--ks-yellow); }
.ks-check input { display: none; }
.ks-check input:checked + .dot { background: var(--ks-yellow); border-color: var(--ks-yellow);}
.ks-check .dot { width: 14px; height: 14px; border-radius: 4px; border: 1.5px solid rgba(247,254,117,0.5); transition: all 140ms;}
.ks-check.checked { border-color: var(--ks-yellow); background: rgba(247,254,117,0.08);}

.ks-radio-row { display: flex; gap: 10px; }
.ks-radio { display: flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 999px; border: 1.5px solid rgba(247,254,117,0.22); cursor: pointer; font-size: 14px;}
.ks-radio.checked { background: var(--ks-yellow); color: var(--ks-navy); border-color: var(--ks-yellow);}

/* On light bg version */
.ks-section.light .ks-form .ks-input, .ks-section.light .ks-form .ks-textarea {
  background: #fff; color: var(--ks-navy); border-color: rgba(24,36,53,0.18);
}
.ks-section.light .ks-form label { color: var(--fg-muted); }
.ks-section.light .ks-form .ks-input:focus, .ks-section.light .ks-form .ks-textarea:focus { border-color: var(--ks-navy); box-shadow: 0 0 0 3px rgba(247,254,117,0.6);}

/* ──────────────── PAGE HEADER ──────────────── */
.ks-page-header {
  background: var(--ks-yellow); color: var(--ks-navy);
  padding: 96px 0 120px;
  position: relative; overflow: hidden;
}
.ks-page-header.dark { background: var(--ks-navy); color: var(--ks-yellow); }
.ks-page-header-inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: end;}
.ks-page-header-fig { display: flex; align-items: flex-end; justify-content: flex-end; height: 100%;}
.ks-page-header-fig img { max-width: 280px; }
.ks-page-header .ks-eyebrow { color: rgba(24,36,53,0.7); }
.ks-page-header.dark .ks-eyebrow { color: rgba(247,254,117,0.7);}

/* ──────────────── TJENESTER PAGE ──────────────── */
.ks-service-detail { padding: 96px 0; border-top: 1px solid var(--divider);}
.ks-service-detail.dark { background: var(--ks-navy); color: var(--ks-yellow); border-top: 0;}
.ks-service-detail-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start;}
.ks-service-photo { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; display: block; margin-bottom: 28px; }
.ks-video-section .ks-h2 { margin-bottom: 8px; }
/* Aktiviteter (3-mnd) */
.ks-activities-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 64px; }
.ks-activity-item { padding: 20px 0; border-bottom: 1px solid rgba(247,254,117,0.18); font-size: 22px; font-weight: 500; letter-spacing: -0.01em; color: var(--ks-yellow); }
/* Bookingseksjon (3-mnd) */
.ks-booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
@media (max-width: 900px) {
  .ks-activities-grid { grid-template-columns: 1fr; gap: 0; }
  .ks-booking-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 640px) {
  .ks-activity-item { font-size: 19px; padding: 16px 0; }
}
.ks-video-wrap { max-width: 380px; margin: 40px auto 0; aspect-ratio: 9 / 16; position: relative; }
.ks-video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; background: #000; }
/* Test-teamet (Testlab) */
.ks-team-grid { display: grid; grid-template-columns: 1fr 0.82fr; gap: 56px; align-items: center; }
.ks-team-text { min-width: 0; }
.ks-team-list { display: flex; flex-direction: column; margin-top: 28px; }
.ks-team-row { display: flex; flex-direction: column; gap: 2px; padding: 15px 0; border-bottom: 1px solid var(--divider); }
.ks-team-row:first-child { border-top: 1px solid var(--divider); }
.ks-team-row .name { font-size: 18px; font-weight: 600; color: var(--ks-navy); letter-spacing: -0.01em; }
.ks-team-row .creds { font-size: 14px; color: var(--fg-muted); }
.ks-team-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center; display: block; }
@media (max-width: 900px) {
  .ks-team-grid { grid-template-columns: 1fr; gap: 36px; }
  .ks-team-photo img { aspect-ratio: 3 / 4; }
}
.ks-courselist { display: flex; flex-direction: column; }
.ks-courselist-row {
  display: grid; grid-template-columns: 150px 1fr; gap: 28px; align-items: baseline;
  padding: 22px 0; border-bottom: 1px solid rgba(247,254,117,0.16);
}
.ks-courselist-row:first-child { border-top: 1px solid rgba(247,254,117,0.16); }
.ks-courselist-cat { font-size: 22px; font-weight: 700; color: var(--ks-yellow); letter-spacing: -0.01em; }
.ks-courselist-items { display: flex; flex-direction: column; gap: 7px; }
.ks-courselist-items span { font-size: 16px; line-height: 1.4; color: rgba(255,254,233,0.84); }
@media (max-width: 640px) {
  .ks-courselist-row { grid-template-columns: 1fr; gap: 8px; padding: 18px 0; }
  .ks-courselist-cat { font-size: 19px; }
}
.ks-service-detail .left .ks-eyebrow { color: var(--fg-muted);}
.ks-service-detail.dark .left .ks-eyebrow { color: rgba(247,254,117,0.7);}
.ks-service-detail h3 { font-size: clamp(36px, 4vw, 56px); line-height: 1.0; letter-spacing: -0.02em; font-weight: 500; margin: 0 0 16px; text-wrap: balance;}
.ks-service-detail p { font-size: 18px; line-height: 1.5; color: var(--fg-muted); margin: 0 0 20px; max-width: 40ch;}
.ks-service-detail.dark p { color: rgba(255,254,233,0.86);}

.ks-pillgrid { display: flex; flex-wrap: wrap; gap: 10px;}
.ks-pill {
  padding: 12px 22px; border-radius: 999px;
  background: var(--ks-yellow-tint); color: var(--ks-navy);
  font-size: 15px; font-weight: 600; letter-spacing: -0.005em;
  border: 1.5px solid transparent;
}
.ks-service-detail.dark .ks-pill { background: rgba(247,254,117,0.1); color: var(--ks-yellow); border-color: rgba(247,254,117,0.2);}
.ks-pill.big { font-size: 18px; padding: 14px 28px; }

.ks-speakers-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;}
.ks-speaker { padding: 20px 24px; background: var(--ks-yellow-tint); border-left: 4px solid var(--ks-navy); }
.ks-service-detail.dark .ks-speaker { background: rgba(247,254,117,0.06); border-left-color: var(--ks-yellow); }
.ks-speaker .name { font-size: 17px; font-weight: 700; letter-spacing: -0.005em; margin-bottom: 4px;}
.ks-speaker .topic { font-size: 14px; color: var(--fg-muted); line-height: 1.4;}
.ks-service-detail.dark .ks-speaker .topic { color: rgba(255,254,233,0.78);}

/* ──────────────── TESTLAB PAGE ──────────────── */
.ks-test-steps { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0; margin-top: 32px; align-items: stretch;}
.ks-test-step { padding: 28px 24px; position: relative;}
.ks-test-step + .ks-test-step::before {
  content: '→'; position: absolute; left: -10px; top: 50%; transform: translateY(-50%);
  font-size: 24px; color: rgba(247,254,117,0.6);
}
.ks-test-step .n { font-size: 13px; font-weight: 700; letter-spacing: 0.16em; opacity: 0.7; margin-bottom: 10px;}
.ks-test-step .t { font-size: 17px; line-height: 1.4; font-weight: 500;}

.ks-testers-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px;}
.ks-tester { padding: 24px 20px; background: var(--ks-yellow-tint); border-radius: 8px; aspect-ratio: 3/4; display: flex; flex-direction: column; justify-content: space-between;}
.ks-tester .name { font-size: 18px; font-weight: 700; letter-spacing: -0.005em; line-height: 1.15; color: var(--ks-navy); margin-bottom: 8px;}
.ks-tester .creds { font-size: 13px; color: var(--fg-muted); line-height: 1.4;}
.ks-tester .num { font-size: 13px; font-weight: 700; letter-spacing: 0.16em; color: var(--fg-muted); }

/* ──────────────── EVENT PAGE ──────────────── */
.ks-events-split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 32px; align-items: start; }
.ks-events-photo { position: sticky; top: 24px; align-self: start; overflow: hidden; }
.ks-events-photo img { width: 100%; height: 100%; display: block; object-fit: cover; }
.ks-events-video { position: relative; width: 100%; max-width: 340px; aspect-ratio: 9 / 16; align-self: start; }
.ks-events-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; background: #000; }
.ks-events-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;}
.ks-event {
  padding: 26px 28px 22px;
  background: var(--ks-navy); color: var(--ks-yellow);
  border-top: 3px solid var(--ks-yellow);
  min-height: 188px;
  display: flex; flex-direction: column;
  transition: transform 240ms var(--ease-snap);
  cursor: pointer;
}
.ks-event:hover { transform: translateY(-4px); }
.ks-event .n { font-size: 13px; font-weight: 700; letter-spacing: 0.16em; opacity: 0.7; margin-bottom: 14px;}
.ks-event h3 { font-size: 27px; font-weight: 600; letter-spacing: -0.015em; line-height: 1.1; margin: 0; max-width: 16ch; text-wrap: balance;}
.ks-event .host { font-size: 15px; opacity: 0.78; line-height: 1.4; margin-top: 8px; }
.ks-event .arrow { font-size: 22px; align-self: flex-end; margin-top: auto; padding-top: 20px;}

/* ──────────────── TEAM PAGE / KOMMER SNART ──────────────── */
.ks-philosophy { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;}
.ks-philosophy-photo { aspect-ratio: 4/5; background-size: cover; background-position: center;}
.ks-coming-soon {
  background: var(--ks-yellow-tint);
  padding: 96px 32px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  border-radius: 8px;
}
.ks-coming-soon h3 { margin: 0;}
.ks-coming-soon p { color: var(--fg-muted); max-width: 36ch; margin: 0;}

/* ──────────────── CONTACT PAGE STEPS ──────────────── */
.ks-steps-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-bottom: 64px;}
.ks-step { display: flex; gap: 20px; align-items: flex-start;}
.ks-step .big-num { font-size: 84px; line-height: 0.85; font-weight: 500; letter-spacing: -0.04em; color: var(--ks-navy); flex-shrink: 0;}
.ks-step .body { padding-top: 14px;}
.ks-step h4 { font-size: 19px; font-weight: 700; letter-spacing: -0.008em; margin: 0 0 6px; line-height: 1.25;}
.ks-step p { font-size: 15px; line-height: 1.5; color: var(--fg-muted); margin: 0;}

/* ──────────────── FOOTER ──────────────── */
.ks-footer { background: var(--ks-navy); color: rgba(255,254,233,0.88); padding: 80px 0 32px;}
.ks-footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 32px; margin-bottom: 56px;}
.ks-footer-logo svg { width: 56px; height: 56px; color: var(--ks-yellow);}
.ks-footer-tag { color: rgba(255,254,233,0.7); font-size: 15px; line-height: 1.5; max-width: 36ch; margin-top: 18px;}
.ks-footer h5 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.16em; font-weight: 700; color: rgba(247,254,117,0.7); margin: 0 0 18px;}
.ks-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px;}
.ks-footer li, .ks-footer li a { color: rgba(255,254,233,0.86); font-size: 15px; }
.ks-footer li a:hover { color: var(--ks-yellow);}
.ks-footer-bot {
  border-top: 1px solid rgba(247,254,117,0.12);
  padding-top: 24px;
  display: flex; justify-content: space-between;
  color: rgba(255,254,233,0.5); font-size: 13px;
}

/* ──────────────── RESPONSIVE ──────────────── */
@media (max-width: 1100px) {
  .ks-services-grid { grid-template-columns: repeat(2, 1fr); }
  .ks-principles-grid, .ks-stats-grid, .ks-events-grid, .ks-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .ks-testers-grid { grid-template-columns: repeat(3, 1fr); }
  .ks-flagship-inner, .ks-contact-inner, .ks-philosophy, .ks-page-header-inner, .ks-hero-inner-split { grid-template-columns: 1fr; }
  .ks-hero-slim .ks-hero-inner-split { grid-template-columns: 1fr; }
  .ks-hero-slim .ks-hero-photo-square { aspect-ratio: 16 / 11; }
  .ks-flagship-photo .photo { inset: 0; }
  .ks-flagship-photo { aspect-ratio: 16 / 11; }
  .ks-outcomes-grid { grid-template-columns: 1fr; gap: 36px; }
  .ks-outcomes-photo img { aspect-ratio: 16 / 10; }
  .ks-events-split { grid-template-columns: 1fr; }
  .ks-events-photo { position: static; max-height: 420px; }
  .ks-events-video { margin: 0 auto; }
  .ks-page-header-fig { justify-content: flex-start;}
  .ks-service-detail-inner { grid-template-columns: 1fr; gap: 24px; }
  .ks-test-steps { grid-template-columns: 1fr; }
  .ks-test-step + .ks-test-step::before { content: '↓'; left: 50%; top: -10px; transform: translateX(-50%); }
  .ks-hero-content { max-width: 100%; }
  .ks-hero-cut { clip-path: polygon(0 0, 100% 0, 100% 70%, 0 70%); }
  .ks-steps-row { grid-template-columns: 1fr; gap: 20px;}
  .ks-footer-grid { grid-template-columns: 1fr 1fr; }
  .ks-section, .ks-stats { padding: 80px 0; }
  .ks-nav-links { display: none; }
  .ks-nav-cta { display: none; }
  .ks-nav-toggle { display: flex; }
  .ks-nav-mobile {
    display: flex; flex-direction: column;
    padding: 8px 32px 24px;
    background: var(--ks-yellow-tint);
    border-top: 1px solid var(--divider);
  }
  .ks-nav-mobile-link {
    text-align: left; background: transparent; border: 0;
    font-family: inherit; font-size: 19px; font-weight: 600; color: var(--ks-navy);
    padding: 16px 0; border-bottom: 1px solid var(--divider); cursor: pointer;
  }
  .ks-nav-mobile-link.active { opacity: 0.55; }
  .ks-nav-mobile-cta {
    margin-top: 20px; background: var(--ks-navy); color: var(--ks-yellow);
    border: 0; padding: 14px 24px; border-radius: 999px;
    font-family: inherit; font-size: 16px; font-weight: 600; cursor: pointer;
  }
}
@media (max-width: 640px) {
  .ks-stats-grid, .ks-principles-grid, .ks-events-grid, .ks-testimonials-grid, .ks-testers-grid, .ks-speakers-grid, .ks-footer-grid { grid-template-columns: 1fr; }
  /* Tjeneste-header: mindre luft før banneret på mobil */
  .ks-page-header { padding: 52px 0 28px; }
  .ks-page-header-fig { display: none; }
  /* Tjeneste-kort: behold kompakt 2-kolonners rutenett på mobil */
  .ks-services-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .ks-service { padding: 14px; }
  .ks-service h3 { font-size: 16px; max-width: 11ch; }
  .ks-service-num { font-size: 11px; }
  .ks-service-arrow { width: 28px; height: 28px; }
  .ks-service-arrow svg { width: 13px; height: 13px; }
  .ks-form .row2 { grid-template-columns: 1fr; }
  .ks-checkgrid { grid-template-columns: 1fr; }
  .ks-hero-inner { padding: 72px 24px 28px; min-height: auto;}
  .ks-hero-slim .ks-hero-inner { padding: 52px 24px 20px; }
  .ks-video-section { padding-top: 44px; }
  .ks-hero { min-height: auto; }
  .ks-hero-inner-split { align-items: start; gap: 32px; }
  .ks-stats { padding: 44px 0 64px; }
  .ks-outcomes-inner { padding: 60px 24px; }
  .ks-outcomes h2 { font-size: clamp(30px, 7.4vw, 44px); line-height: 1.04; margin-bottom: 26px; max-width: 100%; }
  .ks-outcome-chip { font-size: 15px; padding: 11px 18px; }
  .ks-outcomes-photo img { aspect-ratio: 16 / 11; }
  .ks-container { padding: 0 24px;}
}
