:root {
  --c-orange: #F2871A;
  --c-orange-dark: #D9720E;
  --c-orange-light: #FCEBD8;
  --c-ink: #33343A;
  --c-body: #6C6E74;
  --c-bg: #F6F5F2;
  --c-line: #E7E4DE;
  --c-white: #FFFFFF;
  --c-blue: #5B7BA6;
  --c-green: #4C9A6A;
}

/* Selbst gehostet statt Google Fonts CDN (kein Drittanbieter-Request, keine
   IP-Uebermittlung an Google beim Seitenaufruf - siehe datenschutz.html). */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('assets/fonts/manrope-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('assets/fonts/manrope-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--c-ink);
  background: var(--c-white);
  width: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--c-line);
}
.site-header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img { width: 34px; height: 34px; }
.brand-name { font-size: 19px; font-weight: 800; letter-spacing: 0.01em; }
.brand-name .ai { color: var(--c-orange); }

.main-nav { display: flex; align-items: center; gap: 32px; flex: 1; justify-content: center; min-width: 0; }
.main-nav a { font-size: 15px; font-weight: 600; color: var(--c-body); white-space: nowrap; }
.main-nav a:hover { color: var(--c-ink); }

.btn {
  display: inline-block;
  font-weight: 700;
  border-radius: 9px;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn-primary { background: var(--c-orange); color: #fff; }
.btn-primary:hover { background: var(--c-orange-dark); }
.btn-outline { border: 1.5px solid var(--c-line); color: var(--c-ink); background: none; }
.btn-outline:hover { border-color: var(--c-orange); color: var(--c-orange-dark); }

.header-cta { flex-shrink: 0; font-size: 14px; padding: 11px 20px; border-radius: 8px; }

.nav-toggle {
  display: none;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: 1px solid var(--c-line);
  border-radius: 8px;
  background: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle svg { width: 20px; height: 20px; }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 8px 24px 20px;
  border-bottom: 1px solid var(--c-line);
  background: #fff;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--c-ink);
  padding: 12px 4px;
  border-bottom: 1px solid var(--c-line);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav .btn { margin-top: 12px; text-align: center; }

/* --- Hero --- */
.hero {
  max-width: 1240px;
  margin: 0 auto;
  padding: 72px 24px 96px;
  display: flex;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
}
.hero-copy { flex: 1 1 480px; min-width: 280px; }
.eyebrow-pill {
  display: inline-block;
  background: var(--c-orange-light);
  color: var(--c-orange-dark);
  font-size: 13px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(30px, 4.6vw, 52px);
  line-height: 1.14;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
}
.hero-sub { font-size: 18px; line-height: 1.6; color: var(--c-body); margin: 0 0 32px; max-width: 540px; }
.hero-ctas { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 18px; }
.hero-ctas .btn { font-size: 16px; padding: 15px 28px; }
.hero-trust { font-size: 14px; color: var(--c-body); margin: 0; }

.hero-visual { flex: 1 1 440px; min-width: 280px; display: flex; justify-content: center; }
.hero-visual img {
  width: 100%;
  max-width: 460px;
  border-radius: 20px;
  border: 1px solid var(--c-line);
  box-shadow: 0 24px 60px -20px rgba(51, 52, 58, 0.22);
}

/* --- Section header --- */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .eyebrow { color: var(--c-orange-dark); font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 12px; }
.section-header h2 { font-size: clamp(26px, 3.4vw, 40px); font-weight: 800; letter-spacing: -0.02em; margin: 0 0 16px; }
.section-header p { font-size: 17px; color: var(--c-body); max-width: 640px; margin: 0 auto; line-height: 1.6; }

.section-alt { background: var(--c-bg); padding: 96px 24px; }
.section { padding: 96px 24px; }

/* --- Problem --- */
.problem-grid { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.problem-card { background: var(--c-white); border: 1px solid var(--c-line); border-radius: 16px; padding: 36px; }
.problem-card .num { font-size: 14px; font-weight: 800; color: var(--c-orange); margin-bottom: 14px; }
.problem-card h3 { font-size: 21px; font-weight: 800; margin: 0 0 12px; }
.problem-card > p { font-size: 15.5px; line-height: 1.65; color: var(--c-body); margin: 0 0 18px; }
.reframe { border-top: 1px solid var(--c-line); padding-top: 16px; }
.reframe-label { font-size: 12.5px; font-weight: 700; color: var(--c-orange-dark); text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 6px; }
.reframe p { font-size: 15px; line-height: 1.6; color: var(--c-ink); margin: 0; }

/* --- Prozess --- */
.process-grid { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.process-step .step-num { width: 44px; height: 44px; border-radius: 50%; background: var(--c-orange-light); color: var(--c-orange-dark); font-weight: 800; font-size: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.process-step h4 { font-size: 16.5px; font-weight: 800; margin: 0 0 8px; }
.process-step p { font-size: 14.5px; line-height: 1.6; color: var(--c-body); margin: 0; }

/* --- Plattform --- */
.module-group-label { font-size: 13px; font-weight: 800; color: var(--c-orange-dark); text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 18px; }
.module-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-bottom: 44px; }
.module-grid:last-child { margin-bottom: 0; }
.module-card { background: var(--c-white); border: 1px solid var(--c-line); border-radius: 14px; padding: 26px; }
.module-card .module-name { font-size: 17px; font-weight: 800; margin-bottom: 10px; color: var(--c-orange); }
.module-card p { font-size: 14.5px; line-height: 1.6; color: var(--c-body); margin: 0; }

/* --- Ergebnisse --- */
.checklist { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; margin-bottom: 40px; }
.checklist-item { display: flex; gap: 14px; }
.checkmark { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: var(--c-orange); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 800; }
.checklist-item p { font-size: 15.5px; line-height: 1.6; margin: 4px 0 0; }

.callout { background: var(--c-orange-light); border-radius: 20px; padding: 44px; display: flex; gap: 36px; flex-wrap: wrap; align-items: center; }
.callout-text { flex: 1 1 400px; min-width: 260px; }
.callout-label { font-size: 13px; font-weight: 800; color: var(--c-orange-dark); text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 12px; }
.callout-quote { font-size: 20px; line-height: 1.5; font-weight: 700; margin: 0 0 14px; color: var(--c-ink); }
.callout-text > p { font-size: 15px; line-height: 1.6; color: var(--c-body); margin: 0; }

.callout-visual { flex: 1 1 260px; min-width: 240px; }
.callout-visual img { width: 100%; border-radius: 14px; border: 1px solid rgba(51, 52, 58, 0.08); box-shadow: 0 24px 60px -20px rgba(51, 52, 58, 0.22); }

/* --- Pilot --- */
.pilot-section { background: var(--c-ink); padding: 96px 24px; }
.pilot-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.pilot-inner .eyebrow { color: var(--c-orange); font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 12px; }
.pilot-inner h2 { font-size: clamp(26px, 3.4vw, 40px); font-weight: 800; letter-spacing: -0.02em; margin: 0 0 18px; color: #fff; }
.pilot-inner > p { font-size: 17px; line-height: 1.6; color: #C8C8CC; max-width: 620px; margin: 0 auto 48px; }

.pilot-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 20px; margin-bottom: 48px; }
.pilot-step { background: #3F4046; border-radius: 14px; padding: 24px 18px; text-align: left; }
.pilot-step .num { font-size: 13px; font-weight: 800; color: var(--c-orange); margin-bottom: 8px; }
.pilot-step .label { font-size: 14.5px; font-weight: 700; color: #fff; }

/* --- Kontaktformular --- */
.pilot-form { background: #fff; border-radius: 18px; padding: 36px; text-align: left; max-width: 560px; margin: 0 auto; }
.pilot-form h3 { font-size: 19px; font-weight: 800; margin: 0 0 6px; }
.pilot-form > p { font-size: 14px; color: var(--c-body); margin: 0 0 24px; }
.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-size: 13px; font-weight: 700; color: var(--c-ink); margin-bottom: 6px; }
.form-row input, .form-row textarea {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  padding: 11px 14px;
  border: 1px solid var(--c-line);
  border-radius: 8px;
  color: var(--c-ink);
}
.form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--c-orange); }
.form-row textarea { resize: vertical; min-height: 96px; }
.form-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-submit { width: 100%; text-align: center; font-size: 16px; padding: 14px 28px; }
.form-privacy-hint { font-size: 12.5px; color: var(--c-body); text-align: center; margin: 12px 0 0; }
.form-privacy-hint a { text-decoration: underline; }
.form-status { font-size: 14px; margin-top: 14px; text-align: center; }
.form-status.success { color: #1a7f4b; }
.form-status.error { color: #c0392b; }

/* --- FAQ --- */
.faq-section { max-width: 820px; margin: 0 auto; padding: 96px 24px; }
.faq-list { display: flex; flex-direction: column; border-top: 1px solid var(--c-line); }
.faq-item { border-bottom: 1px solid var(--c-line); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: inherit;
}
.faq-question span:first-child { font-size: 16.5px; font-weight: 700; color: var(--c-ink); }
.faq-sign { flex-shrink: 0; font-size: 20px; font-weight: 400; color: var(--c-orange); }
.faq-answer { font-size: 15.5px; line-height: 1.65; color: var(--c-body); margin: 0 4px 22px; max-width: 680px; display: none; }
.faq-item.open .faq-answer { display: block; }

/* --- Footer --- */
.site-footer { border-top: 1px solid var(--c-line); padding: 48px 24px 32px; }
.site-footer-inner { max-width: 1240px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 32px; align-items: center; justify-content: space-between; }
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-nav a { font-size: 14px; font-weight: 600; color: var(--c-body); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 13.5px; color: var(--c-body); }
.footer-legal a:hover, .footer-nav a:hover { color: var(--c-ink); }
.copyright { max-width: 1240px; margin: 24px auto 0; font-size: 13px; color: var(--c-body); padding: 0 24px; }

/* --- Legal-Platzhalterseiten --- */
.legal-page { max-width: 820px; margin: 0 auto; padding: 72px 24px 96px; }
.legal-page h1 { font-size: clamp(28px, 3.4vw, 40px); font-weight: 800; margin: 0 0 24px; }
.legal-page h2 { font-size: 19px; font-weight: 800; color: var(--c-ink); margin: 40px 0 12px; }
.legal-page p { font-size: 16px; line-height: 1.65; color: var(--c-body); }
.legal-page ul { margin: 0 0 16px; padding-left: 20px; }
.legal-page li { font-size: 16px; line-height: 1.65; color: var(--c-body); margin-bottom: 6px; }
.legal-page .legal-intro { margin-bottom: 8px; }
.legal-page .legal-note { background: var(--c-orange-light); border-radius: 12px; padding: 18px 20px; font-size: 15px; }

/* --- Responsive --- */
@media (max-width: 860px) {
  .main-nav { display: none; }
  .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .section, .section-alt, .pilot-section { padding: 64px 20px; }
  .hero { padding: 48px 20px 64px; }
  .section-header { margin-bottom: 40px; }
  .callout { padding: 28px; }
}

@media (max-width: 480px) {
  .hero-ctas .btn, .header-cta { padding: 12px 18px; font-size: 14.5px; }
  .pilot-form { padding: 24px; }
}
