/* clickable service rows */
    .service-row-link {
      display: block;
      text-decoration: none;
      color: inherit;
    }

    .service-row-link .service-row {
      cursor: pointer;
    }

    .service-row-link .service-row::after {
      content: '→';
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      font-size: 16px;
      color: var(--blue);
      opacity: 0;
      transition: opacity 0.2s, right 0.2s;
    }

    .service-row {
      position: relative;
    }

    .service-row-link:hover .service-row::after {
      opacity: 1;
      right: -4px;
    }

    /* clickable project cards */
    .projekt-card-link {
      display: block;
      text-decoration: none;
      color: inherit;
      cursor: pointer;
      touch-action: manipulation;
      -webkit-tap-highlight-color: transparent;
    }
/* ── HERO ── */
    #hero {
      height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 0 60px 80px;
      position: relative;
      overflow: hidden;
      background: #EEF3FA;
    }

    .hero-slideshow {
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      opacity: 0;
      transition: opacity 1s ease-in-out;
    }

    .hero-slide.active {
      opacity: 0.22;
    }

    .hero-grid-bg {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(0, 75, 114, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 75, 114, 0.06) 1px, transparent 1px);
      background-size: 80px 80px;
      animation: gridShift 20s linear infinite;
      will-change: transform;
      z-index: 1;
    }

    @keyframes gridShift {
      0% {
        transform: translate3d(0, 0, 0);
      }

      100% {
        transform: translate3d(80px, 80px, 0);
      }
    }

    .hero-orb {
      position: absolute;
      border-radius: 50%;
      /* Replaced filter: blur(120px) which is a GPU-killer with radial gradients */
      opacity: 0.25;
      animation: orbFloat 12s ease-in-out infinite alternate;
      will-change: transform;
      z-index: 1;
    }

    .hero-orb-1 {
      width: 600px;
      height: 600px;
      top: -100px;
      right: -100px;
      background: radial-gradient(circle, #004b72 0%, transparent 70%);
    }

    .hero-orb-2 {
      width: 400px;
      height: 400px;
      bottom: 100px;
      left: -50px;
      background: radial-gradient(circle, #0099FF 0%, transparent 70%);
      animation-delay: -4s;
    }

    @keyframes orbFloat {
      0% {
        transform: translate3d(0, 0, 0) scale(1);
      }

      100% {
        transform: translate3d(30px, -40px, 0) scale(1.1);
      }
    }

    .hero-label {
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 3px;
      color: var(--blue);
      text-transform: uppercase;
      margin-bottom: 8px;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 0.8s 0.3s ease forwards;
    }

    .hero-strategy {
      font-family: var(--font-display);
      font-size: 24px;
      letter-spacing: 2px;
      color: var(--text);
      text-transform: uppercase;
      margin-bottom: 24px;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 0.8s 0.4s ease forwards;
      z-index: 2;
    }

    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(100px, 18vw, 260px);
      line-height: 0.9;
      letter-spacing: -2px;
      color: var(--text);
      opacity: 0;
      transform: translateY(40px);
      animation: fadeUp 0.8s 0.5s ease forwards;
    }

    .hero-logo-img {
      height: clamp(80px, 14vw, 200px);
      width: auto;
      display: block;
    }

    .hero-sub {
      font-size: 21px;
      color: var(--text-dim);
      margin-top: 24px;
      max-width: 520px;
      line-height: 1.65;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 0.8s 0.8s ease forwards;
      transition: opacity 0.4s ease;
    }

    /* ── HERO TRUST BAR (zwei Balken) ── */
    .hero-trust-bar {
      display: flex;
      margin-top: 48px;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 0.8s 1s ease forwards;
      position: relative;
      z-index: 3;
      width: 100%;
    }

    .hero-trust-item {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 6px;
      padding: 14px 20px;
      border: 1px solid rgba(0, 75, 114, 0.3);
      text-decoration: none;
      position: relative;
      overflow: hidden;
      transition: border-color 0.4s, color 0.4s;
    }

    .hero-trust-item::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--blue);
      transform: translateX(-101%);
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 0;
    }

    .hero-trust-item:hover::before {
      transform: translateX(0);
    }

    .hero-trust-item:first-child {
      border-right: none;
    }

    .hero-trust-item:hover {
      border-color: var(--blue);
    }

    .hero-trust-label {
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 2px;
      color: var(--text-dim);
      text-transform: uppercase;
      position: relative;
      z-index: 1;
      transition: color 0.4s;
    }

    .hero-trust-item:hover .hero-trust-label {
      color: rgba(255, 255, 255, 0.7);
    }

    .hero-trust-cta {
      font-family: var(--font-mono);
      font-size: 16px;
      letter-spacing: 0.5px;
      color: var(--blue);
      position: relative;
      z-index: 1;
      transition: color 0.4s;
    }

    .hero-trust-item:hover .hero-trust-cta {
      color: #fff;
    }

    .hero-scroll {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 2px;
      color: var(--text-dim);
      text-transform: uppercase;
      pointer-events: none;
    }

    .hero-scroll-line {
      width: 1px;
      height: 60px;
      background: linear-gradient(to bottom, var(--blue), transparent);
      animation: scrollPulse 2s ease-in-out infinite;
    }

    @keyframes scrollPulse {

      0%,
      100% {
        opacity: 0.4;
        transform: scaleY(1);
      }

      50% {
        opacity: 1;
        transform: scaleY(1.2);
      }
    }

    .hero-label,
    .hero-title,
    .hero-sub,
    .hero-trust-bar,
    .hero-scroll {
      position: relative;
      z-index: 2;
    }

    @keyframes fadeUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* ── SECTIONS COMMON ── */
    section {
      padding: 140px 60px;
      position: relative;
      scroll-margin-top: 80px;
    }

    .section-label {
      font-family: var(--font-mono);
      font-size: 12px;
      letter-spacing: 3px;
      color: var(--amber);
      text-transform: uppercase;
      margin-bottom: 8px;
      will-change: transform, opacity;
    }

    .section-num {
      font-family: var(--font-display);
      font-size: 200px;
      color: rgba(0, 75, 114, 0.04);
      line-height: 1;
      position: absolute;
      right: 40px;
      top: 60px;
      pointer-events: none;
      user-select: none;
    }

    .section-title {
      font-family: var(--font-display);
      font-size: clamp(44px, 5vw, 72px);
      letter-spacing: 1px;
      line-height: 1;
      margin-bottom: 32px;
      will-change: transform, opacity;
    }

    .gold-rule {
      width: 60px;
      height: 2px;
      background: var(--blue);
      margin-bottom: 32px;
    }

    /* ── INTRO ── */
    #intro {
      background: var(--surface);
      position: relative;
    }

    .intro-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
    }

    .intro-text p {
      font-size: 16px;
      line-height: 1.9;
      color: var(--text-dim);
    }

    .intro-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2px;
    }

    .stat-card {
      background: var(--surface2);
      padding: 40px 30px;
      border: 1px solid var(--border);
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }

    .stat-card::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--blue);
      transform: scaleX(0);
      transition: transform 0.4s ease;
    }

    .stat-card:hover::before {
      transform: scaleX(1);
    }

    .stat-card:hover {
      background: rgba(20, 20, 32, 0.9);
    }

    .stat-num {
      font-family: var(--font-display);
      font-size: 56px;
      color: var(--blue);
      line-height: 1;
    }

    .stat-label {
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 1px;
      color: var(--text-dim);
      margin-top: 8px;
      text-transform: uppercase;
    }

    /* ── LOGOS ── */
    #logos {
      padding: 80px 60px;
      background: var(--bg);
    }

    .logos-label {
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 3px;
      color: var(--amber);
      text-transform: uppercase;
      text-align: center;
      margin-bottom: 48px;
    }

    .logos-track-wrapper {
      overflow: hidden;
      mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
    }

    .logos-track {
      display: flex;
      gap: 0;
      animation: logoScroll 60s linear infinite;
      width: max-content;
    }

    .logos-track:hover {
      animation-play-state: paused;
    }

    @keyframes logoScroll {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    .logo-pill {
      flex-shrink: 0;
      width: 240px;
      height: 110px;
      margin: 0 20px;
      background: var(--surface);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 1px;
      color: var(--text-2);
      text-transform: uppercase;
      transition: var(--trans-fast);
    }

    .logo-pill img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      padding: 0px;
      mix-blend-mode: multiply;
      transform: scale(1.45);
      /* zooms in further to cut off built-in white space */
    }

    .logo-pill.logo-9-crop img {
      clip-path: inset(8% 8%);
      transform: scale(1.6);
    }

    .logo-pill:hover {
      border-color: rgba(0, 75, 114, 0.4);
      color: var(--blue);
    }

    /* ── SERVICES – sticky layout ── */
    #services {
      background: var(--bg);
      position: relative;
    }

    .services-sticky-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: start;
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 40px;
      gap: 80px;
    }

    .services-scroll-col {
      padding: 60px 0 120px;
    }

    .services-video-sticky-col {
      position: sticky;
      top: 0;
      height: 100vh;
      display: flex;
      align-items: center;
    }

    .services-video-sticky-wrap {
      width: 100%;
      aspect-ratio: 16/10;
      overflow: hidden;
      border-radius: 12px;
      box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
      background: var(--surface);
      position: relative;
    }

    /* ── RRI cross-fade images ── */
    .rri-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      will-change: opacity, transform;
      transform-origin: center center;
      opacity: 0;
    }

    .rri-img:first-child {
      opacity: 1;
    }

    /* Service list rows */
    .services-list {
      margin-top: 60px;
      border-top: 1px solid var(--border);
    }

    .service-row {
      padding: 40px 0;
      border-bottom: 1px solid var(--border);
      transition: background 0.2s;
    }

    .service-row:hover {
      background: rgba(255, 255, 255, 0.02);
    }

    .service-row .service-tag {
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 2px;
      color: var(--blue);
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .service-row .service-title {
      font-family: var(--font-display);
      font-size: clamp(22px, 2.5vw, 34px);
      letter-spacing: 0.5px;
      color: var(--text);
      margin-bottom: 10px;
    }

    .service-row .service-desc {
      color: var(--text-dim);
      font-size: 14px;
      line-height: 1.7;
      max-width: 480px;
    }

    /* Reset old card CSS overrides */
    .service-tag {
      color: var(--blue);
    }

    .service-title {
      color: var(--text);
    }

    .service-desc {
      color: var(--text-dim);
    }

    .objective-label {
      color: var(--blue);
    }

    /* Pop-in animation for objective text – starts hidden */
    .objective-text {
      color: var(--text);
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .objective-text.popped {
      opacity: 1;
      transform: translateY(0);
    }

    /* Responsive */
    @media (max-width: 900px) {
      .services-sticky-layout {
        grid-template-columns: 1fr;
        padding: 0 20px;
        gap: 0;
      }

      .services-video-sticky-col {
        position: relative;
        height: auto;
        order: -1;
        margin-bottom: 32px;
      }

      .services-video-sticky-wrap {
        aspect-ratio: 16/9;
        border-radius: 6px;
      }
    }

    .services-header {
      max-width: 1200px;
      margin: 0 auto 80px;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
    }

    .services-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
    }

    .service-card {
      background: rgba(12, 15, 24, 0.55);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.08);
      padding: 0;
      overflow: hidden;
      position: relative;
      cursor: pointer;
      transition: background 0.3s ease, border-color 0.3s ease;
    }

    .service-card:hover {
      background: rgba(12, 15, 24, 0.72);
      border-color: rgba(0, 120, 255, 0.3);
    }

    .service-img {
      width: 100%;
      height: 280px;
      background: var(--surface2);
      position: relative;
      overflow: hidden;
    }

    /* PLACEHOLDER: replace with actual image */
    .service-img-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 1px;
      color: rgba(255, 255, 255, 0.15);
      text-transform: uppercase;
      position: relative;
    }

    .service-img-placeholder::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(200, 169, 110, 0.05), transparent 60%);
    }

    .bim-placeholder {
      background: linear-gradient(135deg, #0F1620, #0A0A0F);
    }

    .mep-placeholder {
      background: linear-gradient(135deg, #10160F, #0A0A0F);
    }

    .arc-placeholder {
      background: linear-gradient(135deg, #16100F, #0A0A0F);
    }

    .service-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, var(--surface) 0%, transparent 60%);
    }

    .service-content {
      padding: 32px;
    }

    .service-tag {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 3px;
      color: var(--blue);
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .service-title {
      font-family: var(--font-display);
      font-size: 36px;
      letter-spacing: 1px;
      margin-bottom: 16px;
    }

    .service-desc {
      font-size: 14px;
      line-height: 1.8;
      color: var(--text-dim);
    }

    .service-card {
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      border: 1px solid var(--border);
    }

    .service-card:hover {
      transform: translateY(-6px);
      border-color: rgba(0, 75, 114, 0.3);
      box-shadow: 0 20px 60px rgba(0, 75, 114, 0.08);
    }

    .service-card:hover .service-img-placeholder::after {
      opacity: 1;
    }

    /* ── BIM VISION ── */
    #vision {
      background: var(--surface);
      position: relative;
      overflow: hidden;
    }

    .vision-inner {
      max-width: 900px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .vision-text {
      font-size: 17px;
      line-height: 1.95;
      color: var(--text-dim);
      margin-bottom: 24px;
    }

    .vision-highlight {
      font-family: var(--font-display);
      font-size: clamp(32px, 4vw, 52px);
      line-height: 1.1;
      color: var(--text);
      margin: 60px 0;
      letter-spacing: 0.5px;
    }

    .vision-highlight span {
      color: var(--blue);
    }

    .challenge-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 20px;
      margin: 40px 0;
    }

    @media (max-width: 900px) {
      .challenge-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 500px) {
      .challenge-grid {
        grid-template-columns: 1fr;
      }
    }

    .challenge-item {
      background: var(--surface2);
      padding: 32px 24px;
      border: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 20px;
      border-radius: 8px;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
      overflow: hidden;
    }

    .challenge-item:hover {
      border-color: rgba(0, 75, 114, 0.4);
      background: var(--surface);
      transform: translateY(-8px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    }

    .challenge-icon-scene {
      width: 180px;
      height: 180px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: visible;
    }

    .challenge-3d-img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      mix-blend-mode: multiply;
      opacity: 0;
      transition: transform 0.4s ease;
    }

    .challenge-item:hover .challenge-3d-img {
      transform: scale(1.08) translateY(-5px);
    }

    .challenge-icon-scene.go .challenge-3d-img {
      animation: pulseFloatChallenge 6s ease-in-out infinite, fadeInImg 1s ease forwards;
    }

    @keyframes fadeInImg {
      to {
        opacity: 1;
      }
    }

    @keyframes pulseFloatChallenge {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-8px);
      }
    }

    .challenge-item span {
      font-weight: 600;
      font-size: 17px;
      line-height: 1.4;
      color: var(--text);
      margin-top: 15px;
      max-width: 240px;
    }

    .challenge-consequence {
      background: rgba(232, 151, 42, 0.06);
      border-left: 4px solid var(--amber);
      padding: 32px;
      margin: 48px 0;
      border-radius: 0 8px 8px 0;
    }

    .challenge-consequence h4 {
      font-family: var(--font-mono);
      font-size: 11px;
      letter-spacing: 2px;
      color: var(--amber);
      /* Changed to amber */
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .challenge-consequence p {
      font-size: 18px;
      font-weight: 500;
      color: var(--amber);
      /* Changed to amber */
    }

    .consequence-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .consequence-icons {
      display: flex;
      gap: 14px;
      flex-shrink: 0;
      align-items: center;
    }

    .challenge-ctas {
      display: flex;
      gap: 20px;
      margin-top: 40px;
      flex-wrap: wrap;
    }

    .cta-challenge {
      padding: 16px 32px;
      font-family: var(--font-mono);
      font-size: 12px;
      letter-spacing: 1px;
      text-transform: uppercase;
      text-decoration: none;
      transition: all 0.3s ease;
      border-radius: 4px;
    }

    .cta-primary {
      background: var(--amber);
      color: var(--blue);
      font-weight: 600;
    }

    .cta-primary:hover {
      background: #f0a844;
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(232, 151, 42, 0.2);
    }

    .cta-secondary {
      border: 1px solid var(--amber);
      color: var(--amber);
      font-weight: 600;
    }

    .cta-secondary:hover {
      background: rgba(232, 151, 42, 0.05);
      transform: translateY(-2px);
    }

    .vision-bg-text {
      position: absolute;
      font-family: var(--font-display);
      font-size: 300px;
      color: rgba(0, 75, 114, 0.04);
      top: 50%;
      right: -60px;
      transform: translateY(-50%);
      line-height: 1;
      pointer-events: none;
    }

    /* ── PROJECT AREAS ── */
    #netzwerk {
      background: var(--bg);
      position: relative;
    }

    .projects-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .projects-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      margin-top: 60px;
    }

    .project-area {
      background: var(--surface);
      padding: 50px 40px;
      border: 1px solid var(--border);
      position: relative;
      overflow: hidden;
      transition: all 0.4s ease;
    }

    .project-area::after {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 3px;
      background: var(--blue);
      transform: scaleY(0);
      transition: transform 0.4s ease;
      transform-origin: bottom;
    }

    .project-area:hover::after {
      transform: scaleY(1);
    }

    .project-area:hover {
      background: var(--surface2);
    }

    .project-flag {
      font-size: 48px;
      margin-bottom: 20px;
      display: block;
    }

    .project-country {
      font-family: var(--font-display);
      font-size: 42px;
      letter-spacing: 1px;
      margin-bottom: 24px;
    }

    .project-line {
      display: flex;
      justify-content: space-between;
      padding: 12px 0;
      border-bottom: 1px solid var(--border);
      font-size: 13px;
      color: var(--text-dim);
    }

    .project-line .val {
      font-family: var(--font-mono);
      color: var(--blue);
      font-size: 14px;
    }

    /* ── PROJECTS + NETWORK LAYOUT ── */
    .projects-network-layout {
      display: grid;
      grid-template-columns: 1fr;
      /* Stack map and stats */
      gap: 60px;
      margin-top: 60px;
      align-items: start;
    }

    .projects-network-layout .projects-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      /* 3 countries in a row */
      gap: 30px;
      margin-top: 0;
    }

    @media (max-width: 900px) {
      .projects-network-layout .projects-grid {
        grid-template-columns: 1fr;
        /* Stack vertically on small screens */
      }
    }

    /* ── TEAM ── */
    #team {
      background: var(--surface);
      position: relative;
    }

    .team-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 60px;
    }

    .team-member {
      background: var(--surface2);
      padding: 0;
      border: 1px solid var(--border);
      transition: all 0.4s ease;
      text-align: center;
      overflow: hidden;
    }

    .team-member:hover {
      transform: translateY(-8px);
      border-color: rgba(0, 75, 114, 0.3);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
      will-change: transform;
    }

    .team-img-box {
      width: 100%;
      aspect-ratio: 1;
      overflow: hidden;
      position: relative;
      background: var(--bg);
    }

    .team-img-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .team-member:hover .team-img-box img {
      transform: scale(1.15);
    }

    .team-info {
      padding: 24px;
    }

    .member-name {
      font-family: var(--font-display);
      font-size: 28px;
      letter-spacing: 1px;
      margin-bottom: 4px;
      color: var(--text);
    }

    .member-role {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 2px;
      color: var(--blue);
      text-transform: uppercase;
    }

    /* ── NETWORK (merged into #netzwerk) ── */
    .network-map-placeholder {
      width: 100%;
      max-width: 1000px;
      /* Cap width to prevent pixelation */
      aspect-ratio: 16/10;
      /* Common landscape ratio for generated maps */
      background: url('../assets/Europa.jpg') center/contain no-repeat;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 60px auto 0;
      position: relative;
      overflow: hidden;
      border-radius: 8px;
      background-color: var(--surface2);
      /* Subtle contrast if image is transparent or small */
    }

    .map-label {
      display: none;
      /* Hidden as requested for a cleaner look with the real map */
    }

    /* Dot pins decoration */
    .map-pin {
      position: absolute;
      width: 8px;
      height: 8px;
      background: var(--blue);
      border-radius: 50%;
      box-shadow: 0 0 20px rgba(0, 75, 114, 0.5);
      animation: pinPulse 2s ease-in-out infinite;
    }

    .map-pin::before {
      content: '';
      position: absolute;
      inset: -6px;
      border: 1px solid rgba(0, 75, 114, 0.3);
      border-radius: 50%;
      animation: pinRing 2s ease-in-out infinite;
    }

    @keyframes pinPulse {

      0%,
      100% {
        transform: scale(1);
      }

      50% {
        transform: scale(1.3);
      }
    }

    @keyframes pinRing {
      0% {
        transform: scale(1);
        opacity: 0.6;
      }

      100% {
        transform: scale(2.5);
        opacity: 0;
      }
    }

    /* Geographically calibrated based on Europe continent silhouette */
    .pin-de {
      top: 42%;
      left: 49%;
    }

    .pin-at {
      top: 48%;
      left: 53%;
    }

    .pin-es {
      top: 78%;
      left: 28%;
    }

    /* ── LOCATION ── */
    #location {
      background: var(--bg);
    }

    .location-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .location-photo {
      width: 100%;
      aspect-ratio: 4/3;
      background: var(--surface);
      border: 1px solid var(--border);
      position: relative;
      overflow: hidden;
      border-radius: 12px;
    }

    .map-container {
      width: 100%;
      height: 100%;
      position: absolute;
      inset: 0;
    }

    .map-container iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }

    .map-link {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin-top: 16px;
      color: var(--blue);
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      transition: opacity 0.3s;
    }

    .map-link:hover {
      opacity: 0.7;
    }

    .location-details h2 {
      font-family: var(--font-display);
      font-size: 56px;
      letter-spacing: 2px;
      margin-bottom: 40px;
    }

    .location-detail-line {
      display: flex;
      gap: 16px;
      padding: 16px 0;
      border-bottom: 1px solid var(--border);
      align-items: flex-start;
    }

    .detail-key {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 2px;
      color: var(--blue);
      text-transform: uppercase;
      min-width: 80px;
      padding-top: 2px;
    }

    .detail-val {
      font-size: 14px;
      color: var(--text-dim);
      line-height: 1.6;
    }

    .detail-val a {
      color: var(--blue);
      text-decoration: none;
    }

    .detail-val a:hover {
      text-decoration: underline;
    }

    /* ── CTA BANNER ── */
    #cta-banner {
      padding: 120px 60px;
      background: var(--surface);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-banner-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 50% 50%, rgba(0, 75, 114, 0.06) 0%, transparent 70%);
    }

    .cta-banner-title {
      font-family: var(--font-display);
      font-size: clamp(48px, 6vw, 88px);
      line-height: 1;
      letter-spacing: 1px;
      margin-bottom: 24px;
      position: relative;
      z-index: 1;
    }

    .cta-banner-title span {
      color: var(--blue);
    }

    .cta-banner-sub {
      font-size: 16px;
      color: var(--text-dim);
      margin-bottom: 48px;
      position: relative;
      z-index: 1;
    }

    .cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 18px 48px;
      background: var(--amber);
      color: var(--blue);
      font-family: var(--font-mono);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      text-decoration: none;
      position: relative;
      z-index: 1;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .cta-arrow {
      width: 20px;
      height: 20px;
      transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      display: inline-block;
      vertical-align: middle;
      stroke-width: 2.5px;
    }

    .cta-btn:hover .cta-arrow {
      transform: translateX(8px);
    }

    .cta-btn:hover {
      background: #f0a844;
      /* Slightly brighter amber */
      transform: translateY(-2px);
      box-shadow: 0 15px 45px rgba(232, 151, 42, 0.3);
    }
/* ── SUPPORT SECTION ── */
    .support-section {
      padding: 120px 60px;
      background: var(--bg);
      border-bottom: 1px solid var(--border);
      position: relative;
    }

    .support-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .support-header {
      max-width: 800px;
      margin-bottom: 64px;
    }

    .support-intro {
      font-size: 18px;
      color: var(--text-dim);
      line-height: 1.6;
      margin-top: 24px;
      max-width: 600px;
      opacity: 0.8;
    }

    .support-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
      gap: 0 80px;
    }

    .support-item {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 28px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      transition: all 0.3s ease;
    }

    .support-item:hover {
      padding-left: 10px;
    }

    .support-item span {
      font-size: 15px;
      color: var(--text);
      font-weight: 300;
      line-height: 1.4;
      letter-spacing: 0.5px;
    }

    .support-svg-ico {
      color: var(--blue);
      opacity: 0.7;
      flex-shrink: 0;
    }

    .support-item:hover .support-svg-ico {
      opacity: 1;
    }

    .support-icon-dot {
      width: 6px;
      height: 6px;
      background: var(--blue);
      border-radius: 50%;
      flex-shrink: 0;
      box-shadow: 0 0 10px var(--blue);
    }

    .support-item-highlight {
      text-decoration: none;
      border-bottom: 1px solid rgba(0, 75, 114, 0.3) !important;
    }

    .support-item-highlight span {
      font-size: 18px !important;
      font-weight: 700 !important;
      color: var(--text) !important;
    }

    .support-item-highlight:hover {
      background: rgba(0, 75, 114, 0.05);
      padding-left: 15px;
    }

    .support-item-special {
      grid-column: 1 / -1;
      background: linear-gradient(90deg, rgba(232, 151, 42, 0.25) 0%, rgba(232, 151, 42, 0.1) 100%);
      border: 1px solid var(--amber);
      /* Strong amber border */
      padding: 32px 40px !important;
      margin-top: 80px;
      /* Increased further to 80px as requested */
      border-radius: 4px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      text-decoration: none;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .support-item-special:hover {
      transform: scale(1.005);
      background: linear-gradient(90deg, rgba(232, 151, 42, 0.35) 0%, rgba(232, 151, 42, 0.15) 100%);
      box-shadow: 0 10px 30px rgba(232, 151, 42, 0.2);
    }

    .support-item-special span {
      font-size: 20px !important;
      font-weight: 500;
      color: var(--blue);
    }

    .support-svg-ico {
      color: var(--blue);
      flex-shrink: 0;
    }

    .support-item-special .support-icon-dot {
      width: 10px;
      height: 10px;
      box-shadow: 0 0 15px var(--blue);
    }

    .support-arrow {
      color: var(--blue);
      font-size: 24px;
      transition: transform 0.3s ease;
    }

    .support-item-special:hover .support-arrow {
      transform: translateX(10px);
    }

    @media (max-width: 900px) {
      .support-item-special {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
      }
    }

    /* ── SERVICES OBJECTIVE BANNER ── */
    .services-objective-banner {
      margin-top: 60px;
      text-align: center;
      padding: 80px 40px;
      background: rgba(232, 151, 42, 0.03);
      border-radius: 4px;
      border-top: 1px solid rgba(232, 151, 42, 0.1);
      grid-column: 1 / -1;
    }

    .objective-label {
      font-size: 14px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--amber);
      margin-bottom: 24px;
      font-weight: 500;
    }

    .objective-text {
      font-size: 32px;
      font-weight: 700;
      max-width: 900px;
      margin: 0 auto;
      line-height: 1.2;
      color: var(--amber);
      /* Highlight statement in amber */
    }

    @media (max-width: 900px) {
      .objective-text {
        font-size: 24px;
      }

      .services-objective-banner {
        padding: 60px 20px;
      }
    }
/* ── MOBILE ── */
    @media (max-width: 900px) {
#hero {
        padding: 0 24px 60px;
      }

      section {
        padding: 80px 24px;
      }

      .intro-grid,
      .location-inner {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .intro-stats {
        grid-template-columns: 1fr 1fr;
      }

      .services-grid,
      .projects-grid {
        grid-template-columns: 1fr;
      }

      .services-header {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
      }
#logos {
        padding: 60px 0;
      }

      .section-num {
        display: none;
      }
    }

    /* ── KARRIERE ── */
    #karriere {
      background: var(--bg);
    }

    #karriere .intro-grid {
      grid-template-columns: 1.1fr 0.9fr;
      gap: 80px;
    }

    #karriere h4 {
      font-family: var(--font-display);
      font-size: 28px;
      letter-spacing: 1px;
      color: var(--text);
      margin-bottom: 20px;
    }

    .karriere-header {
      margin-bottom: 40px;
    }

    .karriere-text {
      font-size: 16px;
      line-height: 1.8;
      color: var(--text-dim);
      margin-bottom: 40px;
    }

    .karriere-subtext {
      font-size: 14px;
      line-height: 1.7;
      color: var(--text-dim);
    }

    @media (max-width: 900px) {
      #karriere .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }
    }

    /* ── SECTION & SERVICE ICONS ── */
    .svc-title-wrap {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .svc-ico {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      flex-shrink: 0;
      color: var(--blue);
      background: var(--blue-pale);
      border: 1px solid rgba(0, 75, 114, 0.15);
      opacity: 0;
      transform: scale(0.6) rotate(-15deg);
      transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .reveal.visible .svc-ico {
      opacity: 1;
      transform: scale(1) rotate(0deg);
    }

    .svc-ico svg,
    .svc-ico img {
      display: block;
      width: 18px; /* Match the previous width */
      height: 18px;
    }

    /* Brake car scene */
    .brake-scene {
      display: flex;
      align-items: flex-end;
      gap: 0;
      height: 44px;
      margin-bottom: 20px;
      overflow: visible;
      position: relative;
    }

    .brake-car-wrap {
      color: var(--blue);
      opacity: 0;
      transform: translateX(100px);
      transition: none;
    }

    .brake-car-wrap.go {
      animation: brakeStop 6s cubic-bezier(0.22, 1, 0.36, 1) infinite;
    }

    @keyframes brakeStop {
      0% {
        transform: translateX(260px);
        opacity: 0;
      }

      8% {
        opacity: 1;
      }

      25% {
        transform: translateX(0px);
      }

      30% {
        transform: translateX(7px);
      }

      35% {
        transform: translateX(-3px);
      }

      40% {
        transform: translateX(3px);
      }

      45% {
        transform: translateX(0);
        opacity: 1;
      }

      85% {
        transform: translateX(0);
        opacity: 1;
      }

      100% {
        transform: translateX(0);
        opacity: 0;
      }
    }

    .skid-wrap {
      display: flex;
      flex-direction: column;
      gap: 6px;
      align-self: center;
      margin-right: 6px;
    }

    .skid-line {
      height: 2px;
      width: 0;
      border-radius: 2px;
      background: linear-gradient(to right, transparent, rgba(0, 75, 114, 0.4));
      opacity: 0;
    }

    .skid-line.go {
      animation: skidGrow 6s ease-out infinite;
    }

    .skid-line:nth-child(2) {
      animation-delay: 0.06s !important;
    }

    @keyframes skidGrow {

      0%,
      15% {
        width: 0;
        opacity: 0;
      }

      25% {
        opacity: 0.6;
      }

      45% {
        width: 52px;
        opacity: 0.3;
      }

      85% {
        width: 52px;
        opacity: 0.3;
      }

      100% {
        width: 52px;
        opacity: 0;
      }
    }

    .brake-light-glow {
      opacity: 0;
    }

    .brake-car-wrap.go .brake-light-glow {
      animation: brakeGlow 6s ease-out infinite;
    }

    @keyframes brakeGlow {

      0%,
      25% {
        opacity: 0;
        stroke: currentColor;
        filter: none;
      }

      26%,
      85% {
        opacity: 1;
        stroke: #e63946;
        filter: drop-shadow(0 0 4px #e63946);
      }

      100% {
        opacity: 0;
        stroke: currentColor;
      }
    }

    /* 3D Brain Image animation */
    .intro-scene {
      width: 80px;
      height: 80px;
      margin-bottom: 24px;
      position: relative;
      overflow: visible;
    }

    .brain-3d-img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      mix-blend-mode: multiply;
      opacity: 0;
    }

    .intro-scene.go .brain-3d-img {
      /* 5 second loop: enters, floats smoothly, stays visible, fades out softly */
      animation: pulseFloatBrain 6s ease-in-out infinite;
    }

    @keyframes pulseFloatBrain {
      0% {
        opacity: 0;
        transform: translateY(15px);
      }

      15% {
        opacity: 0.85;
        transform: translateY(0);
        filter: brightness(1);
      }

      50% {
        opacity: 1;
        transform: translateY(-5px);
        filter: brightness(1.2);
      }

      85% {
        opacity: 0.85;
        transform: translateY(0);
        filter: brightness(1);
      }

      100% {
        opacity: 0;
        transform: translateY(15px);
      }
    }

    /* Support gear animation */
    .support-scene {
      width: 48px;
      height: 48px;
      margin-bottom: 12px;
      color: var(--blue);
      opacity: 0;
      transform: scale(0.5);
      transition: none;
    }

    .support-scene.go {
      animation: popGear 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    }

    @keyframes popGear {
      0% {
        opacity: 0;
        transform: scale(0.5) rotate(-90deg);
      }

      100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
      }
    }

    .gear-inner {
      transform-origin: center;
      transform-box: fill-box;
    }

    .support-scene.go .gear-inner {
      animation: spinGear 10s linear infinite;
      animation-delay: 0.8s;
    }

    @keyframes spinGear {
      to {
        transform: rotate(360deg);
      }
    }

    /* Services wireframe animation */
    .services-icon-scene {
      width: 56px;
      height: 56px;
      margin-bottom: 24px;
      color: var(--blue);
    }

    .services-path {
      stroke-dasharray: 200;
      stroke-dashoffset: 200;
    }

    .services-icon-scene.go .services-path {
      animation: drawPath 4s ease-out infinite;
    }

    @keyframes drawPath {

      0%,
      15% {
        stroke-dashoffset: 200;
      }

      40%,
      80% {
        stroke-dashoffset: 0;
      }

      90%,
      100% {
        stroke-dashoffset: 200;
      }
    }

    /* ── WARUM 360BIM ── */
    #warum {
      padding: 120px 60px;
      background: var(--surface);
      border-top: 1px solid var(--border);
    }

    .warum-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .warum-header {
      margin-bottom: 32px;
      /* Reduced from 64px for tighter section start */
    }

    .warum-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      row-gap: 40px;
      column-gap: 24px;
    }

    .warum-card {
      background: var(--bg);
      border: 1px solid var(--border);
      padding: 40px 36px;
      display: flex;
      flex-direction: column;
      gap: 20px;
      transition: background 0.25s ease, border-color 0.25s ease;
    }

    .warum-card:hover {
      background: var(--surface2);
      border-color: rgba(0, 75, 114, 0.18);
    }

    .warum-card.featured {
      background: var(--blue);
      border-color: var(--blue);
      grid-column: 1 / -1;
      flex-direction: row;
      align-items: center;
      gap: 40px;
    }

    .warum-card.featured .warum-card-desc {
      max-width: 680px;
    }

    .warum-card.featured .warum-ico,
    .warum-card.featured .warum-card-title,
    .warum-card.featured .warum-card-desc {
      color: #fff;
    }

    .warum-card.featured:hover {
      background: var(--blue-light);
      border-color: var(--blue-light);
    }

    .warum-ico {
      color: var(--blue);
      opacity: 0.8;
    }

    .warum-card-title {
      font-family: var(--font-display);
      font-size: 24px;
      letter-spacing: 0.5px;
      color: var(--text);
      line-height: 1.1;
    }

    .warum-card-desc {
      font-size: 14px;
      line-height: 1.8;
      color: var(--text-dim);
      font-weight: 300;
    }

    @media (max-width: 900px) {
      #warum {
        padding: 80px 20px;
      }

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

    @media (max-width: 540px) {
      .warum-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ── PROJEKTE ── */
    #projekte {
      padding: 120px 60px;
      position: relative;
    }

    .projekte-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .sektor-tabs {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-top: 40px;
    }
    .sektor-tab {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 8px 18px;
      border: 1px solid var(--border);
      background: transparent;
      color: var(--text-dim);
      cursor: pointer;
      border-radius: 2px;
      transition: all 0.2s;
    }
    .sektor-tab:hover { color: var(--blue); border-color: rgba(0,75,114,0.3); }
    .sektor-tab.active { background: var(--blue); color: #fff; border-color: var(--blue); }

    .projekte-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      margin-top: 24px;
    }
    .projekt-card-link.hidden { display: none; }

    .projekt-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 4px;
      overflow: hidden;
      transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease;
    }

    .projekt-card:hover {
      transform: translateY(-5px);
      border-color: rgba(0, 75, 114, 0.25);
    }
    .projekt-card:hover .projekt-img img { transform: scale(1.06); }

    .projekt-img {
      width: 100%;
      aspect-ratio: 16/9;
      background: linear-gradient(135deg, var(--surface2) 0%, rgba(0, 75, 147, 0.05) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .projekt-img::before {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(45deg,
          transparent,
          transparent 24px,
          rgba(0, 75, 147, 0.04) 24px,
          rgba(0, 75, 147, 0.04) 25px);
    }

    .projekt-soon-badge {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.15em;
      color: var(--blue);
      background: var(--gold-dim);
      padding: 7px 16px;
      border-radius: 2px;
      text-transform: uppercase;
      position: relative;
      z-index: 1;
    }

    .projekt-info {
      padding: 28px 32px;
    }

    .projekt-tag {
      font-family: var(--font-mono);
      font-size: 10px;
      letter-spacing: 0.15em;
      color: var(--blue);
      text-transform: uppercase;
      margin-bottom: 12px;
      display: block;
    }

    .projekt-name {
      font-family: var(--font-display);
      font-size: 28px;
      color: var(--text);
      margin-bottom: 10px;
      line-height: 1.1;
    }

    .projekt-meta {
      font-size: 12px;
      color: var(--text-dim);
      font-family: var(--font-mono);
    }

    @media (max-width: 900px) {
      #projekte {
        padding: 80px 20px;
      }

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

      /* Sektor-Tabs: horizontal scroll statt wrap */
      .sektor-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
        scrollbar-width: none;
        -ms-overflow-style: none;
      }

      .sektor-tabs::-webkit-scrollbar {
        display: none;
      }

      .sektor-tab {
        flex-shrink: 0;
      }
    }

    /* ── REFERENZEN ── */
    #referenzen {
      padding: 120px 60px;
      background: var(--surface);
      border-top: 1px solid var(--border);
    }

    .referenzen-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .referenzen-logos {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      gap: 1px;
      margin-top: 60px;
      border: 1px solid var(--border);
    }

    .ref-logo-wrap {
      aspect-ratio: 2/1;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px 24px;
      background: var(--bg);
      border: 1px solid var(--border);
      transition: background 0.2s ease;
    }

    .ref-logo-wrap:hover {
      background: var(--surface2);
    }

    .ref-logo-wrap img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      filter: grayscale(100%);
      opacity: 0.5;
      transition: filter 0.3s ease, opacity 0.3s ease;
    }

    .ref-logo-wrap:hover img {
      filter: grayscale(0%);
      opacity: 1;
    }

    @media (max-width: 900px) {
      #referenzen {
        padding: 80px 20px;
      }

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

    /* ── TARGET AUDIENCE ── */
    #target {
      padding: 120px 60px;
      background: var(--bg);
      text-align: center;
    }

    .target-inner {
      max-width: 900px;
      margin: 0 auto;
    }

    .target-title-wrap {
      margin-bottom: 60px;
      display: inline-block;
    }

    .target-underline {
      width: 60px;
      height: 3px;
      background: var(--amber);
      margin: 15px auto 0;
      border-radius: 2px;
    }

    .target-list {
      display: flex;
      flex-direction: column;
      gap: 0;
      border-top: 1px solid var(--border-light);
    }

    .target-item {
      display: flex;
      align-items: center;
      gap: 30px;
      padding: 40px 0;
      border-bottom: 1px solid var(--border-light);
      text-align: left;
      transition: transform 0.3s ease;
    }

    .target-item:hover {
      transform: translateX(10px);
    }

    .target-icon {
      flex-shrink: 0;
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--blue);
      background: var(--surface);
      border-radius: 8px;
      transition: background 0.3s ease, color 0.3s ease;
    }

    .target-item:hover .target-icon {
      background: var(--blue);
      color: var(--white);
    }

    .target-text {
      font-size: 18px;
      line-height: 1.6;
      color: var(--text);
      font-family: var(--font-main);
    }

    @media (max-width: 768px) {
      #target {
        padding: 80px 20px;
      }

      .target-item {
        gap: 20px;
        padding: 30px 0;
      }

      .target-text {
        font-size: 16px;
      }

      .target-icon {
        width: 40px;
        height: 40px;
      }
    }

    /* ── MOBILE (≤ 480px) ── */
    @media (max-width: 480px) {

      /* Sections */
      section {
        padding: 60px 16px;
      }

      #hero {
        padding: 0 16px 48px;
      }

      #warum,
      #projekte,
      #referenzen,
      #target {
        padding: 60px 16px;
      }

      /* Section titles */
      .section-title {
        font-size: clamp(30px, 8vw, 44px);
      }

      /* Hero logo */
      .hero-logo-img {
        height: clamp(50px, 16vw, 80px);
      }

      /* Hero subtitle & CTA */
      .hero-sub {
        font-size: 17px;
        margin-top: 20px;
      }

      /* Stats: 1 column on very small phones */
      .intro-stats {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      /* Challenge grid: 1 column */
      .challenge-grid {
        grid-template-columns: 1fr;
      }

      .challenge-item {
        padding: 24px 16px;
      }

      .challenge-icon-scene {
        width: 140px;
        height: 140px;
      }

      /* Footer: 1 column */
/* Logos: 2 column */
      .referenzen-logos {
        grid-template-columns: repeat(2, 1fr);
      }

      /* Warum: 1 column */
      .warum-grid {
        grid-template-columns: 1fr;
      }

      /* Services objective banner */
      .services-objective-banner {
        padding: 40px 16px;
      }

      /* Support consequence box */
      .challenge-consequence {
        padding: 20px 16px;
      }

      /* Team grid: 1 column */
      .team-grid {
        grid-template-columns: 1fr;
      }

      /* Nav logo smaller */
}

/* ══════════════════════════════════════════════════════
   CORE WEB VITALS OPTIMIZATIONS
   ══════════════════════════════════════════════════════ */

/* 1. content-visibility: auto — skip rendering off-screen sections
      until they near the viewport. Major LCP / TBT improvement.
      intrinsic-size prevents layout shift when section is skipped. */
#intro,
#logos,
#target,
#challenge,
#support,
#services,
#projekte,
#netzwerk,
#cta-banner {
  content-visibility: auto;
  contain-intrinsic-size: 0 600px;
}

/* 2. backdrop-filter: eliminate the costly blur on .service-card —
      a solid semi-transparent background achieves the same visual
      result without triggering a full repaint layer per card.
      The dark overlay (#0c0f18) at 0.85 opacity is indistinguishable
      from the blurred version on a dark section background. */
.service-card {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  background: rgba(12, 15, 24, 0.85) !important;
}

/* 3. prefers-reduced-motion — pause all infinite decorative animations.
      This also prevents Lighthouse from penalising long animation tasks. */
@media (prefers-reduced-motion: reduce) {
  .hero-grid-bg,
  .hero-orb,
  .logos-track,
  .challenge-3d-img,
  .hero-label,
  .hero-strategy,
  .hero-title,
  .hero-sub,
  .hero-cta,
  .scroll-indicator {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* 4. will-change: remove persistent GPU promotion from elements that
      are NOT currently animating. Use .animating class in JS instead. */
.hero-orb,
.hero-grid-bg,
.logos-track {
  will-change: auto;
}
.hero-orb.animating,
.hero-grid-bg.animating,
.logos-track.animating {
  will-change: transform;
}
  
