@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@400;500;600;700;800&display=swap');

/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 19px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #0d3545;
  background: #fff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 28px; }

section { padding: 80px 0; }

/* ── TYPOGRAPHY ── */
.eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: #8fa5ad; margin-bottom: 12px; display: block;
}
.eyebrow--light { color: #3aaec8; }

h1 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(42px, 5.5vw, 64px); font-weight: 600; line-height: 1.08; letter-spacing: -0.01em; }
h2 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(32px, 4vw, 50px); font-weight: 600; line-height: 1.12; letter-spacing: -0.01em; }
h3 { font-size: 19px; font-weight: 700; line-height: 1.35; }
p  { font-size: 18px; color: #4a5e68; line-height: 1.7; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 4px; font-size: 17px; font-weight: 600;
  cursor: pointer; transition: all 0.15s ease; border: 2px solid transparent;
  white-space: nowrap; text-decoration: none;
}
.btn--large { padding: 16px 36px; font-size: 18px; }
.btn--primary { background: #0d3545; color: #fff; border-color: #0d3545; }
.btn--primary:hover { background: #164a60; border-color: #164a60; }
.btn--outline { background: transparent; color: #0d3545; border-color: #0d3545; }
.btn--outline:hover { background: #0d3545; color: #fff; }
.btn--outline-light { border-color: #1a5570; color: #a8d4e0; }
.btn--outline-light:hover { background: #1a5570; color: #fff; }
.btn--white { background: #fff; color: #0d3545; border-color: #fff; }
.btn--white:hover { background: #f0f0f0; }
.btn--mt { margin-top: 8px; }

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: #fff; border-bottom: 1px solid #c5dce5; padding: 0 24px;
}
.nav__inner {
  max-width: 1080px; margin: 0 auto; height: 88px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.nav__brand { display: flex; align-items: center; line-height: 1; }
.nav__brand img { height: 58px; width: auto; display: block; }
.nav__brand span { display: block; font-size: 13px; color: #5bbccc; font-weight: 400; margin-top: 3px; letter-spacing: 0.01em; }
.nav__links { display: flex; gap: 28px; list-style: none; }
.nav__links a { font-size: 17px; color: #0d3545; font-weight: 600; transition: color 0.15s; letter-spacing: -0.01em; }
.nav__links a:hover { color: #3aaec8; }
.nav__links a[aria-current="page"] { color: #3aaec8; border-bottom: 2px solid #3aaec8; padding-bottom: 2px; }
.nav__links-cta-mobile a { color: #0d3545; font-weight: 700; }
.nav__cta { flex-shrink: 0; }
.nav__cta .btn { padding: 10px 22px; font-size: 16px; }
.nav__back {
  font-size: 16px; color: #5bbccc; font-weight: 500;
  display: flex; align-items: center; gap: 6px; transition: color 0.15s;
}
.nav__back:hover { color: #0d3545; }

.nav__hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; background: none; border: none; cursor: pointer;
  padding: 8px; margin-left: auto; flex-shrink: 0;
}
.nav__hamburger span {
  display: block; width: 24px; height: 2px;
  background: #0d3545; border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav__hamburger.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 720px) {
  .nav {
    padding: 0 24px;
  }

  .nav__inner {
    height: 104px;
  }

  .nav__brand img {
    height: 48px;
  }

  .nav__hamburger { display: flex; }
  .nav__cta { display: none; }
  .nav__links {
    display: none;
    position: absolute; top: 72px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid #c5dce5;
    flex-direction: column; padding: 8px 0 20px; gap: 0;
    box-shadow: 0 6px 16px rgba(13,53,69,0.1);
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: 13px 24px; font-size: 17px; display: block; border-bottom: 1px solid #edf4f6; }
  .nav__links li:last-child a { border-bottom: none; }
  .nav__links-cta-mobile { display: block; }
}
@media (min-width: 721px) {
  .nav__links-cta-mobile { display: none; }
}

/* ── FOOTER ── */
.footer { background: #071f2c; color: #5bbccc; padding: 28px 0; }
.footer__inner {
  max-width: 1080px; margin: 0 auto; padding: 0 28px;
  display: flex; flex-direction: column; gap: 0;
}
.footer__top {
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 16px;
  padding-bottom: 20px; border-bottom: 1px solid #164a60;
}
.footer__brand img { height: 48px; width: auto; filter: brightness(0) invert(1); display: block; margin-bottom: 10px; }
.footer__logo-img { height: 48px; width: auto; filter: brightness(0) invert(1); display: block; margin-bottom: 10px; }
.footer__links { display: flex; gap: 20px; list-style: none; padding-top: 4px; }
.footer__links a { font-size: 15px; color: #5bbccc; transition: color 0.15s; }
.footer__links a:hover { color: #a8d4e0; }
.footer__copy {
  padding-top: 16px; font-size: 14px; color: #5bbccc; text-align: center;
}

/* ── INDEX PAGE ── */

/* ── HERO ── */
.hero {
  background: #0d3545 url('backdrop_draft_v2.jpg') no-repeat center right / cover;
  color: #fff;
  padding: 88px 0 80px;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,53,69,0.72) 45%, rgba(13,53,69,0.35) 100%);
  pointer-events: none;
}
.hero > .container { position: relative; z-index: 1; }
@media (max-width: 720px) {
  .hero { background-position: 85% center; }
  .hero::before { background: linear-gradient(to bottom, rgba(13,53,69,0.45) 0%, rgba(13,53,69,0.65) 70%); }
}

.hero__eyebrow {
  color: #3aaec8;
  margin-bottom: 20px;
}

.hero h1 { color: #fff; margin-bottom: 22px; max-width: 680px; }
.hero p { color: #a8d4e0; font-size: 19px; max-width: 580px; margin-bottom: 36px; line-height: 1.65; }

.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }

.hero__trust {
  display: flex; gap: 32px; flex-wrap: wrap;
  padding-top: 36px; border-top: 1px solid #164a60;
}
.trust-item { display: flex; flex-direction: column; }
.trust-item__value { font-size: 22px; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 3px; }
.trust-item__label { font-size: 13px; color: #5bbccc; }

@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { text-align: center; justify-content: center; }
  .hero__trust { gap: 20px; }
  .trust-item__value { font-size: 18px; }
}

/* ── SERVICES ── */
.services { background: #edf4f6; }
.services__intro {
  font-size: 18px; color: #4a5e68; max-width: 600px; margin: 16px 0 40px;
}
.services__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 48px;
}
.service-card {
  background: #fff; border: 1px solid #c5dce5; border-radius: 6px;
  padding: 28px 26px;
}
.service-card__icon {
  width: 44px; height: 44px; border-radius: 4px;
  background: #0d3545; display: flex; align-items: center;
  justify-content: center; margin-bottom: 18px;
}
.service-card__icon svg { width: 22px; height: 22px; fill: none; stroke: #fff; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { margin-bottom: 10px; font-size: 18px; }
.service-card p { font-size: 15px; color: #4a5e68; line-height: 1.6; }

@media (max-width: 680px) { .services__grid { grid-template-columns: 1fr; } }

@media (max-width: 720px) {
  section { padding: 56px 0; }
  .hero { padding: 56px 0 48px; }
  .nav__links-cta-mobile { display: block; }
  h1 br, h2 br { display: none; }
  p { font-size: 15px !important; line-height: 1.6 !important; }
  h3 { font-size: 17px; }
  .btn { white-space: normal; text-align: center; justify-content: center; }
  .offer__inner { padding: 24px 20px; gap: 20px; }
}
@media (min-width: 721px) {
  .nav__links-cta-mobile { display: none; }
}

/* ── FEATURED OFFER ── */
.offer { background: #fff; }
.offer__inner {
  background: #0d3545; border-radius: 8px; padding: 48px;
  display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center;
}
.offer__label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: #3aaec8; margin-bottom: 10px;
}
.offer__inner h2 { color: #fff; margin-bottom: 16px; }
.offer__inner p { color: #7ecad8; font-size: 17px; line-height: 1.65; margin-bottom: 0; }
.offer__cta { flex-shrink: 0; }
.offer__tagline { font-size: 15px; color: #3aaec8; margin-top: 10px; font-weight: 600; }

@media (max-width: 700px) {
  .offer__inner { grid-template-columns: 1fr; gap: 28px; padding: 32px 24px; }
}

/* ── ABOUT ── */
.about { background: #edf4f6; }
.about__inner {
  display: grid; grid-template-columns: 1fr 280px; gap: 60px; align-items: start;
}
.about__text h2 { margin-bottom: 20px; }
.about__text p { margin-bottom: 14px; }
.about__text p:last-child { margin-bottom: 0; }

.about__card {
  background: #fff; border: 1px solid #c5dce5; border-radius: 6px; padding: 24px;
}
.about__photo {
  width: 200px; height: 200px; border-radius: 50%; object-fit: cover; margin-bottom: 20px; display: block; margin-left: auto; margin-right: auto;
}
.about__name { font-size: 17px; font-weight: 700; margin-bottom: 3px; }
.about__role { font-size: 13px; color: #5bbccc; margin-bottom: 16px; line-height: 1.5; }
.about__contact {
  font-size: 14px; color: #4a5e68; line-height: 1.9;
  border-top: 1px solid #c5dce5; padding-top: 14px;
}
.about__contact a { color: #0d3545; text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 700px) {
  .about__inner,
  .ki-about .about__inner { grid-template-columns: 1fr; }
  .ki-about .about__card { text-align: center; }
  .ki-about .about__photo { margin-left: auto; margin-right: auto; display: block; }
}

/* ── CONTACT STRIP ── */
.contact-strip { background: #0d3545; padding: 56px 0; }
.contact-strip__inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 28px;
}
.contact-strip h2 { color: #fff; margin-bottom: 8px; }
.contact-strip p { color: #7ecad8; font-size: 17px; }
.contact-strip__info {
  text-align: right; font-size: 17px; color: #a8d4e0; line-height: 2;
}
.contact-strip__info a {
  color: #fff; text-decoration: underline; text-underline-offset: 3px;
}
.contact-strip__link {
  font-size: 15px; color: #3aaec8; text-decoration: underline; text-underline-offset: 3px;
}

@media (max-width: 640px) {
  .contact-strip__inner { flex-direction: column; align-items: flex-start; }
  .contact-strip__info { text-align: left; }
}


/* ── KI-KOMMUNIKATIONSCHECK PAGE ── */

.lead {
  font-size: clamp(19px, 2.5vw, 23px);
  color: #4a5e68;
  line-height: 1.65;
  max-width: 640px;
}

/* ─────────────────────────────────────────
   HERO (ki_kommunikationscheck)
───────────────────────────────────────── */
.ki-hero {
  background: #0d3545 url('backdrop_ki_check_v2.jpg') no-repeat center right / cover;
  color: #fff;
  padding: 80px 0 72px;
  position: relative;
}
.ki-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,53,69,0.72) 45%, rgba(13,53,69,0.35) 100%);
  pointer-events: none;
}

@media (max-width: 720px) {
  .ki-hero {
    background-position: 85% center;
  }
  .ki-hero::before {
    background: linear-gradient(to bottom, rgba(13,53,69,0.45) 0%, rgba(13,53,69,0.65) 70%);
  }
}
.ki-hero > .container {
  position: relative;
  z-index: 1;
}

.ki-hero h1 { color: #fff; margin-bottom: 20px; }

.ki-hero .lead { color: #a8d4e0; max-width: 600px; margin-bottom: 32px; }

.ki-hero .hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.ki-hero .hero__trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid #164a60;
}

/* ─────────────────────────────────────────
   HERO EYEBROW (ki_kommunikationscheck)
───────────────────────────────────────── */
.hero__eyebrow-wrap {
  margin-bottom: 24px;
  line-height: 1.3;
}

.hero__eyebrow-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.hero__eyebrow-sub {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #3aaec8;
  margin-top: 4px;
}

/* ─────────────────────────────────────────
   PAIN SECTION
───────────────────────────────────────── */
.pain { background: #edf4f6; }

.pain__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}

@media (max-width: 560px) {
  .pain__grid { grid-template-columns: 1fr; }
}

.pain__card {
  background: #fff;
  border: 1px solid #c5dce5;
  border-radius: 6px;
  padding: 20px;
}

.pain__card-icon {
  margin-bottom: 14px;
}

.pain__card-icon .ti {
  font-size: 36px;
  color: #0d3545;
  display: block;
}

.pain__card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
}

.pain__card p {
  font-size: 15.5px;
  color: #6a7f88;
  line-height: 1.5;
}

/* ─────────────────────────────────────────
   PROMISE / SOLUTION
───────────────────────────────────────── */
.promise {
  background: #0d3545;
  color: #fff;
  padding: 64px 0;
}

.promise__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.promise h2 { color: #fff; margin-bottom: 16px; }
.promise p  { color: #7ecad8; margin-bottom: 20px; }

.promise__result {
  background: #071f2c;
  border: 1px solid #164a60;
  border-radius: 6px;
  padding: 28px;
}

.promise__result-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5bbccc;
  margin-bottom: 16px;
}

.result-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 17px;
  color: #a8d4e0;
  line-height: 1.5;
}

.result-item:last-child { margin-bottom: 0; }

.result-item__num {
  background: #fff;
  color: #0d3545;
  font-size: 13px;
  font-weight: 800;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

@media (max-width: 680px) {
  .promise__inner { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────
   PROCESS
───────────────────────────────────────── */
.process { background: #fff; }

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
  border: 1px solid #c5dce5;
  border-radius: 6px;
  overflow: hidden;
}

.process__step {
  padding: 24px 20px;
  border-right: 1px solid #c5dce5;
  position: relative;
}

.process__step:last-child { border-right: none; }

.process__step-num {
  font-size: 32px;
  font-weight: 800;
  color: #c5dce5;
  line-height: 1;
  margin-bottom: 10px;
}

.process__step h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}

.process__step p {
  font-size: 15px;
  color: #6a7f88;
  line-height: 1.5;
}

.process__step-tag {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #8fa5ad;
  border: 1px solid #a8d4e0;
  padding: 2px 7px;
  border-radius: 10px;
}

@media (max-width: 680px) {
  .process__steps { grid-template-columns: 1fr 1fr; }
  .process__step:nth-child(2) { border-right: none; }
  .process__step:nth-child(1),
  .process__step:nth-child(2) { border-bottom: 1px solid #c5dce5; }
}

/* ─────────────────────────────────────────
   DELIVERABLES
───────────────────────────────────────── */
.deliverables { background: #edf4f6; }

.deliverables__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 40px;
}

.deliv-card {
  background: #fff;
  border: 1px solid #c5dce5;
  border-radius: 6px;
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.deliv-card--highlight {
  background: #0d3545;
  border-color: #0d3545;
  grid-column: span 2;
}

.deliv-card__icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.deliv-card__icon .ti {
  font-size: 33.5px;
  color: #0d3545;
  display: block;
}

.deliv-card--highlight .deliv-card__icon .ti {
  color: #a8d4e0;
}

.ti--lg {
  font-size: 32px;
}

.deliv-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}

.deliv-card p {
  font-size: 15.5px;
  color: #6a7f88;
  line-height: 1.5;
}

.deliv-card--highlight h3 { color: #fff; }
.deliv-card--highlight p  { color: #7ecad8; }

@media (max-width: 580px) {
  .deliverables__grid { grid-template-columns: 1fr; }
  .deliv-card--highlight { grid-column: span 1; }
}

/* ─────────────────────────────────────────
   EXAMPLE BOX
───────────────────────────────────────── */
.example-box {
  background: #edf4f6;
  border-left: 3px solid #0d3545;
  border-radius: 0 6px 6px 0;
  padding: 16px 20px;
  margin: 24px 0 32px;
  max-width: 680px;
}

.example-box__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5bbccc;
  margin-bottom: 8px;
}

.example-box__text {
  font-size: 14.5px;
  color: #1a5570;
  line-height: 1.7;
  margin: 0;
}

/* ─────────────────────────────────────────
   EFFORT vs. RESULT
───────────────────────────────────────── */
.effort { background: #fff; }

.effort__compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 40px;
  border: 2px solid #0d3545;
  border-radius: 6px;
  overflow: hidden;
}

.effort__col {
  padding: 28px;
}

.effort__col:first-child {
  border-right: 2px solid #0d3545;
}

.effort__col-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8fa5ad;
  margin-bottom: 14px;
}

.effort__value {
  font-size: 33.5px;
  font-weight: 800;
  color: #0d3545;
  line-height: 1;
  margin-bottom: 8px;
}

.effort__items {
  list-style: none;
  margin-top: 12px;
}

.effort__items li {
  font-size: 17px;
  color: #4a5e68;
  padding: 5px 0;
  border-bottom: 1px dashed #c5dce5;
  line-height: 1.4;
}

.effort__items li:last-child { border-bottom: none; }

.effort__items li::before {
  content: "→ ";
  color: #0d3545;
  font-weight: 600;
}

@media (max-width: 580px) {
  .effort__compare { grid-template-columns: 1fr; }
  .effort__col:first-child { border-right: none; border-bottom: 2px solid #0d3545; }
}

/* ─────────────────────────────────────────
   FOR WHOM
───────────────────────────────────────── */
.forwhom { background: #edf4f6; }

.forwhom__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 60px;
  margin-top: 40px;
  align-items: start;
}

.forwhom__list {
  list-style: none;
}

.forwhom__list li {
  font-size: 18px;
  color: #164a60;
  padding: 9px 0;
  border-bottom: 1px solid #c5dce5;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.forwhom__list li:last-child { border-bottom: none; }

.forwhom__list li::before {
  content: "✓";
  font-weight: 700;
  color: #0d3545;
  flex-shrink: 0;
  margin-top: 1px;
}

.forwhom__list--no li::before {
  content: "✕";
  color: #b0c4cb;
}

.forwhom__list--no li { color: #8fa5ad; }

.forwhom__col-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8fa5ad;
  margin-bottom: 12px;
}

@media (max-width: 640px) {
  .forwhom__cols { grid-template-columns: 1fr; gap: 32px; }
}

/* ─────────────────────────────────────────
   ABOUT (ki_kommunikationscheck)
───────────────────────────────────────── */
.ki-about { background: #fff; }

.ki-about .about__inner {
  grid-template-columns: 1fr 320px;
}

.ki-about .about__card {
  background: #edf4f6;
}

.ki-about .about__text p { margin-bottom: 14px; }

.about__detail {
  font-size: 15.5px;
  color: #4a5e68;
  line-height: 1.6;
  border-top: 1px solid #a8d4e0;
  padding-top: 14px;
}

.about__detail a {
  color: #1a5570;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 700px) {
  .ki-about .about__inner { grid-template-columns: 1fr; }
  .ki-about .about__card { text-align: center; }
  .ki-about .about__photo { margin-left: auto; margin-right: auto; display: block; }
}

/* ─────────────────────────────────────────
   PRICING
───────────────────────────────────────── */
.pricing { background: #0d3545; color: #fff; }

.pricing h2 { color: #fff; margin-bottom: 8px; }
.pricing > .container > p { color: #7ecad8; margin-bottom: 40px; }

.pricing__box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid #164a60;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 20px;
}

.pricing__main {
  padding: 36px 32px;
  background: #071f2c;
}

.pricing__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5bbccc;
  margin-bottom: 12px;
}

.pricing__price {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}

.pricing__netto {
  font-size: 15.5px;
  color: #5bbccc;
  margin-bottom: 24px;
}

.pricing__netto span {
  color: #7ecad8;
  font-size: 14.5px;
  display: block;
  margin-top: 3px;
}

.pricing__includes {
  list-style: none;
}

.pricing__includes li {
  font-size: 16px;
  color: #a8d4e0;
  padding: 7px 0;
  border-bottom: 1px solid #164a60;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
}

.pricing__includes li:last-child { border-bottom: none; }

.pricing__includes li::before {
  content: "→";
  color: #5bbccc;
  flex-shrink: 0;
}

.pricing__side {
  padding: 36px 28px;
  border-left: 1px solid #164a60;
}

.pricing__not-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5bbccc;
  margin-bottom: 14px;
}

.pricing__not-list {
  list-style: none;
  margin-bottom: 28px;
}

.pricing__not-list li {
  font-size: 15.5px;
  color: #7ecad8;
  padding: 5px 0;
  border-bottom: 1px solid #164a60;
  line-height: 1.45;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.pricing__not-list li:last-child { border-bottom: none; }
.pricing__not-list li::before { content: "✕"; flex-shrink: 0; }

.pricing__note {
  font-size: 14.5px;
  color: #7ecad8;
  line-height: 1.6;
  border-top: 1px solid #164a60;
  padding-top: 14px;
}

.pricing__cta {
  text-align: center;
  margin-top: 28px;
}

.pricing__tagline {
  font-size: 15px;
  color: #3aaec8;
  margin-top: 10px;
  font-weight: 600;
}

@media (max-width: 640px) {
  .pricing__box { grid-template-columns: 1fr; }
  .pricing__side { border-left: none; border-top: 1px solid #164a60; }
}

/* ─────────────────────────────────────────
   FAQ
───────────────────────────────────────── */
.faq { background: #fff; }
.faq h2 { margin-bottom: 40px; }

.faq__item {
  border-bottom: 1px solid #c5dce5;
}

.faq__item input[type="checkbox"] {
  display: none;
}

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: #0d3545;
  user-select: none;
  gap: 16px;
}

.faq__question::after {
  content: "+";
  font-size: 24px;
  font-weight: 400;
  color: #8fa5ad;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq__item input:checked + .faq__question::after {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq__item input:checked ~ .faq__answer {
  max-height: 400px;
}

.faq__answer p {
  padding-bottom: 20px;
  font-size: 17.5px;
  color: #4a5e68;
  line-height: 1.7;
}

/* ─────────────────────────────────────────
   CONTACT FORM
───────────────────────────────────────── */
.contact { background: #edf4f6; }

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}

.contact__left h2 { margin-bottom: 16px; }
.contact__left p  { margin-bottom: 12px; }
.contact__intro { margin-bottom: 24px; }

.contact__bullet {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 17px;
  color: #4a5e68;
  margin-bottom: 10px;
  line-height: 1.5;
}

.contact__bullet::before {
  content: "→";
  font-weight: 700;
  flex-shrink: 0;
}

.contact__form {
  background: #fff;
  border: 1px solid #c5dce5;
  border-radius: 6px;
  padding: 28px;
}

.form-title {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 4px;
}

.form-subtitle {
  font-size: 15.5px;
  color: #8fa5ad;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  color: #1a5570;
  margin-bottom: 5px;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid #a8d4e0;
  border-radius: 4px;
  font-size: 17px;
  font-family: inherit;
  color: #0d3545;
  background: #fff;
  transition: border-color 0.15s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #0d3545;
}

.form-group textarea {
  min-height: 90px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-dsgvo {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 15px;
  color: #6a7f88;
  line-height: 1.5;
}

.form-dsgvo input[type="checkbox"] {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: #0d3545;
  cursor: pointer;
}

.form-dsgvo a { text-decoration: underline; text-underline-offset: 3px; }

.form__submit {
  width: 100%;
}

.form-success {
  display: none;
  background: #e8f4e8;
  border: 1px solid #b8dcb8;
  border-radius: 4px;
  padding: 14px;
  font-size: 17px;
  color: #2d7a2d;
  text-align: center;
  margin-top: 12px;
}

@media (max-width: 720px) {
  .contact__inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}


/* ─────────────────────────────────────────
   RESPONSIVE (ki_kommunikationscheck)
───────────────────────────────────────── */
@media (max-width: 720px) {
  .lead { font-size: 17px !important; line-height: 1.55 !important; }
  .process__steps { grid-template-columns: 1fr; }
  .process__step { border-right: none; border-bottom: 1px solid #c5dce5; }
  .process__step:last-child { border-bottom: none; }
  .promise__inner { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .ki-hero { padding: 56px 0 48px; }
  .ki-hero .hero__ctas { flex-direction: column; }
  .ki-hero .hero__trust { gap: 20px; }
}

/* ─────────────────────────────────────────
   OPTIMIZED KI CHECK VARIANT
───────────────────────────────────────── */
.ki-opt-page :focus-visible {
  outline: 3px solid #f1c84b;
  outline-offset: 3px;
}

.ki-opt-page .nav__links a[aria-current="page"] {
  color: #3aaec8;
}

.ki-opt-page .nav__cta {
  display: block;
}

.ki-hero--opt {
  display: flex;
  align-items: center;
  padding: 56px 0 42px;
}

.ki-hero--opt::before {
  background:
    linear-gradient(to right, rgba(7,31,44,0.8) 0%, rgba(13,53,69,0.72) 48%, rgba(13,53,69,0.28) 100%);
}

.ki-hero__content {
  max-width: 680px;
}

.ki-hero--opt > .container {
  display: grid;
  grid-template-columns: minmax(0, 640px) minmax(280px, 320px);
  gap: 48px;
  align-items: end;
}

.ki-hero--opt h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(42px, 4.7vw, 58px);
}

.ki-hero--opt .lead {
  max-width: 650px;
  font-size: 19px;
  color: #c4e1e8;
  margin-bottom: 24px;
}

.ki-hero--opt .hero__ctas {
  margin-bottom: 18px;
}

.ki-hero__microcopy {
  color: #7ecad8;
  font-size: 15.5px;
  margin: 0 0 22px;
}

.ki-hero--opt .hero__trust--opt {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  background: rgba(7,31,44,0.66);
  border: 1px solid rgba(126,202,216,0.28);
  border-radius: 6px;
  padding: 20px 22px;
  width: 100%;
  max-width: 320px;
  justify-self: start;
  align-self: end;
  margin-bottom: 8px;
}

.hero__trust--opt .trust-item {
  min-width: 108px;
}

.hero__trust--opt .trust-item__label {
  color: #a8d4e0;
}

.opt-outcome {
  background: #0d3545;
  color: #fff;
}

.opt-outcome__intro {
  max-width: 980px;
  margin-bottom: 36px;
}

.opt-outcome h2,
.pricing--opt h2 {
  color: #fff;
}

.opt-outcome__intro h2 {
  margin-bottom: 18px;
}

.opt-outcome p {
  color: #a8d4e0;
}

.opt-outcome__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.opt-result {
  background: #071f2c;
  border: 1px solid #164a60;
  border-radius: 6px;
  padding: 22px 20px;
  min-height: 230px;
}

.opt-result .ti {
  color: #5bbccc;
  font-size: 34px;
  margin-bottom: 16px;
  display: block;
}

.opt-result h3 {
  color: #fff;
  margin-bottom: 8px;
  font-size: 18px;
}

.opt-result p {
  font-size: 15.5px;
  line-height: 1.55;
  margin: 0;
}

.opt-example {
  background: #fff;
  border-radius: 6px;
  border: 1px solid #c5dce5;
  padding: 24px;
}

.opt-example__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a5570;
  margin-bottom: 14px;
}

.opt-example__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.opt-example h3 {
  color: #0d3545;
  margin-bottom: 6px;
}

.opt-example p {
  color: #4a5e68;
  font-size: 16.5px;
  line-height: 1.6;
  margin: 0;
}

.opt-fit {
  background: #edf4f6;
}

.opt-fit__header {
  max-width: 760px;
}

.pricing--opt .pricing__box {
  margin-top: 14px;
}

.pricing--opt .pricing__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.contact--opt .contact__intro {
  max-width: 600px;
}

.ki-opt-page .faq__item input[type="checkbox"] {
  display: initial;
}

.ki-opt-page .faq__item--button .faq__question {
  width: 100%;
  background: transparent;
  border: 0;
  font-family: inherit;
  text-align: left;
}

.ki-opt-page .faq__item--button .faq__question::after {
  content: "+";
}

.ki-opt-page .faq__item--button .faq__question[aria-expanded="true"]::after {
  transform: rotate(45deg);
}

.ki-opt-page .faq__item--button .faq__answer {
  max-height: 0;
}

.ki-opt-page .faq__item--button.is-open .faq__answer {
  max-height: 460px;
}

.ki-opt-page .form-group input,
.ki-opt-page .form-group textarea,
.ki-opt-page .form-group select {
  outline: 2px solid transparent;
  transition: border-color 0.15s, box-shadow 0.15s, outline-color 0.15s;
}

.ki-opt-page .form-group input:focus,
.ki-opt-page .form-group textarea:focus,
.ki-opt-page .form-group select:focus {
  border-color: #0d3545;
  box-shadow: 0 0 0 3px rgba(91,188,204,0.22);
}

.ki-opt-page .form__submit:disabled {
  opacity: 0.72;
  cursor: wait;
}

@media (max-width: 900px) {
  .opt-outcome__grid {
    grid-template-columns: 1fr 1fr;
  }

  .opt-result {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .ki-opt-page .nav {
    padding: 0 24px;
  }

  .ki-opt-page .nav__inner {
    gap: 14px;
    height: 104px;
  }

  .ki-opt-page .nav__brand img {
    height: 48px;
  }

  .ki-opt-page .nav__cta {
    display: block;
  }

  .ki-opt-page .nav__cta .btn {
    font-size: 13px;
    padding: 9px 10px;
  }

  .ki-hero--opt {
    min-height: auto;
    padding: 48px 0 34px;
    background-position: 78% center;
  }

  .ki-hero--opt > .container {
    display: block;
  }

  .ki-hero--opt::before {
    background: linear-gradient(to bottom, rgba(7,31,44,0.48) 0%, rgba(7,31,44,0.86) 78%);
  }

  .ki-hero--opt h1 {
    font-size: clamp(37px, 10vw, 48px);
    line-height: 1.05;
  }

  .ki-hero--opt .lead {
    font-size: 16px !important;
    color: #d5edf2;
  }

  .ki-hero__microcopy {
    display: none;
  }

  .ki-hero--opt .hero__trust--opt {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 14px;
    margin-top: 4px;
    max-width: none;
  }

  .hero__trust--opt .trust-item {
    min-width: 0;
  }

  .opt-outcome__grid,
  .opt-example__cols {
    grid-template-columns: 1fr;
  }

  .opt-example {
    padding: 20px;
  }

  .ki-opt-page .nav__links a[aria-current="page"] {
    border-bottom: 1px solid #c5dce5;
    padding-bottom: 13px;
  }
}

@media (max-width: 420px) {
  .ki-opt-page .container {
    padding: 0 24px;
  }

  .ki-hero--opt .hero__ctas .btn {
    width: 100%;
  }

  .ki-hero--opt .hero__trust--opt {
    grid-template-columns: 1fr 1fr;
  }
}

/* ─────────────────────────────────────────
   OPTIMIZED HOME PAGE VARIANT
───────────────────────────────────────── */
.home-opt-page :focus-visible {
  outline: 3px solid #f1c84b;
  outline-offset: 3px;
}

.home-hero {
  background: #0d3545 url('backdrop_draft_v2.jpg') no-repeat center right / cover;
  color: #fff;
  padding: 42px 0;
  position: relative;
}

.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(7,31,44,0.82) 0%, rgba(13,53,69,0.72) 52%, rgba(13,53,69,0.28) 100%);
  pointer-events: none;
}

.home-hero > .container {
  display: block;
  position: relative;
  z-index: 1;
}

.home-hero__copy {
  max-width: 740px;
}

.home-hero h1 {
  color: #fff;
  font-size: clamp(42px, 4.6vw, 58px);
  line-height: 1.05;
  max-width: 740px;
  margin-bottom: 18px;
}

.home-hero p {
  color: #c4e1e8;
  font-size: 19px;
  line-height: 1.58;
  max-width: 740px;
  margin-bottom: 22px;
}

.home-hero .hero__ctas {
  margin-bottom: 18px;
}

.home-hero__offer-block {
  max-width: 740px;
  padding-top: 14px;
  border-top: 1px solid rgba(126,202,216,0.3);
}

.home-hero__offer-block span {
  display: block;
  color: #5bbccc;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.home-hero__offer-block > a {
  color: #fff;
  display: inline-block;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 8px;
  text-decoration: none;
}

.home-hero__offer-block p {
  color: #a8d4e0;
  font-size: 16px;
  line-height: 1.48;
  max-width: 740px;
  margin-bottom: 12px;
}

.home-hero__offer-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 16px;
}

.home-hero__offer-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.home-hero__offer-facts strong {
  color: #a8d4e0;
  font-size: 14px;
  font-weight: 700;
}

.home-hero__offer-facts strong + strong::before {
  content: "·";
  color: #5bbccc;
  margin-right: 14px;
}

.home-problem {
  background: #fff;
  padding: 68px 0;
}

.home-problem__inner {
  max-width: 840px;
}

.home-problem p {
  max-width: 760px;
  margin-top: 16px;
}

.home-services {
  background: #edf4f6;
}

.home-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 38px;
}

.home-service {
  background: #fff;
  border: 1px solid #c5dce5;
  border-radius: 6px;
  padding: 24px;
}

.home-service .ti {
  color: #0d3545;
  display: block;
  font-size: 36px;
  margin-bottom: 16px;
}

.home-service h3 {
  margin-bottom: 8px;
}

.home-service p {
  color: #6a7f88;
  font-size: 15.5px;
  line-height: 1.55;
  margin: 0;
}

.home-check {
  background: #0d3545;
  color: #fff;
}

.home-check > .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 56px;
  align-items: center;
}

.home-check h2 {
  color: #fff;
  margin-bottom: 16px;
}

.home-check p {
  color: #a8d4e0;
  margin-bottom: 28px;
  max-width: 650px;
}

.home-check__list {
  background: #071f2c;
  border: 1px solid #164a60;
  border-radius: 6px;
  padding: 26px;
}

.home-check__list div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #a8d4e0;
  font-size: 17px;
  line-height: 1.45;
  padding: 12px 0;
  border-bottom: 1px solid #164a60;
}

.home-check__list div:first-child {
  padding-top: 0;
}

.home-check__list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.home-check__list span {
  background: #fff;
  border-radius: 50%;
  color: #0d3545;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 800;
  height: 23px;
  width: 23px;
}

.home-method {
  background: #fff;
}

.home-method__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 38px;
}

.home-method__grid div {
  border-top: 2px solid #0d3545;
  padding-top: 18px;
}

.home-method__grid h3 {
  margin-bottom: 8px;
}

.home-method__grid p {
  color: #6a7f88;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.home-about {
  background: #edf4f6;
}

.home-contact {
  background: #0d3545;
  color: #fff;
  padding: 58px 0;
}

.home-contact__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
}

.home-contact h2 {
  color: #fff;
  margin-bottom: 10px;
}

.home-contact p {
  color: #a8d4e0;
}

.home-contact__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 860px) {
  .home-check > .container,
  .home-contact__inner {
    grid-template-columns: 1fr;
  }

  .home-services__grid,
  .home-method__grid {
    grid-template-columns: 1fr;
  }

  .home-contact__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .home-hero {
    background-position: 78% center;
    padding: 40px 0;
  }

  .home-hero::before {
    background: linear-gradient(to bottom, rgba(7,31,44,0.56) 0%, rgba(7,31,44,0.88) 78%);
  }

  .home-hero h1 {
    font-size: clamp(32px, 8.5vw, 42px);
  }

  .home-hero p {
    font-size: 16px !important;
    line-height: 1.5;
  }

  .home-hero__copy {
    display: flex;
    flex-direction: column;
  }

  .home-hero .hero__ctas {
    margin-bottom: 22px;
    order: 5;
  }

  .home-hero .hero__ctas .btn--outline-light {
    display: none;
  }

  .home-hero__offer-block {
    padding-top: 16px;
    margin-bottom: 22px;
    order: 4;
  }

  .home-hero__offer-block > a {
    font-size: 20px;
  }

  .home-hero__offer-ctas {
    flex-direction: column;
  }

  .home-hero__offer-ctas .btn {
    justify-content: center;
    text-align: center;
  }

  .home-hero__offer-facts {
    display: none;
  }

  .home-hero__offer-facts strong + strong::before {
    content: none;
    margin-right: 0;
  }

  .home-opt-page .btn {
    width: 100%;
  }

  .home-contact__actions {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .home-opt-page .container {
    padding: 0 24px;
  }
}
