/* =================================================================
   Planungsbüro Brunnbauer — Stylesheet
   =================================================================
   Sections:
   1. Fonts
   2. Design Tokens (Custom Properties)
   3. Reset
   4. Typography
   5. Layout
   6. Navigation
   7. Hero
   8. Trust Bar
   9. Sections
   10. Cards
   11. Split Section
   12. Process
   13. Testimonials
   14. CTA Section
   15. Buttons
   16. Footer
   17. Utilities / Animations
   18. Responsive
   ================================================================= */

/* -----------------------------------------------------------------
   1. Fonts (Self-hosted, DSGVO-konform)
   ----------------------------------------------------------------- */

@font-face {
  font-family: 'Lato';
  src: url('/assets/fonts/lato-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lato';
  src: url('/assets/fonts/lato-bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('/assets/fonts/montserrat-bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* -----------------------------------------------------------------
   2. Design Tokens
   ----------------------------------------------------------------- */

:root {
  /* Colors */
  --color-primary: #96c147;
  --color-primary-hover: #7fa63a;
  --color-secondary: #00AC97;
  --color-secondary-light: #30C7B5;
  --color-text: #4F5655;
  --color-text-muted: #7A8483;
  --color-heading: #002a41;
  --color-text-light: #FFFFFF;
  --color-bg: #FFFFFF;
  --color-bg-alt: #F3F6F3;
  --color-bg-dark: #002a41;

  /* Typography */
  --font-body: 'Lato', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
  --text-base: clamp(1rem, 0.975rem + 0.125vw, 1.0625rem);
  --text-sm: 0.875rem;
  --text-h1: clamp(1.75rem, 1.25rem + 2.5vw, 2.75rem);
  --text-h2: clamp(1.5rem, 1.1rem + 2vw, 2.25rem);
  --text-h3: clamp(1.25rem, 1rem + 1.25vw, 1.75rem);
  --text-h4: clamp(1.125rem, 1rem + 0.625vw, 1.375rem);

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Border Radius — eckig/geometrisch passend zum CI */
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 4px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* Layout */
  --container-max: 1200px;
  --nav-height: 80px;
}

/* -----------------------------------------------------------------
   3. Reset
   ----------------------------------------------------------------- */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

ul {
  list-style: none;
}

address {
  font-style: normal;
}

blockquote {
  margin: 0;
}

/* -----------------------------------------------------------------
   4. Typography
   ----------------------------------------------------------------- */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-heading);
  line-height: 1.2;
}

h1 { font-size: var(--text-h1); }
h2 { font-size: var(--text-h2); }
h3 { font-size: var(--text-h3); }
h4 { font-size: var(--text-h4); }

p + p {
  margin-top: var(--space-md);
}

/* -----------------------------------------------------------------
   5. Layout
   ----------------------------------------------------------------- */

.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.grid {
  display: grid;
  gap: var(--space-xl);
}

.grid--2 {
  grid-template-columns: 1fr;
}

.grid--3 {
  grid-template-columns: 1fr;
}

.grid--bento {
  grid-template-columns: 1fr;
}

/* -----------------------------------------------------------------
   6. Navigation
   ----------------------------------------------------------------- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: var(--color-bg);
  z-index: 100;
  transition: box-shadow var(--transition-base);
}

.nav--scrolled {
  box-shadow: var(--shadow-md);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

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

.nav__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-heading);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__menu {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--color-bg);
  padding: var(--space-xl) var(--space-md);
  box-shadow: var(--shadow-md);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform var(--transition-base), opacity var(--transition-base), visibility var(--transition-base);
}

.nav__menu--open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.nav__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.nav__link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--color-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  padding: var(--space-sm) 0;
  transition: color var(--transition-fast);
}

.nav__link:hover,
.nav__link--active {
  color: var(--color-primary);
}

.nav__cta {
  display: inline-block;
  margin-top: var(--space-md);
}

/* -----------------------------------------------------------------
   7. Hero
   ----------------------------------------------------------------- */

.hero {
  position: relative;
  padding-top: calc(var(--nav-height) + var(--space-3xl));
  padding-bottom: calc(var(--space-3xl) + 60px);
  background: var(--color-bg-dark);
  color: var(--color-text-light);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 60px), 0 100%);
  overflow: hidden;
  min-height: 480px;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0.2;
}

/* Blueprint grid overlay on top of photo */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(150, 193, 71, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(150, 193, 71, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(150, 193, 71, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(150, 193, 71, 0.03) 1px, transparent 1px);
  background-size:
    100px 100px,
    100px 100px,
    20px 20px,
    20px 20px;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero__title {
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
}

.hero__subtitle {
  font-size: clamp(1.0625rem, 1rem + 0.3125vw, 1.25rem);
  opacity: 0.9;
  margin-bottom: var(--space-2xl);
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

/* Hero mark — logo peeking from bottom edge */
.hero__mark {
  position: absolute;
  right: 6%;
  bottom: 0;
  transform: translateY(50%);
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

.hero__mark img {
  width: 500px;
  height: auto;
  filter: brightness(0) invert(1);
}

/* -----------------------------------------------------------------
   8. Trust Bar
   ----------------------------------------------------------------- */

.trust-bar {
  padding-block: var(--space-xl);
  background: var(--color-bg);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.trust-bar__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-xl);
}

.trust-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-sm) var(--space-md);
}

.trust-bar__value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-h4);
  color: var(--color-heading);
}

.trust-bar__label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-xs);
}

.trust-bar__stars {
  display: flex;
  align-items: center;
  gap: 0.35em;
}

.trust-bar__google-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.trust-bar__star-icons {
  color: #F5A623;
  font-size: 0.85em;
  letter-spacing: 1px;
}

/* -----------------------------------------------------------------
   9. Sections
   ----------------------------------------------------------------- */

.section {
  padding-block: var(--space-3xl);
}

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

.section--dark {
  background: var(--color-bg-dark);
  color: var(--color-text-light);
}

.section__title {
  margin-bottom: var(--space-md);
}

.section__title--center {
  text-align: center;
}

.section__subtitle {
  color: var(--color-text-muted);
  max-width: 600px;
  margin-bottom: var(--space-2xl);
}

.section__subtitle--center {
  text-align: center;
  margin-inline: auto;
}

.section__cta {
  text-align: center;
  margin-top: var(--space-2xl);
}

/* -----------------------------------------------------------------
   10. Cards
   ----------------------------------------------------------------- */

.card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.card__icon {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  line-height: 1;
}

.card__icon svg {
  width: 40px;
  height: 40px;
}

.card__title {
  margin-bottom: var(--space-sm);
}

.card__text {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.6;
}

/* -----------------------------------------------------------------
   11. Split Section (Über uns)
   ----------------------------------------------------------------- */

.split {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.split__media {
  position: relative;
}

.split__image-wrap {
  position: relative;
  overflow: hidden;
}

/* Green accent block behind image — eckig wie das CI */
.split__image-wrap::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  width: 50%;
  height: 65%;
  background: var(--color-primary);
  z-index: -1;
}

.split__image {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}

.split__lead {
  font-size: clamp(1.0625rem, 1rem + 0.3125vw, 1.1875rem);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.split__quote {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-xl);
  padding-left: var(--space-lg);
  border-left: 3px solid var(--color-primary);
}

.split__quote p {
  font-style: italic;
  color: var(--color-text);
  line-height: 1.6;
}

.split__quote cite {
  display: block;
  margin-top: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-style: normal;
}

/* -----------------------------------------------------------------
   12. Process
   ----------------------------------------------------------------- */

.process {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-inline: auto;
}

.process__step {
  text-align: center;
  padding: var(--space-xl);
  max-width: 360px;
  position: relative;
}

/* Large watermark number behind step */
.process__step::before {
  content: attr(data-step);
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 7rem;
  color: var(--color-primary);
  opacity: 0.06;
  line-height: 1;
  pointer-events: none;
}

.process__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--color-primary);
  color: var(--color-text-light);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  border-radius: 0;
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.process__title {
  margin-bottom: var(--space-sm);
}

.process__text {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.6;
}

.process__connector {
  width: 2px;
  height: 40px;
  background: var(--color-primary);
  opacity: 0.3;
}

/* Process section — blueprint grid texture */
.section--process {
  position: relative;
  overflow: hidden;
}

.section--process::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(150, 193, 71, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(150, 193, 71, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.section--process .container {
  position: relative;
  z-index: 1;
}

/* Process on dark background */
.section--process .process__title {
  color: var(--color-text-light);
}

.section--process .process__text {
  color: rgba(255, 255, 255, 0.65);
}

.section--process .process__number {
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.section--process .process__connector {
  opacity: 0.5;
}

/* -----------------------------------------------------------------
   13. Testimonials
   ----------------------------------------------------------------- */

.testimonial {
  background: var(--color-bg);
  padding: var(--space-2xl) var(--space-xl) var(--space-xl);
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--color-primary);
}

/* Large decorative quote mark */
.testimonial::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  left: var(--space-md);
  font-size: 5rem;
  line-height: 1;
  font-family: Georgia, serif;
  color: var(--color-heading);
  opacity: 0.08;
  pointer-events: none;
}

.testimonial__header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.testimonial__logo {
  display: flex;
  align-items: center;
  height: 24px;
}

.testimonial__logo-img {
  height: 20px;
  width: auto;
  opacity: 0.6;
}

/* Fix stacked-format SVGs (Rodenstock: icon + wordmark) */
.testimonial__logo-img[alt="Rodenstock"] {
  height: 36px;
}

.testimonial__stars {
  color: #F5A623;
  font-size: 0.75rem;
  letter-spacing: 1px;
  flex-shrink: 0;
  margin-left: auto;
}

.testimonial__quote {
  flex: 1;
  padding-left: var(--space-md);
}

.testimonial__quote p {
  font-size: clamp(1rem, 0.975rem + 0.125vw, 1.0625rem);
  line-height: 1.8;
  color: var(--color-text);
}

.testimonial__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--space-xl);
  padding-left: var(--space-md);
}

.testimonial__author {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--color-heading);
  font-style: normal;
}

.testimonial__project {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* -----------------------------------------------------------------
   13b. Testimonials — Homepage (redesigned)
   ----------------------------------------------------------------- */

.testimonials-intro {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.testimonials-badge {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: var(--color-bg);
  padding: var(--space-md) var(--space-lg);
  box-shadow: var(--shadow-sm);
  align-self: flex-start;
}

.testimonials-badge__score {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-h3);
  color: var(--color-heading);
  margin-right: var(--space-sm);
}

.testimonials-badge__stars {
  color: #F5A623;
  font-size: 1rem;
  letter-spacing: 2px;
}

.testimonials-stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  background: var(--color-bg);
  padding: var(--space-xl);
  position: relative;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.testimonial-card__accent {
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--color-primary);
}

.testimonial-card__logo {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding-left: var(--space-md);
}

.testimonial-card__logo-img {
  height: 22px;
  width: auto;
}

.testimonial-card__logo-img--tall {
  height: 36px;
}

.testimonial-card__meta {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.testimonial-card__quote {
  padding-left: var(--space-md);
}

.testimonial-card__quote p {
  font-size: clamp(1.0625rem, 1rem + 0.3125vw, 1.1875rem);
  line-height: 1.7;
  color: var(--color-text);
  font-style: italic;
}

.testimonial-card__stars {
  color: #F5A623;
  font-size: 0.85rem;
  letter-spacing: 2px;
  padding-left: var(--space-md);
}

/* -----------------------------------------------------------------
   13c. Proof Section (Homepage Testimonials v3)
   ----------------------------------------------------------------- */

.section--proof {
  position: relative;
  overflow: hidden;
}

.section--proof::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(150, 193, 71, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(150, 193, 71, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.proof__header {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
  position: relative;
  z-index: 1;
}

.proof__badge {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(255, 255, 255, 0.06);
  padding: var(--space-sm) var(--space-lg);
  align-self: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.proof__score {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-h3);
  color: var(--color-text-light);
  margin-right: var(--space-xs);
}

.proof__stars {
  color: #F5A623;
  font-size: 1rem;
  letter-spacing: 2px;
}

/* Featured testimonial — large, dramatic */
.proof__featured {
  position: relative;
  padding: var(--space-2xl);
  margin-bottom: var(--space-xl);
  border-left: 4px solid var(--color-primary);
  background: rgba(255, 255, 255, 0.03);
  z-index: 1;
}

.proof__quotemark {
  position: absolute;
  top: -10px;
  left: var(--space-md);
  font-size: 8rem;
  line-height: 1;
  font-family: Georgia, serif;
  color: var(--color-primary);
  opacity: 0.15;
  pointer-events: none;
  user-select: none;
}

.proof__quote p {
  font-size: clamp(1.25rem, 1rem + 1.25vw, 1.75rem);
  line-height: 1.5;
  color: var(--color-text-light);
  font-style: italic;
  position: relative;
  z-index: 1;
}

.proof__source {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.proof__logo {
  height: 24px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

.proof__source-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.proof__company {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.9);
}

.proof__meta {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}

.proof__source-stars {
  color: #F5A623;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-left: auto;
}

/* Supporting testimonial cards */
.proof__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  position: relative;
  z-index: 1;
}

.proof__card {
  padding: var(--space-xl);
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid rgba(150, 193, 71, 0.3);
  transition: background var(--transition-base), border-color var(--transition-base);
}

.proof__card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-left-color: var(--color-primary);
}

.proof__card-quote p {
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

.proof__card-source {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.proof__card-logo {
  height: 18px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.5;
}

.proof__card-logo--tall {
  height: 30px;
}

.proof__card-meta {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}

.proof__card-stars {
  color: #F5A623;
  font-size: 0.75rem;
  letter-spacing: 2px;
  margin-left: auto;
}

/* -----------------------------------------------------------------
   14. CTA Section
   ----------------------------------------------------------------- */

.section--cta {
  position: relative;
  overflow: hidden;
}

.cta__bg {
  position: absolute;
  inset: 0;
}

.cta__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
}

.cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.cta__title {
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
}

.cta__text {
  opacity: 0.85;
  margin-bottom: var(--space-lg);
  max-width: 480px;
}

.cta__contact p {
  margin-bottom: var(--space-sm);
}

.cta__contact a {
  color: var(--color-primary);
}

.cta__contact a:hover {
  color: var(--color-text-light);
}

/* -----------------------------------------------------------------
   15. Buttons
   ----------------------------------------------------------------- */

.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.875rem 2rem;
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  border: 2px solid transparent;
  transition: background var(--transition-base), color var(--transition-base), border-color var(--transition-base), transform var(--transition-fast);
}

.btn--lg {
  padding: 1rem 2.5rem;
  font-size: 1.0625rem;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-text-light);
  border-color: var(--color-primary);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  color: var(--color-text-light);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-secondary:hover {
  background: var(--color-primary);
  color: var(--color-text-light);
  transform: translateY(-1px);
}

/* On dark backgrounds */
.hero .btn-secondary,
.section--dark .btn-secondary {
  color: var(--color-text-light);
  border-color: var(--color-text-light);
}

.hero .btn-secondary:hover,
.section--dark .btn-secondary:hover {
  background: var(--color-text-light);
  color: var(--color-heading);
}

/* Nav CTA — compact override (must come after .btn for specificity) */
.btn.nav__cta {
  font-size: 0.6875rem;
  padding: 0.375rem 0.75rem;
  letter-spacing: 0.03em;
}

/* -----------------------------------------------------------------
   16. Footer
   ----------------------------------------------------------------- */

.footer {
  background: var(--color-bg-dark);
  color: var(--color-text-light);
  padding-block: var(--space-3xl) var(--space-xl);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__logo-img {
  height: 32px;
  width: auto;
}

.footer__tagline {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--text-sm);
  margin-top: var(--space-sm);
}

.footer__partner {
  margin-top: var(--space-lg);
}

.footer__partner-label {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--space-sm);
}

.footer__partner-img {
  height: 28px;
  width: auto;
  opacity: 0.8;
}

.footer__nav-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
  color: rgba(255, 255, 255, 0.9);
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__link {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--text-sm);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--color-text-light);
}

.footer__contact address p {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--text-sm);
  line-height: 1.8;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding-top: var(--space-lg);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.4);
}

.footer__legal {
  display: flex;
  gap: var(--space-lg);
}

/* -----------------------------------------------------------------
   17. Page Hero (Subpages — full visual hero)
   ----------------------------------------------------------------- */

.page-hero {
  position: relative;
  padding-top: calc(var(--nav-height) + var(--space-3xl));
  padding-bottom: var(--space-3xl);
  background: var(--color-bg-dark);
  color: var(--color-text-light);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), 0 100%);
  overflow: hidden;
  min-height: 360px;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
}

.page-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  opacity: 0.15;
}

.page-hero__mark {
  position: absolute;
  right: 5%;
  bottom: 15%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.1;
}

.page-hero__mark img {
  filter: brightness(0) invert(1);
}

/* Mark peeking out from bottom edge */
.page-hero__mark--bottom {
  right: 6%;
  bottom: 40px;
  transform: translateY(50%);
  opacity: 0.15;
}

.page-hero .page-hero__mark--bottom img {
  width: 500px;
  height: auto;
}

/* Compact hero for legal pages (no background image, shorter) */
.page-hero--compact {
  min-height: auto;
  padding-bottom: calc(var(--space-2xl) + 40px);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), 0 100%);
}

.page-hero--compact .page-hero__mark {
  opacity: 0.08;
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.page-hero__eyebrow {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.page-hero__title {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.page-hero__subtitle {
  opacity: 0.8;
  font-size: clamp(1.0625rem, 1rem + 0.3125vw, 1.25rem);
  line-height: 1.6;
}

/* Page header (simple — legal pages) */
.page-header {
  padding-top: calc(var(--nav-height) + var(--space-3xl));
  padding-bottom: var(--space-2xl);
  background: var(--color-bg-dark);
  color: var(--color-text-light);
}

.page-header__title {
  color: var(--color-text-light);
}

/* -----------------------------------------------------------------
   18. Stats Band
   ----------------------------------------------------------------- */

.stats-band {
  background: var(--color-primary);
  padding-block: var(--space-xl);
  color: var(--color-text-light);
}

.stats-band--floating {
  background: none;
  padding-block: 0;
  margin-top: -60px;
  position: relative;
  z-index: 2;
}

.stats-band--floating .stats-band__grid {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(0, 42, 65, 0.12);
  padding: var(--space-xl) var(--space-lg);
}

.stats-band--floating .stats-band__number {
  color: var(--color-heading);
}

.stats-band--floating .stats-band__label {
  color: var(--color-text);
  opacity: 0.7;
}

.stats-band--floating .stats-band__item {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.stats-band--floating .stats-band__item:last-child {
  border-right: none;
}

.stats-band__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  text-align: center;
}

.stats-band__number {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.5rem, 1.25rem + 1.25vw, 2.25rem);
}

.stats-band__label {
  font-size: var(--text-sm);
  opacity: 0.85;
  margin-top: var(--space-xs);
  display: block;
}

/* -----------------------------------------------------------------
   18b. Story (Über uns)
   ----------------------------------------------------------------- */

.story {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.story__heading {
  font-size: var(--text-h2);
  color: var(--color-heading);
  margin-bottom: var(--space-lg);
}

.story__visual {
  position: relative;
}

.story__image-stack {
  position: relative;
}

.story__img--main {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
}

.story__accent {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 50%;
  height: 60%;
  background: var(--color-primary);
  z-index: 0;
}

.story__accent-mark {
  position: absolute;
  bottom: -10px;
  right: -10px;
  z-index: 2;
  background: var(--color-bg-dark);
  padding: 18px;
}

.story__accent-mark img {
  filter: brightness(0) invert(1);
}

/* -----------------------------------------------------------------
   18b-2. Logo Mosaic Section
   ----------------------------------------------------------------- */

.logo-mosaic__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
  align-items: center;
}

.logo-mosaic__text {
  max-width: 480px;
  text-align: center;
}

.logo-mosaic__shape {
  position: relative;
  width: 280px;
  aspect-ratio: 145.07 / 176.84;
}

.logo-mosaic__bar,
.logo-mosaic__square-top,
.logo-mosaic__square-bottom {
  position: absolute;
  overflow: hidden;
}

.logo-mosaic__bar img,
.logo-mosaic__square-top img,
.logo-mosaic__square-bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Vertical bar: 0 0 43.29 176.69 in viewBox 145.07 x 176.84 */
.logo-mosaic__bar {
  left: 0;
  top: 0;
  width: 29.84%;
  height: 100%;
}

/* Small square top-right: 56.72 0.15 74.9 74.9 */
.logo-mosaic__square-top {
  left: 39.1%;
  top: 0;
  width: 51.63%;
  height: 42.35%;
}

/* Large square bottom-right: 56.72 88.5 88.35 88.34 */
.logo-mosaic__square-bottom {
  left: 39.1%;
  top: 50.04%;
  width: 60.9%;
  height: 49.96%;
}

/* -----------------------------------------------------------------
   18c. Founder Section
   ----------------------------------------------------------------- */

.founder__grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.founder__portrait {
  position: relative;
  padding-left: 24px;
  padding-top: 24px;
}

.founder__mark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.founder__mark-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 100%;
  background: var(--color-primary);
}

.founder__mark-square {
  position: absolute;
  top: 0;
  left: 24px;
  width: 40%;
  height: 40%;
  background: var(--color-primary);
  opacity: 0.2;
}

.founder__img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 320px;
  height: auto;
}

.founder__name {
  color: var(--color-text-light);
  margin-bottom: var(--space-xs);
}

.founder__role {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-xl);
}

.founder__quote {
  border-left: 3px solid var(--color-primary);
  padding-left: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.founder__quote p {
  font-size: var(--text-h4);
  font-style: italic;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.founder__content p:not(.founder__role) {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

/* -----------------------------------------------------------------
   18d. Value Cards
   ----------------------------------------------------------------- */

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.value-card {
  position: relative;
  padding: var(--space-xl);
  padding-top: var(--space-3xl);
  text-align: center;
}

.value-card__number {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 7rem;
  color: var(--color-primary);
  opacity: 0.12;
  line-height: 1;
  pointer-events: none;
}

.value-card__title {
  margin-bottom: var(--space-sm);
}

.value-card__text {
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* -----------------------------------------------------------------
   18e. Eyebrow helper
   ----------------------------------------------------------------- */

.section__eyebrow {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

/* -----------------------------------------------------------------
   19. Referenzen Features
   ----------------------------------------------------------------- */

.ref-feature {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  padding: var(--space-2xl);
  margin-bottom: var(--space-xl);
  position: relative;
  background: var(--color-bg);
  overflow: hidden;
}

.ref-feature--alt {
  background: var(--color-bg-alt);
}

.ref-feature__accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--color-primary);
}

.ref-feature__logo-wrap {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.ref-feature__logo {
  height: 28px;
  width: auto;
  opacity: 0.7;
}

.ref-feature__logo--tall {
  height: 48px;
}

.ref-feature__meta {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-family: var(--font-heading);
  font-weight: 700;
}

.ref-feature__quote p {
  font-size: clamp(1.125rem, 1rem + 0.625vw, 1.5rem);
  line-height: 1.6;
  color: var(--color-heading);
  font-style: italic;
}

.ref-feature__stars {
  color: #F5A623;
  font-size: 1rem;
  letter-spacing: 2px;
}

/* Spektrum (Referenzen dark section) */
.spektrum-section {
  position: relative;
  overflow: hidden;
}

.spektrum {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
  position: relative;
  z-index: 1;
}

.spektrum__title {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.spektrum__text {
  color: rgba(255, 255, 255, 0.7);
  max-width: 400px;
  line-height: 1.7;
}

/* Bottom-peeking mark aligned with intro column */
.spektrum-section .container {
  position: relative;
}

.spektrum__bottom-mark {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35%;
  opacity: 0.06;
  pointer-events: none;
}

.spektrum__bottom-mark svg {
  width: 100%;
  height: auto;
  display: block;
  transform: translateY(70%);
}

.spektrum__categories {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.spektrum__cat {
  padding: var(--space-lg);
  border-left: 3px solid var(--color-primary);
}

.spektrum__cat-title {
  color: var(--color-text-light);
  font-size: var(--text-h4);
  margin-bottom: var(--space-sm);
}

.spektrum__list {
  padding-left: var(--space-lg);
}

.spektrum__list li {
  list-style: none;
  position: relative;
  padding-left: var(--space-md);
  margin-bottom: var(--space-xs);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.spektrum__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  background: var(--color-primary);
}

/* -----------------------------------------------------------------
   19d. Project Cards (Referenzen)
   ----------------------------------------------------------------- */

.project {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.project:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.project__visual {
  flex: 0 0 45%;
}

.project__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

.project__content {
  flex: 1;
}

.project__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
}

.project__logo {
  height: 28px;
  width: auto;
}

.project__logo--tall {
  height: 44px;
}

.project__stars {
  color: #F5A623;
  font-size: 0.85rem;
  letter-spacing: 2px;
}

.project__title {
  font-size: var(--text-h3);
  margin-bottom: var(--space-xs);
}

.project__client-info {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
}

.project__specs {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  padding: var(--space-lg);
  background: var(--color-bg-alt);
}

.project__spec-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  margin-bottom: 2px;
}

.project__spec-value {
  color: var(--color-text);
  font-size: var(--text-sm);
}

.project__quote {
  position: relative;
  padding-left: var(--space-2xl);
}

.project__quote::before {
  content: '\201C';
  position: absolute;
  top: -6px;
  left: 0;
  font-size: 3.5rem;
  line-height: 1;
  font-family: Georgia, serif;
  color: var(--color-primary);
  opacity: 0.35;
  pointer-events: none;
}

.project__quote p {
  font-style: italic;
  color: var(--color-text);
  line-height: 1.7;
}

/* CTA Band */
.cta-band {
  background: var(--color-bg-alt);
}

.cta-band__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-xl);
}

.cta-band__title {
  font-size: var(--text-h2);
  color: var(--color-heading);
}

/* -----------------------------------------------------------------
   19b. Contact Split
   ----------------------------------------------------------------- */

.contact-split {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-top: var(--nav-height);
}

.contact-split__info {
  background: var(--color-bg-dark);
  color: var(--color-text-light);
  padding: var(--space-3xl) var(--space-md);
  position: relative;
  overflow: hidden;
}

.contact-split__info-inner {
  max-width: 480px;
  position: relative;
  z-index: 1;
}

.contact-split__heading {
  font-size: var(--text-h2);
  color: var(--color-text-light);
  margin-bottom: var(--space-2xl);
  line-height: 1.3;
}

.contact-split__block {
  margin-bottom: var(--space-xl);
}

.contact-split__label {
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.contact-split__block address p,
.contact-split__block p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.contact-split__block a {
  color: var(--color-primary);
}

.contact-split__mark {
  position: absolute;
  right: -60px;
  bottom: -60px;
  pointer-events: none;
  opacity: 0.08;
}

.contact-split__mark img {
  filter: brightness(0) invert(1);
}

.contact-split__form-wrap {
  padding: var(--space-3xl) var(--space-md);
}

.contact-split__form-inner {
  max-width: 560px;
}

.contact-split__form-title {
  margin-bottom: var(--space-sm);
}

.contact-form__intro {
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
}

.form__group {
  margin-bottom: var(--space-lg);
}

.form__row--half {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.form__label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--color-heading);
  margin-bottom: var(--space-xs);
}

.form__input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form__input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(150, 193, 71, 0.15);
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.btn--full {
  width: 100%;
}

.contact-info__hours {
  border-collapse: collapse;
}

.contact-info__hours td {
  padding: var(--space-xs) var(--space-md) var(--space-xs) 0;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
}

/* -----------------------------------------------------------------
   19c. Benefits Grid (Karriere)
   ----------------------------------------------------------------- */

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.benefit {
  padding: var(--space-xl);
  background: var(--color-bg-alt);
  position: relative;
}

.benefit::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
}

.benefit:hover::after {
  transform: scaleX(1);
}

.benefit__icon {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.benefit__title {
  margin-bottom: var(--space-sm);
}

.benefit__text {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.7;
}

/* -----------------------------------------------------------------
   20. Legal Pages
   ----------------------------------------------------------------- */

.legal-content {
  max-width: 800px;
}

.legal-content h2 {
  font-size: var(--text-h3);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-size: var(--text-h4);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}

.legal-content p {
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.legal-content ul {
  margin-bottom: var(--space-md);
  padding-left: var(--space-xl);
}

.legal-content li {
  list-style: disc;
  margin-bottom: var(--space-xs);
  line-height: 1.8;
}

.legal-content a {
  color: var(--color-primary);
  text-decoration: underline;
}

/* -----------------------------------------------------------------
   21. Logo Bar (Referenzen)
   ----------------------------------------------------------------- */

.logo-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-3xl);
  padding: var(--space-2xl) 0;
}

.logo-bar__img {
  height: 28px;
  width: auto;
  opacity: 0.5;
  transition: opacity var(--transition-base);
}

.logo-bar__img:hover {
  opacity: 0.8;
}

.logo-bar__img--tall {
  height: 50px;
}

/* -----------------------------------------------------------------
   22. Reference Categories
   ----------------------------------------------------------------- */

.ref-category {
  background: var(--color-bg-alt);
  padding: var(--space-xl);
}

.ref-category__title {
  font-size: var(--text-h4);
  margin-bottom: var(--space-md);
  color: var(--color-heading);
}

.ref-category__list {
  padding-left: var(--space-lg);
}

.ref-category__list li {
  list-style: disc;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
  line-height: 1.6;
}

/* -----------------------------------------------------------------
   23. Jobs / Karriere
   ----------------------------------------------------------------- */

.benefits-list {
  margin-top: var(--space-lg);
  padding-left: var(--space-lg);
}

.benefits-list li {
  list-style: none;
  position: relative;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-sm);
  line-height: 1.6;
}

.benefits-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  background: var(--color-primary);
}

.jobs-empty {
  text-align: center;
  padding: var(--space-3xl) var(--space-xl);
}

.jobs-empty__text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-h4);
  color: var(--color-heading);
  margin-bottom: var(--space-md);
}

.jobs-empty__contact {
  margin-top: var(--space-md);
}

.jobs-empty__contact a {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-primary);
  font-size: var(--text-h4);
}

/* -----------------------------------------------------------------
   25. Leistungen — Services Grid
   ----------------------------------------------------------------- */

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.service-card {
  padding: var(--space-xl);
  background: var(--color-bg-alt);
}

.service-card__icon {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.service-card__title {
  font-size: var(--text-h4);
  margin-bottom: var(--space-sm);
}

.service-card__text {
  font-size: var(--text-sm);
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.service-card__list {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  padding-left: 0;
}

.service-card__list li {
  list-style: none;
  position: relative;
  padding-left: var(--space-md);
  font-size: var(--text-sm);
  line-height: 1.5;
  color: var(--color-text-muted);
}

.service-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  background: var(--color-primary);
}

/* -----------------------------------------------------------------
   26. Footer Social Links
   ----------------------------------------------------------------- */

.footer__social {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-fast);
}

.footer__social-link:hover {
  color: var(--color-text-light);
}

.footer__social-link svg {
  width: 20px;
  height: 20px;
}

/* -----------------------------------------------------------------
   24. Utilities / Animations
   ----------------------------------------------------------------- */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in--visible {
  opacity: 1;
  transform: translateY(0);
}

.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;
}

/* -----------------------------------------------------------------
   18. Responsive
   ----------------------------------------------------------------- */

/* Tablet (768px) */
@media (min-width: 768px) {
  .logo-mosaic__inner {
    flex-direction: row;
    gap: var(--space-3xl);
  }

  .logo-mosaic__text {
    text-align: left;
    flex: 1;
  }

  .logo-mosaic__shape {
    width: 340px;
    flex-shrink: 0;
  }

  .grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid--bento {
    grid-template-columns: repeat(2, 1fr);
  }

  .section {
    padding-block: var(--space-4xl);
  }

  .testimonials-intro {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .testimonial-card {
    flex-direction: row;
    align-items: center;
  }

  .testimonial-card__logo {
    flex: 0 0 200px;
    flex-direction: column;
    align-items: flex-start;
  }

  .testimonial-card__quote {
    flex: 1;
  }

  .testimonial-card__stars {
    flex-shrink: 0;
  }

  /* Proof section responsive */
  .proof__header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .proof__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof__featured {
    padding: var(--space-3xl);
  }

  .hero {
    padding-top: calc(var(--nav-height) + var(--space-4xl));
    padding-bottom: calc(var(--space-4xl) + 80px);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 80px), 0 100%);
    min-height: 560px;
  }

  .hero__bg-img {
    opacity: 0.25;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split__media {
    flex: 0 0 45%;
  }

  .split__content {
    flex: 1;
  }

  .split__image-wrap::before {
    top: -24px;
    left: -24px;
  }

  /* Process horizontal on tablet */
  .process {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }

  .process__step {
    flex: 1;
  }

  .process__connector {
    width: 60px;
    height: 2px;
    margin-top: 44px;
    flex-shrink: 0;
  }

  .trust-bar__list {
    flex-wrap: nowrap;
    gap: 0;
  }

  .trust-bar__item {
    flex: 1;
    position: relative;
    padding: var(--space-md) var(--space-lg);
  }

  /* Vertical dividers between trust bar items */
  .trust-bar__item + .trust-bar__item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: rgba(0, 0, 0, 0.1);
  }

  .cta {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .page-hero {
    padding-top: calc(var(--nav-height) + var(--space-4xl));
    padding-bottom: var(--space-4xl);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 60px), 0 100%);
    min-height: 420px;
  }

  .stats-band__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .story {
    flex-direction: row;
    align-items: center;
  }

  .story__text { flex: 1; }
  .story__visual { flex: 0 0 45%; }

  .founder__grid {
    flex-direction: row;
    align-items: center;
    gap: var(--space-3xl);
  }

  .founder__portrait { flex: 0 0 280px; }
  .founder__content { flex: 1; }

  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Project cards — side by side, alternating */
  .project {
    flex-direction: row;
    align-items: flex-start;
  }

  .project:nth-child(even) {
    flex-direction: row-reverse;
  }

  .project__specs {
    grid-template-columns: repeat(3, 1fr);
  }

  .ref-feature {
    flex-direction: row;
    align-items: center;
  }

  .ref-feature__logo-wrap {
    flex: 0 0 220px;
    flex-direction: column;
    align-items: flex-start;
  }

  .ref-feature__content {
    flex: 1;
  }

  .spektrum {
    flex-direction: row;
  }

  .spektrum__intro { flex: 0 0 35%; }

  .spektrum__categories {
    grid-template-columns: repeat(2, 1fr);
    flex: 1;
  }

  .contact-split {
    flex-direction: row;
  }

  .contact-split__info {
    flex: 0 0 42%;
    padding: var(--space-5xl) var(--space-2xl) var(--space-3xl);
  }

  .contact-split__info-inner {
    margin-left: auto;
  }

  .contact-split__form-wrap {
    flex: 1;
    padding: var(--space-5xl) var(--space-2xl) var(--space-3xl);
    display: flex;
    align-items: center;
  }

  .form__row--half {
    grid-template-columns: 1fr 1fr;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-band__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .footer__inner {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Desktop (1024px) */
@media (min-width: 1024px) {
  .nav__toggle {
    display: none;
  }

  .nav__menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    padding: 0;
    box-shadow: none;
    background: transparent;
    display: flex;
    align-items: center;
    gap: var(--space-xl);
  }

  .nav__list {
    flex-direction: row;
    gap: var(--space-xl);
    align-items: center;
  }

  .nav__cta {
    margin-top: 0;
  }

  .nav__logo-img {
    height: 40px;
  }

  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Bento grid — 2 wide + 4 compact at desktop */
  .grid--bento {
    grid-template-columns: repeat(4, 1fr);
  }

  .grid--bento .card--featured {
    grid-column: span 2;
  }

  .section {
    padding-block: var(--space-5xl);
  }

  .hero {
    padding-top: calc(var(--nav-height) + var(--space-5xl));
    padding-bottom: calc(var(--space-5xl) + 80px);
    min-height: 600px;
  }

  .hero__bg-img {
    opacity: 0.3;
  }

  .footer__logo-img {
    height: 36px;
  }

  .page-hero {
    min-height: 460px;
  }

  .page-hero__mark img {
    width: 300px;
    height: auto;
  }

  .story__accent {
    top: -30px;
    left: -30px;
  }

  .founder__portrait { flex: 0 0 320px; }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .contact-split__info {
    padding: var(--space-5xl) var(--space-3xl);
  }

  .contact-split__form-wrap {
    padding: var(--space-5xl) var(--space-3xl);
  }
}
