/* ============================================
   Martin Müller – KI-Beratung
   Static Website Styles
   ============================================ */

/* --- Font Face (Inter – self-hosted) --- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/Inter-Regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/Inter-Medium.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/Inter-SemiBold.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/Inter-Bold.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/Inter-ExtraBold.woff2') format('woff2');
}

/* --- CSS Variables --- */
:root {
  --color-primary: #e8702a;
  --color-primary-dark: #d0621f;
  --color-primary-light: #f5a66e;
  --color-text: #1b1b1f;
  --color-text-light: #555;
  --color-text-muted: #6B6B73;
  --color-bg: #ffffff;
  --color-bg-alt: #f7f7f8;
  --color-bg-dark: #1b1b1f;
  --color-border: #e5e5e5;
  --color-success: #2e7d32;
  --color-error: #c62828;
  --font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --max-width: 1100px;
  --header-height: 72px;
}

/* --- Skip Link (Accessibility) --- */
.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-primary);
  color: #fff;
  padding: 8px 16px;
  z-index: 200;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transform: translateY(-100%);
  transition: transform 0.2s;
}

.skip-link:focus {
  transform: translateY(0);
  color: #fff;
}

/* --- Screen Reader Only --- */
.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;
}

/* --- Reset --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-family);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--color-primary-dark);
}

ul {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  line-height: 1.25;
  font-weight: 700;
  color: var(--color-text);
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.2rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }

p {
  margin-bottom: 1rem;
}

/* --- Layout --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section--alt {
  background: var(--color-bg-alt);
}

.section--dark {
  background: var(--color-bg-dark);
  color: #fff;
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: #fff;
}

.section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.section__header p {
  color: var(--color-text-light);
  font-size: 1.1rem;
  max-width: 650px;
  margin: 1rem auto 0;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
  text-align: center;
}

.btn--primary {
  background: var(--color-primary);
  color: #fff;
}

.btn--primary:hover {
  background: var(--color-primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(232, 112, 42, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn--outline:hover {
  background: var(--color-primary);
  color: #fff;
}

.btn--large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: var(--color-bg-dark);
  z-index: 100;
  display: flex;
  align-items: center;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.header__logo {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
}

.header__logo span {
  color: var(--color-primary);
}

.header__cta {
  padding: 0.6rem 1.5rem;
  font-size: 0.9rem;
}

/* --- Hero --- */
.hero {
  padding: calc(var(--header-height) + 5rem) 0 5rem;
  text-align: center;
  background: #1b1b1f;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/hero_background.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27, 27, 31, 0.55) 0%, rgba(45, 45, 50, 0.5) 100%);
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin-bottom: 1.25rem;
  color: #ffffff;
}

.hero__subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  color: #B0B0B8;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

/* --- Icons --- */
.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  background: #FFF3EB;
  border-radius: 10px;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.icon-box svg {
  width: 22px;
  height: 22px;
}

.icon-plain {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.icon-plain svg {
  width: 24px;
  height: 24px;
}

.icon-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  width: 2rem;
  text-align: center;
}

.icon-inline svg {
  width: 20px;
  height: 20px;
}

/* --- Grid Cards --- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.card {
  padding: 2rem;
  border-radius: 12px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  transition: transform 0.25s, box-shadow 0.25s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.card__icon {
  margin-bottom: 0;
  text-align: center;
}

.card h3 {
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--color-text-light);
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* --- Stats/Market Section --- */
.market-section {
  padding: 4rem 0;
}

.stat-highlight {
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.75rem;
  text-shadow: 0 0 40px rgba(232, 112, 42, 0.15);
}

.stat-section {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.stat-section__text p {
  margin-bottom: 1.75rem;
}

.quote {
  border-left: 3px solid var(--color-primary);
  padding: 1.25rem 1.5rem;
  font-style: italic;
  color: #D0D0D6;
  margin: 0;
  background: rgba(232, 112, 42, 0.06);
  border-radius: 0 8px 8px 0;
  max-width: 560px;
}

/* --- Challenge List --- */
.challenge-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.challenge-item {
  text-align: center;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  transition: border-color 0.3s ease;
}

.challenge-item:hover {
  border-color: rgba(232, 112, 42, 0.3);
}

.challenge-item__icon {
  margin-bottom: 0;
}

.challenge-item h3 {
  margin-bottom: 0.5rem;
  color: #fff;
  font-size: 1.1rem;
}

/* --- About Section --- */
.about-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
}

.about__photo {
  max-width: 320px;
}

.about__photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* About Badge Cards */
.about__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 2rem;
}

.about-card {
  background: #F5F5F7;
  border-radius: 10px;
  padding: 20px 16px;
  text-align: center;
}

.about-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #FFF3EB;
  border-radius: 8px;
  color: var(--color-primary);
  margin: 0 auto 12px;
}

.about-card__icon svg {
  width: 20px;
  height: 20px;
}

.about-card__title {
  font-size: 15px;
  font-weight: 700;
  color: #1B1B1F;
  margin-bottom: 4px;
}

.about-card__detail {
  font-size: 13px;
  color: #6B6B73;
}

/* About Extra Credentials */
.about__extra {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.about-extra__item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: #6B6B73;
}

.about-extra__item svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

.about-extra__sep {
  color: #C0C0C5;
  font-size: 13px;
}

/* --- Process Steps --- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  counter-reset: step;
}

.step {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
  counter-increment: step;
}

.step__number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.step h3 {
  margin-bottom: 0.75rem;
}

.step p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* --- Promises --- */
.promises {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.promise {
  padding: 2rem;
  text-align: center;
}

.promise__icon {
  margin-bottom: 0;
}

.promise h3 {
  margin-bottom: 0.75rem;
}

.promise p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* --- Before/After --- */
.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.comparison__col {
  padding: 2rem;
  border-radius: 12px;
}

.comparison__col--before {
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.comparison__col--after {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}

.comparison__col h3 {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.comparison__col--before h3 { color: var(--color-error); }
.comparison__col--after h3 { color: var(--color-success); }

.comparison__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.comparison__item:last-child {
  margin-bottom: 0;
}

.comparison__icon {
  flex-shrink: 0;
  font-weight: 700;
  font-size: 1.1rem;
}

.comparison__col--before .comparison__icon { color: var(--color-error); }
.comparison__col--after .comparison__icon { color: var(--color-success); }

/* --- Contact Form --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-family: var(--font-family);
  font-size: 1rem;
  transition: border-color 0.2s;
  background: var(--color-bg);
  color: var(--color-text);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(232, 112, 42, 0.15);
}

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

.form-group--checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-group--checkbox input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
  accent-color: var(--color-primary);
}

.form-group--checkbox label {
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

.form-group--checkbox label a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-note {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 1rem;
}

.contact-info {
  padding-top: 1rem;
}

.contact-info h3 {
  margin-bottom: 1.5rem;
}

.contact-info__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.contact-info__icon {
  width: 2rem;
  text-align: center;
}

/* --- Section Overline --- */
.section__overline {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-muted);
  text-align: center;
  margin-bottom: 0.75rem;
}

/* --- Package Cards --- */
.package-card {
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-primary);
  border-radius: 10px;
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.package-card h3 {
  margin-bottom: 0.75rem;
}

.package-card__situation {
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.package-card__divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 1.25rem 0;
}

.package-card__benefit {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.package-card__checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.package-card__checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.package-card__checklist li:last-child {
  margin-bottom: 0;
}

.package-card__checklist svg {
  color: var(--color-primary);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

/* --- Section Footer --- */
.section__footer {
  text-align: center;
  margin-top: 3rem;
}

.section__footer-text {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

/* --- FAQ --- */
.faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--color-border);
}

.faq__item:first-child {
  border-top: 1px solid var(--color-border);
}

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
  color: var(--color-text);
  transition: color 0.2s;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::marker {
  display: none;
  content: '';
}

.faq__question::after {
  content: '';
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-left: 1rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%236B6B73' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
}

.faq__item[open] .faq__question::after {
  transform: rotate(180deg);
}

.faq__item[open] .faq__question {
  color: var(--color-primary);
}

.faq__answer {
  padding: 0 0 1.25rem;
}

.faq__answer p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* --- Closing Section (Dark) --- */
.closing__bridge {
  text-align: center;
}

.closing__bridge h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.closing__bridge p {
  color: #B0B0B8;
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
}

/* Dark contact form */
.contact-grid--dark label {
  color: #A0A0A8;
}

.contact-grid--dark input,
.contact-grid--dark textarea {
  background: #3A3A40;
  border-color: #4A4A52;
  color: #FFFFFF;
}

.contact-grid--dark input::placeholder,
.contact-grid--dark textarea::placeholder {
  color: #6B6B73;
}

.contact-grid--dark input:focus,
.contact-grid--dark textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(232, 112, 42, 0.2);
}

.contact-grid--dark .form-group--checkbox label {
  color: #A0A0A8;
}

.contact-grid--dark .form-group--checkbox label a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-grid--dark .form-note {
  color: #9B9BA3;
}

.contact-grid--dark .form-message--success {
  background: rgba(46, 125, 50, 0.15);
  color: #66BB6A;
  border-color: rgba(46, 125, 50, 0.3);
}

.contact-grid--dark .form-message--error {
  background: rgba(198, 40, 40, 0.15);
  color: #EF5350;
  border-color: rgba(198, 40, 40, 0.3);
}

/* Dark contact info sidebar */
.contact-info--dark h3 {
  color: #fff;
}

.contact-info--dark .contact-info__item a {
  color: rgba(255, 255, 255, 0.7);
}

.contact-info--dark .contact-info__item a:hover {
  color: var(--color-primary);
}

.contact-info--dark .contact-info__icon {
  color: var(--color-primary);
}

/* --- Footer --- */
.footer {
  background: var(--color-bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 0 1.5rem;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer__tagline {
  max-width: 450px;
  line-height: 1.7;
}

.footer__name {
  display: block;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.7);
  display: block;
  margin-bottom: 0.5rem;
}

.footer__links a:hover {
  color: var(--color-primary);
}

.footer__legal {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__legal a {
  margin-bottom: 0.5rem;
}

.footer__icon {
  display: inline;
  vertical-align: -3px;
  margin-right: 4px;
}

.danke-linkedin-icon {
  vertical-align: -3px;
  margin-right: 4px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

/* --- Scroll Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Form Messages --- */
.form-message {
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  font-size: 0.9rem;
  display: none;
}

.form-message--success {
  background: #f0fdf4;
  color: var(--color-success);
  border: 1px solid #bbf7d0;
}

.form-message--error {
  background: #fef2f2;
  color: var(--color-error);
  border: 1px solid #fecaca;
}

/* --- Subpage Styles --- */
.subpage {
  padding-top: calc(var(--header-height) + 3rem);
  min-height: 100vh;
}

.subpage-content {
  max-width: 750px;
  margin: 0 auto;
  padding: 2rem 1.5rem 5rem;
}

.subpage-content h1 {
  margin-bottom: 2rem;
  font-size: clamp(1.75rem, 4vw, 2.2rem);
}

.subpage-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.subpage-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.subpage-content p {
  color: var(--color-text-light);
}

.subpage-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.subpage-content ul li {
  margin-bottom: 0.5rem;
  color: var(--color-text-light);
}

.subpage-content a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* --- Danke Page --- */
.danke-page {
  text-align: center;
  padding-top: calc(var(--header-height) + 6rem);
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.danke-page__icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.danke-page h1 {
  margin-bottom: 1rem;
}

.danke-page p {
  color: var(--color-text-light);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 2rem;
}

.danke-contact {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.danke-contact a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-light);
}

.danke-contact a:hover {
  color: var(--color-primary);
}

/* --- KI-Kompass Teaser (index.html) --- */
.hero__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.kompass-teaser {
  background: #fff;
  color: var(--color-text);
  padding: 4rem 0;
  border-top: 1px solid #E0E0E3;
  border-bottom: 1px solid #E0E0E3;
}

.kompass-teaser__grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 3rem;
  align-items: center;
}

.kompass-teaser__chart-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.kompass-teaser__svg {
  width: 100%;
  max-width: 300px;
  height: auto;
}

.kompass-teaser__chart-label {
  font-size: 11px;
  color: #9B9BA3;
  font-style: italic;
  margin-top: 0.5rem;
  text-align: center;
}

.kompass-teaser__content h2 {
  color: var(--color-text);
  margin-bottom: 1rem;
}

.kompass-teaser__content p {
  color: var(--color-text-light);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.kompass-teaser__badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.kompass-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #F5F5F7;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  color: #6B6B73;
}

.kompass-badge svg {
  width: 16px;
  height: 16px;
  color: #E8702A;
  flex-shrink: 0;
}

.kompass-teaser__sub-cta {
  font-size: 12px;
  color: #9B9BA3;
  margin-top: 0.75rem;
  margin-bottom: 0;
}

/* --- KI-Kompass Page --- */
.kompass {
  padding-top: var(--header-height);
  min-height: 100vh;
  background: linear-gradient(135deg, #1b1b1f 0%, #2d2d32 100%);
  color: #fff;
}

.kompass__container {
  max-width: 680px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

/* Progress bar */
.kompass__progress {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 99;
}

.kompass__progress-bar {
  height: 100%;
  background: var(--color-primary);
  transition: width 0.3s ease;
  width: 0;
}

/* Screens */
.kompass__screen {
  display: none;
}

.kompass__screen--active {
  display: block;
}

/* Start screen */
.kompass__start {
  text-align: center;
  padding-top: 4rem;
}

.kompass__start h1 {
  margin-bottom: 1rem;
  color: #fff;
}

.kompass__start-sub {
  color: #B0B0B8;
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.kompass__trust {
  color: #B0B0B8;
  font-size: 0.85rem;
  margin-top: 1.5rem;
}

/* Question screen */
.kompass__question {
  padding-top: 3rem;
}

.kompass__back {
  display: inline-block;
  color: #B0B0B8;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  cursor: pointer;
}

.kompass__back:hover {
  color: var(--color-primary);
}

.kompass__dimension {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.kompass__nav {
  font-size: 0.85rem;
  color: #B0B0B8;
  margin-bottom: 0.75rem;
}

.kompass__question-text {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 2rem;
  color: #fff;
}

/* Answer buttons */
.kompass__answers {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.kompass__answer {
  display: block;
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  text-align: left;
  font-family: var(--font-family);
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: all 0.2s;
  min-height: 48px;
}

.kompass__answer:hover {
  border-color: var(--color-primary);
  background: rgba(232, 112, 42, 0.12);
}

.kompass__answer--selected {
  border: 2px solid var(--color-primary);
  background: rgba(232, 112, 42, 0.18);
}

/* Result screen */
.kompass__result {
  padding-top: 3rem;
}

.kompass__result-header {
  text-align: center;
  margin-bottom: 2rem;
}

.kompass__result-header h1,
.kompass__result-header h2 {
  color: #fff;
}

.kompass__level {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.kompass__score {
  font-size: 0.9rem;
  color: #B0B0B8;
  margin-bottom: 1.5rem;
}

.kompass__result-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  border-left: 4px solid var(--color-primary);
}

/* Chart */
.kompass__chart {
  max-width: 550px;
  margin: 0 auto 2rem;
  padding: 1rem 2rem;
  /* Allow chart to extend beyond narrow container on small screens */
  width: calc(100% + 4rem);
  margin-left: -2rem;
  margin-right: -2rem;
}

/* Benchmark */
.kompass__benchmark {
  text-align: center;
  font-size: 0.85rem;
  color: #B0B0B8;
  margin-bottom: 2rem;
}

/* Recommendation */
.kompass__recommendation {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  margin-bottom: 2.5rem;
}

.kompass__recommendation h3 {
  margin-bottom: 0.75rem;
  color: #fff;
}

.kompass__recommendation p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

/* E-Mail Gate */
.kompass__email-gate {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  margin-bottom: 2.5rem;
}

.kompass__email-gate h3 {
  margin-bottom: 0.5rem;
  color: #fff;
}

.kompass__email-gate > p {
  color: #B0B0B8;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.kompass__email-gate .form-group {
  margin-bottom: 1rem;
}

.kompass__email-gate .form-group label {
  color: rgba(255, 255, 255, 0.9);
}

.kompass__email-gate .form-group input {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.kompass__email-gate .form-group input:focus {
  border-color: var(--color-primary);
}

.kompass__email-gate .form-group input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.kompass__email-gate .form-group--checkbox label {
  color: #B0B0B8;
}

.kompass__email-gate .form-group--checkbox a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.kompass__email-gate .btn--outline {
  width: 100%;
  color: #fff;
  border-color: var(--color-primary);
}

.kompass__email-gate .btn--outline:hover {
  background: var(--color-primary);
  color: #fff;
}

.kompass__email-message {
  padding: 0.75rem;
  border-radius: 8px;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  display: none;
}

/* Final CTA */
.kompass__cta {
  text-align: center;
  padding: 2rem 0;
}

.kompass__cta p {
  color: #B0B0B8;
  font-size: 0.9rem;
  margin-top: 0.75rem;
}

/* --- Error Page (404) --- */
.error-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: calc(100vh - var(--header-height) - 200px);
  padding: 2rem;
  padding-top: calc(var(--header-height) + 2rem);
}

.error-page__code {
  font-size: 6rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.error-page h1 {
  margin-bottom: 1rem;
}

.error-page p {
  color: var(--color-text-light);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 1.5rem;
}

.error-page__buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .grid-3,
  .steps,
  .promises,
  .challenge-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stat-section {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about__photo {
    max-width: 300px;
    margin: 0 auto;
  }

  .about__cards {
    grid-template-columns: 1fr;
  }

  .about__extra {
    flex-direction: column;
    text-align: center;
  }

  .about-extra__sep {
    display: none;
  }

  .comparison {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .kompass-teaser__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .kompass-teaser__chart-wrap {
    order: -1;
  }

  .kompass-teaser__svg {
    max-width: 260px;
  }

  .kompass-teaser__badges {
    justify-content: center;
  }

  .kompass-teaser__content p {
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 16px;
  }

  .section {
    padding: 3.5rem 0;
  }

  .hero {
    padding: calc(var(--header-height) + 3rem) 0 3rem;
  }

  .hero::after {
    background: linear-gradient(135deg, rgba(27, 27, 31, 0.7) 0%, rgba(45, 45, 50, 0.65) 100%);
  }

  .market-section {
    padding: 3rem 0;
  }

  .header__logo {
    font-size: 1rem;
  }

  .header__logo span {
    white-space: nowrap;
  }

  .header__cta {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    white-space: nowrap;
  }

  .btn--large {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    width: 100%;
  }

  .danke-contact {
    flex-direction: column;
    align-items: center;
  }

  .hero__buttons {
    flex-direction: column;
    align-items: center;
  }

  .kompass__question-text {
    font-size: 1.1rem;
  }

  .kompass__chart {
    max-width: 100%;
    width: calc(100% + 3rem);
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    padding: 0.5rem 1rem;
  }

  .kompass__start {
    padding-top: 2rem;
  }

  .kompass-teaser {
    padding: 3rem 0;
  }

  .kompass-teaser__svg {
    max-width: 240px;
  }

  .kompass-teaser__badges {
    gap: 8px;
  }

  .kompass-badge {
    font-size: 12px;
    padding: 5px 10px;
  }

  /* Shorter labels on mobile via CSS swap */
  .kompass-svg__labels text tspan:nth-child(2) {
    display: none;
  }

}
