/* =========================================================
   TS STRATEGY — LANDING PAGE
   Design-System: TS Strategy Style Guide v1.0
   ========================================================= */

/* ── DESIGN TOKENS ───────────────────────────────────────── */
:root {
  /* Farben — Primär */
  --navy:    #0B1F3A;
  --navy2:   #1A3560;
  --blue:    #1E54A8;
  --blue2:   #3B72CC;
  --gold:    #B07820;

  /* Farben — Neutral */
  --bg:      #F4F7FC;
  --white:   #FFFFFF;
  --text:    #1C2D42;
  --text2:   #4A617A;
  --muted:   #7A90A8;

  /* Farben — Pastel */
  --p-blue:  #D4E4F5;
  --p-sage:  #C8DDD3;
  --p-sand:  #EAE0D2;
  --p-slate: #D0D8E8;
  --code-bg: #EBF2FA;

  /* Status */
  --good:    #2E8C5A;
  --good-bg: rgba(46,140,87,.10);
  --bad:     #C0392B;
  --bad-bg:  rgba(192,57,43,.08);

  /* Linien / Schatten */
  --rule:    rgba(11,31,58,.10);
  --sh:      0 1px 12px rgba(11,31,58,.07);
  --sh2:     0 4px 24px rgba(11,31,58,.10);

  /* Radii */
  --r-card:   10px;
  --r-button: 8px;
  --r-chip:   4px;
  --r-pill:   100px;

  /* Typo */
  --font:    'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono:    'Source Code Pro', ui-monospace, monospace;

  /* Layout */
  --container: 1180px;
  --container-narrow: 820px;
  --section-py: clamp(64px, 8vw, 112px);
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 72px; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue2); }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 { margin: 0; color: var(--navy); line-height: 1.15; letter-spacing: -.02em; }
p { margin: 0; }
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── LAYOUT ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}
.container--narrow { max-width: var(--container-narrow); }

.section {
  padding: var(--section-py) 0;
  position: relative;
}

.section__head { margin-bottom: clamp(36px, 5vw, 56px); }
.section__head--center { text-align: center; }
.section__head--center .sec,
.section__head--center .stripe { justify-content: center; margin-left: auto; margin-right: auto; }
.section__head--center .stripe { display: block; }

.section__title {
  font-size: clamp(1.75rem, 3.6vw, 3rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.08;
  color: var(--navy);
  margin: 14px 0 16px;
}
.section__title--light { color: var(--white); }

.section__lead {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--text2);
  line-height: 1.7;
  max-width: 720px;
  font-weight: 400;
}
.section__lead--center { margin-left: auto; margin-right: auto; text-align: center; }

/* ── SECTION LABEL (Dot + Mono + Stripe) ───────────────── */
.sec {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.sec--center { display: flex; justify-content: center; }
.sec-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}
.sec-dot--light { background: var(--p-blue); }
.sec-txt {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
}
.sec-txt--light { color: var(--p-blue); }

.stripe {
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue2));
  border-radius: 2px;
  margin: 6px 0 18px;
}
.stripe--light {
  background: linear-gradient(90deg, var(--p-blue), rgba(255,255,255,.4));
}
.stripe--center { margin-left: auto; margin-right: auto; }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  min-height: 48px;
  font-family: var(--font);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: -.005em;
  border-radius: var(--r-button);
  border: 1.5px solid transparent;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  text-align: center;
  white-space: nowrap;
}
.btn--small { padding: 10px 18px; min-height: 40px; font-size: .85rem; }
.btn--full  { width: 100%; }

.btn--primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 1px 8px rgba(30,84,168,.18);
}
.btn--primary:hover {
  background: var(--navy2);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(30,84,168,.28);
}

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--rule);
}
.btn--ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--white);
}

/* ── NAV ────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244,247,252,.88);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--rule);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding-top: 10px;
  padding-bottom: 10px;
  gap: 16px;
}
.nav__logo img {
  height: 32px;
  width: auto;
}
@media (max-width: 520px) {
  .nav__inner .btn { padding: 10px 14px; font-size: .8rem; }
}

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: clamp(72px, 10vw, 140px) 0 clamp(56px, 8vw, 96px);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 85% 15%, rgba(30,84,168,.10) 0%, transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(59,114,204,.07) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, #EEF3FA 100%);
}
.hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(11,31,58,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,31,58,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 75% 60% at 50% 30%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 75% 60% at 50% 30%, #000 30%, transparent 80%);
  opacity: .8;
}

.hero__inner { position: relative; }

.hero__headline {
  font-size: clamp(2.2rem, 5.5vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.02;
  color: var(--navy);
  max-width: 18ch;
  margin-top: 8px;
}
.hero__headline .accent {
  color: var(--blue);
  display: block;
}

.hero__lead {
  margin-top: 24px;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--text2);
  line-height: 1.6;
  max-width: 660px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  margin-top: 40px;
  font-size: .88rem;
  color: var(--text2);
}
.hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.trust__dot {
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  display: inline-block;
}

/* ── GRIDS ──────────────────────────────────────────────── */
.grid { display: grid; gap: 18px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 880px) {
  .grid--3 { grid-template-columns: 1fr; }
}

/* ── CARD ───────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid rgba(11,31,58,.08);
  border-radius: var(--r-card);
  padding: 26px 24px 22px;
  box-shadow: var(--sh);
  position: relative;
}
.card--top-blue { border-top: 3px solid var(--blue); }
.card--fill-blue { background: var(--p-blue); border-color: rgba(30,84,168,.15); }
.card--fill-sage { background: var(--p-sage); border-color: rgba(74,155,119,.20); }
.card--fill-sand { background: var(--p-sand); border-color: rgba(176,120,32,.20); }

.card__num {
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: 2.5px;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 12px;
}
.card__title {
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.25;
}
.card__text {
  font-size: .95rem;
  color: var(--text2);
  line-height: 1.65;
}

.tbox-lbl {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 12px;
}
.tbox-lbl--sage { color: #2E6B45; }
.tbox-lbl--sand { color: var(--gold); }

/* ── QUOTE ──────────────────────────────────────────────── */
.quote {
  background: var(--p-blue);
  border-left: 3px solid var(--blue);
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
}
.quote p {
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.55;
  font-weight: 600;
}
.quote--center {
  max-width: 740px;
  margin: 40px auto 0;
  text-align: center;
  border-left: none;
  border-top: 3px solid var(--blue);
  border-radius: 8px;
}
.quote--inline { margin-top: 24px; }

/* ── SEKTION: ROOT CAUSE (Pipelines mit sauberen Pfeilen) ─ */
.pipelines {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 56px;
}
@media (max-width: 880px) {
  .pipelines { grid-template-columns: 1fr; }
}

.pipeline {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-card);
  padding: 26px 24px;
  box-shadow: var(--sh);
}
.pipeline--bad { border-top: 3px solid var(--bad); }
.pipeline--good { border-top: 3px solid var(--good); }

.pipeline__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--r-chip);
  margin-bottom: 22px;
}
.pipeline__label--bad  { background: var(--bad-bg); color: var(--bad); }
.pipeline__label--good { background: var(--good-bg); color: var(--good); }
.pipeline__icon {
  font-size: .85rem;
  line-height: 1;
}

/* Pfeile als separate Spacing-Items zwischen den Pills */
.pipeline__steps {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 0;
}
.pipeline__steps li {
  display: inline-flex;
  align-items: center;
  background: var(--p-blue);
  border: 1px solid rgba(30,84,168,.15);
  color: var(--navy);
  font-size: .88rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--r-button);
  line-height: 1.3;
}
.pipeline--bad .pipeline__steps li {
  background: rgba(192,57,43,.06);
  border-color: rgba(192,57,43,.18);
}
.pipeline--good .pipeline__steps li.pipeline__final,
.pipeline--good .pipeline__steps li:last-child {
  background: var(--good);
  color: var(--white);
  border-color: var(--good);
  font-weight: 600;
}

/* Pfeil-Trenner: außerhalb der Pills, immer auf Card-Hintergrund sichtbar */
.pipeline__steps li + li {
  margin-left: 28px;
  position: relative;
}
.pipeline__steps li + li::before {
  content: "→";
  position: absolute;
  left: -22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-weight: 600;
  font-size: 1rem;
  pointer-events: none;
}

/* ── METRICS ────────────────────────────────────────────── */
.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 880px) {
  .metrics { grid-template-columns: 1fr; }
}
.metric {
  background: var(--white);
  border: 1px solid rgba(11,31,58,.08);
  border-radius: var(--r-card);
  padding: 28px 24px;
  box-shadow: var(--sh);
  text-align: center;
}
.metric__val {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.03em;
  line-height: 1;
}
.metric__lbl {
  font-size: .92rem;
  color: var(--text2);
  margin-top: 12px;
  line-height: 1.5;
}
.metric__src {
  font-family: var(--mono);
  font-size: .74rem;
  letter-spacing: 1.5px;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 14px;
}

/* ── METHODIK: STEP CARDS ──────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}
@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .steps-grid { grid-template-columns: 1fr; }
}

.step-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-card);
  padding: 30px 24px 26px;
  box-shadow: var(--sh);
  position: relative;
}
.step-card--accent {
  border-color: rgba(30,84,168,.30);
  background: linear-gradient(180deg, var(--white) 0%, var(--p-blue) 100%);
}
.step-card__num {
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: 2.5px;
  color: var(--blue);
  background: var(--p-blue);
  border: 1px solid rgba(30,84,168,.20);
  padding: 4px 10px;
  border-radius: var(--r-chip);
  display: inline-block;
  margin-bottom: 16px;
  font-weight: 600;
}
.step-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.step-card__text {
  font-size: .92rem;
  color: var(--text2);
  line-height: 1.6;
}

.method__note {
  margin-top: 32px;
  text-align: center;
  font-family: var(--mono);
  font-size: .85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── SEKTION: FÜR WEN (Fit) ────────────────────────────── */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 880px) {
  .fit-grid { grid-template-columns: 1fr; }
}
.fit-col {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-card);
  padding: 28px 24px;
  box-shadow: var(--sh);
}
.fit-head {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 8px 14px;
  border-radius: 6px;
  margin-bottom: 18px;
  text-transform: uppercase;
  display: inline-block;
}
.fit-head--good { background: var(--good-bg); color: #1E6B44; }
.fit-head--bad  { background: var(--bad-bg);  color: #8B2A20; }

.fit-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  font-size: .95rem;
  color: var(--text);
  line-height: 1.5;
  align-items: flex-start;
}
.fit-list li:last-child { border-bottom: none; }
.fit-mark {
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.3;
  flex-shrink: 0;
}
.fit-mark--good { color: var(--good); }
.fit-mark--bad  { color: var(--bad); }

/* ── SEKTION: CREDIBILITY ──────────────────────────────── */
.cred-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 880px) {
  .cred-grid { grid-template-columns: 1fr; gap: 28px; }
}

.cred-portrait {
  background: var(--white);
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--sh2);
  border: 1px solid var(--rule);
  max-width: 420px;
  width: 100%;
}
.cred-portrait__img-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--p-blue);
}
.cred-portrait__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 8%;
  display: block;
}
.cred-caption {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cred-caption strong { color: var(--navy); font-weight: 700; font-size: 1rem; }
.cred-caption span  {
  color: var(--muted);
  font-size: .82rem;
  font-family: var(--mono);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.cred-points { display: flex; flex-direction: column; gap: 10px; }

.bullet-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid rgba(11,31,58,.08);
  border-radius: 8px;
  box-shadow: var(--sh);
}
.bullet-arrow {
  color: var(--blue);
  font-size: 1.15rem;
  flex-shrink: 0;
  line-height: 1.4;
  font-weight: 600;
}
.bullet-item strong {
  display: block;
  font-size: .98rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.bullet-item span {
  font-size: .88rem;
  color: var(--text2);
  line-height: 1.55;
}

/* ── SEKTION: WHITEPAPER ───────────────────────────────── */
.section--paper {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy2) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.section--paper::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(59,114,204,.18) 0%, transparent 50%),
    radial-gradient(circle at 15% 80%, rgba(212,228,245,.06) 0%, transparent 50%);
  pointer-events: none;
}

.paper-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
}
@media (max-width: 880px) {
  .paper-grid { grid-template-columns: 1fr; gap: 32px; }
}

.paper-text { color: rgba(255,255,255,.92); }
.paper-text .section__title { color: var(--white); margin: 14px 0 20px; }

.paper-lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255,255,255,.82);
  margin-bottom: 24px;
}
.paper-lead strong { color: var(--white); font-weight: 600; }

.paper-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.paper-bullets li {
  position: relative;
  padding-left: 26px;
  font-size: .98rem;
  color: rgba(255,255,255,.82);
  line-height: 1.55;
}
.paper-bullets li strong { color: var(--white); font-weight: 600; }
.paper-bullets li::before {
  content: "→";
  color: var(--p-blue);
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 600;
}

/* Whitepaper Form */
.paper-form-wrap {
  background: var(--white);
  color: var(--text);
  border-radius: var(--r-card);
  padding: 30px 28px;
  box-shadow: var(--sh2);
  border: 1px solid rgba(255,255,255,.10);
}
.paper-form { display: flex; flex-direction: column; gap: 14px; }

.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 520px) {
  .form-row--split { grid-template-columns: 1fr; }
}
.form-field { display: flex; flex-direction: column; gap: 6px; }

.form-row label,
.form-field label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -.005em;
}
.form-row label span[aria-hidden],
.form-field label span[aria-hidden] {
  color: var(--bad);
  font-weight: 700;
}
.form-hint {
  color: var(--muted);
  font-weight: 400;
  font-size: .78rem;
  margin-left: 4px;
}

.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-field input {
  font-family: var(--font);
  font-size: .95rem;
  color: var(--text);
  padding: 12px 14px;
  border: 1.5px solid var(--rule);
  border-radius: var(--r-button);
  background: var(--bg);
  transition: border-color .15s ease, background .15s ease;
  width: 100%;
  min-height: 44px;
}
.form-row input:focus,
.form-field input:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
}
.form-row input.is-error,
.form-field input.is-error {
  border-color: var(--bad);
  background: rgba(192,57,43,.04);
}

.form-row--checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
}
.form-row--checkbox label {
  font-weight: 400;
  color: var(--text2);
  font-size: .84rem;
  line-height: 1.5;
}
.form-row--checkbox input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: var(--blue);
  flex-shrink: 0;
}

.form-msg {
  font-size: .88rem;
  padding: 12px 14px;
  border-radius: 6px;
  margin: 4px 0 0;
  line-height: 1.5;
}
.form-msg--error {
  background: var(--bad-bg);
  color: #8B2A20;
  border: 1px solid rgba(192,57,43,.20);
}
.form-msg--success {
  background: var(--good-bg);
  color: #1E6B44;
  border: 1px solid rgba(46,140,87,.20);
}

.form-note {
  font-size: .78rem;
  color: var(--muted);
  text-align: center;
  margin-top: 8px;
  line-height: 1.5;
}

#wp-submit { margin-top: 8px; }
#wp-submit:disabled { opacity: .65; cursor: not-allowed; transform: none; }

/* ── SEKTION: FAQ ──────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-card);
  box-shadow: var(--sh);
  overflow: hidden;
  transition: border-color .15s ease;
}
.faq-item[open] { border-color: rgba(30,84,168,.30); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  line-height: 1.4;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--blue);
  font-weight: 400;
  line-height: 1;
  flex-shrink: 0;
  transition: transform .2s ease;
}
.faq-item[open] summary::after {
  content: "−";
}
.faq-answer {
  padding: 0 24px 22px;
  color: var(--text2);
  font-size: .98rem;
  line-height: 1.7;
}
.faq-answer strong { color: var(--navy); font-weight: 600; }

/* ── SEKTION: FINALER CTA ──────────────────────────────── */
.section--final {
  background: linear-gradient(180deg, var(--bg) 0%, #EAF0F8 100%);
}
.calendly-wrap {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-card);
  box-shadow: var(--sh2);
  overflow: hidden;
  margin-top: 8px;
  min-height: 720px;
}
.calendly-inline-widget {
  width: 100%;
}
@media (max-width: 768px) {
  .calendly-wrap { min-height: 1000px; }
  .calendly-inline-widget { height: 1000px !important; }
}

.final__note {
  margin-top: 22px;
  text-align: center;
  font-family: var(--mono);
  font-size: .85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.65);
  padding: 56px 0 40px;
  font-size: .85rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
  align-items: center;
}
@media (max-width: 768px) {
  .footer__inner { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .footer__links { justify-content: center; }
}

.footer__brand p {
  margin-top: 12px;
  color: rgba(255,255,255,.55);
  font-size: .85rem;
}
.footer__logo {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .9;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
}
.footer__links a {
  color: rgba(255,255,255,.75);
  font-size: .88rem;
  transition: color .15s ease;
}
.footer__links a:hover { color: var(--white); }

.footer__meta {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  text-align: right;
}
@media (max-width: 768px) {
  .footer__meta { text-align: center; }
}

/* ── KLARO (Cookie-Banner Override) ────────────────────── */
.klaro .cookie-modal,
.klaro .cookie-notice {
  font-family: var(--font) !important;
}
.klaro .cn-buttons .cm-btn-success,
.klaro .cm-btn.cm-btn-success {
  background-color: var(--blue) !important;
}
.klaro .cn-buttons .cm-btn-decline,
.klaro .cm-btn.cm-btn-decline {
  background-color: transparent !important;
  border: 1px solid rgba(255,255,255,.3) !important;
}

/* ── UTILITY ────────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── REDUCED MOTION ────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
