/* =========================================
   ATTENTION ERA — styles.css
   ========================================= */

/* --- Reset & Base ----------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Farben — Attention Era Brand */
  --bg:          #000000;
  --bg-card:     #111111;
  --bg-section:  #0a0a0a;
  --accent:      #e51c26;   /* Exaktes Logo-Rot */
  --accent-dim:  #c4161f;
  --accent-dark: #9a1018;
  --white:       #ffffff;
  --black:       #000000;
  --gray-100:    #f0f0f0;
  --gray-300:    #aaaaaa;
  --gray-500:    #555555;
  --border:      #1e1e1e;

  /* Typografie */
  --font-head:   'Montserrat', 'Arial Black', sans-serif;
  --font-body:   'Inter', 'Arial', sans-serif;

  /* Spacing */
  --section-pad: 96px;
  --container:   1200px;

  /* Transitions */
  --trans:       0.25s ease;
}

html { scroll-behavior: smooth; font-size: 17px; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

p { font-size: 1rem; line-height: 1.7; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Typography ------------------------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.eyebrow {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 16px;
}

/* --- Utility ---------------------------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-pad) 0;
}

.section--dark  { background: var(--bg-section); }
.section--card  { background: var(--bg-card); }

.text-center { text-align: center; }
.text-accent { color: var(--accent); }

.highlight {
  background: var(--accent);
  color: var(--white);
  padding: 0 6px;
  border-radius: 2px;
}

/* --- Buttons ---------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--trans);
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover { background: var(--accent-dim); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--bg); }

.btn-ghost {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  padding: 12px 28px;
}
.btn-ghost:hover { background: var(--accent); color: var(--white); }

/* =========================================
   HEADER / NAV
   ========================================= */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  transition: background 0.5s ease, border-color 0.5s ease, box-shadow 0.4s ease,
              height 0.4s ease, padding-top 0.4s ease, align-items 0s ease 0.4s;
}

.header.scrolled {
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  align-items: flex-start;
  height: auto;
  padding-top: 14px;
}

/* Logo + Burger Container */
.header-brand {
  position: relative;
  display: flex;
  align-items: center;
}

/* Logo — beide Varianten */
.logo {
  display: flex;
  align-items: center;
  position: relative;
  height: 42px;
}

/* Volllogo: sichtbar, fährt nach links weg */
.logo-full {
  height: 42px;
  width: auto;
  display: block;
  opacity: 1;
  transform: translateX(0) scale(1);
  transition: opacity 0.35s ease, transform 0.4s ease;
  transform-origin: left center;
}

/* Kleinlogo: unsichtbar, wartet auf Scrolled */
.logo-small {
  position: absolute;
  top: 0; left: 0;
  height: 48px;
  width: 48px;
  display: block;
  opacity: 0;
  transform: scale(0.6) translateY(-6px);
  pointer-events: none;
  transition: opacity 0.35s ease 0.2s, transform 0.35s ease 0.2s;
  transform-origin: left top;
}

/* Nav: fährt nach rechts raus und faded */
.nav {
  display: flex;
  align-items: center;
  gap: 40px;
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: auto;
}

.nav a {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  transition: color var(--trans);
  position: relative;
  text-decoration: none;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: #000;
  transition: width var(--trans);
}

.nav a:hover { color: #000; }
.nav a:hover::after { width: 100%; }
.nav a.active { color: #000; }
.nav a.active::after { width: 100%; }

/* CTA-Button bleibt weiß auf Rot */
.nav a.nav-cta,
.nav a.btn-primary {
  color: #fff !important;
}
.nav a.nav-cta::after,
.nav a.btn-primary::after { display: none; }

.nav-cta { margin-left: 8px; }

/* Hamburger: absolut positioniert — belegt keinen Flow-Platz */
.hamburger {
  position: absolute;
  top: calc(100% + 8px); /* direkt unter dem Logo */
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px 12px;
  width: 48px;
  box-sizing: border-box;
  background: #ffffff;
  border: none;
  border-radius: 4px;
  z-index: 1100;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.35s ease 0.3s, transform 0.35s ease 0.3s;
}

/* === SCROLLED STATE === */
/* Hintergrund verschwindet */
.header.scrolled {
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
}

/* Volllogo fährt weg */
.header.scrolled .logo-full {
  opacity: 0;
  transform: translateX(-10px) scale(0.8);
  pointer-events: none;
}

/* Kleinlogo erscheint */
.header.scrolled .logo-small {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

/* Nav fährt raus */
.header.scrolled .nav {
  opacity: 0;
  transform: translateX(16px);
  pointer-events: none;
}

/* Burger erscheint */
.header.scrolled .hamburger {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #000;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mini Dropdown Menu */
.mobile-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 240px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.22);
  z-index: 1100;
  overflow: hidden;
  max-height: 80vh;
  overflow-y: auto;

  /* Animation */
  opacity: 0;
  transform: scale(0.92) translateY(-6px);
  transform-origin: top left;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.mobile-menu.open {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

/* Toggle-Button (Home) */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 13px 20px;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #111;
  cursor: pointer;
  text-align: left;
  transition: color var(--trans), background var(--trans);
}
.mobile-menu-toggle:hover { color: var(--accent); background: rgba(0,0,0,0.03); }

.toggle-arrow {
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.2s ease;
  display: inline-block;
  color: var(--accent);
}
.mobile-menu-toggle.open .toggle-arrow { transform: rotate(90deg); }

/* Aufklappbare Unterabschnitte */
.mobile-menu-sub {
  max-height: 0;
  overflow: hidden;
  background: #f7f7f7;
  transition: max-height 0.28s ease;
}
.mobile-menu-sub.open { max-height: 400px; }

.mobile-menu-sub a {
  display: block;
  font-family: var(--font-head);
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #555;
  padding: 9px 20px 9px 28px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  text-decoration: none;
  transition: color var(--trans), background var(--trans);
  position: relative;
}
.mobile-menu-sub a::before {
  content: '–';
  position: absolute;
  left: 16px;
  color: var(--accent);
}
.mobile-menu-sub a:last-child { border-bottom: none; }
.mobile-menu-sub a:hover { color: var(--accent); background: rgba(0,0,0,0.04); }

/* Hauptlink (Work) */
.mobile-menu a {
  display: block;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #111;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  transition: color var(--trans), background var(--trans);
  text-decoration: none;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--accent); background: rgba(0,0,0,0.03); }

.mobile-menu-main {
  font-size: 0.75rem;
  font-weight: 800;
  padding: 13px 20px;
}

/* CTA */
.mobile-menu-cta {
  background: var(--accent) !important;
  color: #fff !important;
  text-align: center;
  font-size: 0.7rem !important;
  font-weight: 800 !important;
  padding: 13px 20px !important;
  letter-spacing: 0.1em !important;
  border-bottom: none !important;
}
.mobile-menu-cta:hover { background: var(--accent-dim) !important; color: #fff !important; }

/* =========================================
   HERO
   ========================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 72px;
  overflow: hidden;
}

/* Hintergrundbild */
.hero-bg {
  position: absolute;
  inset: 0;
  /* BILD: Ersetze src durch dein Hero-Bild */
  background-image: url('https://images.unsplash.com/photo-1611532736597-de2d4265fba3?w=1920&q=80');
  background-size: cover;
  background-position: center;
  filter: brightness(0.25);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.9) 0%, rgba(255,85,0,0.08) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.95;
  margin-bottom: 32px;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--gray-300);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray-500);
  font-size: 0.7rem;
  font-family: var(--font-head);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.scroll-indicator::before {
  content: '';
  width: 1px;
  height: 40px;
  background: var(--gray-500);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* =========================================
   INTRO STATEMENT
   ========================================= */
.intro-statement-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-headline {
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
}

.intro-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.intro-body p {
  font-size: 1.05rem;
  color: var(--gray-300);
  line-height: 1.7;
}

/* Intro auf schwarzem BG, kein separates dark-bg nötig */
.intro-statement { background: #000 !important; }

@media (max-width: 768px) {
  .intro-statement-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* =========================================
   SERVICES OVERVIEW
   ========================================= */
.services-intro h2 {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 24px;
  color: var(--white);
}

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

/* Rote Karten — exakt wie auf der Original-Site */
.service-card {
  background: var(--accent);
  padding: 32px 28px 28px;
  border-radius: 12px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background var(--trans), transform var(--trans);
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card:hover {
  background: #ffffff;
  transform: translateY(-2px);
}

.service-card:hover h3 {
  color: var(--accent);
}

.service-card:hover .star {
  content: url('assets/images/CI Elemente/WEBP/Stern-rot.webp');
  filter: none;
  opacity: 1;
}

.service-card h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 900;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

/* 4-Zacken-Stern unten rechts */
.service-card .star {
  position: absolute;
  bottom: 20px;
  right: 24px;
  width: 54px;
  height: 54px;
  display: block;
}

/* Nummer und Icon ausblenden — nicht im Original */
.service-num,
.service-icon,
.service-card p { display: none; }

/* =========================================
   WHY SECTION — Roter Hintergrund
   ========================================= */
.why-section {
  background: var(--accent) !important;
}

.why-section .section-header {
  margin-bottom: 48px;
}

.why-section h2 {
  font-size: clamp(1.6rem, 4vw, 3rem);
  color: var(--white);
}

.why-section .eyebrow {
  color: rgba(255,255,255,0.7);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.benefit-card {
  padding: 32px 28px;
  background: #111111;
  border-radius: 8px;
  position: relative;
}

.benefit-num { display: none; }

.benefit-card h3 {
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.benefit-card p {
  color: var(--white);
}

/* =========================================
   INDUSTRIES — Weißer Hintergrund, 2×3 Kacheln
   ========================================= */
.industries-section {
  background: #ffffff !important;
}

.industries-section .eyebrow { color: #333; }

.industries-heading {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--black);
  margin-bottom: 48px;
  line-height: 1.05;
}

/* 2-Spalten-Raster mit großzügigem Abstand */
.industries-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px 48px;
}

/* Einzelne Kachel */
.industry-tile {}

.tile-label {
  font-family: var(--font-head);
  font-size: 1.53rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 12px;
  text-transform: none;
  letter-spacing: 0;
}

/* Foto + rotes Textfeld nebeneinander — mit Abstand, Hochformat */
.tile-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;           /* Abstand zwischen Foto und roter Karte */
  min-height: 432px;   /* Hochformat / vertikal — 20% höher */
}

.tile-photo {
  border-radius: 12px;
  overflow: hidden;
}

.tile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Rote Textkarte */
.tile-text {
  background: var(--accent);
  border-radius: 12px;
  padding: 24px 20px 52px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tile-text p {
  color: var(--white);
  font-weight: 500;
}

.tile-star {
  position: absolute;
  bottom: 16px;
  right: 18px;
  width: 46px;
  height: 46px;
  display: block;
}

/* ---- Aufklapp-Animation beim Scrollen ---- */
.tile-reveal {
  opacity: 0;
  transform: perspective(600px) rotateX(-25deg);
  transform-origin: top center;
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

/* linke Kacheln kommen von links, rechte von rechts */
.industries-grid .industry-tile:nth-child(odd)  .tile-reveal,
.industries-grid .industry-tile:nth-child(odd) {
  transform-origin: top left;
}
.industries-grid .industry-tile:nth-child(even) {
  transform-origin: top right;
}

.tile-reveal.revealed {
  opacity: 1;
  transform: perspective(600px) rotateX(0deg);
}

/* Gestaffelte Verzögerung je Reihe */
.industry-tile:nth-child(1) { transition-delay: 0s; }
.industry-tile:nth-child(2) { transition-delay: 0.08s; }
.industry-tile:nth-child(3) { transition-delay: 0s; }
.industry-tile:nth-child(4) { transition-delay: 0.08s; }
.industry-tile:nth-child(5) { transition-delay: 0s; }
.industry-tile:nth-child(6) { transition-delay: 0.08s; }

/* Responsive */
@media (max-width: 900px) {
  .industries-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 600px) {
  .tile-inner {
    grid-template-columns: 1fr 1fr;
    min-height: 260px;
  }
}

@media (max-width: 420px) {
  .tile-inner { grid-template-columns: 1fr; }
  .tile-photo { height: 220px; }
}

/* =========================================
   SERVICE DETAILS
   ========================================= */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }

.service-detail-visual {
  position: relative;
  aspect-ratio: 3/4;
  max-height: 600px;
  overflow: hidden;
  border-radius: 2px;
}

.service-detail-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* BILDER-KOMMENTAR: Ersetze die placeholder-src durch dein echtes Bild */
.service-detail-visual .placeholder-label {
  position: absolute;
  bottom: 16px; left: 16px;
  background: rgba(0,0,0,0.8);
  color: var(--gray-300);
  font-size: 0.7rem;
  padding: 6px 12px;
  border-radius: 2px;
  font-family: var(--font-head);
  letter-spacing: 0.1em;
}

.service-detail-content h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 12px;
}

.service-detail-content .lead {
  font-size: 1.1rem;
  color: var(--gray-300);
  line-height: 1.7;
  margin-bottom: 40px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.feature-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}

.feature-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}

.feature-item h4 {
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 4px;
  letter-spacing: 0.08em;
}

.feature-item p {
  color: var(--gray-300);
}

/* =========================================
   SMILEY OVERLAY
   ========================================= */
.service-detail-visual {
  position: relative;
}

.service-smiley {
  position: absolute;
  top: -40px;
  right: -30px;
  width: 140px;
  height: 140px;
  z-index: 2;
  pointer-events: none;
  background: #000; /* weißer bg-Kreis damit er über dem Bild "schwebt" */
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 0 0 4px #000;
}

.service-smiley svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .service-smiley {
    width: 90px;
    height: 90px;
    top: -20px;
    right: -10px;
  }
}

/* =========================================
   ACCORDION
   ========================================= */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 8px;
}

.accordion-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.accordion-item:first-child {
  border-top: 1px solid rgba(255,255,255,0.1);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: var(--accent);
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  transition: background var(--trans);
  gap: 12px;
}

.accordion-trigger:hover {
  background: var(--accent-dim);
}

.acc-icon {
  flex-shrink: 0;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  color: var(--white);
}

.accordion-body {
  display: none;
  padding: 20px 20px 20px;
  background: transparent;
}

.accordion-item.open .accordion-body {
  display: block;
}

.accordion-body p {
  color: var(--gray-300);
}

/* Auf dunklem Hintergrund (section--dark) */
.section--dark .accordion-body p { color: var(--gray-300); }

/* Auf hellem Hintergrund */
.section:not(.section--dark) .accordion-body p { color: var(--gray-300); }

/* =========================================
   HELLER ABSCHNITT (section--light)
   ========================================= */
.section--light {
  background: #ffffff;
}
.section--light h1,
.section--light h2,
.section--light h3,
.section--light h4 {
  color: #000000;
}
.section--light p,
.section--light .lead {
  color: #333333;
}
.section--light .eyebrow {
  color: var(--accent);
}
.section--light .accordion-item {
  border-bottom-color: rgba(0,0,0,0.12);
}
.section--light .accordion-item:first-child {
  border-top-color: rgba(0,0,0,0.12);
}
.section--light .accordion-body p {
  color: #333333;
}
.section--light .placeholder-label {
  background: rgba(0,0,0,0.6);
  color: #ffffff;
}

/* =========================================
   PERFORMANCE ADS GRID
   ========================================= */
.ads-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 48px;
}

.ads-item {
  background: #ffffff;
  padding: 32px 24px;
  border-top: 2px solid var(--accent);
  transition: background var(--trans), color var(--trans);
}

.ads-item:hover {
  background: var(--accent);
}
.ads-item:hover h4,
.ads-item:hover p { color: #fff; }

.ads-item .ads-icon { font-size: 1.5rem; margin-bottom: 16px; }
.ads-item h4 {
  font-size: 0.85rem;
  color: var(--accent);
  line-height: 1.3;
  margin-bottom: 8px;
}
.ads-item p { color: #333; }

/* =========================================
   QUOTE SECTION
   ========================================= */
.quote-section {
  padding: 120px 0;
  background: #000000; /* Schwarz mit weißem Text, Bild dahinter */
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1611162617213-7d7a39e9b1d7?w=1600&q=60');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

.quote-section blockquote {
  font-family: var(--font-head);
  font-size: clamp(2rem, 6vw, 5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--white);
  max-width: 900px;
  margin: 0 auto;
}

.quote-section blockquote em {
  font-style: normal;
  color: var(--accent);
}

/* =========================================
   TEAM SECTION
   ========================================= */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.team-eyebrow {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: #111;
  margin-bottom: 12px;
}

.team-heading {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--accent);
  margin-bottom: 32px;
}

.team-content p {
  color: #333;
  margin-bottom: 16px;
}
.team-content p:last-child { margin-bottom: 0; }

.team-graphic img {
  width: 100%;
  height: auto;
  display: block;
}

/* =========================================
   FOUNDER SECTION
   ========================================= */
.founder-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.founder-visual {
  position: relative;
}

.founder-img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 2px;
  /* BILD: Ersetze durch Anthony's echtes Foto */
  background: var(--bg-card);
}

.founder-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}

.founder-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--accent);
  color: var(--white);
  padding: 24px;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 900;
  text-transform: uppercase;
  border-radius: 2px;
}

.founder-badge .years { font-size: 2.5rem; line-height: 1; }
.founder-badge .label { font-size: 0.65rem; letter-spacing: 0.12em; opacity: 0.85; }

.founder-content h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 24px;
}

.founder-content .lead {
  color: var(--gray-300);
  line-height: 1.7;
  margin-bottom: 32px;
}

.founder-refs {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.ref-tag {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 8px 16px;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-300);
  border-radius: 2px;
}

/* =========================================
   PROCESS SECTION
   ========================================= */
.process-section {
  padding-bottom: 80px;
}

.process-intro-label {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
}

/* Farbige Phasenbanner */
.process-phase-banner {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  padding: 10px 24px;
  margin-bottom: 52px;
  letter-spacing: 0.02em;
}
.process-phase-banner--red {
  background: var(--accent);
  color: #fff;
}
.process-phase-banner--black {
  background: #000;
  color: #fff;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 0;
  padding-top: 40px;
  padding-left: 24px;
}

/* Rote Kachel mit schwarzem Versatz-Schatten */
.process-step {
  background: var(--accent);
  padding: 32px 24px 32px 24px;
  position: relative;
  border-radius: 8px;
  box-shadow: 6px 6px 0 #000;
  overflow: visible;
}

/* Stern-Nummerbadge — Ecke oben links, überlappt den Kartenrand */
.step-badge {
  position: absolute;
  top: -30px;
  left: -20px;
  width: 117px;
  height: 117px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.step-badge img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.step-badge span {
  position: relative;
  z-index: 1;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
  color: #111;
}
/* Phase 2: schwarzer Stern → weiße Zahl */
.process-section--light .step-badge span {
  color: #fff;
}

.process-step h3 {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.4;
}

.process-step p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 8px;
}
.process-step p:last-child { margin-bottom: 0; }

/* Phase 2 — heller Abschnitt */
.process-section--light {
  background: #fff;
  padding: var(--section-pad) 0;
}
.process-section--light .process-phase-banner--black {
  color: #fff;
}

/* WhatsApp Hinweis */
.whatsapp-note {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 56px;
  padding: 28px 32px;
  border: 2px solid #000;
  background: transparent;
}
.whatsapp-note p {
  color: #111;
  margin-bottom: 4px;
}
.whatsapp-note p strong {
  font-size: 1rem;
  color: #000;
}

/* =========================================
   CONTACT / CTA SECTION
   ========================================= */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 24px;
}

.contact-info .lead {
  color: var(--gray-300);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.contact-meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--gray-300);
}

.contact-meta-item .icon { font-size: 1.2rem; }

/* Netlify Form */
.contact-form {
  background: var(--bg-card);
  padding: 48px 40px;
  border-radius: 2px;
  border: 1px solid var(--border);
}

.contact-form h3 {
  font-size: 1.3rem;
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-300);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  border-radius: 2px;
  transition: border-color var(--trans);
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-group select { cursor: pointer; }
.form-group select option { background: var(--bg-card); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 0.85rem;
  justify-content: center;
}

.form-note {
  text-align: center;
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* Success Message */
.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}

.form-success .success-icon { font-size: 3rem; margin-bottom: 16px; }
.form-success h3 { margin-bottom: 12px; color: var(--white); font-size: 1.5rem; }
.form-success p { color: var(--gray-300); }

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo-text { font-size: 1.3rem; margin-bottom: 16px; }

.footer-brand p {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: var(--gray-300);
  margin-bottom: 10px;
  transition: color var(--trans);
}
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 0.8rem;
  color: var(--gray-500);
  transition: color var(--trans);
}
.footer-legal a:hover { color: var(--gray-300); }

/* =========================================
   ANIMATIONS
   ========================================= */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-up:nth-child(1) { transition-delay: 0s; }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* =========================================
   WORK PAGE
   ========================================= */
.work-hero {
  padding-top: 160px;
  padding-bottom: 80px;
}

.work-hero h1 { font-size: clamp(3rem, 7vw, 6rem); margin-bottom: 24px; }
.work-hero .lead { color: var(--gray-300); max-width: 600px; line-height: 1.7; }

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.reason-card {
  background: var(--bg-card);
  padding: 40px 32px;
  border-radius: 2px;
  border-top: 2px solid var(--border);
  transition: border-color var(--trans);
}
.reason-card:hover { border-top-color: var(--accent); }

.reason-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
}

.reason-card h3 { font-size: 1rem; margin-bottom: 12px; }
.reason-card p { color: var(--gray-300); }

/* Client Logos Marquee */
.logos-section {
  overflow: hidden;
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
}

.logos-label {
  text-align: center;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 32px;
}

.logos-track {
  display: flex;
  gap: 64px;
  animation: marquee 20s linear infinite;
  width: max-content;
}

.logos-track-wrap {
  overflow: hidden;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.client-logo {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
  white-space: nowrap;
  transition: color var(--trans);
}
.client-logo:hover { color: var(--gray-300); }

/* Portfolio Cases */
.portfolio-case {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.case-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 40px;
  flex-wrap: wrap;
}

.case-label {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.case-title { font-size: clamp(2rem, 5vw, 3.5rem); }

.case-meta {
  text-align: right;
  flex-shrink: 0;
}

.case-role {
  font-size: 0.8rem;
  color: var(--gray-300);
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.case-agency { font-size: 0.8rem; color: var(--gray-500); }

.case-desc {
  font-size: 1rem;
  color: var(--gray-300);
  line-height: 1.7;
  max-width: 700px;
  margin-bottom: 40px;
}

.case-goals {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.case-goal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 8px 16px;
  font-size: 0.8rem;
  color: var(--gray-300);
  border-radius: 2px;
}

/* Portfolio Gallery Grid */
.case-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.case-gallery-item {
  aspect-ratio: 9/16;
  background: var(--bg-card);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.case-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.case-gallery-item:hover img { transform: scale(1.05); }

/* =========================================
   RESPONSIVE
   ========================================= */

/* Tablet */
@media (max-width: 1024px) {
  :root { --section-pad: 72px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-section { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; gap: 48px; }
  .service-detail.reverse { direction: ltr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .founder-section { grid-template-columns: 1fr; gap: 48px; }
  .ads-grid { grid-template-columns: repeat(2, 1fr); }
  .reasons-grid { grid-template-columns: repeat(2, 1fr); }
  .case-gallery { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile */
@media (max-width: 768px) {
  :root { --section-pad: 56px; }

  .nav { display: none !important; }
  .hamburger { opacity: 1 !important; transform: none !important; pointer-events: auto !important; transition: none !important; }
  .logo-full { height: 36px; }
  .logo-small { height: 36px; width: 36px; }

  .hero h1 { font-size: clamp(2.5rem, 12vw, 4rem); }

  .services-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }

  .industry-panel { grid-template-columns: 1fr; }
  .industry-visual { display: none; }

  .process-steps { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .form-row { grid-template-columns: 1fr; }

  .case-header { flex-direction: column; }
  .case-meta { text-align: left; }
  .case-gallery { grid-template-columns: repeat(2, 1fr); }

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

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

  .founder-badge { bottom: -10px; right: 16px; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .hero-btns .btn { width: auto; justify-content: flex-start; }
  .case-gallery { grid-template-columns: repeat(2, 1fr); }
  .ads-grid { grid-template-columns: 1fr; }
}
