:root {
  /* Brand-Akzent: Cyan (fahlconsulting.de) */
  --cyan: #04c9e5;        /* Brand-Cyan – Buttons, Dots, Checks */
  --cyan-400: #5fdcef;
  --cyan-600: #0a9cb5;    /* tiefer – Icon-Strokes, Step-Nummern */
  --cyan-700: #0883a3;    /* tiefster – Gradient-Start, lesbarer Akzenttext */
  /* Brand-Textfarben */
  --ink: #1d1d1f;
  --slate: #48484f;
  --muted: #86868b;
  --line: #e7edee;
  /* Cyan-Tints für Flächen */
  --tint-bg: #f1fcfe;
  --tint-card: #e1f7fb;
  --footer-bg: #1d1d1f;
  --radius: 16px;
  --maxw: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 { margin: 0; line-height: 1.15; letter-spacing: -0.02em; }

p { margin: 0; }

a { color: inherit; text-decoration: none; }

.accent {
  background: linear-gradient(90deg, var(--cyan-700), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 999px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  cursor: pointer;
}
.btn-sm { padding: 9px 18px; font-size: 0.88rem; }
.btn-primary {
  background: var(--cyan);
  color: #fff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.169);
}
.btn-primary:hover { background: #06b6d4; transform: translateY(-1px); }
.btn-text { color: var(--slate); }
.btn-text:hover { color: var(--cyan-700); }
.btn-outline-light {
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}
.btn-outline-light:hover { border-color: #fff; background: rgba(255, 255, 255, 0.08); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 68px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 1.15rem;
  white-space: nowrap;
}
.brand-icon {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 1.6;
  stroke-linejoin: round;
}
.main-nav {
  display: flex;
  gap: 26px;
  margin-left: auto;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--slate);
}
.main-nav a:hover { color: var(--cyan-700); }
.header-inner .btn-primary { flex-shrink: 0; }

/* ---------- Hero ---------- */
.hero { padding: 72px 0 80px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero h1 { font-size: clamp(2.1rem, 4vw, 3.05rem); font-weight: 700; }
.hero .lead {
  margin-top: 22px;
  color: var(--slate);
  font-size: 1.06rem;
  font-weight: 400;
  max-width: 30rem;
}
.pill-row {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  padding: 0;
  margin: 26px 0 30px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--slate);
}
.pill-row li { display: inline-flex; align-items: center; gap: 8px; }
.pill-row .dot {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--tint-card);
  border: 1.5px solid var(--cyan-400);
  position: relative;
}
.pill-row .dot::after {
  content: "";
  position: absolute; inset: 4px;
  border-radius: 50%;
  background: var(--cyan);
}
.hero-cta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }

/* ---------- Team card ---------- */
.hero-team { position: relative; }
.team-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 20px 50px rgba(4, 120, 150, 0.12);
}
.team-photo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
}
.team-card-title {
  text-align: center;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--cyan-700);
  margin-bottom: 26px;
}
.avatar-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px 14px;
  padding: 0; margin: 0;
}
.avatar-grid li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.avatar-grid li:nth-child(5) { grid-column: 1 / 2; margin-left: 50%; transform: translateX(-50%); }
.avatar {
  width: 60px; height: 60px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.av-glyph { width: 30px; height: 30px; fill: rgba(255, 255, 255, 0.95); }
.avatar-label {
  margin-top: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--slate);
  line-height: 1.25;
}
.a1 { background: linear-gradient(145deg, #45d6ee, #0a9cb5); }
.a2 { background: linear-gradient(145deg, #38bdf8, #0284c7); }
.a3 { background: linear-gradient(145deg, #2dd4bf, #0d9488); }
.a4 { background: linear-gradient(145deg, #67e8f9, #06b6d4); }
.a5 { background: linear-gradient(145deg, #5eead4, #0891b2); }
.a6 { background: linear-gradient(145deg, #7dd3fc, #0ea5e9); }
.a7 { background: linear-gradient(145deg, #22d3ee, #0883a3); }
.team-note {
  text-align: center;
  margin-top: 18px;
  font-style: italic;
  color: var(--cyan-700);
  font-size: 0.92rem;
}

/* ---------- Section helpers ---------- */
.section-title {
  text-align: center;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 700;
  margin-bottom: 48px;
}
.icon-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.icon-line svg {
  width: 22px; height: 22px;
  fill: none;
  stroke: var(--cyan-600);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon-badge {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.icon-badge svg { width: 24px; height: 24px; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.badge-alert { background: var(--tint-card); }
.badge-alert svg { stroke: var(--cyan-600); }
.badge-shield { background: var(--tint-card); }
.badge-shield svg { stroke: var(--cyan-600); }

/* ---------- Problem ---------- */
.problem { background: var(--tint-bg); padding: 72px 0; }
.problem-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  gap: 48px;
}
.problem-intro h2 { font-size: 1.7rem; font-weight: 700; margin: 18px 0 14px; }
.problem-intro p { color: var(--slate); }
.problem-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px 22px;
  padding: 0; margin: 0;
}
.problem-list li { display: flex; flex-direction: column; gap: 4px; }
.problem-list .icon-line {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--line);
  margin-bottom: 6px;
}
.problem-list strong { font-size: 0.95rem; }
.problem-list span { font-size: 0.86rem; color: var(--muted); }
.problem-punch {
  text-align: center;
  margin-top: 54px;
  font-size: 1.3rem;
  font-weight: 700;
}
.problem-punch .accent { font-weight: 700; }

/* ---------- Context ---------- */
.context { padding: 80px 0; }
.context-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.5fr;
  gap: 48px;
}
.context-intro h2 { font-size: 1.7rem; font-weight: 700; margin-bottom: 16px; }
.context-intro p { color: var(--slate); }
.result-box {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  background: var(--tint-card);
  border-radius: 12px;
  padding: 16px 18px;
}
.result-box p { font-size: 0.9rem; color: var(--slate); }
.context-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 20px;
  padding: 0; margin: 0;
}
.context-list li { display: flex; flex-direction: column; gap: 3px; }
.context-list .icon-line {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--tint-card);
  margin-bottom: 6px;
}
.context-list .icon-line svg { width: 19px; height: 19px; }
.context-list strong { font-size: 0.88rem; }
.context-list span { font-size: 0.78rem; color: var(--muted); line-height: 1.4; }

/* ---------- Capabilities ---------- */
.capabilities { padding: 24px 0 84px; }
.cap-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.cap-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align: center;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.cap-card:hover { box-shadow: 0 14px 34px rgba(8, 146, 168, 0.14); transform: translateY(-2px); }
.cap-card .icon-line {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--tint-card);
  margin-bottom: 16px;
}
.cap-card .icon-line svg { width: 24px; height: 24px; }
.cap-card h3 { font-size: 1rem; margin-bottom: 10px; }
.cap-card p { font-size: 0.82rem; color: var(--muted); }

/* ---------- How it works ---------- */
.how { padding: 8px 0 88px; }
.how-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  padding: 0; margin: 0;
  position: relative;
}
.how-grid li { text-align: center; }
.step-icon {
  position: relative;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--tint-card);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.step-icon svg { width: 28px; height: 28px; fill: none; stroke: var(--cyan-600); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.step-num {
  position: absolute;
  top: -6px; left: -6px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--cyan);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.how-grid h3 { font-size: 1rem; margin-bottom: 10px; }
.how-grid p { font-size: 0.84rem; color: var(--muted); }

/* ---------- Outcome / Audience ---------- */
.outcome { padding: 0 0 84px; }
.outcome-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  background: var(--tint-bg);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 48px 44px;
}
.outcome-col h2 { font-size: 1.5rem; font-weight: 700; }
.outcome-sub { margin: 8px 0 22px; font-weight: 600; color: var(--slate); }
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.check-list li {
  position: relative;
  padding-left: 30px;
  font-size: 0.92rem;
  color: var(--slate);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 2px;
  width: 19px; height: 19px;
  border-radius: 50%;
  background: var(--cyan);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}
.dash-mock { margin-top: 26px; border-radius: 14px; overflow: hidden; box-shadow: 0 12px 30px rgba(4, 120, 150, 0.12); }
.dash-mock img { display: block; width: 100%; height: auto; }
.people-mock { margin-top: 18px; }
.people-mock img { display: block; width: 100%; height: auto; }

/* ---------- Amplifier ---------- */
.amplifier { padding: 8px 0 90px; }
.amp-grid {
  display: grid;
  grid-template-columns: 1.3fr 1.4fr;
  gap: 48px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 56px;
}
.amp-intro h2 { font-size: 1.45rem; font-weight: 700; margin: 16px 0 14px; }
.amp-intro p { color: var(--slate); font-size: 0.95rem; }
.amp-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding: 0; margin: 0;
}
.amp-list li { display: flex; flex-direction: column; gap: 5px; }
.amp-list .icon-line {
  width: 42px; height: 42px;
  border-radius: 11px;
  background: var(--tint-card);
  margin-bottom: 6px;
}
.amp-list strong { font-size: 1rem; }
.amp-list span { font-size: 0.85rem; color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer { background: var(--footer-bg); color: #fff; padding: 44px 0 30px; }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.brand-light .brand-icon { stroke: var(--cyan); }
.footer-meta { margin-top: 10px; font-size: 0.82rem; color: rgba(255, 255, 255, 0.55); }
.footer-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.footer-links {
  display: flex;
  gap: 26px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  justify-content: flex-end;
}
.footer-links a:hover { color: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid,
  .problem-grid,
  .context-grid,
  .outcome-card,
  .amp-grid { grid-template-columns: 1fr; }
  .cap-grid { grid-template-columns: repeat(2, 1fr); }
  .context-list { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .amp-grid { gap: 32px; }
}

@media (max-width: 620px) {
  .main-nav { display: none; }
  .header-inner .btn-primary { display: none; }
  .hero { padding: 48px 0 56px; }
  .problem-list { grid-template-columns: repeat(2, 1fr); }
  .cap-grid,
  .how-grid { grid-template-columns: 1fr; }
  .problem-punch { font-size: 1.1rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-links { justify-content: flex-start; }
  .outcome-card { padding: 32px 22px; }
}
