/* LOKALE EINBINDUNG: LINE SEED JP */
@font-face {
  font-family: 'LINE Seed JP';
  src: url('../media/LINESeedJP-Thin.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'LINE Seed JP';
  src: url('../media/LINESeedJP-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'LINE Seed JP';
  src: url('../media/LINESeedJP-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'LINE Seed JP';
  src: url('../media/LINESeedJP-ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-dark: #07080a;
  --bg-muted: #2c2c2c;
  --bg-card: #121316;
  --bg-card-border: #1f2126;
  --accent-yellow: #d4ff00;
  --text-white: #ffffff;
  --text-muted: #9e9e9e;
  --max-width: 1440px;
  --font-main: 'LINE Seed JP', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-handwriting: 'Caveat', cursive;
  --font-editorial: 'Cormorant Garamond', Georgia, serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-white);
  font-family: var(--font-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s ease;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.section-spacing {
  padding: 120px 0;
  width: 100%;
  overflow: hidden;
}

.tag-label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #bfbfbf;
  font-weight: 700;
  margin-bottom: 22px;
  display: inline-block;
}

.section-num {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 28px;
}

.section-num::after {
  content: "";
  width: 32px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* HEADER */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  transition: background-color 0.3s ease, padding 0.3s ease, border-bottom 0.3s ease;
}

header.header-scrolled {
  background: rgba(7, 8, 10, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  line-height: 1;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

header.menu-is-open .logo-wrap {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.bm-header-logo {
  height: 17px;
  width: auto;
  display: block;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.logo-wrap:hover .bm-header-logo {
  transform: scale(1.05);
}

.logo-text {
  font-family: var(--font-main);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #ffffff;
  text-transform: lowercase;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.logo-text .highlight-bran {
  color: var(--accent-yellow);
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
  list-style: none;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-weight: 700;
  color: #d1d1d1;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

header.menu-is-open .nav-links {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.nav-links a:hover {
  color: var(--accent-yellow);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.burger-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  outline: none;
  z-index: 1002;
  width: 34px;
  height: 34px;
}

.burger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
  transform-origin: center;
}

.burger-btn.is-active span:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
  background: var(--accent-yellow);
}

.burger-btn.is-active span:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
  background: var(--accent-yellow);
}

/* FULLSCREEN OVERLAY */
.fullscreen-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(12, 13, 16, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 100px 20px 60px;
}

.fullscreen-overlay.active {
  opacity: 1;
  visibility: visible;
}

.overlay-container {
  width: 100%;
  max-width: 1240px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: flex-start;
  margin: auto 0;
}

.overlay-nav h4 {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-yellow);
  margin-bottom: 24px;
  font-weight: 800;
}

.overlay-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.overlay-nav li a {
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  display: inline-flex;
  align-items: baseline;
  gap: 16px;
  text-transform: uppercase;
  transition: color 0.25s ease, transform 0.25s ease;
}

.overlay-nav li a span.num {
  font-size: 0.9rem;
  color: var(--accent-yellow);
  font-weight: 800;
  font-family: monospace;
}

.overlay-nav li a:hover {
  color: var(--accent-yellow);
  transform: translateX(10px);
}

.overlay-contact-info {
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  font-size: 0.85rem;
  color: #888;
}

.overlay-contact-info a {
  color: #fff;
  display: block;
  margin-top: 6px;
  font-weight: 700;
}

/* ANFRAGE-FORMULAR */
.overlay-form-wrap {
  background: #15161b;
  border: none;
  border-radius: 0;
  padding: 40px;
  box-shadow: none;
}

.overlay-form-wrap h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.overlay-form-wrap p.form-sub {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 26px;
}

.chips-label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #bbb;
  margin-bottom: 10px;
  display: block;
  font-weight: 700;
}

.chips-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.chip-radio {
  display: none;
}

.chip-btn {
  padding: 8px 16px;
  background: #1e2026;
  border: none;
  border-radius: 0;
  font-size: 0.78rem;
  font-weight: 700;
  color: #ccc;
  cursor: pointer;
  transition: all 0.2s ease;
}

.chip-radio:checked + .chip-btn {
  background: var(--accent-yellow);
  color: #000;
  border: none;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group input, .form-group textarea {
  width: 100%;
  background: #0f1013;
  border: none;
  border-radius: 0;
  padding: 13px 16px;
  color: #fff;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  box-shadow: none;
}

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border: none;
  box-shadow: none;
  background: #111317;
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.btn-submit {
  width: 100%;
  background: var(--accent-yellow);
  color: #000;
  border: none;
  padding: 16px;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease;
  margin-top: 8px;
}

.btn-submit:hover {
  background: #fff;
  transform: translateY(-2px);
}

/* 01: HERO SECTION */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 160px 0 50px;
  background: 
    linear-gradient(
      to right,
      rgba(7, 8, 10, 0.98) 0%,
      rgba(7, 8, 10, 0.92) 40%,
      rgba(7, 8, 10, 0.55) 70%,
      rgba(7, 8, 10, 0.2) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(7, 8, 10, 0.6) 0%,
      transparent 20%,
      transparent 80%,
      rgba(7, 8, 10, 0.95) 100%
    ),
    url('../media/brandmedia-design-01.avif') right center/cover no-repeat;
  overflow: hidden;
}

.hero-content {
  max-width: 880px;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: clamp(2.6rem, 7vw, 6.4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
  word-break: break-word;
}

.hero-title .solid {
  color: #ffffff;
  display: block;
}

.hero-title .outline {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1.5px #ffffff;
}

.hero-title .dot {
  color: var(--accent-yellow);
}

.hero-desc-wrap {
  border-left: 2px solid var(--accent-yellow);
  padding-left: 20px;
  max-width: 440px;
  margin-bottom: 50px;
}

.hero-desc-wrap p {
  font-size: 1.05rem;
  color: #d1d1d1;
  line-height: 1.6;
}

.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-scroll {
  display: flex;
  align-items: center;
  gap: 16px;
}

.scroll-circle {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: border-color 0.25s, transform 0.25s;
}

.hero-scroll:hover .scroll-circle {
  border-color: var(--accent-yellow);
  color: var(--accent-yellow);
  transform: translateY(4px);
}

.scroll-text {
  font-size: 0.72rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.4;
  color: #bbb;
}

.hero-tags {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: #888;
  text-align: right;
  line-height: 1.8;
}

/* RECHTE FIXED SEITEN-NAVIGATION */
.hero-pagination {
  position: fixed;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: right;
  z-index: 100;
  padding: 12px 6px;
}

.hero-pagination a {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  padding-right: 18px;
  text-shadow: none;
}

.hero-pagination a:hover {
  color: var(--accent-yellow);
}

.hero-pagination a.active {
  color: var(--accent-yellow);
  font-size: 1.15rem;
  font-weight: 800;
  transform: translateX(-4px);
}

.hero-pagination a.active::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 10px;
  height: 2px;
  background: var(--accent-yellow);
  transform: translateY(-50%);
}

/* SEKTIONEN MIT HINTERGRUND #2c2c2c */
.section-custom-dark {
  background-color: var(--bg-muted);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #3a3a3a;
  border-bottom: 1px solid #3a3a3a;
  width: 100%;
}

/* 02: DAS PROBLEM */
.problem-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.problem-visual-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}

.problem-bm-large {
  width: 100%;
  max-width: 580px;
  height: auto;
  opacity: 1;
  display: block;
  user-select: none;
  filter: none;
  border: none;
}

.problem-quote-box {
  margin-top: 36px;
  max-width: 460px;
  width: 100%;
}

.problem-quote-box::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}

.problem-quote-text {
  font-size: 1.1rem;
  color: #d8d8d8;
  line-height: 1.6;
  font-weight: 400;
}

.problem-content h2 {
  font-size: clamp(2.2rem, 4.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: #ffffff;
}

.problem-content h2 em {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 1.15em;
  text-transform: none;
  color: var(--accent-yellow);
  display: inline-block;
  padding-left: 2px;
}

.problem-desc {
  font-size: 1.05rem;
  color: #d1d1d1;
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 40px;
}

.btn-circle-text-white {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ffffff;
}

.btn-circle-icon-white {
  width: 44px;
  height: 44px;
  background: #ffffff;
  color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s, background 0.25s, color 0.25s;
  flex-shrink: 0;
}

.btn-circle-text-white:hover .btn-circle-icon-white {
  transform: scale(1.08);
  background: var(--accent-yellow);
  color: #000000;
}

/* 03: WEBSITE-CHECK */
.website-check-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.25fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.check-left h2 {
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.check-left-accent {
  width: 40px;
  height: 3px;
  background: var(--accent-yellow);
  margin-bottom: 24px;
}

.check-left p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 34px;
}

.check-tags {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.75rem;
  letter-spacing: 2px;
  font-weight: 700;
  color: #666;
  text-transform: uppercase;
}

/* AUDIT SYSTEM */
.audit-graphic-card {
  position: relative;
  background: linear-gradient(145deg, #13151b 0%, #0c0d11 100%);
  border: 1px solid #232731;
  border-radius: 0;
  padding: 30px 26px;
  box-shadow: none;
  overflow: hidden;
}

.audit-radar-glow {
  position: absolute;
  top: -40%;
  right: -30%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(212, 255, 0, 0.12) 0%, transparent 70%);
  pointer-events: none;
  animation: pulseGlow 4s infinite alternate ease-in-out;
}

@keyframes pulseGlow {
  0% { transform: scale(0.9); opacity: 0.6; }
  100% { transform: scale(1.2); opacity: 1; }
}

.audit-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #1f232c;
  padding-bottom: 16px;
  margin-bottom: 22px;
}

.audit-live-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #aaa;
  font-weight: 700;
}

.audit-dot-pulse {
  width: 8px;
  height: 8px;
  background: var(--accent-yellow);
  border-radius: 0;
  animation: dotBlink 1.8s infinite;
}

@keyframes dotBlink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.audit-url-pill {
  font-size: 0.74rem;
  background: #1a1c24;
  padding: 4px 12px;
  border-radius: 0;
  color: #bbb;
  font-family: monospace;
  border: 1px solid #2a2d39;
}

.audit-score-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 26px;
}

.audit-score-circle {
  width: 88px;
  height: 88px;
  border-radius: 0;
  border: 3px solid var(--accent-yellow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  flex-shrink: 0;
}

.score-num {
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
}

.score-lbl {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-yellow);
  font-weight: 800;
  margin-top: 2px;
}

.audit-score-summary strong {
  font-size: 1.05rem;
  display: block;
  color: #fff;
  margin-bottom: 4px;
}

.audit-score-summary p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 0;
}

.audit-bars-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.audit-bar-item .bar-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #bbb;
}

.audit-bar-item .bar-meta span.val {
  color: var(--accent-yellow);
  font-family: monospace;
}

.progress-track {
  width: 100%;
  height: 5px;
  background: #1d2028;
  border-radius: 0;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--accent-yellow);
  border-radius: 0;
}

.check-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.stat-badge-round {
  width: 160px;
  height: 160px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1.4;
  position: relative;
  margin-bottom: 34px;
}

.stat-badge-round::before {
  content: "";
  position: absolute;
  top: -4px;
  width: 7px;
  height: 7px;
  background: var(--accent-yellow);
  border-radius: 50%;
}

.stat-list {
  width: 100%;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-bottom: 1px solid #1f2126;
  padding-bottom: 12px;
}

.stat-item .label {
  color: #999;
  display: flex;
  align-items: center;
  gap: 10px;
}

.stat-item .label span {
  color: var(--accent-yellow);
}

.stat-item .value {
  color: #fff;
  font-weight: 800;
}

/* 04: AUSGEWÄHLTE PROJEKTE */
.projects-slider-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.35fr;
  gap: 60px;
  align-items: center;
}

.projects-info h2 {
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #ffffff;
}

.projects-info-accent {
  width: 36px;
  height: 3px;
  background: var(--accent-yellow);
  margin-bottom: 24px;
}

.project-list-nav {
  list-style: none;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 340px;
  overflow-y: auto;
  padding-right: 12px;
}

.project-list-nav::-webkit-scrollbar {
  width: 4px;
}
.project-list-nav::-webkit-scrollbar-thumb {
  background: #444;
  border-radius: 0;
}

.project-list-nav li {
  font-size: 0.95rem;
  font-weight: 700;
  color: #a0a0a0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #3d3d3d;
  padding: 10px 4px;
  transition: all 0.25s ease;
}

.project-list-nav li.active, .project-list-nav li:hover {
  color: #ffffff;
  border-color: var(--accent-yellow);
  transform: translateX(4px);
}

.project-list-nav li span.location {
  font-size: 0.78rem;
  color: #888;
  font-weight: 400;
}

.projects-info-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 420px;
}

.project-counter {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #888;
}

.project-counter strong {
  color: #ffffff;
}

/* SLIDER CONTAINER */
.project-hero-slide {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 620px;
  margin: 0 auto;
  background: #000;
  overflow: hidden;
  box-shadow: none;
  border: none;
}

.project-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: opacity 0.35s ease;
  border: none;
}

.project-slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 32px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.project-meta h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.project-meta .location {
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 10px;
}

.project-meta .slogan {
  font-size: 0.85rem;
  color: #aaa;
  border-top: 2px solid var(--accent-yellow);
  padding-top: 8px;
  display: inline-block;
}

.slider-arrows {
  display: flex;
  gap: 12px;
}

.slider-arrow-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  user-select: none;
  transition: border-color 0.25s, background 0.25s, color 0.25s;
}

.slider-arrow-btn:hover {
  background: var(--accent-yellow);
  color: #000;
  border-color: var(--accent-yellow);
}

/* 05: ÜBER MICH */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: center;
}

.about-image-wrap {
  width: 100%;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: hidden;
  display: flex;
}

.about-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border: none;
}

.about-content h2 {
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.about-quote {
  font-size: 1.2rem;
  color: #fff;
  font-weight: 700;
  border-left: 3px solid var(--accent-yellow);
  padding-left: 20px;
  margin: 28px 0;
  font-style: italic;
}

.feature-list {
  list-style: none;
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 700;
}

.feature-list li span {
  color: var(--accent-yellow);
}

/* LEISTUNGEN */
.section-services-dark {
  background-color: var(--bg-muted);
  color: #ffffff;
  border-top: 1px solid #3a3a3a;
  border-bottom: 1px solid #3a3a3a;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.service-box {
  background: #1c1d21;
  border: 1px solid #383b44;
  padding: 36px 26px;
  box-shadow: none;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-box:hover {
  transform: translateY(-4px);
  border-color: var(--accent-yellow);
}

.service-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent-yellow);
  margin-bottom: 14px;
}

.service-box h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.service-box p {
  font-size: 0.92rem;
  color: #bfbfbf;
}

/* SIGNAL-WELLE */
.wave-flow-section {
  margin-top: 90px;
  position: relative;
  padding: 20px 0;
}

.wave-svg-container {
  position: relative;
  width: 100%;
  height: 120px;
}

.wave-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.wave-path-base {
  stroke: #3e414c;
  stroke-width: 2;
  fill: none;
}

.wave-path-glow {
  stroke: url(#waveGlowGrad);
  stroke-width: 3;
  fill: none;
}

.traveling-photon {
  fill: var(--accent-yellow);
}

.wave-labels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 10px;
}

.wave-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: transform 0.25s ease;
}

.wave-stage:hover {
  transform: translateY(-3px);
}

.stage-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-family: monospace;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-yellow);
  margin-bottom: 6px;
  font-weight: 700;
}

.stage-indicator::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--accent-yellow);
  border-radius: 50%;
}

.stage-headline {
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
  letter-spacing: -0.2px;
}

.stage-desc {
  font-size: 0.8rem;
  color: #d1d1d1;
  line-height: 1.4;
  max-width: 220px;
}

/* TESTIMONIALS */
.big-statement {
  text-align: center;
  padding: 80px 0 60px;
  border-top: 1px solid #1f2126;
  border-bottom: 1px solid #1f2126;
}

.big-statement h2 {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.25;
}

.big-statement span {
  color: var(--accent-yellow);
  display: block;
  margin-top: 8px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  padding: 38px 28px;
  box-shadow: none;
}

.testi-quote {
  font-style: italic;
  color: #dedede;
  margin-bottom: 24px;
  font-size: 0.98rem;
  line-height: 1.7;
}

.testi-author strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
}

.testi-author span {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* FOOTER CTA */
.cta-banner-wrapper {
  padding: 0 40px 60px;
  width: 100%;
}

.cta-banner {
  background: var(--accent-yellow);
  color: #000;
  padding: 80px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  width: 100%;
  box-shadow: none;
}

.cta-banner-left {
  max-width: 680px;
}

.cta-banner-badge {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

.cta-banner h2 {
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 14px;
}

.cta-banner p {
  font-size: 1.2rem;
  font-weight: 700;
}

.btn-black {
  background: #000;
  color: #fff;
  padding: 16px 38px;
  font-weight: 700;
  display: block;
  text-align: center;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: none;
}

.btn-black:hover {
  background: #1f1f1f;
}

.contact-links {
  font-size: 0.95rem;
  font-weight: 700;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* SUB-FOOTER */
footer {
  border-top: 1px solid #1a1a1a;
  padding: 40px 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  width: 100%;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
}

.bm-footer-logo {
  height: 12px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .hero-pagination {
    display: none !important;
  }
  .problem-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .website-check-layout, .projects-slider-layout {
    grid-template-columns: 1fr;
  }
  .check-right {
    align-items: flex-start;
  }
  .overlay-container {
    grid-template-columns: 1fr;
    gap: 40px;
    margin: 0;
  }
  .project-hero-slide {
    max-width: 100%;
  }
}

@media (max-width: 992px) {
  .nav-links {
    display: none;
  }
  .about-split, .cta-banner {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .wave-labels-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px 16px;
  }
  .wave-svg-container {
    display: none;
  }
  .contact-links {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  header {
    padding: 18px 0;
  }
  .fullscreen-overlay {
    padding: 85px 16px 50px;
    align-items: flex-start;
  }
  .overlay-nav h4 {
    margin-bottom: 16px;
  }
  .overlay-nav ul {
    gap: 12px;
  }
  .overlay-nav li a {
    font-size: 1.45rem;
  }
  .overlay-contact-info {
    margin-top: 28px;
    padding-top: 18px;
  }
  .cta-banner-wrapper {
    padding: 0 20px 40px;
  }
  .cta-banner {
    padding: 50px 24px;
  }
  .section-spacing {
    padding: 80px 0;
  }
  .hero {
    padding: 140px 0 40px;
    background-position: center right;
  }
  .hero-title {
    font-size: 2em;
    line-height: 1.1;
  }
  .services-grid, .feature-list, .form-grid-2, .wave-labels-grid {
    grid-template-columns: 1fr;
  }
  .hero-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .hero-tags {
    text-align: left;
  }
  .project-slide-overlay {
    padding: 20px;
  }
  .project-meta h3 {
    font-size: 1.4rem;
  }
  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .overlay-form-wrap {
    padding: 24px 18px;
  }
  .audit-score-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}


/* SPRACH-NAVIGATION */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.lang-switch a {
  color: #777;
  padding: 2px 4px;
  transition: color 0.2s ease;
  line-height: 1;
}

.lang-switch a:hover {
  color: #fff;
}

.lang-switch a.active {
  color: var(--accent-yellow);
}

.lang-switch .divider {
  color: #444;
  font-size: 0.7rem;
  user-select: none;
}

/* Sprache im Overlay */
.overlay-lang-switch {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}