/* =============================================================
   ECHOPARK Theme — main.css
   Converts all Tailwind prototype utilities to real CSS.
   ============================================================= */

/* ─────────────────────────────────────────────
   1. CSS CUSTOM PROPERTIES
   ───────────────────────────────────────────── */
:root {
  --navy-900: #06152B;
  --navy-800: #0A1F3D;
  --navy-700: #13294E;
  --navy-600: #1E3A66;
  --coral-500: #F25C3B;
  --coral-600: #E14A2A;
  --ep-blue:   #1E73BE;
  --ep-teal:   #1AA39A;
  --ep-purple: #6E2A8C;
  --ep-pink:   #E5266D;
  --ep-orange: #E96B1F;
  --ep-gray:   #6B7280;
  --white:     #ffffff;
  --ink:       #0A1F3D;
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-mono: ui-monospace, 'Cascadia Code', 'Source Code Pro', Menlo, Consolas, monospace;
}

/* ─────────────────────────────────────────────
   2. RESET + BASE
   ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-sans);
  background-color: var(--navy-800);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ─────────────────────────────────────────────
   3. LAYOUT
   ───────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

@media (min-width: 768px) {
  .container { padding-left: 32px; padding-right: 32px; }
}

/* ─────────────────────────────────────────────
   4. ECHOPARK LOGO MARK
   ───────────────────────────────────────────── */
.ep-mark {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
}

.ep-mark .sq {
  position: absolute;
  border-radius: 22%;
  mix-blend-mode: screen;
  will-change: transform;
}

.ep-mark .ep-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #cfd5dd;
  font-family: var(--font-sans);
  pointer-events: none;
}

/* ─────────────────────────────────────────────
   5. TYPOGRAPHY UTILITIES
   ───────────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.stat-num {
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.mixed-h h3 {
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.95;
  text-transform: uppercase;
}
.mixed-h h3 .light {
  font-weight: 300;
  opacity: 0.5;
}

/* ─────────────────────────────────────────────
   6. NAVIGATION — HEADER
   ───────────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(6, 21, 43, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background-color 0.3s, box-shadow 0.3s;
}

#site-header.scrolled {
  box-shadow: 0 8px 30px -10px rgba(0,0,0,0.6);
}

.site-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative; /* needed for absolute logo */
}

@media (min-width: 768px) {
  .site-header-inner {
    padding: 0 32px;
    height: 80px;
  }
}

/* Logo link — stays in flex flow between left/right nav */
.site-logo {
  flex-shrink: 0;
  text-decoration: none;
  position: relative;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
}

/* ── Logo: standalone EP mark on dark header — no white container ── */
.logo-disc {
  width: auto;
  height: auto;
  background: transparent;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
  position: relative;
}

.logo-disc::before {
  content: '';
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242,92,59,0.18) 0%, rgba(229,38,109,0.08) 35%, transparent 70%);
  pointer-events: none;
  opacity: 0.9;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.logo-disc:hover {
  transform: translateY(-2px);
}
.logo-disc:hover::before {
  opacity: 1;
  transform: scale(1.05);
}

.logo-disc-mark {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: width 0.35s ease, height 0.35s ease;
}
.logo-disc-mark .ep-text {
  font-size: 15px;
  color: rgba(255,255,255,0.92);
}

.logo-disc .header-custom-logo {
  width: auto;
  height: 54px;
  max-width: 160px;
  max-height: 54px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  transition: height 0.35s ease, max-height 0.35s ease;
}

/* Smaller on scroll */
#site-header.scrolled .logo-disc-mark {
  width: 48px;
  height: 48px;
}
#site-header.scrolled .logo-disc-mark .ep-text {
  font-size: 12px;
}
#site-header.scrolled .logo-disc .header-custom-logo {
  height: 38px;
  max-width: 120px;
  max-height: 38px;
}
#site-header.scrolled .logo-disc::before {
  inset: -12px;
}

@media (min-width: 768px) {
  .logo-disc-mark {
    width: 76px;
    height: 76px;
  }
  .logo-disc-mark .ep-text {
    font-size: 18px;
  }
  .logo-disc .header-custom-logo {
    height: 62px;
    max-width: 180px;
    max-height: 62px;
  }
  .logo-disc::before {
    inset: -22px;
  }

  #site-header.scrolled .logo-disc-mark {
    width: 56px;
    height: 56px;
  }
  #site-header.scrolled .logo-disc-mark .ep-text {
    font-size: 14px;
  }
  #site-header.scrolled .logo-disc .header-custom-logo {
    height: 42px;
    max-width: 130px;
    max-height: 42px;
  }
  #site-header.scrolled .logo-disc::before {
    inset: -14px;
  }
}

/* Desktop nav */
.main-nav {
  display: none;
  list-style: none;
  gap: 32px;
}

.main-nav li { margin: 0; }

.main-nav a {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.2s;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.main-nav a:hover { color: var(--white); }
.main-nav a:hover::after { transform: scaleX(1); }

@media (min-width: 1024px) {
  /* Pass full header height down so li.has-mega can stretch flush to the panel */
  nav.desktop-nav { align-self: stretch; display: flex; align-items: center; }
  .main-nav { display: flex; align-items: center; height: 100%; }
}

/* Header actions */
.header-actions {
  display: none;
  align-items: center;
  gap: 16px;
}

.header-phone {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  font-family: var(--font-mono);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.header-phone:hover { color: var(--white); }

@media (min-width: 768px) {
  .header-actions { display: flex; }
}

/* Burger */
.burger-btn {
  display: flex;
  background: none;
  border: none;
  color: var(--white);
  padding: 8px;
  margin-right: -8px;
  line-height: 0;
}

@media (min-width: 1024px) {
  .burger-btn { display: none; }
}

/* ─────────────────────────────────────────────
   7. MOBILE MENU
   ───────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset-block: 0;
  right: 0;
  z-index: 60;
  width: 85%;
  max-width: 380px;
  background: var(--navy-900);
  border-left: 1px solid rgba(255,255,255,0.1);
  transform: translateX(100%);
  transition: transform 0.35s ease;
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu-header {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu-header span {
  font-weight: 800;
  letter-spacing: -0.01em;
}

.close-btn {
  background: none;
  border: none;
  color: var(--white);
  padding: 8px;
  margin-right: -8px;
  line-height: 0;
}

.mobile-nav {
  list-style: none;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav li { border-bottom: 1px solid rgba(255,255,255,0.1); }
.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
}

.mobile-menu-cta {
  padding: 24px;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.menu-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 55;
}

.menu-backdrop.visible { display: block; }

/* ─────────────────────────────────────────────
   8. BUTTONS
   ───────────────────────────────────────────── */
.btn-coral {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--coral-500);
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 6px;
  border: none;
  text-decoration: none;
  transition: background-color 0.2s;
  cursor: pointer;
  line-height: 1.2;
}
.btn-coral:hover { background-color: var(--coral-600); color: var(--white); }

.btn-coral-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--coral-500);
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  padding: 16px 28px;
  border-radius: 6px;
  border: none;
  text-decoration: none;
  transition: background-color 0.2s, transform 0.15s;
  box-shadow: 0 10px 30px -10px rgba(242,92,59,0.6);
  cursor: pointer;
  line-height: 1.2;
}
.btn-coral-lg:hover {
  background-color: var(--coral-600);
  color: var(--white);
}
.btn-coral-lg svg {
  transition: transform 0.2s;
  flex-shrink: 0;
}
.btn-coral-lg:hover svg { transform: translateX(4px); }

.btn-navy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--navy-900);
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  padding: 14px 24px;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.2s;
}
.btn-navy:hover { background-color: var(--navy-800); color: var(--white); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
  font-weight: 600;
  font-size: 13px;
  padding: 14px 24px;
  border-radius: 6px;
  font-family: var(--font-mono);
  text-decoration: none;
  transition: background-color 0.2s;
}
.btn-outline:hover { background-color: rgba(255,255,255,0.1); color: var(--white); }

/* ─────────────────────────────────────────────
   9. VISUAL EFFECTS
   ───────────────────────────────────────────── */
.hero-glow {
  background:
    radial-gradient(60% 50% at 80% 20%, rgba(229,38,109,0.18), transparent 60%),
    radial-gradient(50% 50% at 20% 80%, rgba(26,163,154,0.18), transparent 60%),
    radial-gradient(70% 60% at 50% 100%, rgba(30,115,190,0.20), transparent 60%);
}

.circuit-grid {
  background-image:
    linear-gradient(rgba(255,255,255,0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.4) 1px, transparent 1px);
  background-size: 64px 64px;
}

.dot-grid {
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.6) 1px, transparent 1px),
    radial-gradient(circle at 80% 60%, rgba(255,255,255,0.6) 1px, transparent 1px);
  background-size: 80px 80px;
}

.grain::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 3px 3px;
  pointer-events: none;
}

.placeholder-stripes {
  background-image: repeating-linear-gradient(
    135deg,
    rgba(255,255,255,0.06) 0 8px,
    rgba(255,255,255,0.02) 8px 16px
  );
}

.placeholder-stripes-light {
  background-image: repeating-linear-gradient(
    135deg,
    rgba(10,31,61,0.06) 0 8px,
    rgba(10,31,61,0.02) 8px 16px
  );
}

/* ─────────────────────────────────────────────
   10. NOTCH CARD (cut-out top-left corner)
   ───────────────────────────────────────────── */
.notch-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
}

.notch-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  height: 56px;
  background: var(--notch-bg, var(--navy-800));
  -webkit-mask: radial-gradient(circle 28px at 56px 56px, transparent 99%, #000 100%);
          mask: radial-gradient(circle 28px at 56px 56px, transparent 99%, #000 100%);
  z-index: 2;
}

.aspect-169 {
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
}

.aspect-sq {
  aspect-ratio: 1/1;
}

/* ─────────────────────────────────────────────
   11. EP-TAB (Sub-brand label card)
   ───────────────────────────────────────────── */
.ep-tab {
  width: 96px;
  height: 96px;
  background: var(--white);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 12px 14px;
  flex-shrink: 0;
  margin-bottom: 28px;
}

.ep-tab .tab-ep {
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
}

.ep-tab .tab-label {
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 4px;
  color: var(--white);
}

/* ─────────────────────────────────────────────
   12. STAT BOX (overlay on notch-card)
   ───────────────────────────────────────────── */
.stat-box {
  position: absolute;
  right: 4%;
  top: 8%;
  border-radius: 28px;
  padding: 28px 32px;
  color: var(--white);
  max-width: 65%;
  backdrop-filter: blur(4px);
  z-index: 3;
}

.stat-box-left {
  right: auto;
  left: 4%;
}

.stat-box .stat-year {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 12px;
}

.stat-box .stat-content {
  font-size: clamp(1.5rem, 2.8vw, 2.6rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .stat-box {
    position: static;
    transform: none;
    max-width: 100%;
    margin: -40px 16px 16px;
  }
  .stat-box-left {
    margin: -40px 16px 16px;
  }
  .stat-box .stat-content {
    font-size: clamp(1.25rem, 5vw, 2rem);
  }
}

/* ─────────────────────────────────────────────
   13. LOGO CHIP (marquee)
   ───────────────────────────────────────────── */
.logo-chip {
  flex: 0 0 auto;
  height: 64px;
  min-width: 180px;
  border: 1px solid rgba(10,31,61,0.10);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(10,31,61,0.55);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  background: repeating-linear-gradient(135deg, rgba(10,31,61,0.03) 0 8px, transparent 8px 16px);
}

/* ─────────────────────────────────────────────
   14. MARQUEE
   ───────────────────────────────────────────── */
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-wrapper {
  position: relative;
  overflow: hidden;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  inset-block: 0;
  width: 96px;
  z-index: 10;
  pointer-events: none;
}
.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}
.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

.marquee-track {
  display: flex;
  gap: 12px;
  width: max-content;
  align-items: stretch;
  animation: marquee 50s linear infinite;
}

/* ─────────────────────────────────────────────
   15. REVEAL ANIMATION
   ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────────
   16. BULLET CHECK
   ───────────────────────────────────────────── */
.check-bullet::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--coral-500);
  border-radius: 2px;
  margin-right: 14px;
  vertical-align: middle;
  transform: rotate(45deg);
}

/* ─────────────────────────────────────────────
   17. FORM FIELDS
   ───────────────────────────────────────────── */
.field,
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="url"],
.wpcf7-form input[type="number"],
.wpcf7-form textarea,
.wpcf7-form select {
  display: block;
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 15px;
  font-family: var(--font-sans);
  transition: border-color 0.2s, background 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.field::placeholder,
.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
  color: rgba(255,255,255,0.4);
}

.field:focus,
.wpcf7-form input:focus,
.wpcf7-form textarea:focus,
.wpcf7-form select:focus {
  outline: none;
  border-color: var(--coral-500);
  background: rgba(255,255,255,0.07);
}

.wpcf7-form select option {
  background: var(--navy-800);
  color: var(--white);
}

/* CF7 submit button */
.wpcf7-form input[type="submit"],
.wpcf7-form .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--coral-500);
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  padding: 16px 28px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: background-color 0.2s;
  box-shadow: 0 10px 30px -10px rgba(242,92,59,0.6);
  margin-top: 28px;
}
.wpcf7-form input[type="submit"]:hover,
.wpcf7-form .wpcf7-submit:hover {
  background-color: var(--coral-600);
}

/* CF7 acceptance checkbox area */
.wpcf7-form .wpcf7-acceptance {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 4px;
}
.wpcf7-form .wpcf7-acceptance input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--coral-500);
  flex-shrink: 0;
  margin-top: 2px;
}
.wpcf7-form .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.wpcf7-form .wpcf7-acceptance label { display: flex; align-items: flex-start; gap: 12px; }

/* CF7 validation feedback */
.wpcf7-not-valid-tip {
  color: #f87171;
  font-size: 12px;
  font-family: var(--font-mono);
  margin-top: 4px;
  display: block;
}
.wpcf7-response-output {
  margin-top: 20px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-family: var(--font-mono);
  border: 1px solid rgba(255,255,255,0.1);
}
.wpcf7-mail-sent-ok { color: #34d399; border-color: rgba(52,211,153,0.3); background: rgba(52,211,153,0.05); }
.wpcf7-mail-sent-ng,
.wpcf7-spam-blocked,
.wpcf7-validation-errors { color: #f87171; border-color: rgba(248,113,113,0.3); background: rgba(248,113,113,0.05); }

#form-status {
  display: none;
  margin-top: 16px;
  color: #34d399;
  font-size: 13px;
  font-family: var(--font-mono);
}

/* Form label text */
.form-label-text {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-mono);
  margin-bottom: 6px;
}

/* ─────────────────────────────────────────────
   18. SECTION: HERO
   ───────────────────────────────────────────── */
.hero-section {
  position: relative;
  overflow: hidden;
  background-color: var(--navy-800);
  padding-top: 64px; /* header height */
}

@media (min-width: 768px) {
  .hero-section { padding-top: 80px; }
}

.hero-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 20px 64px;
  display: grid;
  gap: 48px;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-inner { padding: 80px 32px 112px; }
}

@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: 7fr 5fr;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral-500);
  animation: pulse 2s cubic-bezier(0.4,0,0.6,1) infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-headline {
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  text-wrap: balance;
}

.hero-headline .accent { color: var(--coral-500); }

.hero-subline {
  margin-top: 24px;
  font-size: clamp(1rem, 2vw, 1.1875rem);
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  max-width: 672px;
}

.hero-bullets {
  margin-top: 32px;
  display: grid;
  gap: 12px;
  list-style: none;
  max-width: 672px;
}

@media (min-width: 640px) {
  .hero-bullets { grid-template-columns: 1fr 1fr; }
}

.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.hero-bullets .bullet-dot {
  margin-top: 8px;
  width: 8px;
  height: 8px;
  background: var(--coral-500);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.hero-bullets span {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

.hero-ctas {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 640px) {
  .hero-ctas { flex-direction: row; align-items: center; }
}

.hero-phone-link {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: color 0.2s;
}
.hero-phone-link:hover { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }

.hero-trust {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  font-size: 12px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-dot {
  width: 6px;
  height: 6px;
  background: #34d399;
  border-radius: 50%;
}

/* Hero visual */
.hero-visual { position: relative; }

.hero-brand-logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 24px;
  padding-left: 4px;
}

.hero-brand-logo img {
  display: block;
  height: 56px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
}

@media (min-width: 768px) {
  .hero-brand-logo { margin-bottom: 32px; }
  .hero-brand-logo img { height: 72px; max-width: 420px; }
}

.hero-dashboard {
  position: relative;
  background: var(--navy-900);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
}

@media (min-width: 768px) {
  .hero-dashboard { padding: 20px; }
}

.dashboard-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.chrome-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}

.chrome-label {
  margin-left: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

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

.grid-cell {
  aspect-ratio: 1/1;
  border-radius: 6px;
  display: flex;
  align-items: flex-end;
  padding: 8px;
}

.grid-cell-label {
  font-family: var(--font-mono);
  font-size: 9px;
  color: rgba(255,255,255,0.85);
  line-height: 1.3;
  letter-spacing: 0.05em;
}

/* Hero brand cells — linked sub-brand tiles */
.hero-brand-cell {
  position: relative;
  background-color: var(--cell-tint, rgba(255,255,255,0.04));
  background-size: cover;
  background-position: center;
  border: 1px solid var(--cell-border, rgba(255,255,255,0.08));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1),
              border-color 0.2s ease,
              background-color 0.2s ease;
}

.hero-brand-cell:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.45);
}

.hero-brand-cell-logo {
  display: block;
  max-width: 78%;
  max-height: 56%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 4px 12px rgba(0,0,0,0.45));
}

.hero-brand-cell--more {
  align-items: flex-end;
  justify-content: flex-start;
  text-align: left;
}
.hero-brand-cell--more .grid-cell-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--coral-500);
  letter-spacing: 0.12em;
}

.dashboard-bars {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bar-row { }

.bar-header {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
}

.bar-track {
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 9999px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 9999px;
}

.dashboard-footer {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dashboard-caption {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.4);
}

.live-dot {
  font-size: 10px;
  font-family: var(--font-mono);
  color: #34d399;
}

.savings-badge {
  position: absolute;
  bottom: -24px;
  left: -16px;
  background: var(--coral-500);
  color: var(--white);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
  transform: rotate(-3deg);
  z-index: 10;
}

@media (min-width: 768px) {
  .savings-badge { bottom: -32px; left: -32px; }
}

.savings-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.8;
}

.savings-number {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  line-height: 1;
}

.savings-sub {
  font-size: 11px;
  margin-top: 4px;
  opacity: 0.9;
}

/* ─────────────────────────────────────────────
   19. SECTION: SOCIAL PROOF
   ───────────────────────────────────────────── */
.social-proof-section {
  background: var(--white);
  color: var(--ink);
  padding: 48px 0 48px;
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

@media (min-width: 768px) {
  .social-proof-section { padding: 64px 0; }
}

.sp-intro {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .sp-intro { padding: 0 32px; }
}

.sp-headline {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  max-width: 768px;
  margin-top: 12px;
}

/* ─────────────────────────────────────────────
   20. SECTION: AI PIPELINE
   ───────────────────────────────────────────── */
.ai-section {
  position: relative;
  background: var(--navy-900);
  padding: 80px 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .ai-section { padding: 128px 0; }
}

.pipeline-grid {
  margin-top: 56px;
  position: relative;
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .pipeline-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
}

.pipeline-connector {
  display: none;
  position: absolute;
  top: 48px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(to right, var(--coral-500), rgba(255,255,255,0.3), var(--coral-500));
}

@media (min-width: 768px) {
  .pipeline-connector { display: block; }
}

.pipeline-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 24px;
}

.pipeline-phase {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--coral-500);
  margin-bottom: 4px;
}

.pipeline-num {
  width: 24px;
  height: 24px;
  background: var(--coral-500);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-900);
  font-weight: 900;
  font-size: 12px;
  margin: 4px 0 16px;
}

.pipeline-title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--white);
}

.pipeline-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

.feature-badges {
  margin-top: 56px;
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .feature-badges { grid-template-columns: 1fr 1fr; }
}

.feature-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  background: rgba(255,255,255,0.02);
  transition: border-color 0.2s;
}

.feature-badge:hover { border-color: rgba(242,92,59,0.4); }

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(242,92,59,0.15);
  color: var(--coral-500);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.feature-badge span {
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
}

.ai-cta-banner {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 28px;
  border-radius: 16px;
  background: linear-gradient(to right, var(--coral-500), var(--coral-600));
}

@media (min-width: 768px) {
  .ai-cta-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 32px;
  }
}

.ai-cta-banner h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--white);
}

.ai-cta-banner p {
  color: rgba(255,255,255,0.85);
  margin-top: 4px;
  font-size: 15px;
}

.ai-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .ai-cta-actions { flex-direction: row; }
}

/* ─────────────────────────────────────────────
   21. SECTION: LEISTUNGEN (editorial rows)
   ───────────────────────────────────────────── */
.leistungen-section {
  position: relative;
  background: var(--white);
  color: var(--ink);
  padding: 80px 0;
}

@media (min-width: 768px) {
  .leistungen-section { padding: 128px 0; }
}

/* ── Header ── */
.leistungen-header {
  display: grid;
  gap: 40px;
  margin-bottom: 64px;
  align-items: end;
}

@media (min-width: 1024px) {
  .leistungen-header { grid-template-columns: 5fr 4fr; }
}

.lv2-h2 {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-transform: uppercase;
  margin: 0;
}

.lv2-h2 strong {
  font-weight: 900;
}

.lv2-intro-wrap {
  display: flex;
  align-items: flex-end;
}

.lv2-intro {
  font-size: 16px;
  color: rgba(10,31,61,0.6);
  line-height: 1.7;
  margin: 0;
}

/* ── Service rows ── */
.leistungen-rows {
  border-top: 1.5px solid rgba(10,31,61,0.1);
}

.leistung-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 36px 0 36px 20px;
  border-bottom: 1px solid rgba(10,31,61,0.07);
  position: relative;
}

.leistung-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 36px;
  bottom: 36px;
  width: 3px;
  background: var(--row-color, var(--coral-500));
  border-radius: 2px;
}

@media (min-width: 768px) {
  .leistung-row {
    grid-template-columns: 72px 1fr 1.5fr;
    align-items: start;
    gap: 48px;
    padding: 48px 0 48px 28px;
  }
  .leistung-row::before {
    top: 48px;
    bottom: 48px;
  }
}

/* ── Number ── */
.lr-num {
  font-family: var(--font-mono);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1;
  color: var(--row-color, var(--coral-500));
  opacity: 0.22;
  letter-spacing: -0.04em;
  user-select: none;
}

/* ── Category + Title ── */
.lr-cat {
  display: block;
  margin-bottom: 14px;
  color: var(--row-color, var(--coral-500));
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.lr-title {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  text-transform: uppercase;
  margin: 0;
}

.lr-title em {
  font-style: normal;
  font-weight: 300;
  opacity: 0.5;
  display: block;
}

/* ── Body / bullets ── */
.lr-body {
  padding-top: 2px;
}

@media (min-width: 768px) {
  .lr-body { padding-top: 6px; }
}

.lr-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
}

.lr-bullets li {
  font-size: 15px;
  color: rgba(10,31,61,0.65);
  line-height: 1.55;
  padding-left: 18px;
  position: relative;
}

.lr-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 1.5px;
  background: var(--row-color, var(--coral-500));
  border-radius: 1px;
  opacity: 0.7;
}

/* ─────────────────────────────────────────────
   22. SECTION: SUB-BRANDS (alternating spreads)
   ───────────────────────────────────────────── */
.subbrands-section {
  background: var(--white);
  color: var(--ink);
  padding: 64px 0 96px;
  border-top: 1px solid rgba(0,0,0,0.05);
}

@media (min-width: 768px) {
  .subbrands-section { padding: 96px 0; }
}

.subbrands-intro {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px 56px;
}

@media (min-width: 768px) {
  .subbrands-intro { padding: 0 32px 56px; }
}

.subbrands-intro h2 {
  font-size: clamp(2rem, 4vw, 3.75rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  max-width: 800px;
}

.subbrands-intro p {
  margin-top: 20px;
  font-size: 17px;
  color: rgba(10,31,61,0.7);
  line-height: 1.6;
  max-width: 672px;
}

.spread {
  padding: 48px 0;
}

@media (min-width: 768px) {
  .spread { padding: 64px 0; }
}

.spread-dark { background: var(--navy-800); color: var(--white); }
.spread-light { background: var(--white); color: var(--ink); }

.spread-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  gap: 32px;
  align-items: center;
}

@media (min-width: 768px) {
  .spread-inner { padding: 0 32px; gap: 48px; }
}

@media (min-width: 1024px) {
  .spread-inner { grid-template-columns: 4fr 8fr; }
  .spread-inner.reversed { grid-template-columns: 8fr 4fr; }
  .spread-inner.reversed .spread-text { order: 2; }
  .spread-inner.reversed .spread-visual { order: 1; }
}

.spread-text {}

.spread-text h3 {
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.spread-text h3 .light {
  font-weight: 300;
  opacity: 0.5;
}

.spread-text .eyebrow {
  font-style: italic;
  letter-spacing: 0.06em;
}

.spread-text p {
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 14px;
}

.spread-light .spread-text p { color: rgba(10,31,61,0.72); }
.spread-dark  .spread-text p  { color: rgba(255,255,255,0.72); }

.spread-visual { position: relative; }

.spread-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.4);
}

.spread-placeholder-light {
  color: rgba(10,31,61,0.4);
}

/* ─────────────────────────────────────────────
   23. SECTION: ZAHLEN
   ───────────────────────────────────────────── */
.zahlen-section {
  position: relative;
  background: var(--coral-500);
  color: var(--white);
  padding: 64px 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .zahlen-section { padding: 96px 0; }
}

.zahlen-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) { .zahlen-inner { padding: 0 32px; } }
@media (min-width: 1024px) { .zahlen-inner { grid-template-columns: 7fr 5fr; } }

.zahlen-headline {
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.0;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.zahlen-headline .light { font-weight: 300; }
.zahlen-headline .big   { font-size: 1.3em; }

.zahlen-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  max-width: 560px;
  margin-bottom: 28px;
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.stat-card {
  border-radius: 16px;
  padding: 20px;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stat-card-dark  { background: var(--navy-900); }
.stat-card-light { background: var(--white); color: var(--ink); }

.stat-card-kpi {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.stat-card-dark  .stat-card-kpi { color: rgba(255,255,255,0.55); }
.stat-card-light .stat-card-kpi { color: rgba(10,31,61,0.55); }

.stat-card-value {
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.stat-card-dark  .stat-card-value { color: var(--white); }
.stat-card-light .stat-card-value { color: var(--ink); }

.stat-card-desc {
  font-size: 11px;
  margin-top: 6px;
  line-height: 1.4;
}
.stat-card-dark  .stat-card-desc { color: rgba(255,255,255,0.65); }
.stat-card-light .stat-card-desc { color: rgba(10,31,61,0.6); }

/* ─────────────────────────────────────────────
   24. SECTION: ZIELGRUPPE / ÜBER UNS
   ───────────────────────────────────────────── */
.ueber-section {
  position: relative;
  background: var(--navy-800);
  padding: 80px 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .ueber-section { padding: 128px 0; }
}

.ueber-glow-1 {
  position: absolute;
  top: -160px;
  right: -160px;
  width: 500px;
  height: 500px;
  background: rgba(229,38,109,0.1);
  border-radius: 50%;
  filter: blur(48px);
  pointer-events: none;
}

.ueber-glow-2 {
  position: absolute;
  bottom: -160px;
  left: -160px;
  width: 500px;
  height: 500px;
  background: rgba(30,115,190,0.1);
  border-radius: 50%;
  filter: blur(48px);
  pointer-events: none;
}

.ueber-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  gap: 48px;
  align-items: start;
}

@media (min-width: 768px) { .ueber-inner { padding: 0 32px; } }
@media (min-width: 1024px) { .ueber-inner { grid-template-columns: 1fr 1fr; } }

.ueber-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin-bottom: 24px;
}

.ueber-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 560px;
}

.target-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 480px;
}

.target-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
}

.target-icon {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: rgba(242,92,59,0.15);
  color: var(--coral-500);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.target-item b { display: block; color: var(--white); font-weight: 600; }
.target-item span { font-size: 14px; color: rgba(255,255,255,0.65); }

.about-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 28px;
  backdrop-filter: blur(8px);
}

@media (min-width: 768px) {
  .about-card { padding: 36px; }
}

.about-card h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--white);
}

.about-card p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

.about-locations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.about-location-card {
  background: var(--navy-900);
  border-radius: 8px;
  padding: 20px;
}

.about-location-card .loc-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--coral-500);
  margin-bottom: 8px;
}

.about-location-card .loc-value {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
  text-align: center;
}

.about-stat-num {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--white);
}

.about-stat-num.accent { color: var(--coral-500); }

.about-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
  font-family: var(--font-mono);
}

/* ─────────────────────────────────────────────
   25. SECTION: KONTAKT
   ───────────────────────────────────────────── */
.kontakt-section {
  position: relative;
  background: var(--navy-900);
  padding: 80px 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .kontakt-section { padding: 128px 0; }
}

.kontakt-intro {
  text-align: center;
  max-width: 768px;
  margin: 0 auto 56px;
}

.kontakt-headline {
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--white);
}

.kontakt-headline .accent { color: var(--coral-500); }

.kontakt-sub {
  margin-top: 20px;
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

.kontakt-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .kontakt-grid { grid-template-columns: 7fr 5fr; }
}

/* Contact form card */
.form-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 24px;
}

@media (min-width: 768px) {
  .form-card { padding: 36px; }
}

.form-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--white);
}

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

@media (min-width: 640px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
}

.form-field-wrap { display: flex; flex-direction: column; }
.form-full { grid-column: 1 / -1; }

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  grid-column: 1 / -1;
  margin-top: 4px;
}

.form-consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--coral-500);
  flex-shrink: 0;
  margin-top: 2px;
}

.form-consent-text {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.form-submit { grid-column: 1 / -1; margin-top: 8px; }

.form-privacy {
  margin-top: 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

/* Direct contact sidebar */
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-phone-card {
  position: relative;
  background: var(--coral-500);
  border-radius: 16px;
  padding: 28px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .contact-phone-card { padding: 32px; }
}

.contact-phone-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  filter: blur(32px);
}

.contact-phone-card h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--white);
  position: relative;
}

.contact-phone-card p {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  margin-bottom: 24px;
  line-height: 1.5;
  position: relative;
}

.phone-link-block {
  display: block;
  background: var(--navy-900);
  border-radius: 8px;
  padding: 20px;
  text-decoration: none;
  transition: background 0.2s;
  position: relative;
}

.phone-link-block:hover { background: var(--navy-800); }

.phone-link-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 4px;
}

.phone-link-number {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 900;
  font-family: var(--font-mono);
  color: var(--white);
  letter-spacing: -0.01em;
}

.email-link-block {
  display: block;
  margin-top: 12px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 20px;
  text-decoration: none;
  transition: background 0.2s;
  position: relative;
}

.email-link-block:hover { background: rgba(255,255,255,0.15); }

.email-link-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 4px;
}

.email-link-address {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

/* Contact person card */
.contact-person-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 28px;
}

.contact-person-title {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--coral-500);
  margin-bottom: 12px;
}

.contact-person-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-person-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(242,92,59,0.2);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  flex-shrink: 0;
}

.contact-person-name {
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
}

.contact-person-email {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  word-break: break-all;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-person-email:hover { color: var(--coral-500); }

/* ─────────────────────────────────────────────
   26. FOOTER
   ───────────────────────────────────────────── */
.site-footer {
  background: var(--navy-900);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 64px 0 112px;
}

@media (min-width: 768px) {
  .site-footer { padding: 64px 0 48px; }
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .footer-inner { padding: 0 32px; }
}

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

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 5fr 4fr 3fr; }
}

.footer-brand { }

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  max-width: 400px;
}

.footer-col-title {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--coral-500);
  margin-bottom: 16px;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}

.footer-contact-list a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
  font-family: var(--font-mono);
}
.footer-contact-list a:hover { color: var(--coral-500); }

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--coral-500); }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}

.footer-copy {
  font-size: 12px;
  font-family: var(--font-mono);
  color: rgba(255,255,255,0.45);
}

.footer-awards {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  font-size: 11px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
}

/* ─────────────────────────────────────────────
   27. STICKY MOBILE CALL BUTTON
   ───────────────────────────────────────────── */
.sticky-call {
  display: flex;
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 40;
  background: var(--coral-500);
  color: var(--white);
  font-weight: 700;
  border-radius: 9999px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px;
  text-decoration: none;
  transition: background-color 0.2s;
}

.sticky-call:hover { background-color: var(--coral-600); color: var(--white); }

.sticky-call-number {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  opacity: 0.9;
}

@media (min-width: 768px) {
  .sticky-call { display: none; }
}

/* ─────────────────────────────────────────────
   28. SCROLLBAR UTILITY
   ───────────────────────────────────────────── */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { scrollbar-width: none; }

/* ─────────────────────────────────────────────
   29. MAIN CONTENT OFFSET (header height)
   ───────────────────────────────────────────── */
main { padding-top: 64px; }

@media (min-width: 768px) {
  main { padding-top: 80px; }
}

/* ─────────────────────────────────────────────
   30. SECTION HEADLINE UTILITIES
   ───────────────────────────────────────────── */
.section-h2 {
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.section-h2 .dim { color: rgba(255,255,255,0.4); }

.section-lead {
  margin-top: 24px;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  max-width: 672px;
}

/* WP nav menu reset */
.main-nav.nav-menu { display: flex; }
ul.main-nav { display: flex; }

/* ─────────────────────────────────────────────
   31. CUSTOM LOGO
   ───────────────────────────────────────────── */
.header-custom-logo {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}

.site-logo--image {
  padding: 0;
  gap: 0;
}

.footer-custom-logo {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-logo-link {
  display: inline-block;
  line-height: 0;
}

/* ─────────────────────────────────────────────
   32. SOCIAL ICONS — Footer
   ───────────────────────────────────────────── */
.footer-social {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.footer-social-link:hover {
  background: var(--coral-500);
  color: #fff;
  transform: translateY(-2px);
}

/* ─────────────────────────────────────────────
   33. SOCIAL ICONS — Mobile Menu
   ───────────────────────────────────────────── */
.mobile-menu-social {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 8px;
}

.mobile-menu-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  transition: background 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}

.mobile-menu-social a:hover {
  background: var(--coral-500);
  color: #fff;
}

/* ═══════════════════════════════════════════════
   34. HEADER v2 — MEGA MENU
   ═══════════════════════════════════════════════ */

/* ── Logo size ────────────────────────────────── */
.header-custom-logo {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}
@media (min-width: 1024px) {
  .header-custom-logo { height: 68px; }
}

/* ── Header + content offset ─────────────────── */
.site-header-inner        { height: 72px; }
@media (min-width: 768px)  { .site-header-inner { height: 88px; } }
main                       { padding-top: 72px; }
@media (min-width: 768px)  { main { padding-top: 88px; } }

/* Coral shimmer line on scroll */
#site-header.scrolled::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(242,92,59,0.5) 40%, rgba(242,92,59,0.8) 55%, rgba(242,92,59,0.5) 70%, transparent 100%);
  opacity: 0.6;
}

/* ── Nav trigger (chevron link) ──────────────── */

/* Stretch li to full header height → eliminates the gap between trigger and panel.
   No position:relative here — keeps .mega-panel positioned relative to #site-header. */
.has-mega {
  align-self: stretch;
  display: flex;
  align-items: center;
}

.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 100%;
}
.nav-chevron {
  opacity: 0.5;
  flex-shrink: 0;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.has-mega:hover  .nav-chevron,
.has-mega:focus-within .nav-chevron { transform: rotate(180deg); opacity: 1; }

/* ── Mega panel ──────────────────────────────── */
.mega-panel {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(5, 16, 36, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 32px 80px -12px rgba(0,0,0,0.8);
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  /* Close delay: 100ms before hiding so mouse can travel to panel */
  transition: opacity 0.2s ease 0.1s, transform 0.2s ease 0.1s;
}
.mega-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--coral-500) 0%, rgba(242,92,59,0.3) 45%, transparent 65%);
}
.has-mega:hover  .mega-panel,
.has-mega:focus-within .mega-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  /* Open immediately — no delay */
  transition: opacity 0.2s ease 0s, transform 0.2s ease 0s;
}

.mega-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 32px 32px;
  display: grid;
  gap: 32px;
}
.mega-inner--ai       { grid-template-columns: 1fr 260px; gap: 44px; }
.mega-inner--services { grid-template-columns: repeat(4, 1fr); gap: 12px; }
.mega-inner--brands   { grid-template-columns: repeat(5, 1fr); gap: 10px; }

/* ── Section eyebrow ─────────────────────────── */
.mega-label {
  display: block;
  font-size: 10px;
  font-family: var(--font-mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral-500);
  margin-bottom: 14px;
}

/* ── AI pipeline steps ───────────────────────── */
.mega-items { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }

.mega-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 11px 13px;
  border-radius: 8px;
  border: 1px solid transparent;
  text-decoration: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.15s, border-color 0.15s;
}
.mega-item:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); }
.has-mega:hover .mega-item                    { opacity:1; transform:translateY(0); }
.has-mega:hover .mega-item:nth-child(1)       { transition-delay:0.04s; }
.has-mega:hover .mega-item:nth-child(2)       { transition-delay:0.08s; }
.has-mega:hover .mega-item:nth-child(3)       { transition-delay:0.12s; }
.has-mega:hover .mega-item:nth-child(4)       { transition-delay:0.16s; }

.mega-item-num {
  width: 27px; height: 27px;
  border-radius: 6px;
  background: rgba(242,92,59,0.12);
  color: var(--coral-500);
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mega-item-title { display:block; font-size:13px; font-weight:600; color:#fff; line-height:1.35; }
.mega-item-desc  { display:block; font-size:11px; color:rgba(255,255,255,0.45); margin-top:3px; line-height:1.45; }

/* ── Featured card ───────────────────────────── */
.mega-featured { display:flex; align-items:center; }
.mega-featured-card {
  background: linear-gradient(135deg, rgba(242,92,59,0.13) 0%, rgba(229,38,109,0.08) 100%);
  border: 1px solid rgba(242,92,59,0.22);
  border-radius: 12px;
  padding: 22px 20px;
  width: 100%;
  display: flex; flex-direction: column; gap: 8px;
}
.mega-featured-badge {
  font-family: var(--font-mono);
  font-size: 42px; font-weight: 700;
  color: var(--coral-500);
  letter-spacing: -0.03em; line-height: 1;
}
.mega-featured-title { font-size:14px; font-weight:600; color:rgba(255,255,255,0.9); line-height:1.45; }
.mega-featured-cta {
  display:inline-flex; align-items:center; gap:6px;
  font-size:12px; font-weight:700;
  color:var(--coral-500); text-decoration:none;
  margin-top:6px;
  transition: gap 0.2s ease;
}
.mega-featured-cta:hover { gap:10px; }

/* ── Service cards ───────────────────────────── */
.mega-service-card {
  display:flex; flex-direction:column;
  padding: 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.07);
  text-decoration: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.15s, border-color 0.15s;
}
.mega-service-card:hover { background:rgba(255,255,255,0.05); border-color:rgba(255,255,255,0.14); }
.has-mega:hover .mega-service-card                   { opacity:1; transform:translateY(0); }
.has-mega:hover .mega-service-card:nth-child(1)      { transition-delay:0.04s; }
.has-mega:hover .mega-service-card:nth-child(2)      { transition-delay:0.08s; }
.has-mega:hover .mega-service-card:nth-child(3)      { transition-delay:0.12s; }
.has-mega:hover .mega-service-card:nth-child(4)      { transition-delay:0.16s; }

.mega-service-icon {
  width:36px; height:36px; border-radius:8px;
  background:rgba(255,255,255,0.07);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:11px; color:rgba(255,255,255,0.7); flex-shrink:0;
}
.mega-service-title { display:block; font-size:14px; font-weight:700; color:#fff; margin-bottom:5px; }
.mega-service-desc  { display:block; font-size:12px; color:rgba(255,255,255,0.46); line-height:1.5; }

/* ── Brand items ─────────────────────────────── */
.mega-brand-item {
  display:flex; flex-direction:column; align-items:center; text-align:center;
  padding: 14px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.07);
  text-decoration: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.15s, border-color 0.15s;
}
.mega-brand-item:hover { background:rgba(255,255,255,0.05); border-color:rgba(255,255,255,0.14); transform:translateY(-2px); }
.has-mega:hover .mega-brand-item                  { opacity:1; transform:translateY(0); }
.has-mega:hover .mega-brand-item:nth-child(1)     { transition-delay:0.03s; }
.has-mega:hover .mega-brand-item:nth-child(2)     { transition-delay:0.06s; }
.has-mega:hover .mega-brand-item:nth-child(3)     { transition-delay:0.09s; }
.has-mega:hover .mega-brand-item:nth-child(4)     { transition-delay:0.12s; }
.has-mega:hover .mega-brand-item:nth-child(5)     { transition-delay:0.15s; }

.mega-brand-dot  { width:10px; height:10px; border-radius:50%; margin-bottom:8px; flex-shrink:0; }
.mega-brand-name { display:block; font-size:13px; font-weight:700; color:#fff; margin-bottom:3px; }
.mega-brand-sub  { display:block; font-size:10px; color:rgba(255,255,255,0.38); font-family:var(--font-mono); letter-spacing:0.06em; }

/* Brand logos in mega menu */
.mega-brand-logo {
  display: block;
  height: 44px;
  width: auto;
  max-width: 140px;
  margin-bottom: 10px;
  object-fit: contain;
}

/* Sub-brand logos in spread sections */
.subbrand-logo {
  display: block;
  height: 72px;
  width: auto;
  max-width: 240px;
  margin-bottom: 24px;
  object-fit: contain;
}

/* ── Kontakt nav highlight ───────────────────── */
.nav-kontakt            { color:var(--coral-500) !important; font-weight:600 !important; }
.nav-kontakt::after     { background:var(--coral-500) !important; }

/* ── CTA glow ────────────────────────────────── */
.btn-coral:hover    { box-shadow: 0 0 24px rgba(242,92,59,0.45), 0 4px 12px rgba(0,0,0,0.25); }
.btn-coral-lg:hover { box-shadow: 0 0 32px rgba(242,92,59,0.45), 0 8px 24px rgba(0,0,0,0.3); }

/* ══════════════════════════════════════════════════════════════
   SECTION 35 — SPLIT HEADER · SHRINK ON SCROLL
   ══════════════════════════════════════════════════════════════ */

/* Always-visible dark header — matches design screenshot */
#site-header {
  background-color: rgba(6, 21, 43, 0.85) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(255,255,255,0.05);
  transition: background-color 0.45s ease, border-bottom-color 0.45s ease, box-shadow 0.45s ease;
}
#site-header.scrolled {
  background-color: rgba(6, 21, 43, 0.96) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(255,255,255,0.05);
  box-shadow: 0 8px 48px -8px rgba(0,0,0,0.6);
}

/* Taller header at rest — shrinks on scroll */
.site-header-inner        { height: 100px; transition: height 0.4s ease; }
@media (min-width: 768px) { .site-header-inner { height: 100px; } }
#site-header.scrolled .site-header-inner { height: 72px; }

/* content offset */
main                       { padding-top: 100px; }
@media (min-width: 768px)  { main { padding-top: 100px; } }

/* Front page: hero starts at y=0, merges with transparent header */
.home main, .front-page main { padding-top: 0; }
.home .hero-section, .front-page .hero-section { padding-top: 0; }
.hero-inner { padding-top: 120px !important; }
@media (min-width: 768px)  { .hero-inner { padding-top: 128px !important; } }

/* ── Split nav layout (desktop) ──────────────── */
@media (min-width: 1024px) {
  .site-header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
  }

  /* Burger hidden at desktop */
  .burger-btn { display: none !important; }

  /* Both side navs stretch full header height */
  nav.desktop-nav--left,
  nav.desktop-nav--right {
    display: flex !important;
    align-self: stretch;
    align-items: center;
  }
  /* Left nav starts from outer edge → items spread toward logo */
  nav.desktop-nav--left  { justify-content: flex-start; }
  /* Right nav ends at outer edge → items spread from logo outward */
  nav.desktop-nav--right { justify-content: flex-end; gap: 0; }

  /* ul inherits the height */
  .main-nav--left,
  .main-nav--right {
    display: flex !important;
    height: 100%;
    gap: 0;
  }
  /* Left: items from the left edge, spreading inward */
  .main-nav--left  { justify-content: flex-start; gap: 4px; }
  /* Right: items flush right toward actions */
  .main-nav--right { justify-content: flex-end; gap: 4px; padding-right: 16px; }

  /* Right-side actions: CTA only — phone lives in contact section + mobile menu */
  .header-actions--right {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-left: 20px;
    border-left: 1px solid rgba(255,255,255,0.08);
  }
  .header-actions--right .header-phone { display: none; }
}

/* Mobile: flex layout, navs hidden */
@media (max-width: 1023px) {
  .site-header-inner {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
  }
  nav.desktop-nav--left,
  nav.desktop-nav--right { display: none !important; }
  .burger-btn { display: flex !important; }
}

/* ── Logo centred + shrink ────────────────────── */
.site-logo--center {
  justify-content: center;
  flex-shrink: 0;
}
.header-custom-logo {
  height: 72px;
  width: auto;
  object-fit: contain;
  transition: height 0.4s ease;
}
@media (min-width: 1024px) {
  .header-custom-logo { height: 80px; }
}
#site-header.scrolled .header-custom-logo { height: 50px; }

/* ── Hero badge: editorial — minimal coral rule ── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0;
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  margin-bottom: 36px;
}
.hero-badge::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--coral-500);
  flex-shrink: 0;
}
.hero-badge-dot { display: none !important; }
.hero-badge .eyebrow {
  font-size: 10px !important;
  letter-spacing: 0.24em !important;
  color: rgba(255,255,255,0.55) !important;
}

/* ══════════════════════════════════════════════════════════════
   SECTION 36 — COMPREHENSIVE VISUAL POLISH
   ui-ux-pro-max: B2B agency · premium dark · 8pt grid · WCAG AA
   ══════════════════════════════════════════════════════════════ */

/* ── Rendering & global body quality ───────────── */
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { line-height: 1.62; }
p    { line-height: 1.7; }

/* ── Focus states — WCAG 2.4.7 ─────────────────── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--coral-500);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Eyebrow — coral accent dot prefix ──────────── */
/* Only apply to section eyebrows outside the hero badge */
.ai-section .eyebrow,
.leistungen-section .eyebrow,
.zahlen-section .eyebrow,
.ueber-section .eyebrow,
.kontakt-section .eyebrow,
.social-proof-section .eyebrow,
.sub-light-section .eyebrow,
.sub-dark-section .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.22em;
}
.ai-section .eyebrow::before,
.leistungen-section .eyebrow::before,
.zahlen-section .eyebrow::before,
.ueber-section .eyebrow::before,
.kontakt-section .eyebrow::before,
.sub-dark-section .eyebrow::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1.5px;
  background: var(--coral-500);
  flex-shrink: 0;
}
.sub-light-section .eyebrow::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1.5px;
  background: var(--coral-500);
  flex-shrink: 0;
}
.zahlen-section .eyebrow::before { background: rgba(255,255,255,0.6); }
.social-proof-section .eyebrow::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1.5px;
  background: var(--coral-500);
  flex-shrink: 0;
}

/* ── Social proof — elevated white section ──────── */
.social-proof-section {
  position: relative;
  background: #f5f5f7;  /* Apple-style off-white — not pure white */
  border-top: none;
  border-bottom: none;
}
.social-proof-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 5%, var(--coral-500) 30%, rgba(242,92,59,0.25) 65%, transparent 95%);
}
/* Marquee logos on light bg — enforce consistent dark treatment */
.marquee-track img { opacity: 0.35; filter: grayscale(1) brightness(0.1); transition: opacity 0.3s ease, filter 0.3s ease; }
.marquee-track img:hover { opacity: 0.75; filter: grayscale(0) brightness(1); }

/* ── AI section — ambient depth glow ────────────── */
.ai-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 95% 5%, rgba(242,92,59,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 45% 35% at 5% 95%, rgba(30,115,190,0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.ai-section > * { position: relative; z-index: 1; }

/* Pipeline cards — refined hover */
.pipeline-card {
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s cubic-bezier(0.22,1,0.36,1);
}
.pipeline-card:hover {
  border-color: rgba(242,92,59,0.3) !important;
  transform: translateY(-4px);
  box-shadow: 0 20px 48px -12px rgba(0,0,0,0.45), 0 0 0 1px rgba(242,92,59,0.12);
}
/* Pipeline step number — tighter */
.pipeline-num { width: 28px; height: 28px; border-radius: 7px; font-size: 11px; }

/* Feature badges — refined */
.feature-badge {
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.feature-badge:hover {
  border-color: rgba(242,92,59,0.35) !important;
  background: rgba(242,92,59,0.04) !important;
  transform: translateX(3px);
}
.feature-icon { border-radius: 10px; }

/* ── Leistungen cards — depth + hover ───────────── */
.leistung-card {
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.25s ease, transform 0.25s cubic-bezier(0.22,1,0.36,1), box-shadow 0.25s ease;
}
.leistung-card:hover {
  border-color: rgba(255,255,255,0.14);
  transform: translateY(-5px);
  box-shadow: 0 24px 56px -12px rgba(0,0,0,0.5);
}
/* Leistung icon — softer radius */
.leistung-icon { border-radius: 10px; }

/* ── Sub-brands sections — subtle ambient ───────── */
.sub-dark-section {
  position: relative;
  overflow: hidden;
}
.sub-dark-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 70% at 85% 50%, rgba(255,255,255,0.02) 0%, transparent 65%);
  pointer-events: none;
}
/* notch-card hover refinement */
.notch-card {
  transition: box-shadow 0.25s ease, transform 0.25s cubic-bezier(0.22,1,0.36,1);
}
.notch-card:hover { box-shadow: 0 20px 50px -12px rgba(0,0,0,0.4); transform: translateY(-3px); }

/* ── Zahlen — gradient coral instead of flat ────── */
.zahlen-section {
  background: linear-gradient(135deg, #d94424 0%, var(--coral-500) 45%, #f06b47 100%);
  overflow: hidden;
  position: relative;
}
.zahlen-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
/* Stat cards — tighter, sharper interaction */
.stat-card {
  border-radius: 14px;
  transition: transform 0.2s cubic-bezier(0.22,1,0.36,1), box-shadow 0.2s ease;
}
.stat-card:hover { transform: scale(1.03); box-shadow: 0 12px 32px -8px rgba(0,0,0,0.3); }
.stat-card-value {
  font-variant-numeric: tabular-nums;
  font-size: clamp(2rem, 5vw, 3.25rem) !important;
}

/* ── Contact section — glassmorphism card ───────── */
.form-card {
  border-color: rgba(255,255,255,0.07) !important;
  transition: border-color 0.3s ease;
}
.form-card:hover { border-color: rgba(255,255,255,0.13) !important; }
/* Input focus ring */
.field:focus,
input.field:focus,
textarea.field:focus {
  border-color: var(--coral-500) !important;
  box-shadow: 0 0 0 3px rgba(242,92,59,0.14) !important;
  outline: none;
}
.field::placeholder { color: rgba(255,255,255,0.28); }

/* ── CTA button micro-interactions ──────────────── */
.btn-coral {
  transition: background-color 0.18s ease, box-shadow 0.22s ease, transform 0.14s cubic-bezier(0.22,1,0.36,1) !important;
}
.btn-coral:hover { transform: translateY(-1px); }
.btn-coral:active { transform: translateY(0) scale(0.98); transition-duration: 0.08s !important; }

.btn-coral-lg {
  transition: background-color 0.18s ease, box-shadow 0.22s ease, transform 0.14s cubic-bezier(0.22,1,0.36,1) !important;
}
.btn-coral-lg:hover { transform: translateY(-2px); }
.btn-coral-lg:active { transform: translateY(0) scale(0.98); transition-duration: 0.08s !important; }

/* ── Nav: coral underline instead of white ──────── */
.main-nav a::after { background: var(--coral-500); opacity: 0.9; height: 1.5px; }

/* ── Scroll reveal — spring easing ──────────────── */
.reveal {
  transition:
    opacity  0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) !important;
}
.reveal.in { opacity: 1 !important; transform: translateY(0) !important; }

/* ── Reduced motion respect (WCAG 2.3.3) ───────── */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .pipeline-card, .leistung-card, .stat-card,
  .notch-card, .feature-badge, .btn-coral, .btn-coral-lg,
  .gallery-item {
    transition: none !important;
    transform: none !important;
    animation: none !important;
  }
}

/* ═══════════════════════════════════════════════
   36. EP.PHOTO GALLERY
═══════════════════════════════════════════════ */

.photo-gallery-wrap {
  padding: 56px 0 72px;
}

.photo-gallery {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .photo-gallery { padding: 0 32px; }
}

/* ── Tab bar ─────────────────────────────── */
.gallery-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(10,31,61,0.08);
  margin-bottom: 20px;
}

.gallery-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border: 1.5px solid rgba(10,31,61,0.18);
  border-radius: 100px;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(10,31,61,0.55);
  cursor: pointer;
  transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease;
  -webkit-tap-highlight-color: transparent;
  min-height: 36px;
}

.gallery-tab:hover {
  border-color: var(--navy-800);
  color: var(--navy-800);
}

.gallery-tab.active {
  background: var(--navy-800);
  border-color: var(--navy-800);
  color: #fff;
}

.gallery-tab-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 4px;
  border-radius: 10px;
  background: rgba(10,31,61,0.1);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.gallery-tab.active .gallery-tab-count {
  background: rgba(255,255,255,0.22);
}

/* ── Slider wrapper (right-fade peek hint) ── */
.gallery-slider-wrap {
  position: relative;
}

.gallery-slider-wrap::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 72px;
  background: linear-gradient(to right, rgba(255,255,255,0), #ffffff 88%);
  pointer-events: none;
  z-index: 2;
}

/* ── Slider track ────────────────────────── */
.gallery-grid {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 10px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
}

.gallery-grid::-webkit-scrollbar { display: none; }

/* ── Slide items ─────────────────────────── */
/* Mobile: ~1.3 items visible (strong peek of 2nd) */
.gallery-item {
  flex: 0 0 calc((100% - 10px) / 1.35);
  flex-shrink: 0;
  scroll-snap-align: start;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  background: rgba(10,31,61,0.06);
  opacity: 0;
  animation: galleryFadeIn 0.45s cubic-bezier(0.22,1,0.36,1) forwards;
}

/* Tablet: ~2.3 items */
@media (min-width: 580px) {
  .gallery-item { flex-basis: calc((100% - 20px) / 2.3); }
}

/* Desktop: 4 full + clear peek of 5th */
@media (min-width: 1024px) {
  .gallery-item { flex-basis: calc((100% - 36px) / 4.3); }
}

@keyframes galleryFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s cubic-bezier(0.22,1,0.36,1);
}

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

.gallery-item.hidden { display: none; }

/* ── EP.digital dark-background slider variant ── */
.digital-gallery-wrap {
  padding: 56px 0 72px;
}

.digital-gallery {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .digital-gallery { padding: 0 32px; }
}

/* ── Sub-brand website buttons ───────────── */
.btn-subbrand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  padding: 11px 24px;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.18s ease, transform 0.14s cubic-bezier(0.22,1,0.36,1), box-shadow 0.18s ease;
}

.btn-subbrand:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -6px rgba(0,0,0,0.35);
}

.btn-subbrand:active {
  transform: translateY(0) scale(0.97);
  transition-duration: 0.08s;
}

/* Right-fade uses navy-800 to blend into dark section */
.gallery-slider-wrap--dark::after {
  background: linear-gradient(to right, rgba(10,31,61,0), var(--navy-800) 88%);
}

/* ── EP.radio: KI-Vergleich Audio Player ──────────────────── */
.radio-compare {
  padding: 56px 0 72px;
  border-top: 1px solid rgba(0,0,0,0.07);
}

.radio-compare-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .radio-compare-inner { padding: 0 32px; }
}

.radio-compare-header {
  text-align: center;
  margin-bottom: 40px;
}

.radio-compare-header h4 {
  font-family: var(--font-sans);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: 12px 0 8px;
}

.radio-compare-header p {
  font-size: 15px;
  color: rgba(10,31,61,0.62);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

.radio-compare-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .radio-compare-grid { grid-template-columns: 1fr 1fr; }
}

.radio-player-col {
  border-radius: 16px;
  overflow: hidden;
  background: #f7f4fb;
  border: 1.5px solid rgba(110,42,140,0.10);
  display: flex;
  flex-direction: column;
}

.radio-player-col--ai {
  background: linear-gradient(160deg, #2A0E3F 0%, #1E0F2A 100%);
  border-color: rgba(110,42,140,0.4);
}

.radio-player-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 20px 14px;
}

.radio-player-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

.radio-player-badge--standard {
  background: rgba(110,42,140,0.10);
  color: var(--ep-purple);
  border: 1px solid rgba(110,42,140,0.20);
}

.radio-player-badge--ai {
  background: var(--ep-purple);
  color: #fff;
}

.radio-player-title {
  font-size: 13px;
  font-weight: 600;
}

.radio-player-col--standard .radio-player-title { color: rgba(10,31,61,0.65); }
.radio-player-col--ai .radio-player-title { color: rgba(255,255,255,0.7); }

.radio-player-body {
  flex: 1;
  padding: 0 12px 16px;
}

/* Force Sonaar player to blend into our card design */
.radio-player-col--standard .radio-player-body .album-player,
.radio-player-col--standard .radio-player-body .srp-post-skin-float-tracklist {
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.radio-player-col--ai .radio-player-body .album-player,
.radio-player-col--ai .radio-player-body .srp-post-skin-float-tracklist {
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

/* Sonaar controls: white in AI card, purple in standard */
.radio-player-col--standard .radio-player-body .control div,
.radio-player-col--standard .radio-player-body .control i,
.radio-player-col--standard .radio-player-body .srp-play-button .sricon-play,
.radio-player-col--standard .radio-player-body .album-player .srp_noteButton {
  color: var(--ep-purple) !important;
}
.radio-player-col--standard .radio-player-body .control .play,
.radio-player-col--standard .radio-player-body .srp-play-circle,
.radio-player-col--standard .radio-player-body .sr_speedRate div {
  border-color: var(--ep-purple) !important;
}

.radio-compare-vs {
  display: none;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .radio-compare-vs {
    display: flex;
  }
}

.radio-compare-vs-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ep-purple);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(110,42,140,0.35);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

/* Campaign tabs */
.radio-campaign-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 28px;
}

.radio-campaign-tab {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 8px 20px;
  border-radius: 100px;
  border: 1.5px solid rgba(110,42,140,0.25);
  background: transparent;
  color: rgba(10,31,61,0.55);
  cursor: pointer;
  transition: all 0.18s ease;
}

.radio-campaign-tab:hover {
  border-color: var(--ep-purple);
  color: var(--ep-purple);
}

.radio-campaign-tab.active {
  background: var(--ep-purple);
  border-color: var(--ep-purple);
  color: #fff;
}

/* Hide Sonaar filename row, keep album title */
.radio-player-body .srp_meta_0.track-title { display: none !important; }

/* Dark AI card: all Sonaar text elements → white */
.radio-player-col--ai .radio-player-body,
.radio-player-col--ai .radio-player-body .srp_meta,
.radio-player-col--ai .radio-player-body .srp_meta_1,
.radio-player-col--ai .radio-player-body .album-title,
.radio-player-col--ai .radio-player-body .currentTime,
.radio-player-col--ai .radio-player-body .totalTime,
.radio-player-col--ai .radio-player-body .sr_time,
.radio-player-col--ai .radio-player-body .track_info,
.radio-player-col--ai .radio-player-body .iron_widget_radio {
  color: rgba(255,255,255,0.92) !important;
}

/* Progress bar */
.radio-player-col--ai .radio-player-body .sr_progressbar {
  background-color: transparent !important;
}

.radio-player-col--ai .radio-player-body .sr_progressbar_progress {
  background-color: transparent !important;
}

/* Play button ring */
.radio-player-col--ai .radio-player-body .control .play,
.radio-player-col--ai .radio-player-body .srp-play-circle {
  border-color: rgba(255,255,255,0.85) !important;
}

/* Play icon */
.radio-player-col--ai .radio-player-body .control i,
.radio-player-col--ai .radio-player-body .control div,
.radio-player-col--ai .radio-player-body .sricon-play {
  color: #fff !important;
}
