/* ══════════════════════════════════════════
   ABC-on Website | Stylesheet
   Farben: Petrol + Bernstein (CI)
   ══════════════════════════════════════════ */

:root {
  --petrol: #1a5c6b;
  --petrol-dark: #134a56;
  --petrol-light: #e8f1f3;
  --bernstein: #d4920b;
  --bernstein-light: #f5e6c4;
  --text: #1a1a1a;
  --text-light: #4a4a4a;
  --bg: #ffffff;
  --bg-alt: #f5f5f5;
  --max-width: 1080px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

a {
  color: var(--petrol);
  text-decoration: none;
}

a:hover {
  color: var(--bernstein);
}

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

/* ══════════════════════════════════════════
   Navigation
   ══════════════════════════════════════════ */

.nav {
  background: var(--bg);
  border-bottom: 2px solid var(--petrol-light);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-logo .logo-text {
  font-size: 22px;
  font-weight: 700;
  color: var(--petrol);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-light);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--petrol);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--petrol);
  margin: 5px 0;
  transition: 0.3s;
}

.nav-signet {
  display: flex;
  align-items: center;
}

.nav-signet img {
  height: 36px;
  width: auto;
}

/* ══════════════════════════════════════════
   Hero
   ══════════════════════════════════════════ */

.hero {
  background: var(--petrol);
  color: #ffffff;
  padding: 80px 24px;
  text-align: center;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero h1 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  color: #d0e8ed;
  max-width: 700px;
  margin: 0 auto 32px auto;
  line-height: 1.5;
}

.hero .btn {
  display: inline-block;
  background: var(--bernstein);
  color: var(--petrol-dark);
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.2s;
}

.hero .btn:hover {
  background: #b87d09;
  color: var(--petrol-dark);
}

/* ══════════════════════════════════════════
   Sektionen (allgemein)
   ══════════════════════════════════════════ */

.section {
  padding: 64px 24px;
}

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

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--petrol);
  margin-bottom: 12px;
}

.section .subtitle {
  font-size: 17px;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 700px;
}

/* ══════════════════════════════════════════
   Zielgrößen (3x 50%)
   ══════════════════════════════════════════ */

.zielgroessen {
  display: flex;
  gap: 20px;
  margin: 40px 0;
}

.zielgroesse {
  flex: 1;
  background: var(--petrol-light);
  border-left: 4px solid var(--petrol);
  padding: 24px 20px;
}

.zielgroesse .zahl {
  font-size: 36px;
  font-weight: 700;
  color: var(--petrol);
  line-height: 1;
}

.zielgroesse .label {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 6px;
  line-height: 1.4;
}

/* ══════════════════════════════════════════
   Karten (Leistungen, Warum)
   ══════════════════════════════════════════ */

.cards {
  display: flex;
  gap: 24px;
  margin-top: 32px;
}

.card {
  flex: 1;
  background: var(--bg);
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 28px 24px;
}

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

.card-icon {
  margin-bottom: 16px;
}

.card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--petrol);
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--bernstein);
}

.card .intro {
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 16px;
}

.card ul {
  list-style: none;
  padding: 0;
}

.card ul li {
  font-size: 15px;
  color: var(--text-light);
  padding: 4px 0 4px 18px;
  position: relative;
}

.card ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--bernstein);
  font-weight: 700;
}

.card .ergebnis {
  margin-top: 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--petrol);
}

.card .hinweis {
  font-size: 13px;
  color: var(--text-light);
  font-style: italic;
  margin-top: 6px;
}

/* ══════════════════════════════════════════
   Warum ABC-on (3 Spalten)
   ══════════════════════════════════════════ */

.warum-items {
  display: flex;
  gap: 24px;
  margin-top: 32px;
}

.warum-item {
  flex: 1;
}

.warum-item .warum-icon {
  margin-bottom: 12px;
}

.warum-item .titel {
  font-size: 16px;
  font-weight: 600;
  color: var(--petrol);
  margin-bottom: 6px;
}

.warum-item .text {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.5;
}

/* ══════════════════════════════════════════
   Nächster Schritt / CTA-Block
   ══════════════════════════════════════════ */

.cta-block {
  background: var(--petrol);
  color: #ffffff;
  padding: 48px 24px;
  text-align: center;
}

.cta-block-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.cta-block h2 {
  color: #ffffff;
  margin-bottom: 12px;
}

.cta-block p {
  font-size: 17px;
  color: #d0e8ed;
  margin-bottom: 24px;
}

.cta-block .btn {
  display: inline-block;
  background: var(--bernstein);
  color: var(--petrol-dark);
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.2s;
}

.cta-block .btn:hover {
  background: #b87d09;
  color: var(--petrol-dark);
}

/* ══════════════════════════════════════════
   Footer
   ══════════════════════════════════════════ */

.footer {
  background: var(--petrol-dark);
  color: #a0c4cc;
  padding: 32px 24px;
  font-size: 14px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer a {
  color: #d0e8ed;
}

.footer a:hover {
  color: var(--bernstein);
}

.footer-links {
  display: flex;
  gap: 24px;
}

/* ══════════════════════════════════════════
   Profil-Karten (Über uns)
   ══════════════════════════════════════════ */

.profil {
  margin-bottom: 40px;
}

.profil h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--petrol);
  margin-bottom: 4px;
}

.profil .titel {
  font-size: 14px;
  color: var(--bernstein);
  font-weight: 500;
  margin-bottom: 12px;
}

.profil p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 700px;
}

/* ══════════════════════════════════════════
   Kontakt
   ══════════════════════════════════════════ */

.kontakt-info {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.8;
  margin-top: 24px;
}

.kontakt-info a {
  font-weight: 600;
}

/* ══════════════════════════════════════════
   Lead Magnet Sektion (volle Breite, schlank)
   ══════════════════════════════════════════ */

.report-hint {
  margin-top: 24px;
  background: var(--petrol-light);
  border-left: 3px solid var(--petrol);
  padding: 12px 16px;
  border-radius: 0 4px 4px 0;
  font-size: 14px;
}

.report-hint a {
  color: var(--petrol);
  font-weight: 500;
  text-decoration: none;
}

.report-hint a:hover {
  text-decoration: underline;
}

.leadmagnet {
  background: linear-gradient(180deg, #fbf3dd 0%, #ffffff 100%);
  border: 1px solid rgba(212, 146, 11, 0.25);
  border-radius: 16px;
  padding: 48px 32px 40px;
  margin: 40px auto 0;
  max-width: 780px;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 32px rgba(26, 92, 107, 0.08), 0 2px 6px rgba(26, 92, 107, 0.04);
}

.leadmagnet-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  background: linear-gradient(135deg, #ffffff 0%, #fdf8ec 100%);
  border: 1px solid rgba(26, 92, 107, 0.12);
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(26, 92, 107, 0.10);
  margin-bottom: 20px;
}

.leadmagnet-kicker {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--bernstein);
  margin: 0 0 10px;
}

.leadmagnet-headline {
  font-size: 25px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--petrol-dark);
  margin: 0 auto 12px;
  max-width: 560px;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.leadmagnet-sub {
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-light);
  margin: 0 auto 28px;
  max-width: 520px;
  text-wrap: balance;
}

.leadmagnet-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--petrol);
  color: #ffffff !important;
  padding: 16px 34px;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(26, 92, 107, 0.25), 0 1px 3px rgba(26, 92, 107, 0.10);
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.leadmagnet-cta:hover {
  background: var(--petrol-dark);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(26, 92, 107, 0.32), 0 2px 4px rgba(26, 92, 107, 0.12);
}

.leadmagnet-cta svg {
  transition: transform 0.18s ease;
}

.leadmagnet-cta:hover svg {
  transform: translateX(4px);
}

.leadmagnet-meta {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px 24px;
  margin: 24px 0 0;
  padding: 0;
  font-size: 13px;
  color: var(--text-light);
}

.leadmagnet-meta li {
  position: relative;
  padding-left: 20px;
}

.leadmagnet-meta li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4920b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ══════════════════════════════════════════
   Honeypot (global)
   ══════════════════════════════════════════ */

.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  z-index: -1;
}

/* ══════════════════════════════════════════
   Personen Sektion
   ══════════════════════════════════════════ */

.personen {
  display: flex;
  gap: 40px;
  margin-top: 32px;
}

.person {
  flex: 1;
  text-align: center;
}

.person-foto {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--petrol-light);
  margin-bottom: 16px;
}

.person h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--petrol);
  margin-bottom: 4px;
}

.person .person-titel {
  font-size: 13px;
  color: var(--bernstein);
  font-weight: 500;
  margin-bottom: 10px;
}

.person .person-text {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
  text-align: left;
}

/* ══════════════════════════════════════════
   CTA Slim (mittlerer CTA)
   ══════════════════════════════════════════ */

.cta-slim {
  background: var(--petrol-light);
  padding: 32px 24px;
  text-align: center;
}

.cta-slim-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.cta-slim p {
  font-size: 17px;
  color: var(--petrol);
  margin-bottom: 16px;
}

.cta-slim .btn {
  display: inline-block;
  background: var(--petrol);
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.2s;
}

.cta-slim .btn:hover {
  background: var(--petrol-dark);
  color: #ffffff;
}

/* ══════════════════════════════════════════
   Erfahrung / Stationen
   ══════════════════════════════════════════ */

.stationen {
  display: flex;
  gap: 40px;
  margin-top: 32px;
}

.stationen-spalte {
  flex: 1;
}

.stationen-spalte h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--petrol);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--bernstein);
}

.station {
  margin-bottom: 12px;
  padding-left: 14px;
  border-left: 2px solid var(--petrol-light);
}

.station .firma {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.station .rolle {
  font-size: 13px;
  color: var(--text-light);
}

.station .detail {
  font-size: 12px;
  color: var(--text-light);
  font-style: italic;
}

/* ══════════════════════════════════════════
   Zertifikate
   ══════════════════════════════════════════ */

.zertifikate {
  display: flex;
  gap: 32px;
  margin-top: 24px;
}

.zertifikat {
  flex: 1;
  text-align: center;
}

.zertifikat img {
  max-width: 220px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: transform 0.2s;
}

.zertifikat img:hover {
  transform: scale(1.03);
}

.zertifikat .zert-name {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 8px;
}

/* ══════════════════════════════════════════
   Projekte
   ══════════════════════════════════════════ */

.projekte-kategorie {
  margin-bottom: 32px;
}

.projekte-kategorie h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--bernstein);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.projekt-karten {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.projekt-karte {
  flex: 1;
  min-width: 280px;
  background: var(--bg);
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 20px;
}

.projekt-karte h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--petrol);
  margin-bottom: 8px;
}

.projekt-karte p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
}

/* ══════════════════════════════════════════
   Profil Layout (Über uns Seite)
   ══════════════════════════════════════════ */

.profil-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.profil-sidebar {
  text-align: left;
  max-width: 200px;
  flex: 0 0 200px;
}

.profil-content {
  flex: 1;
}

.profil-text {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .profil-layout {
    flex-direction: column;
    gap: 20px;
  }

  .profil-sidebar {
    max-width: none;
    flex: none;
    text-align: center;
  }
}

/* ══════════════════════════════════════════
   Schmerzpunkte
   ══════════════════════════════════════════ */

.section .cards .card ul li {
  font-size: 15px;
  padding: 6px 0 6px 18px;
}

/* ══════════════════════════════════════════
   Impressum / Datenschutz (Textseiten)
   ══════════════════════════════════════════ */

.textseite {
  max-width: 700px;
}

.textseite h2 {
  margin-bottom: 24px;
}

.textseite h3 {
  font-size: 18px;
  color: var(--petrol);
  margin-top: 24px;
  margin-bottom: 8px;
}

.textseite p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 12px;
}

/* ══════════════════════════════════════════
   Responsive
   ══════════════════════════════════════════ */

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 2px solid var(--petrol-light);
    padding: 16px 24px;
    gap: 16px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .nav-signet {
    display: none;
  }

  .hero {
    padding: 48px 24px;
  }

  .hero h1 {
    font-size: 24px;
  }

  .hero p {
    font-size: 16px;
  }

  .zielgroessen {
    flex-direction: column;
  }

  .cards {
    flex-direction: column;
  }

  .warum-items {
    flex-direction: column;
  }

  .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .leadmagnet { padding: 36px 20px 32px; border-radius: 12px; }
  .leadmagnet-kicker { font-size: 12px; }
  .leadmagnet-headline { font-size: 20px; }
  .leadmagnet-sub { font-size: 15px; }
  .leadmagnet-cta { padding: 14px 26px; font-size: 16px; }
  .leadmagnet-meta { gap: 10px 18px; font-size: 12px; }

  .personen {
    flex-direction: column;
    gap: 32px;
  }

  .stationen {
    flex-direction: column;
  }

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

  .projekt-karten {
    flex-direction: column;
  }

  .projekt-karte {
    min-width: auto;
  }
}
