@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root { color-scheme: light; }
html { color-scheme: light; }

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; -webkit-font-smoothing: antialiased; color: #23004c; background: #fff; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* VARIABLES */
:root {
  --primary: #23004c;
  --action: #7a00e6;
  --secondary: #868488;
  --bg: #f4f2f6;
  --white: #ffffff;
  --border: rgba(35,0,76,0.12);
  --container: 1180px;
}

/* SKIP LINK */
.skip-link { position: absolute; left: -9999px; top: 1rem; background: var(--primary); color: white; padding: 8px 16px; border-radius: 4px; font-size: 14px; z-index: 9999; }
.skip-link:focus { left: 1rem; }

/* CONTAINER */
.container { max-width: 1440px; margin: 0 auto; padding: 0 120px; }

/* NAVIGATION */
nav { position: sticky; top: 0; z-index: 100; background: var(--bg); border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; padding: 0 120px; height: 72px; transition: box-shadow 0.2s; }
nav.scrolled { box-shadow: 0 2px 20px rgba(35,0,76,0.08); }
.nav-logo { display: flex; align-items: center; }
.nav-logo-img { height: 20px; width: auto; display: block; }
.nav-links { display: flex; gap: 40px; align-items: center; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--secondary); transition: color 0.15s; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-cta { background: var(--primary) !important; color: white !important; padding: 10px 22px; border-radius: 4px; font-size: 13px !important; font-weight: 600 !important; }
.nav-cta:hover { opacity: 0.85; }
.nav-hamburger { display: none; flex-direction: column; justify-content: center; gap: 6px; width: 44px; height: 44px; padding: 10px; cursor: pointer; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--primary); border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; }
.nav-hamburger.is-active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-hamburger.is-active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.is-active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.nav-contact { display: none; }

/* EYEBROW */
.eyebrow { display: flex; align-items: center; gap: 12px; font-size: 11px; font-weight: 600; letter-spacing: 1.32px; text-transform: uppercase; color: var(--secondary); margin-bottom: 24px; }
.eyebrow-line { display: block; width: 21px; height: 1px; background: var(--secondary); flex-shrink: 0; }
.eyebrow-white { color: rgba(255,255,255,0.35); }
.eyebrow-white .eyebrow-line { background: rgba(255,255,255,0.35); }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 18px 20px; border-radius: 4px; font-size: 15px; font-weight: 600; letter-spacing: 0.3px; transition: opacity 0.15s, transform 0.15s; cursor: pointer; }
.btn:hover { opacity: 0.85; transform: translateY(-1px); }
.btn-white { background: white; color: var(--primary); }
.btn-outline { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.2); }
.btn-dark { background: var(--primary); color: white; padding: 14px 20px; font-size: 14px; letter-spacing: 0.56px; }
.btn-action { background: var(--action); color: white; }
.btn-primary { background: var(--primary); color: white; }
.btn-border-dark { background: transparent; color: var(--primary); border: 1.5px solid var(--primary); padding: 14px 20px; font-size: 14px; font-weight: 600; border-radius: 4px; letter-spacing: 0.56px; display: inline-flex; align-items: center; gap: 8px; transition: opacity 0.15s; }
.btn-border-dark:hover { opacity: 0.75; }

/* IMAGE PLACEHOLDER */
.img-placeholder { background: #d9d9d9; border-radius: 4px; }

/* HERO (homepage) */
.hero { height: 778px; background: linear-gradient(151.62deg, #2d0060 0%, #7a00e6 100%); display: flex; align-items: center; position: relative; overflow: hidden; }
.hero-deco { position: absolute; right: 0; top: -15%; width: 65%; height: 130%; pointer-events: none; will-change: transform; }
.hero-deco-img { width: 100%; height: 100%; object-fit: cover; object-position: left center; }
.hero .container { position: relative; z-index: 1; width: 100%; }
.hero-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 1.32px; text-transform: uppercase; color: rgba(255,255,255,0.35); display: flex; align-items: center; gap: 12px; margin-bottom: 32px; }
.hero-eyebrow::before { content: ''; display: block; width: 21px; height: 1px; background: rgba(255,255,255,0.35); }
.hero-title { font-size: 80px; font-weight: 600; letter-spacing: -3.2px; line-height: 1.1; color: white; margin-bottom: 40px; max-width: 785px; }
.hero-actions { display: flex; gap: 12px; }

/* HERO (subpages) */
.page-hero { background: #F4F2F6; min-height: 570px; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; }
.page-hero-img { display: none; }
.page-hero-deco { position: absolute; inset: 0; width: 100%; height: 120%; pointer-events: none; will-change: transform; }
.page-hero-deco img { width: 100%; height: 100%; object-fit: cover; }
.page-hero .container { position: relative; z-index: 1; width: 100%; padding-bottom: 48px; }
.page-hero-eyebrow { padding-top: 120px; }
.page-hero-h1 { font-size: 80px; font-weight: 600; letter-spacing: -3.2px; line-height: 1.1; color: var(--primary); margin-top: 16px; }
.page-hero-desc { font-size: 18px; color: var(--secondary); line-height: 1.7; max-width: 560px; margin-top: 20px; padding-bottom: 0; }

/* ABOUT TEXT (homepage) */
.about-text-section { background: white; padding: 160px 0 120px; }
.about-text { font-size: 40px; font-weight: 500; letter-spacing: -1px; line-height: 1.3; color: var(--primary); max-width: 900px; }
.about-text u { text-decoration-color: var(--action); text-underline-offset: 4px; text-decoration-thickness: 2px; }

/* PROJECT CARDS (homepage) */
.projects-strip { background: white; padding: 60px 0 80px; }
.projects-strip-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.project-strip-card { overflow: hidden; }
.project-strip-card-img { aspect-ratio: 3 / 2; height: auto; background: #d9d9d9; border-radius: 4px; }
.project-strip-card-info { padding-top: 24px; }
.project-strip-card-tag { font-size: 11px; font-weight: 600; letter-spacing: 1.1px; text-transform: uppercase; color: var(--secondary); margin-bottom: 6px; }
.project-strip-card-title { font-size: 22px; font-weight: 600; letter-spacing: -0.44px; color: var(--primary); }

/* TICKER / LAUFBAND (homepage) */
.ticker-section { background: white; padding: 100px 0; overflow: hidden; }
.ticker-overflow { overflow: hidden; }
.ticker-track { display: flex; gap: 20px; width: max-content; animation: ticker-scroll 40s linear infinite; }
.ticker-track:hover { animation-play-state: paused; }
.ticker-card { width: 480px; flex-shrink: 0; text-decoration: none; display: block; }
.ticker-card-img { aspect-ratio: 3 / 2; display: block; width: 100%; border-radius: 4px; overflow: hidden; }
.ticker-card-img-inner { width: 100%; height: 100%; object-fit: cover; background: #d9d9d9; transition: transform 0.4s ease; }
.ticker-card:hover .ticker-card-img-inner { transform: scale(1.04); }
.ticker-card-info { padding: 16px 0 0; }
.ticker-card-tag { font-size: 11px; font-weight: 600; letter-spacing: 1.1px; text-transform: uppercase; color: var(--secondary); margin-bottom: 6px; }
.ticker-card-title { font-size: 20px; font-weight: 600; letter-spacing: -0.4px; color: var(--primary); }
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }

/* SERVICES SECTION (homepage) */
.services-home { background: var(--bg); padding: 80px 0; }
.services-home-inner { max-width: 1440px; margin: 0 auto; padding: 0 120px; }
.services-home-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 40px; }
.service-home-card { background: white; padding: 48px 40px 40px; min-height: 340px; display: flex; flex-direction: column; text-decoration: none; transition: background 0.2s; }
.service-home-card:hover { background: #f9f8fc; }
.service-home-num { font-size: 11px; font-weight: 600; letter-spacing: 1.1px; color: #9933ff; margin-bottom: 32px; text-transform: uppercase; }
.service-home-title { font-size: 22px; font-weight: 600; letter-spacing: -0.44px; color: var(--primary); margin-bottom: 16px; }
.service-home-desc { font-size: 14px; color: var(--secondary); line-height: 1.7; flex: 1; }
.service-home-arrow { font-size: 20px; color: var(--primary); margin-top: 24px; display: inline-block; transition: transform 0.25s ease; }
.service-home-card:hover .service-home-arrow { transform: translateX(6px); }

/* ACCESSIBILITY SECTION (homepage) */
.a11y-section { background: white; padding: 120px 0; }
.a11y-inner { max-width: 1440px; margin: 0 auto; padding: 0 120px; display: grid; grid-template-columns: 480px 1fr; gap: 80px; align-items: start; }
.a11y-img { aspect-ratio: 4 / 5; height: auto; background: #d9d9d9; border-radius: 4px; }
.a11y-content { padding-top: 9px; }
.a11y-h2 { font-size: 42px; font-weight: 600; letter-spacing: -1.26px; color: var(--primary); line-height: 1.1; margin-bottom: 24px; margin-top: 20px; }
.a11y-text { font-size: 18px; color: var(--secondary); line-height: 1.7; margin-bottom: 16px; }
.a11y-text2 { font-size: 15px; color: var(--secondary); line-height: 1.75; margin-bottom: 40px; }

/* CTA SECTION */
.cta-section { background: var(--primary); padding: 140px 0; text-align: center; }
.cta-h2 { font-size: 48px; font-weight: 700; letter-spacing: -1.44px; color: white; line-height: 1.6; margin-bottom: 20px; }
.cta-text { font-size: 18px; color: rgba(255,255,255,0.55); margin-bottom: 40px; }
.cta-btn { background: var(--action); color: white; padding: 14px 40px; border-radius: 4px; font-size: 14px; font-weight: 600; letter-spacing: 0.56px; display: inline-block; height: 51px; min-width: 202px; display: inline-flex; align-items: center; justify-content: center; }

/* FOOTER */
footer { background: var(--primary); padding: 80px 120px 0; }
.footer-top { display: grid; grid-template-columns: 360px 180px 180px 1fr; gap: 60px; padding-bottom: 65px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand { font-size: 20px; font-weight: 700; color: white; letter-spacing: -0.5px; margin-bottom: 20px; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 235px; }
.footer-col-title { font-size: 11px; font-weight: 600; letter-spacing: 1.1px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 24px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.65); transition: color 0.15s; }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 30px 0; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,0.35); transition: color 0.15s; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* SERVICE CARDS (services page) */
.service-cards-section { background: var(--bg); padding: 80px 0; }
.service-cards-inner { max-width: 1440px; margin: 0 auto; padding: 0 120px; }
.service-cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 48px; }
.service-card-v2 { background: white; border-radius: 4px; padding: 30px 40px; height: 511px; display: flex; flex-direction: column; overflow: hidden; }
.service-num { font-size: 11px; font-weight: 600; letter-spacing: 1.1px; color: #9933ff; text-transform: uppercase; margin-bottom: 16px; }
.service-title-lg { font-size: 32px; font-weight: 600; letter-spacing: -0.64px; color: var(--primary); margin-bottom: 12px; }
.service-desc { font-size: 14px; color: var(--secondary); line-height: 1.7; margin-bottom: 20px; }
.service-checklist { display: flex; flex-direction: column; gap: 12px; flex: 1; margin-top: 32px; }
.service-check-item { display: flex; align-items: center; gap: 14px; }
.check-circle { width: 24px; height: 24px; border-radius: 12px; background: var(--primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 11px; color: white; }
.service-check-text { font-size: 15px; font-weight: 500; color: var(--primary); }
.service-more-link { font-size: 14px; font-weight: 600; color: var(--primary); margin-top: 20px; display: block; }

/* INTRO SECTION (services page) */
.intro-section { background: white; padding: 80px 0; border-bottom: 1px solid var(--border); }
.intro-inner { max-width: 1440px; margin: 0 auto; padding: 0 120px; display: grid; grid-template-columns: 540px 1fr; gap: 80px; align-items: start; }
.intro-h2 { font-size: 52px; font-weight: 600; letter-spacing: -1.57px; color: var(--primary); line-height: 1.1; }
.intro-text { font-size: 18px; color: var(--secondary); line-height: 1.7; }

/* TARGET GROUP CARDS */
.target-section { background: white; padding: 80px 0; }
.target-inner { max-width: 1440px; margin: 0 auto; padding: 0 120px; }
.target-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 48px; }
.target-card { background: var(--bg); padding: 48px 40px; }
.target-icon-box { width: 64px; height: 64px; border-radius: 8px; background: white; display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 24px; }
.target-title { font-size: 22px; font-weight: 600; letter-spacing: -0.22px; color: var(--primary); margin-bottom: 16px; }
.target-desc { font-size: 14px; color: var(--secondary); line-height: 1.7; }

/* PROCESS ROWS */
.prozess-section { background: var(--bg); padding: 80px 0; }
.prozess-inner { max-width: 1440px; margin: 0 auto; padding: 0 120px; }
.process-rows { margin-top: 48px; }
.process-row { display: grid; grid-template-columns: 80px 512px 1fr; gap: 48px; padding: 49px 0; border-top: 1px solid var(--border); align-items: start; }
.process-row:last-child { border-bottom: 1px solid var(--border); }
.process-num { font-size: 13px; font-weight: 600; letter-spacing: 0.78px; color: var(--secondary); padding-top: 8px; }
.process-title { font-size: 28px; font-weight: 600; letter-spacing: -0.56px; color: var(--primary); }
.process-desc { font-size: 15px; color: var(--secondary); line-height: 1.75; }

/* FILTER BUTTONS */
.filter-bar { display: flex; gap: 8px; padding: 20px 0; border-bottom: 1px solid var(--border); flex-wrap: wrap; }
.filter-btn { height: 33.5px; padding: 0 21px; border-radius: 100px; font-size: 13px; font-family: inherit; cursor: pointer; transition: background 0.15s, color 0.15s; border: 1px solid rgba(35,0,76,0.12); color: var(--secondary); background: white; }
.filter-btn.active { background: var(--primary); color: white; border-color: var(--primary); }

/* PROJECT GRID (projekte page) */
.projects-section { background: white; padding: 60px 0 140px; }
.projects-inner { max-width: 1440px; margin: 0 auto; padding: 0 120px; }
.projects-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; }
.project-card-2 { display: block; text-decoration: none; }
.project-card-2-img-wrap { overflow: hidden; border-radius: 4px; }
.project-card-2-img { aspect-ratio: 3 / 2; width: 100%; height: auto; object-fit: cover; background: #d9d9d9; border-radius: 4px; transition: transform 0.4s ease; }
.project-card-2:hover .project-card-2-img { transform: scale(1.04); }
.project-card-2-info { padding-top: 20px; }
.project-card-2-tag { font-size: 11px; font-weight: 600; letter-spacing: 1.1px; text-transform: uppercase; color: var(--secondary); margin-bottom: 6px; }
.project-card-2-title { font-size: 22px; font-weight: 600; letter-spacing: -0.44px; color: var(--primary); }

/* PROJEKT DETAIL */
.detail-hero { min-height: 686px; background: linear-gradient(-25.18deg, #5a00b5 27.87%, #27004f 82.75%); display: flex; align-items: flex-start; }
.detail-hero-inner { max-width: 1440px; width: 100%; margin: 0 auto; padding: 230px 120px 60px; }
.detail-h1 { max-width: 900px; }
.detail-tags { display: flex; gap: 10px; margin-bottom: 32px; flex-wrap: wrap; }
.detail-tag { height: 31.5px; padding: 0 14px; border-radius: 100px; border: 1px solid rgba(255,255,255,0.2); font-size: 11px; font-weight: 600; letter-spacing: 1.32px; text-transform: uppercase; color: rgba(255,255,255,0.55); display: flex; align-items: center; }
.detail-h1 { font-size: 96px; font-weight: 600; letter-spacing: -3.84px; line-height: 1.1; color: white; }
.detail-desc { font-size: 18px; color: rgba(255,255,255,0.6); line-height: 1.65; max-width: 520px; margin-top: 24px; }

/* INFO BAR */
.info-bar { background: white; border-bottom: 1px solid var(--border); }
.info-bar-grid { display: grid; grid-template-columns: repeat(5, 1fr); max-width: 1440px; margin: 0 auto; padding: 48px 120px; }
.info-bar-item { border-right: 1px solid var(--border); padding-left: 40px; padding-right: 40px; display: flex; flex-direction: column; gap: 8px; }
.info-bar-item:first-child { padding-left: 0; }
.info-bar-item:last-child { border-right: none; }
.info-bar-label { font-size: 10px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; color: var(--secondary); }
.info-bar-value { font-size: 15px; font-weight: 600; color: var(--primary); line-height: 1.6; }

/* DIE AUFGABE */
.aufgabe-section { background: var(--bg); padding: 80px 0; }
.aufgabe-inner { max-width: 1440px; margin: 0 auto; padding: 0 120px; display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.aufgabe-h2 { font-size: 36px; font-weight: 600; letter-spacing: -0.72px; color: var(--primary); line-height: 1.2; margin-top: 20px; margin-bottom: 32px; }
.aufgabe-lead { font-size: 20px; font-weight: 600; color: var(--primary); line-height: 1.5; margin-bottom: 20px; }
.aufgabe-body { font-size: 15px; color: var(--secondary); line-height: 1.8; margin-bottom: 20px; }

/* LIEFERUNGEN */
.lieferungen-section { background: var(--bg); padding: 80px 0; }
.lieferungen-inner { max-width: 1440px; margin: 0 auto; padding: 0 120px; display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.lieferungen-h2 { font-size: 36px; font-weight: 600; letter-spacing: -0.72px; color: var(--primary); line-height: 1.2; margin-top: 20px; margin-bottom: 16px; }
.lieferungen-sub { font-size: 15px; color: var(--secondary); line-height: 1.75; }

/* CHECKLIST */
.checklist { display: flex; flex-direction: column; }
.checklist-item { display: flex; align-items: center; gap: 20px; height: 65px; border-top: 1px solid var(--border); }
.checklist-item:last-child { border-bottom: 1px solid var(--border); }
.check-dark { width: 24px; height: 24px; border-radius: 12px; background: var(--primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 11px; color: white; }
.checklist-text { font-size: 15px; font-weight: 500; color: var(--primary); }

/* RESULT CARDS */
.results-section { background: white; padding: 80px 0; }
.results-inner { max-width: 1440px; margin: 0 auto; padding: 0 120px; }
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 48px; }
.result-card { background: var(--bg); padding: 48px 40px; }
.result-num { font-size: 64px; font-weight: 700; letter-spacing: -2.56px; color: var(--primary); line-height: 1; }
.result-label { font-size: 18px; font-weight: 600; color: var(--primary); margin-top: 16px; }
.result-desc { font-size: 14px; color: var(--secondary); line-height: 1.65; margin-top: 8px; }

/* QUOTE */
.quote-section { background: var(--primary); padding: 100px 0; min-height: 563px; display: flex; align-items: center; }
.quote-inner { max-width: 1440px; margin: 0 auto; padding: 0 120px; }
.quote-text { font-size: 40px; font-weight: 500; color: white; line-height: 1.4; letter-spacing: -0.8px; margin-bottom: 40px; max-width: 900px; }
.quote-author { display: flex; align-items: center; gap: 16px; }
.quote-avatar { width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); flex-shrink: 0; }
.quote-name { font-size: 15px; font-weight: 600; color: white; }
.quote-role { font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 2px; }

/* NEXT PROJECT */
.next-project-section { background: var(--bg); display: grid; grid-template-columns: 1fr 1fr; min-height: 480px; }
.next-project-info { padding: 94px 119px; display: flex; flex-direction: column; justify-content: center; }
.next-project-label { font-size: 11px; font-weight: 600; letter-spacing: 1.32px; text-transform: uppercase; color: var(--secondary); margin-bottom: 24px; }
.next-project-title { font-size: 40px; font-weight: 600; letter-spacing: -1.2px; color: var(--primary); line-height: 1.4; margin-bottom: 12px; }
.next-project-tags { font-size: 11px; font-weight: 600; letter-spacing: 1.1px; text-transform: uppercase; color: var(--secondary); margin-bottom: 24px; }
.next-project-link { font-size: 14px; font-weight: 600; color: var(--action); }
.next-project-img { background: #d9d9d9; aspect-ratio: 4 / 3; height: auto; }

/* VALUES GRID (ueber-uns) */
.values-section { background: var(--bg); padding: 80px 0; min-height: 1081px; }
.values-inner { max-width: 1440px; margin: 0 auto; padding: 0 120px; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 48px; }
.value-card { background: white; padding: 56px 48px; position: relative; min-height: 334px; }
.value-num-bg { font-size: 64px; font-weight: 700; letter-spacing: -2.56px; color: var(--bg); position: absolute; top: 56px; left: 48px; line-height: 1; pointer-events: none; user-select: none; }
.value-title { font-size: 24px; font-weight: 600; letter-spacing: -0.48px; color: var(--primary); margin-top: 80px; margin-bottom: 16px; }
.value-desc { font-size: 15px; color: var(--secondary); line-height: 1.75; max-width: 462px; }

/* MISSION (ueber-uns) */
.mission-section { background: var(--primary); padding: 100px 0; min-height: 435px; display: flex; align-items: center; }
.mission-inner { max-width: 1440px; margin: 0 auto; width: 100%; padding: 0 120px; }
.mission-text { font-size: 40px; font-weight: 500; letter-spacing: -0.8px; line-height: 1.4; color: white; max-width: 1182px; }

/* BG TEXT */
.bg-text-section { position: relative; overflow: hidden; }
.bg-text { font-size: 190px; font-weight: 500; letter-spacing: -3.2px; color: var(--primary); opacity: 0.04; white-space: nowrap; pointer-events: none; user-select: none; line-height: 1; }

/* LARGE IMAGE BLOCK */
.large-img-block { background: #d9d9d9; }

/* DETAIL IMAGE WRAPPERS */
.detail-img-wrap { padding: 40px 120px 0; }
.detail-img-wrap + .detail-img-wrap { padding-top: 20px; }
.detail-img-last { padding-bottom: 40px; }
.detail-img-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.detail-img-full { width: 100%; aspect-ratio: 3 / 2; border-radius: 4px; display: block; }

/* VIDEO EMBEDS */
.detail-video-wrap { position: relative; aspect-ratio: 16 / 9; width: 100%; border-radius: 4px; overflow: hidden; background: #000; }
.detail-video { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

/* PROJECT MEDIA — Gutenberg block editor content */
.projekt-media { background: white; max-width: 1440px; margin: 0 auto; }
.projekt-media .wp-block-image,
.projekt-media .wp-block-video,
.projekt-media .wp-block-embed { padding: 40px 120px 0; margin: 0; }
.projekt-media .wp-block-gallery { padding: 20px 120px 0; margin: 0; }
.projekt-media > *:last-child { padding-bottom: 40px; }
/* Single image */
.projekt-media .wp-block-image img { width: 100%; aspect-ratio: 3/2; object-fit: cover; border-radius: 4px; height: auto; display: block; }
.projekt-media .wp-block-image figcaption { display: none; }
.projekt-media .wp-block-image figure { margin: 0; }
/* Gallery — new nested format (Gutenberg 12+) */
.projekt-media .wp-block-gallery.has-nested-images { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.projekt-media .wp-block-gallery.has-nested-images figure.wp-block-image { padding: 0 !important; margin: 0 !important; }
/* Gallery — classic list format */
.projekt-media ul.wp-block-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; list-style: none; padding-left: 0; }
.projekt-media ul.wp-block-gallery li { margin: 0; padding: 0; }
.projekt-media .wp-block-gallery img { width: 100%; aspect-ratio: 3/2; object-fit: cover; border-radius: 4px; height: auto; display: block; }
.projekt-media .wp-block-gallery figcaption { display: none; }
/* Video embed (YouTube / Vimeo) */
.projekt-media .wp-block-embed__wrapper { position: relative; aspect-ratio: 16/9; border-radius: 4px; overflow: hidden; }
.projekt-media .wp-block-embed__wrapper iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
/* Uploaded video file */
.projekt-media .wp-block-video video { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 4px; height: auto; display: block; }
/* Columns block (2 items side by side) */
.projekt-media .wp-block-columns { padding: 20px 120px 0; margin: 0; gap: 20px; display: flex; }
.projekt-media .wp-block-columns .wp-block-column { flex: 1; min-width: 0; margin: 0; }
.projekt-media .wp-block-columns .wp-block-image { padding: 0 !important; margin: 0; width: 100%; }
.projekt-media .wp-block-columns .wp-block-image figure { width: 100%; margin: 0; }
.projekt-media .wp-block-columns .wp-block-image img { width: 100%; aspect-ratio: 3/2; }
.projekt-media .wp-block-columns .wp-block-video { padding: 0 !important; margin: 0; width: 100%; }
.projekt-media .wp-block-columns .wp-block-video video { width: 100%; aspect-ratio: 16/9; }
.projekt-media .wp-block-columns .wp-block-embed { padding: 0 !important; margin: 0; width: 100%; }
.projekt-media .wp-block-columns .wp-block-embed__wrapper { aspect-ratio: 16/9; width: 100%; }

@media (max-width: 1024px) {
  .projekt-media .wp-block-image,
  .projekt-media .wp-block-gallery,
  .projekt-media .wp-block-columns,
  .projekt-media .wp-block-video,
  .projekt-media .wp-block-embed { padding-left: 40px; padding-right: 40px; }
}
@media (max-width: 768px) {
  .projekt-media .wp-block-image,
  .projekt-media .wp-block-gallery,
  .projekt-media .wp-block-columns,
  .projekt-media .wp-block-video,
  .projekt-media .wp-block-embed { padding-left: 24px; padding-right: 24px; }
  .projekt-media .wp-block-gallery.has-nested-images,
  .projekt-media ul.wp-block-gallery { grid-template-columns: 1fr; }
  .projekt-media .wp-block-columns { flex-direction: column; }
}

/* CONTACT SPLIT */
.contact-split { display: grid; grid-template-columns: 720px 1fr; min-height: 1432px; }
.contact-left { background: var(--primary); padding: 159px 137px 80px; }
.contact-right { background: var(--bg); padding: 159px 80px 80px; }
.contact-h1 { font-size: 60px; font-weight: 600; letter-spacing: -1.8px; line-height: 1.1; color: white; margin-bottom: 24px; margin-top: 20px; }
.contact-intro { font-size: 16px; color: rgba(255,255,255,0.55); line-height: 1.75; max-width: 482px; margin-bottom: 60px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 40px; }
.contact-icon { width: 40px; height: 40px; border-radius: 6px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.contact-info-label { font-size: 11px; font-weight: 600; letter-spacing: 1.1px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 4px; }
.contact-info-value { font-size: 16px; font-weight: 500; color: white; }
.contact-info-sub { font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 2px; }
.contact-form-h2 { font-size: 36px; font-weight: 600; letter-spacing: -1.08px; color: var(--primary); margin-bottom: 32px; margin-top: 20px; line-height: 1.1; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
.form-group { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.form-label { font-size: 11px; font-weight: 600; letter-spacing: 1.1px; text-transform: uppercase; color: var(--secondary); }
.form-input, .form-select, .form-textarea { background: white; border: 1px solid var(--border); border-radius: 4px; padding: 14px 18px; font-size: 15px; font-family: inherit; color: var(--primary); width: 100%; transition: border-color 0.15s; }
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--action); }
.form-input::placeholder, .form-textarea::placeholder { color: #757575; }
.form-select { height: 50px; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23868488' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.form-textarea { min-height: 160px; resize: vertical; }
.form-fieldset { border: none; padding: 0; margin: 0; min-width: 0; }
.form-fieldset > legend { float: left; width: 100%; }
.form-fieldset > legend + * { clear: left; }
.form-section-label { display: block; font-size: 13px; font-weight: 600; letter-spacing: 1.04px; text-transform: uppercase; color: var(--primary); padding-top: 24px; margin-bottom: 24px; border-top: 1px solid var(--border); }
.checkbox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
.checkbox-item { display: flex; align-items: center; gap: 10px; }
.checkbox-item input[type="checkbox"] { width: 18px; height: 18px; border-radius: 3px; border: 1.5px solid var(--border); flex-shrink: 0; accent-color: var(--primary); }
.checkbox-item label { font-size: 14px; color: var(--secondary); cursor: pointer; }
.form-privacy { font-size: 12px; color: var(--secondary); line-height: 1.6; margin-bottom: 24px; }
.form-privacy a { color: var(--primary); text-decoration: underline; }
.form-submit { background: var(--primary); color: white; width: 100%; height: 44px; border-radius: 4px; font-size: 14px; font-weight: 600; letter-spacing: 0.56px; display: flex; align-items: center; justify-content: center; cursor: pointer; border: none; font-family: inherit; transition: opacity 0.15s; }
.form-submit:hover { opacity: 0.85; }

/* FAQ */
.faq-section { background: white; padding: 80px 0; min-height: 940px; }
.faq-inner { max-width: 1440px; margin: 0 auto; padding: 0 120px; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 80px; margin-top: 48px; }
.faq-item { border-top: 1px solid var(--border); padding-top: 33px; padding-bottom: 40px; }
.faq-q { font-size: 17px; font-weight: 600; letter-spacing: -0.17px; color: var(--primary); margin-bottom: 16px; }
.faq-a { font-size: 14px; color: var(--secondary); line-height: 1.7; }

/* ANIMATIONS */
[data-animate] { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-animate].visible { opacity: 1; transform: translateY(0); }
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
@media (prefers-reduced-motion: reduce) { [data-animate] { opacity: 1; transform: none; transition: none; } }

/* FOCUS VISIBLE */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 2px solid var(--action); outline-offset: 2px; }

/* RESPONSIVE */
@media (max-width: 1280px) {
  .container { padding: 0 80px; }
  nav { padding: 0 80px; }
  footer { padding: 80px 80px 0; }
  .services-home-inner, .service-cards-inner, .intro-inner, .target-inner, .prozess-inner, .faq-inner, .values-inner, .projects-inner { padding: 0 80px; }
  .mission-inner { padding: 0 80px; }
  .a11y-inner, .aufgabe-inner, .lieferungen-inner, .results-inner, .quote-inner { padding: 0 80px; }
  .info-bar-grid { padding: 48px 80px; }
}

@media (max-width: 1024px) {
  .hero-title { font-size: 56px; }
  .page-hero-h1 { font-size: 56px; }
  .about-text-section { padding: 120px 0; }
  .about-text { font-size: 28px; }
  .contact-split { grid-template-columns: 1fr; }
  .contact-left { padding: 80px 60px; }
  .contact-right { padding: 60px 60px; }
  .values-grid { grid-template-columns: 1fr; }
  .process-row { grid-template-columns: 60px 1fr; }
  .process-row .process-desc { grid-column: 2; }
  nav { padding: 0 40px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .container { padding: 0 40px; }
  .services-home-inner, .service-cards-inner, .intro-inner, .target-inner, .prozess-inner, .faq-inner, .values-inner, .projects-inner { padding: 0 40px; }
  .intro-inner { grid-template-columns: 1fr; }
  .a11y-inner { grid-template-columns: 1fr; padding: 0 40px; }
  .a11y-img { aspect-ratio: 4 / 5; height: auto; }
  .aufgabe-inner { grid-template-columns: 1fr; padding: 0 40px; }
  .lieferungen-inner { grid-template-columns: 1fr; padding: 0 40px; }
  .results-inner { padding: 0 40px; }
  .quote-inner { padding: 0 40px; }
  .info-bar-grid { padding: 48px 40px; grid-template-columns: repeat(3, 1fr); }
  .info-bar-item:nth-child(3) { border-right: none; }
  .detail-hero-inner { padding: 180px 40px 60px; }
  .detail-h1 { font-size: 64px; }
  .detail-img-wrap { padding-left: 40px; padding-right: 40px; }
  .next-project-section { grid-template-columns: 1fr; }
  .next-project-info { padding: 60px 40px; }
  .target-grid { grid-template-columns: repeat(2, 1fr); }
  .service-cards-grid { grid-template-columns: 1fr; }
  .service-card-v2 { height: auto; min-height: 400px; }
  footer { padding: 60px 40px 0; }
  .mission-inner { padding: 0 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .hero { height: auto; padding: 80px 0 60px; }
  .hero-title { font-size: 46px; letter-spacing: -1.5px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .page-hero { min-height: 420px; }
  .page-hero-h1 { font-size: 46px; letter-spacing: -1.5px; }
  .page-hero .container { padding-bottom: 40px; }
  .projects-strip-inner { grid-template-columns: 1fr; gap: 40px; }
  .services-home-grid { grid-template-columns: 1fr; }
  .projects-grid-2 { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  footer { padding: 60px 24px 0; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
  .info-bar-grid { grid-template-columns: 1fr 1fr; }
  .info-bar-item { border-right: none; border-bottom: 1px solid var(--border); padding: 16px 0; }
  .values-grid { grid-template-columns: 1fr; }
  .next-project-section { grid-template-columns: 1fr; }
  /* next-project-img uses aspect-ratio: 4/3 */

  /* Ticker on mobile */
  .ticker-card { width: 260px; }

  /* Hero eyebrow */
  .hero-eyebrow { font-size: 10px; }

  /* About text section */
  .about-text-section { padding: 120px 0 80px; }
  /* Service home titles */
  .service-home-title { font-size: 18px; }
  /* Service page card titles */
  .service-title-lg { font-size: 26px; }
  .about-text { font-size: 22px; letter-spacing: -0.5px; }

  /* Services home */
  .services-home-inner { padding: 0 24px; }
  .service-home-card { padding: 32px 24px 28px; min-height: unset; }

  /* A11y section */
  .a11y-inner { padding: 0 24px; gap: 40px; }
  .a11y-img { width: 100%; }
  .a11y-h2 { font-size: 28px; letter-spacing: -0.5px; }
  .aufgabe-h2 { font-size: 28px; letter-spacing: -0.5px; }
  .lieferungen-h2 { font-size: 28px; letter-spacing: -0.5px; }
  .contact-form-h2 { font-size: 28px; letter-spacing: -0.5px; }
  .next-project-title { font-size: 28px; }

  /* CTA section */
  .cta-section { padding: 80px 0; }
  .cta-h2 { font-size: 28px; letter-spacing: -0.5px; }

  /* Results grid */
  .results-grid { grid-template-columns: 1fr; }

  /* Process section */
  .process-row { grid-template-columns: 48px 1fr; gap: 20px; padding: 32px 0; }

  /* Target grid */
  .target-grid { grid-template-columns: 1fr; }
  .target-card { padding: 28px 24px; }

  /* Values */
  .value-card { padding: 40px 28px; min-height: unset; }
  .value-num-bg { top: 28px; left: 28px; }
  .value-title { margin-top: 52px; }

  /* Contact */
  .contact-left { padding: 60px 24px; }
  .contact-right { padding: 40px 24px; }

  /* Next project */
  .next-project-info { padding: 48px 24px; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    padding: 0;
    gap: 0;
    z-index: 99;
    overflow-y: auto;
    border-top: 1px solid var(--border);
    align-items: stretch;
    animation: mobile-nav-in 0.2s ease;
  }
  .nav-links.open a:not(.nav-cta) {
    font-size: 16px;
    font-weight: 500;
    color: var(--secondary);
    letter-spacing: 0;
    padding: 0 30px;
    height: 73px;
    display: flex;
    align-items: center;
    position: relative;
    transition: color 0.15s;
  }
  .nav-links.open a:not(.nav-cta):not(.nav-contact-item)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 30px;
    right: 30px;
    height: 1px;
    background: var(--secondary);
    opacity: 0.4;
  }
  .nav-links.open a:nth-last-of-type(2)::after { display: none; }
  .nav-links.open a.active { color: var(--primary); }
  .nav-links.open a:hover { color: var(--primary); }
  .nav-links.open .nav-cta {
    background: var(--primary) !important;
    color: white !important;
    padding: 14px 20px !important;
    border-radius: 4px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    letter-spacing: 0.56px;
    border: none !important;
    height: auto !important;
    margin: 24px 30px 0;
    text-align: center;
    justify-content: center;
  }
  .nav-links.open .nav-contact {
    display: block;
    padding: 32px 30px 40px;
    margin-top: auto;
  }
  .nav-contact-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.32px;
    text-transform: uppercase;
    color: rgba(35, 0, 76, 0.5);
    margin-bottom: 16px;
  }
  .nav-contact-item {
    display: block;
    font-size: 14px;
    color: var(--primary) !important;
    font-weight: 400 !important;
    height: auto !important;
    padding: 0 !important;
    border: none !important;
    margin-bottom: 8px;
  }
  @keyframes mobile-nav-in {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .detail-h1 { font-size: 46px; letter-spacing: -1.5px; }
  .detail-hero-inner { padding: 80px 24px 40px; min-height: 0; }
  .detail-img-wrap { padding-left: 24px; padding-right: 24px; }
  .detail-img-grid { grid-template-columns: 1fr; }
  .mission-text { font-size: 24px; }
  .contact-h1 { font-size: 46px; }
  .intro-h2 { font-size: 46px; letter-spacing: -1.5px; }
  .contact-split { grid-template-columns: 1fr; }
  .info-bar-grid { padding: 24px 24px; }
  .quote-inner { padding: 0 24px; }
  .quote-text { font-size: 26px; }
  .form-row { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: 1fr; }
  .prozess-inner { padding: 0 24px; }
  .service-cards-inner { padding: 0 24px; }
  .faq-inner { padding: 0 24px; }
  .values-inner { padding: 0 24px; }
  .projects-inner { padding: 0 24px; }
  .intro-inner { padding: 0 24px; }
  .aufgabe-inner { padding: 0 24px; }
  .lieferungen-inner { padding: 0 24px; }
  .results-inner { padding: 0 24px; }
  .mission-section { padding: 60px 0; }
  .mission-inner { padding: 0 24px; }
}

/* EXTRA SMALL SCREENS — prevent text overflow */
@media (max-width: 480px) {
  .hero-title { font-size: 36px; letter-spacing: -1px; }
  .page-hero-h1 { font-size: 36px; letter-spacing: -1px; }
  .detail-h1 { font-size: 36px; letter-spacing: -1px; }
  .about-text { font-size: 18px; letter-spacing: -0.3px; }
  .quote-text { font-size: 20px; }
  .contact-h1 { font-size: 30px; }
  .mission-text { font-size: 20px; }
  .cta-h2 { font-size: 24px; }
  .result-num { font-size: 48px; }
  .next-project-title { font-size: 28px; }
  nav { padding: 0 20px; }
  .container { padding: 0 20px; }
  .detail-hero { padding: 100px 20px 48px; }
  .contact-left, .contact-right { padding: 48px 20px; }
  footer { padding: 48px 20px 0; }
  .ueber-uns-bild-wrap { padding: 0 24px !important; }
}
