@import url("fonts.css");

/* ===== CITRO STRATEGY – SHARED STYLES ===== */
:root {
  --fg: #1432d0;
  --fg-dark: #1028a8;
  --accent1: #03ef62;
  --accent1-soft: #e6fef0;
  --accent2: #38a3a5;
  --accent3: #22577a;
  --bg: #fafbfc;
  --bg-warm: #f4f5f7;
  --bg-card: #ffffff;
  --bg-nav: rgba(250, 251, 252, 0.92);
  --text: #151a2e;
  --text-sec: #555d78;
  --text-muted: #8e94ab;
  --border: rgba(20, 50, 208, 0.1);
  --border-subtle: #e4e7ed;
  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-sans: 'DM Sans', -apple-system, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  background: var(--bg); color: var(--text);
  font-family: var(--font-sans); -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ===== REUSABLES ===== */
.container { max-width: 1200px; width: 100%; margin: 0 auto; }
.container-narrow { max-width: 780px; width: 100%; margin: 0 auto; }
.section { padding: 120px 48px; position: relative; }
.section-sm { padding: 80px 48px; }
.section-alt { background: var(--bg-warm); }
.section-label {
  font-size: 11px; font-weight: 600; letter-spacing: 5px;
  text-transform: uppercase; color: var(--accent2);
  display: flex; align-items: center; gap: 16px; margin-bottom: 24px;
}
.section-label::before {
  content: ''; width: 40px; height: 2px;
  background: var(--accent1); border-radius: 1px;
}
.section-title {
  font-family: var(--font-serif); font-size: clamp(32px, 4vw, 48px);
  font-weight: 400; line-height: 1.2; color: var(--text);
  margin-bottom: 24px; letter-spacing: -0.3px;
}
.section-title .blue { color: var(--fg); }
.section-title em { font-style: italic; color: var(--accent3); }
.section-intro {
  font-size: 17px; font-weight: 300; line-height: 1.75;
  color: var(--text-sec); max-width: 680px; margin-bottom: 64px;
}
.divider { width: 100%; height: 1px; background: var(--border-subtle); }
.text-body { font-size: 16px; line-height: 1.8; color: var(--text-sec); margin-bottom: 24px; }
.text-body strong { color: var(--text); font-weight: 600; }
.text-emphasis { font-size: 16px; line-height: 1.8; color: var(--text); margin-bottom: 24px; }
.text-disclaimer { font-size: 14px; line-height: 1.7; color: var(--text-muted); font-style: italic; margin-top: 24px; }

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 48px; display: flex; align-items: center;
  justify-content: space-between; backdrop-filter: blur(24px);
  background: var(--bg-nav); border-bottom: 1px solid var(--border-subtle);
  overflow: visible;
}
.nav-logo img { height: 28px; width: auto; display: block; }
.nav-right { display: flex; gap: 36px; align-items: center; list-style: none; }
.nav-right a {
  font-size: 13px; font-weight: 400; letter-spacing: 0.3px;
  color: var(--text-sec); text-decoration: none; transition: color 0.3s;
}
.nav-right a:hover { color: var(--fg); }
.nav-right a.active { color: var(--fg); font-weight: 500; }
.nav-cta {
  font-size: 13px !important; font-weight: 600 !important;
  color: #fff !important; background: var(--fg);
  padding: 10px 24px; text-decoration: none; transition: all 0.3s;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--fg-dark); box-shadow: 0 4px 16px rgba(20,50,208,0.2); }
.nav-mobile { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-mobile svg { width: 24px; height: 24px; color: var(--text); }

/* ===== BUTTONS ===== */
.cta-primary {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 36px; background: var(--fg); color: #fff;
  font-family: var(--font-sans); font-size: 14px; font-weight: 600;
  letter-spacing: 0.3px; text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
.cta-primary:hover {
  background: var(--fg-dark); transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(20,50,208,0.2);
}
.cta-primary svg { width: 16px; height: 16px; transition: transform 0.3s; }
.cta-primary:hover svg { transform: translateX(4px); }
.cta-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px; background: transparent; color: var(--text-sec);
  font-family: var(--font-sans); font-size: 14px; font-weight: 400;
  letter-spacing: 0.3px; text-decoration: none;
  border: 1px solid var(--border-subtle); transition: all 0.3s;
}
.cta-secondary:hover { border-color: var(--accent2); color: var(--accent2); }
.cta-secondary svg { width: 14px; height: 14px; opacity: 0.5; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; padding: 160px 48px 80px;
  position: relative; overflow-x: clip; overflow-y: visible;
}
.hero-glow-1 {
  position: absolute; top: -10%; right: -10%; width: 55%; height: 70%;
  background: radial-gradient(ellipse, rgba(3,239,98,0.05), transparent 65%);
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute; bottom: -15%; left: -8%; width: 45%; height: 55%;
  background: radial-gradient(ellipse, rgba(20,50,208,0.04), transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: var(--border-subtle);
}
.hero-inner {
  max-width: 1200px; width: 100%; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 400px;
  gap: 80px; align-items: center; position: relative; z-index: 1;
}
.hero-text { animation: fadeUp 1s ease-out 0.2s both; }
.hero-label {
  font-size: 11px; font-weight: 600; letter-spacing: 5px;
  text-transform: uppercase; color: var(--accent2);
  margin-bottom: 32px; display: flex; align-items: center; gap: 16px;
}
.hero-label::before { content:''; width: 40px; height: 2px; background: var(--accent1); border-radius: 1px; }
.hero-headline {
  font-family: var(--font-serif); font-size: clamp(42px, 5vw, 62px);
  font-weight: 400; line-height: 1.14; color: var(--text);
  margin-bottom: 32px; letter-spacing: -0.5px;
}
.hero-headline .line-blue { color: var(--fg); }
.hero-headline em { font-style: italic; color: var(--accent3); }
.hero-subline {
  font-size: 17px; font-weight: 300; line-height: 1.75;
  color: var(--text-sec); margin-bottom: 20px; max-width: 540px;
}
.hero-positioning {
  font-size: 14px; font-weight: 500; line-height: 1.75;
  color: var(--text); margin-bottom: 48px; max-width: 540px;
}
.hero-ctas { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.hero-visual { position: relative; animation: fadeUp 1s ease-out 0.5s both; }
.photo-frame {
  width: 100%; aspect-ratio: 3/4; background: var(--bg-warm);
  border: 1px solid var(--border-subtle); position: relative; overflow: hidden;
}
.photo-frame::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(3,239,98,0.03), transparent 40%, rgba(20,50,208,0.02));
}
.photo-placeholder {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 20px;
}
.photo-placeholder .icon-ph { width: 64px; height: 64px; opacity: 0.12; }
.photo-placeholder span { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); opacity: 0.5; }
.photo-caption { padding: 20px 0 0; font-size: 13px; color: var(--text-muted); }
.photo-caption strong { color: var(--text-sec); font-weight: 500; }
.photo-bar {
  position: absolute; left: 0; top: 10%; bottom: 10%;
  width: 3px; background: linear-gradient(to bottom, var(--accent1), var(--fg));
  border-radius: 2px; opacity: 0.6;
}
.scroll-hint {
  position: absolute; bottom: 100px; left: 48px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: fadeUp 1s ease-out 1.2s both; z-index: 1;
}
.scroll-hint span {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--text-muted); writing-mode: vertical-rl; transform: rotate(180deg);
}
.scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, var(--fg), transparent); animation: scrollPulse 2.5s ease-in-out infinite; }

/* ===== METRICS ===== */
.metrics { padding: 0 48px 80px; z-index: 1; }
.metrics-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); }
.metric {
  padding: 40px 28px; text-align: center; position: relative;
  transition: all 0.4s; border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.metric + .metric { border-left: 1px solid var(--border-subtle); }
.metric::after {
  content: ''; position: absolute; top: 0; left: 50%;
  transform: translateX(-50%); width: 0; height: 2px;
  background: var(--fg); transition: width 0.4s;
}
.metric:hover::after { width: 32px; }
.metric:hover { background: var(--bg-card); }
.metric-value {
  font-family: var(--font-serif); font-size: 30px; color: var(--fg);
  margin-bottom: 10px; letter-spacing: -0.5px; transition: color 0.4s;
}
.metric:hover .metric-value { color: var(--accent3); }
.metric-label {
  font-size: 11px; font-weight: 400; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text-muted); line-height: 1.7;
}

/* ===== TRUST ===== */
.trust-line { padding: 0 48px 0; }
.trust-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 24px; padding: 28px 0; }
.trust-badge { display: flex; align-items: center; gap: 8px; font-size: 12px; letter-spacing: 0.5px; color: var(--text-muted); }
.trust-badge svg { width: 15px; height: 15px; color: var(--accent2); }
.trust-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--border-subtle); }

/* ===== TWO-COL CARDS ===== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.access-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  padding: 48px 40px; position: relative; transition: box-shadow 0.4s;
}
.access-card:hover { box-shadow: 0 8px 40px rgba(20,50,208,0.06); }
.access-tag {
  display: inline-block; font-size: 10px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; padding: 6px 14px; margin-bottom: 24px;
}
.access-tag-primary { background: rgba(20,50,208,0.08); color: var(--fg); }
.access-tag-secondary { background: rgba(56,163,165,0.1); color: var(--accent2); }
.access-card h3 {
  font-family: var(--font-serif); font-size: 28px; font-weight: 400;
  color: var(--text); margin-bottom: 20px; line-height: 1.3;
}
.access-card p { font-size: 15px; line-height: 1.75; color: var(--text-sec); margin-bottom: 16px; }
.card-accent { position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.accent-blue { background: linear-gradient(90deg, var(--fg), var(--accent3)); }
.accent-teal { background: linear-gradient(90deg, var(--accent2), var(--accent3)); }
.card-result {
  font-size: 14px; font-weight: 500; color: var(--text);
  padding-top: 16px; border-top: 1px solid var(--border-subtle);
  margin-top: 20px; line-height: 1.7;
}

/* ===== SERVICE / PROCESS / PRINCIPLES ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.service-card {
  padding: 40px 32px; background: var(--bg-card);
  border: 1px solid var(--border-subtle); position: relative; transition: all 0.4s;
}
.service-card:hover { box-shadow: 0 8px 40px rgba(20,50,208,0.06); transform: translateY(-4px); }
.service-icon { width: 40px; height: 40px; margin-bottom: 24px; color: var(--fg); opacity: 0.7; }
.service-card h3 { font-size: 16px; font-weight: 600; color: var(--text); margin-bottom: 16px; line-height: 1.4; }
.service-card p { font-size: 14px; line-height: 1.75; color: var(--text-sec); }

.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; counter-reset: step; }
.step { counter-increment: step; position: relative; padding-top: 48px; }
.step::before { content: counter(step); position: absolute; top: 0; left: 0; font-family: var(--font-serif); font-size: 42px; color: var(--fg); opacity: 0.12; line-height: 1; }
.step h3 { font-size: 16px; font-weight: 600; color: var(--text); margin-bottom: 12px; }
.step p { font-size: 14px; line-height: 1.75; color: var(--text-sec); }

/* ===== REASONS ===== */
.reasons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.reason { padding: 0 0 40px 0; border-bottom: 1px solid var(--border-subtle); }
.reason h3 { font-family: var(--font-serif); font-size: 22px; font-weight: 400; color: var(--text); margin-bottom: 12px; line-height: 1.3; }
.reason p { font-size: 15px; line-height: 1.75; color: var(--text-sec); }

/* ===== AUDIENCES ===== */
.audiences-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.audience-card { padding: 36px 32px; border: 1px solid var(--border-subtle); background: var(--bg-card); transition: all 0.3s; }
.audience-card:hover { border-color: var(--fg); }
.audience-card h3 { font-size: 16px; font-weight: 600; color: var(--fg); margin-bottom: 12px; }
.audience-card p { font-size: 14px; line-height: 1.75; color: var(--text-sec); }

/* ===== TEAM ===== */
.team-grid { display: grid; grid-template-columns: 300px 1fr; gap: 64px; align-items: start; }
.team-photo { width: 100%; aspect-ratio: 3/4; background: var(--bg-warm); border: 1px solid var(--border-subtle); position: relative; overflow: hidden; }
.team-info h3 { font-family: var(--font-serif); font-size: 32px; font-weight: 400; color: var(--text); margin-bottom: 8px; }
.team-role { font-size: 14px; color: var(--accent2); letter-spacing: 0.5px; margin-bottom: 24px; }
.team-info p { font-size: 15px; line-height: 1.75; color: var(--text-sec); margin-bottom: 16px; }
.team-linkedin { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--fg); text-decoration: none; font-weight: 500; transition: color 0.3s; }
.team-linkedin:hover { color: var(--fg-dark); }
.team-linkedin svg { width: 16px; height: 16px; }

/* ===== KH CARDS ===== */
.kh-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.kh-card { padding: 36px 32px; border: 1px solid var(--border-subtle); background: var(--bg-card); transition: all 0.3s; }
.kh-card:hover { border-color: var(--fg); transform: translateY(-4px); box-shadow: 0 8px 32px rgba(20,50,208,0.06); }
.kh-tag { font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--accent2); margin-bottom: 16px; }
.kh-card h3 { font-family: var(--font-serif); font-size: 20px; font-weight: 400; color: var(--text); margin-bottom: 12px; line-height: 1.3; }
.kh-card p { font-size: 14px; line-height: 1.7; color: var(--text-sec); margin-bottom: 20px; }
.kh-link { font-size: 13px; font-weight: 600; color: var(--fg); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.kh-link svg { width: 14px; height: 14px; transition: transform 0.3s; }
.kh-link:hover svg { transform: translateX(4px); }

/* ===== PAGE HERO (subpages) ===== */
.page-hero {
  padding: 160px 48px 80px; position: relative;
  border-bottom: 1px solid var(--border-subtle);
}
.page-hero .hero-glow-1, .page-hero .hero-glow-2 { position: absolute; pointer-events: none; }
.page-hero .hero-glow-1 { top: -10%; right: -10%; width: 55%; height: 70%; background: radial-gradient(ellipse, rgba(3,239,98,0.05), transparent 65%); }
.page-hero .hero-glow-2 { bottom: -15%; left: -8%; width: 45%; height: 55%; background: radial-gradient(ellipse, rgba(20,50,208,0.04), transparent 65%); }
.page-breadcrumb {
  font-size: 12px; color: var(--text-muted); margin-bottom: 24px;
  display: flex; align-items: center; gap: 8px;
}
.page-breadcrumb a { color: var(--text-muted); text-decoration: none; }
.page-breadcrumb a:hover { color: var(--fg); }

/* ===== ARTICLE ===== */
.article-content h2 {
  font-family: var(--font-serif); font-size: 28px; font-weight: 400;
  color: var(--text); margin: 48px 0 20px; line-height: 1.3;
}
.article-content h2:first-child { margin-top: 0; }
.article-content p { font-size: 16px; line-height: 1.8; color: var(--text-sec); margin-bottom: 20px; }
.article-content p strong { color: var(--text); }
.article-sidebar { position: sticky; top: 100px; }
.article-sidebar-card {
  padding: 32px; background: var(--bg-warm); border: 1px solid var(--border-subtle);
}
.article-sidebar-card h4 { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 16px; }
.article-sidebar-card p { font-size: 13px; line-height: 1.7; color: var(--text-sec); margin-bottom: 20px; }
.article-grid { display: grid; grid-template-columns: 1fr 320px; gap: 64px; align-items: start; }
.article-meta { font-size: 12px; color: var(--text-muted); margin-bottom: 32px; display: flex; gap: 16px; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--bg-warm); color: var(--text);
  padding: 96px 48px; text-align: center;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.cta-banner .section-label { justify-content: center; }
.cta-banner .section-title { margin-bottom: 20px; }
.cta-banner p { font-size: 17px; font-weight: 300; line-height: 1.75; color: var(--text-sec); max-width: 560px; margin: 0 auto 40px; }
.cta-phone { margin-top: 24px; font-size: 14px; color: var(--text-muted); }
.cta-phone a { color: var(--fg); text-decoration: none; }
.cta-phone a:hover { color: var(--fg-dark); }

/* ===== KONTAKT ===== */
.kontakt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.kontakt-info h3 { font-family: var(--font-serif); font-size: 24px; color: var(--text); margin-bottom: 16px; margin-top: 40px; }
.kontakt-info h3:first-child { margin-top: 0; }
.kontakt-info p { font-size: 15px; line-height: 1.75; color: var(--text-sec); margin-bottom: 8px; }
.kontakt-info a { color: var(--fg); text-decoration: none; }
.kontakt-info a:hover { color: var(--fg-dark); }
.kontakt-embed {
  background: var(--bg-warm); border: 1px solid var(--border-subtle);
  padding: 48px; min-height: 400px; display: flex; align-items: center;
  justify-content: center; flex-direction: column; gap: 16px;
}
.kontakt-embed span { font-size: 13px; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; }

/* ===== LEGAL ===== */
.legal-content h2 { font-family: var(--font-serif); font-size: 24px; color: var(--text); margin: 40px 0 16px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h1 { font-family: var(--font-serif); font-size: 28px; color: var(--text); margin: 48px 0 20px; }
.legal-content p { font-size: 15px; line-height: 1.8; color: var(--text-sec); margin-bottom: 16px; }
.legal-content ul { margin: 0 0 16px 24px; }
.legal-content li { font-size: 15px; line-height: 1.8; color: var(--text-sec); margin-bottom: 8px; }
.legal-content a { color: var(--fg); text-decoration: none; }
.legal-content a:hover { text-decoration: underline; }
.legal-content .index { list-style: none; margin-left: 0; columns: 2; column-gap: 24px; }
.legal-content .index li { margin-bottom: 4px; }
.legal-content .m-elements { list-style: none; margin-left: 0; }
.legal-content .glossary { list-style: none; margin-left: 0; }
.legal-content .glossary li { margin-bottom: 16px; }
.legal-content .divider { margin: 40px 0; }
.legal-content .divider + h2 { margin-top: 0; }

/* ===== LEITSÄTZE ===== */
.leitsaetze { display: flex; flex-direction: column; gap: 0; max-width: 720px; }
.leitsatz {
  display: flex; gap: 32px; align-items: flex-start;
  padding: 36px 0; border-bottom: 1px solid var(--border-subtle);
  transition: all 0.4s ease;
}
.leitsatz:first-child { border-top: 1px solid var(--border-subtle); }
.leitsatz:hover { padding-left: 12px; }
.leitsatz-numeral {
  font-family: var(--font-serif); font-size: 36px; font-weight: 400;
  color: var(--fg); opacity: 0.15; line-height: 1; flex-shrink: 0;
  width: 40px; text-align: center; padding-top: 2px;
  transition: opacity 0.4s ease;
}
.leitsatz:hover .leitsatz-numeral { opacity: 0.4; }
.leitsatz-content h3 {
  font-family: var(--font-sans); font-size: 17px; font-weight: 600;
  color: var(--text); margin-bottom: 8px; letter-spacing: -0.2px;
}
.leitsatz-content p {
  font-size: 15px; line-height: 1.7; color: var(--text-sec); font-weight: 300;
}

/* ===== FOOTER ===== */
footer {
  background: var(--bg); border-top: 1px solid var(--border-subtle);
  padding: 48px 48px 36px; color: var(--text-muted); font-size: 13px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 24px;
}
.footer-logo img { height: 22px; opacity: 0.5; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: var(--text-muted); text-decoration: none; transition: color 0.3s; font-size: 13px; }
.footer-links a:hover { color: var(--fg); }
.footer-copy { width: 100%; text-align: center; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border-subtle); font-size: 12px; color: var(--text-muted); }

/* ===== ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes fadeUp { from { opacity:0; transform: translateY(24px); } to { opacity:1; transform: translateY(0); } }
@keyframes scrollPulse { 0%,100% { opacity: 0.2; } 50% { opacity: 0.6; } }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  nav { padding: 16px 24px; }
  .nav-right { display: none; gap: 0; }
  .nav-right.show {
    display: flex;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--bg-nav); backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 16px 24px 24px;
  }
  .nav-right.show li { width: 100%; }
  .nav-right.show .nav-link { display: block; padding: 12px 0; font-size: 15px; }
  .nav-right.show .nav-cta { display: inline-block; margin-top: 8px; padding: 12px 24px; text-align: center; width: 100%; }
  .nav-mobile { display: block; }
  .section, .section-sm { padding-left: 24px; padding-right: 24px; }
  .hero, .page-hero { padding: 120px 24px 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 320px; }
  .metrics { padding: 0 24px 64px; }
  .metrics-inner { grid-template-columns: repeat(2, 1fr); }
  .metric + .metric { border-left: none; }
  .metric:nth-child(2n) { border-left: 1px solid var(--border-subtle); }
  .two-col, .reasons-grid, .audiences-grid, .kontakt-grid { grid-template-columns: 1fr; }
  .services-grid, .process-steps, .kh-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; gap: 40px; }
  .team-photo { max-width: 280px; }
  .article-grid { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .trust-line { padding: 0 24px; }
  .trust-inner { flex-wrap: wrap; justify-content: center; }
  .scroll-hint { display: none; }
  .cta-banner { padding: 72px 24px; }
  footer { padding: 36px 24px 28px; }
}
@media (max-width: 600px) {
  .leitsatz { gap: 20px; padding: 28px 0; }
  .leitsatz-numeral { font-size: 28px; width: 32px; }
  .metrics-inner { grid-template-columns: 1fr; }
  .metric + .metric { border-left: none; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .cta-primary, .cta-secondary { padding: 14px 24px; font-size: 13px; max-width: 100%; }
  .nav-logo img { height: 22px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
