/* ═══════════════════════════════════════════════
   CortexConsult – main.css  v1.1.0
   Lokale Fonts via @font-face – kein Google CDN
   Schriftdateien liegen in assets/fonts/
═══════════════════════════════════════════════ */

/* Google Fonts deaktiviert – Fonts werden lokal ausgeliefert (DSGVO-konform) */
/* @import url("https://fonts.googleapis.com/css2?family=Inter+Tight:wght@700;800;900&family=Inter:wght@300;400;500;600&display=swap"); */

/* ── LOKALE FONTS ───────────────────────────── */
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-300.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter Tight';
  src: url('../fonts/inter-tight-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter Tight';
  src: url('../fonts/inter-tight-800.woff2') format('woff2');
  font-weight: 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter Tight';
  src: url('../fonts/inter-tight-900.woff2') format('woff2');
  font-weight: 900; font-style: normal; font-display: swap;
}

/* ── DESIGN TOKENS ──────────────────────────── */
:root {
  --green:        #6EE02A;
  --green-hover:  #82f032;
  --green-dim:    #4CAF1A;
  --green-glow:   rgba(110,224,42,0.18);
  --green-glow2:  rgba(110,224,42,0.08);
  --green-glow3:  rgba(110,224,42,0.05);
  --green-border: rgba(110,224,42,0.22);
  --dark:         #111212;
  --dark2:        #161818;
  --dark3:        #1c1e1e;
  --card-bg:      #1a1c1c;
  --light-bg:     #f4f5f1;
  --light-card:   #ffffff;
  --light-border: rgba(0,0,0,0.08);
  --text:         #e8ebe4;
  --text-muted:   #8a9088;
  --text-dim:     #5a605a;
  --text-dark:    #1a1c1a;
  --text-dark-muted: #5a605a;
  --radius:       4px;
  --radius-lg:    8px;
  --clip-btn:     polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  --clip-btn-sm:  polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

/* ── RESET & BASE ───────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--dark); color: var(--text);
  overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
::selection { background: var(--green); color: #0a0f0a; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 2px; }

/* 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; }

/* Noise overlay */
body::before {
  content: ''; position: fixed; inset: 0; z-index: 9990;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none; opacity: 0.4;
}

/* ── NAV ────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: 80px; padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .4s, border-color .4s, height .3s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(17,18,18,0.94);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--green-border); height: 80px;
}
.nav-logo {
  display: flex; align-items: center;
  text-decoration: none; flex-shrink: 0; line-height: 0;
}
.nav-logo img { height: 70px; width: auto; display: block; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 13px; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--text-muted);
  text-decoration: none; transition: color .2s;
}
.nav-links a:hover { color: var(--green); }
.nav-cta {
  padding: 9px 22px; background: var(--green); color: #0a0f0a;
  font-size: 13px; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; text-decoration: none;
  clip-path: var(--clip-btn-sm); transition: background .2s, transform .15s; flex-shrink: 0;
}
.nav-cta:hover { background: var(--green-hover); transform: translateY(-1px); }
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none; flex-shrink: 0;
}
.nav-burger span { display: block; width: 24px; height: 1.5px; background: var(--text); transition: all .3s; }
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px,4.5px); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px,-4.5px); }
.nav-mobile {
  display: none; position: fixed; top: 68px; left: 0; right: 0; z-index: 499;
  background: rgba(17,18,18,0.98); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--green-border);
  padding: 1.75rem 5% 2rem; flex-direction: column; gap: 1.5rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a { color: var(--text-muted); text-decoration: none; font-size: 1.05rem; transition: color .2s; }
.nav-mobile a:hover { color: var(--green); }
.nav-mobile .nav-cta { text-align: center; clip-path: none; border-radius: var(--radius); }

/* ── BUTTONS ────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; background: var(--green); color: #0a0f0a;
  font-size: 14px; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; text-decoration: none; border: none; cursor: pointer;
  clip-path: var(--clip-btn); transition: background .2s, transform .15s, box-shadow .2s;
}
.btn-primary:hover { background: var(--green-hover); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(110,224,42,0.25); }
.btn-ghost {
  display: inline-block; padding: 13px 32px;
  border: 1px solid rgba(110,224,42,0.35); color: var(--green);
  font-size: 14px; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase; text-decoration: none; background: transparent;
  clip-path: var(--clip-btn); transition: background .2s, border-color .2s;
}
.btn-ghost:hover { background: var(--green-glow2); border-color: rgba(110,224,42,0.6); }

/* ── HERO ───────────────────────────────────── */
#hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
  padding: 80px 5% 5rem; overflow: hidden;
}
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero-eyebrow {
  position: relative; z-index: 2;
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--green); margin-bottom: 28px;
}
.hero-eyebrow::before, .hero-eyebrow::after { content: ''; display: block; width: 20px; height: 1px; background: var(--green); }
.hero-headline {
  position: relative; z-index: 2;
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(52px,8vw,100px); font-weight: 900; line-height: 0.95;
  letter-spacing: -0.03em; max-width: 860px; margin-bottom: 28px;
}
.hero-headline .accent { color: var(--green); }
.hero-sub { position: relative; z-index: 2; font-size: 17px; font-weight: 400; line-height: 1.75; color: var(--text-muted); max-width: 520px; margin-bottom: 48px; }
.hero-actions { position: relative; z-index: 2; display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-stats { position: absolute; bottom: 10%; right: 5%; z-index: 2; display: flex; gap: 48px; }
.hero-stat { text-align: right; }
.hero-stat .num { font-family: 'Inter Tight', sans-serif; font-size: 38px; font-weight: 900; color: var(--green); line-height: 1; }
.hero-stat .label { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-top: 4px; }
.hero-scroll { position: absolute; bottom: 40px; left: 5%; z-index: 2; display: flex; align-items: center; gap: 12px; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }
.hero-scroll-line { width: 40px; height: 1px; background: var(--green); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { width:40px;opacity:1; } 50% { width:60px;opacity:0.5; } }
.glow-line { position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg,transparent,var(--green),transparent); opacity: 0.4; }

/* ── MARQUEE ────────────────────────────────── */
.marquee-wrap { background: var(--green); overflow: hidden; padding: 14px 0; border-top: 1px solid var(--green-dim); border-bottom: 1px solid var(--green-dim); }
.marquee-track { display: flex; animation: marquee 22s linear infinite; white-space: nowrap; }
.marquee-item { font-family: 'Inter Tight', sans-serif; font-size: 13px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: #0a0f0a; padding: 0 32px; display: flex; align-items: center; gap: 32px; }
.marquee-item::after { content: '◆'; font-size: 8px; color: rgba(0,0,0,0.35); }
@keyframes marquee { 0% { transform:translateX(0); } 100% { transform:translateX(-50%); } }

/* ── SECTION SHARED ─────────────────────────── */
.section-wrap { padding: 100px 5%; }
.section-tag { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); border: 1px solid rgba(110,224,42,0.35); padding: 5px 14px; border-radius: 3px; margin-bottom: 20px; }
.section-headline { font-family: 'Inter Tight', sans-serif; font-size: clamp(30px,4vw,52px); font-weight: 900; line-height: 1.05; letter-spacing: -0.025em; color: var(--text); }
.section-headline .accent { color: var(--green); }

/* ── LEISTUNGEN ─────────────────────────────── */
#leistungen { background: var(--dark); }
.leistungen-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2px; margin-top: 60px; border: 2px solid var(--green-border); }
.leistung-card { background: var(--dark2); padding: 48px 44px; position: relative; overflow: hidden; opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease, background .3s; }
.leistung-card.visible { opacity: 1; transform: translateY(0); }
.leistung-card:hover { background: var(--dark3); }
.leistung-card::before { content: ''; position: absolute; top: 0; left: 0; width: 0; height: 2px; background: var(--green); transition: width .4s ease; }
.leistung-card:hover::before { width: 100%; }
.leistung-number { font-family: 'Inter Tight', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.14em; color: var(--green); text-transform: uppercase; margin-bottom: 20px; opacity: 0.7; }
.leistung-icon { width: 48px; height: 48px; margin-bottom: 24px; color: var(--green); }
.leistung-title { font-family: 'Inter Tight', sans-serif; font-size: 24px; font-weight: 800; line-height: 1.15; margin-bottom: 14px; letter-spacing: -0.02em; }
.leistung-text { font-size: 15px; line-height: 1.7; color: var(--text-muted); margin-bottom: 24px; }
.leistung-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.leistung-tag { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 12px; border: 1px solid var(--green-border); color: var(--text-muted); transition: border-color .2s, color .2s; }
.leistung-card:hover .leistung-tag { border-color: rgba(110,224,42,0.35); color: rgba(110,224,42,0.75); }
.leistung-card:nth-child(2) { transition-delay:.10s; }
.leistung-card:nth-child(3) { transition-delay:.15s; }
.leistung-card:nth-child(4) { transition-delay:.20s; }

/* ── APPROACH ───────────────────────────────── */
#approach { background: var(--light-bg); color: var(--text-dark); }
#approach .section-tag { color: var(--green-dim); border-color: rgba(76,175,26,0.35); }
#approach .section-headline { color: var(--text-dark); }
#approach .section-headline .accent { color: var(--green-dim); }
.approach-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-top: 64px; align-items: start; }
.approach-steps { display: flex; flex-direction: column; }
.approach-step { display: flex; gap: 24px; padding: 32px 0; border-bottom: 1px solid var(--light-border); opacity: 0; transform: translateX(-20px); transition: opacity .5s ease, transform .5s ease; }
.approach-step.visible { opacity: 1; transform: translateX(0); }
.approach-step:first-child { padding-top: 0; }
.approach-step:last-child { border-bottom: none; }
.approach-step:nth-child(2) { transition-delay:.10s; }
.approach-step:nth-child(3) { transition-delay:.20s; }
.approach-step:nth-child(4) { transition-delay:.30s; }
.step-num { font-family: 'Inter Tight', sans-serif; font-size: 13px; font-weight: 800; color: var(--green-dim); flex-shrink: 0; padding-top: 2px; }
.step-title { font-family: 'Inter Tight', sans-serif; font-size: 19px; font-weight: 800; color: var(--text-dark); margin-bottom: 8px; letter-spacing: -0.02em; }
.step-text { font-size: 14px; line-height: 1.7; color: var(--text-dark-muted); }
.approach-visual { position: sticky; top: 100px; }
.approach-box { background: var(--dark); padding: 44px; border-left: 3px solid var(--green); }
.approach-quote { font-family: 'Inter Tight', sans-serif; font-size: 22px; font-weight: 800; line-height: 1.3; color: var(--text); margin-bottom: 32px; letter-spacing: -0.02em; }
.approach-quote span { color: var(--green); }
.approach-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.approach-metric .num { font-family: 'Inter Tight', sans-serif; font-size: 32px; font-weight: 900; color: var(--green); line-height: 1; }
.approach-metric .label { font-size: 12px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); margin-top: 4px; }

/* ── CASES ──────────────────────────────────── */
#cases { background: var(--dark); }
.cases-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 52px; flex-wrap: wrap; gap: 24px; }
.cases-subtitle { font-size: 14px; color: var(--text-muted); max-width: 280px; line-height: 1.6; }
.cases-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.case-card { background: var(--card-bg); padding: 40px 36px; position: relative; overflow: hidden; opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.case-card.visible { opacity: 1; transform: translateY(0); }
.case-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--green); transform: scaleX(0); transform-origin: left; transition: transform .4s ease; }
.case-card:hover::after { transform: scaleX(1); }
.case-card:nth-child(2) { transition-delay:.12s; }
.case-card:nth-child(3) { transition-delay:.22s; }
.case-industry { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); margin-bottom: 20px; opacity: 0.8; }
.case-title { font-family: 'Inter Tight', sans-serif; font-size: 20px; font-weight: 800; line-height: 1.2; margin-bottom: 14px; letter-spacing: -0.02em; }
.case-text { font-size: 14px; line-height: 1.7; color: var(--text-muted); margin-bottom: 28px; }
.case-metrics { display: flex; gap: 28px; padding-top: 24px; border-top: 1px solid var(--green-border); }
.case-big { font-family: 'Inter Tight', sans-serif; font-size: 32px; font-weight: 900; color: var(--green); line-height: 1; }
.case-label { font-size: 12px; color: var(--text-muted); line-height: 1.4; margin-top: 4px; }
.case-quote { font-size: 13px; font-style: italic; color: var(--text-muted); line-height: 1.6; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--green-border); }
.case-quote::before { content: '„'; color: var(--green); font-style: normal; font-weight: 700; }
.case-quote::after  { content: '"'; color: var(--green); font-style: normal; font-weight: 700; }

/* ── CLAIMS ─────────────────────────────────── */
#claims { background: var(--green); padding: 0; color: #0a0f0a; }
.claims-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(0,0,0,0.12); }
.claim-item { background: var(--green); padding: 56px 48px; opacity: 0; transform: scale(0.96); transition: opacity .5s ease, transform .5s ease; }
.claim-item.visible { opacity: 1; transform: scale(1); }
.claim-item:nth-child(2) { transition-delay:.10s; }
.claim-item:nth-child(3) { transition-delay:.20s; }
.claim-headline { font-family: 'Inter Tight', sans-serif; font-size: clamp(26px,3vw,40px); font-weight: 900; line-height: 1.05; letter-spacing: -0.03em; color: #0a0f0a; margin-bottom: 12px; }
.claim-sub { font-size: 14px; line-height: 1.6; color: rgba(0,0,0,0.6); }

/* ── ÜBER UNS ───────────────────────────────── */
#ueber-uns { background: var(--dark2); }
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-top: 60px; }
.about-text p { font-size: 15px; color: var(--text-muted); font-weight: 400; line-height: 1.8; margin-bottom: 1.25rem; }
.about-values { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.value-item { display: flex; gap: 16px; align-items: flex-start; }
.value-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex-shrink: 0; margin-top: 6px; }
.value-item strong { font-family: 'Inter Tight', sans-serif; font-size: 15px; font-weight: 800; color: var(--text); display: block; margin-bottom: 4px; }
.value-item span { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.about-cards { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 12px; }
.about-card { background: var(--dark3); border: 1px solid var(--green-border); border-radius: var(--radius-lg); padding: 28px; }
.about-card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--green-glow2); border: 1px solid var(--green-border); display: flex; align-items: center; justify-content: center; font-family: 'Inter Tight', sans-serif; font-weight: 900; font-size: 14px; color: var(--green); flex-shrink: 0; }
.about-card-name { font-family: 'Inter Tight', sans-serif; font-weight: 800; font-size: 15px; color: var(--text); margin-bottom: 2px; }
.about-card-role { font-size: 12px; color: var(--text-muted); font-weight: 400; }
.about-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.netzwerk-box { background: var(--green-glow3); border: 1px solid var(--green-border); border-radius: var(--radius-lg); padding: 20px 24px; display: flex; gap: 14px; align-items: flex-start; }
.netzwerk-icon { width: 32px; height: 32px; background: var(--green-glow2); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.netzwerk-box p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }
.netzwerk-box strong { color: var(--text); font-weight: 600; }

/* ── INSIGHTS ───────────────────────────────── */
#insights { background: var(--light-bg); color: var(--text-dark); }
#insights .section-tag { color: var(--green-dim); border-color: rgba(76,175,26,0.35); }
#insights .section-headline { color: var(--text-dark); }
#insights .section-headline .accent { color: var(--green-dim); }
.insights-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 2px; margin-top: 56px; }
.insight-card { background: var(--light-card); padding: 40px 36px; opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.insight-card.visible { opacity: 1; transform: translateY(0); }
.insight-card:nth-child(2) { transition-delay:.10s; }
.insight-card:nth-child(3) { transition-delay:.18s; }
.insight-card.featured { grid-row: span 2; }
.insight-cat { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green-dim); margin-bottom: 16px; }
.insight-title { font-family: 'Inter Tight', sans-serif; font-weight: 800; line-height: 1.2; letter-spacing: -0.02em; color: var(--text-dark); margin-bottom: 12px; }
.insight-card.featured .insight-title { font-size: clamp(20px,2.5vw,28px); margin-bottom: 16px; }
.insight-card:not(.featured) .insight-title { font-size: 18px; }
.insight-text { font-size: 14px; line-height: 1.7; color: var(--text-dark-muted); margin-bottom: 24px; }
.insight-meta { font-size: 12px; color: var(--text-dark-muted); display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.insight-dot { width: 3px; height: 3px; border-radius: 50%; background: currentColor; }

/* ── KONTAKT ────────────────────────────────── */
#kontakt { background: var(--dark2); }
.kontakt-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-top: 60px; }
.kontakt-intro { font-size: 16px; line-height: 1.8; color: var(--text-muted); margin-top: 20px; margin-bottom: 44px; }
.kontakt-info { display: flex; flex-direction: column; gap: 20px; }
.kontakt-row { display: flex; align-items: center; gap: 16px; font-size: 14px; }
.kontakt-icon { width: 40px; height: 40px; background: var(--green-glow2); border: 1px solid var(--green-border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.kontakt-icon svg { width: 18px; height: 18px; color: var(--green); }
.kontakt-label { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
.kontakt-value { font-weight: 500; color: var(--text); }
.kontakt-value a { color: var(--text); text-decoration: none; }
.kontakt-value a:hover { color: var(--green); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: var(--dark3); border: 1px solid var(--green-border);
  color: var(--text); font-family: 'Inter', sans-serif; font-size: 14px;
  font-weight: 300; padding: 13px 16px; outline: none;
  border-radius: var(--radius); transition: border-color .2s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-dim); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green); }
.form-group textarea { height: 140px; resize: vertical; }
.form-group select { appearance: none; cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.dsgvo-row { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 20px; }
.dsgvo-row input[type="checkbox"] { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; accent-color: var(--green); cursor: pointer; }
.dsgvo-row label { font-size: 13px; color: var(--text-muted); font-weight: 300; line-height: 1.6; margin-bottom: 0; cursor: pointer; letter-spacing: 0; text-transform: none; }
.dsgvo-row a { color: var(--green); text-decoration: none; }
.btn-submit { width: 100%; padding: 16px; background: var(--green); color: #0a0f0a; font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; border: none; cursor: pointer; clip-path: var(--clip-btn); transition: background .2s, transform .15s; }
.btn-submit:hover { background: var(--green-hover); transform: translateY(-1px); }
.form-success { display: none; margin-top: 16px; background: var(--green-glow2); border: 1px solid var(--green-border); border-radius: var(--radius); padding: 16px; font-size: 14px; color: var(--green); font-weight: 500; text-align: center; }

/* Cookie-Banner CSS entfernt – Real Cookie Banner Plugin übernimmt Darstellung und Consent */

/* ── FOOTER ─────────────────────────────────── */
footer { background: var(--dark); border-top: 1px solid var(--green-border); padding: 56px 5% 32px; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 48px; flex-wrap: wrap; gap: 32px; }
.footer-logo { line-height: 0; }
.footer-logo img { height: 32px; width: auto; display: block; }
.footer-tagline { font-size: 13px; color: var(--text-muted); margin-top: 6px; }
.footer-links { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col-title { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 13px; color: var(--text-muted); text-decoration: none; transition: color .2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--green-border); font-size: 12px; color: var(--text-muted); flex-wrap: wrap; gap: 12px; }
.footer-bottom a { color: var(--text-muted); text-decoration: none; transition: color .2s; }
.footer-bottom a:hover { color: var(--text); }

/* ═══════════════════════════════════════════════
   RESPONSIVE — TABLET  (≤ 1024px)
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav-links { gap: 24px; }
  .nav-links a { font-size: 12px; }
  .hero-stats { gap: 32px; }
  .hero-stat .num { font-size: 30px; }
  .approach-layout { gap: 48px; }
  .approach-box { padding: 32px; }
  .leistung-card { padding: 36px 30px; }
  .about-layout { gap: 48px; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — TABLET PORTRAIT  (≤ 900px)
═══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .hero-stats { position: static; margin-top: 48px; gap: 32px; }
  .hero-stat { text-align: left; }
  .hero-scroll { display: none; }
  .leistungen-grid { grid-template-columns: 1fr; }
  .approach-layout { grid-template-columns: 1fr; gap: 48px; }
  .approach-visual { position: static; }
  .cases-grid { grid-template-columns: 1fr; }
  .cases-header { flex-direction: column; align-items: flex-start; }
  .claims-grid { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; gap: 48px; }
  .about-cards { position: static; }
  .insights-grid { grid-template-columns: 1fr; }
  .insight-card.featured { grid-row: span 1; }
  .kontakt-layout { grid-template-columns: 1fr; gap: 48px; }
  .footer-links { gap: 28px; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — MOBILE  (≤ 600px)
═══════════════════════════════════════════════ */
@media (max-width: 600px) {
  .section-wrap { padding: 72px 5%; }
  #hero { padding: 80px 5% 4rem; }
  .hero-headline { font-size: clamp(40px,11vw,60px); }
  .hero-sub { font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn-primary, .hero-actions .btn-ghost { text-align: center; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .hero-stat .num { font-size: 28px; }
  .leistung-card { padding: 28px 24px; }
  .leistung-title { font-size: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .approach-box { padding: 24px; }
  .case-card { padding: 28px 24px; }
  .case-metrics { flex-direction: column; gap: 16px; }
  .claim-item { padding: 36px 28px; }
  .claim-headline { font-size: 26px; }
  .footer-top { flex-direction: column; }
  .footer-links { flex-direction: column; gap: 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .marquee-item { font-size: 12px; padding: 0 20px; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE  (≤ 400px)
═══════════════════════════════════════════════ */
@media (max-width: 400px) {
  nav { padding: 0 4%; }
  .section-wrap { padding: 56px 4%; }
  #hero { padding-left: 4%; padding-right: 4%; }
  .leistung-card { padding: 24px 20px; }
  .case-card { padding: 24px 20px; }
  .btn-primary, .btn-ghost { padding: 12px 20px; font-size: 13px; }
}
