  /* Base */

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

  :root {
    --bg: #05050a;
    --bg-alt: #0f1017;
    --bg-accent: #111827;
    --accent: #f97316;
    --accent-soft: rgba(249, 115, 22, 0.1);
    --text: #f9fafb;
    --muted: #9ca3af;
    --card: #111827;
    --card-border: #1f2937;

    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-pill: 999px;

    --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.35);
    --shadow-subtle: 0 10px 25px rgba(0, 0, 0, 0.25);

    --transition-fast: 0.18s ease-out;
    --transition-med: 0.3s ease;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    margin: 0;
    background: radial-gradient(circle at top, #111827 0, #020617 55%, #000 100%);
    color: var(--text);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
    line-height: 1.5;
  }

  /* Layout */

  .container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
  }

  /* Header */

  .header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: linear-gradient(to bottom, rgba(2, 6, 23, 0.98), rgba(2, 6, 23, 0.9), transparent);
    backdrop-filter: blur(16px);
  }

  .header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 20px;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .logo__image {
    height: 75px;
    width: auto;
    display: block;
  }

  .logo__text-group {
    display: flex;
    flex-direction: column;
  }

  .logo__name {
    font-size: 13px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-weight: 600;
  }

  .logo__sub {
    font-size: 11px;
    color: var(--muted);
  }

  /* Navigation */

  .nav {
    display: flex;
  }

  .nav__list {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    align-items: center;
  }

  .nav__link {
    text-decoration: none;
    color: var(--muted);
    font-size: 13px;
    transition: color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
    padding: 6px 10px;
    border-radius: var(--radius-pill);
  }

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

  .nav__link--button {
    border: 1px solid rgba(249, 115, 22, 0.4);
    padding: 7px 14px;
    background: linear-gradient(to bottom right, #f97316, #ea580c);
    color: #0b1020;
    font-weight: 600;
    box-shadow: var(--shadow-subtle);
  }

  .nav__link--button:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-soft);
  }

  /* Language toggle and burger */

  .header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .lang-toggle {
    display: inline-flex;
    border-radius: 999px;
    padding: 4px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(55, 65, 81, 0.9);
  }

  .lang-toggle__button {
    border: none;
    background: transparent;
    color: var(--muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    padding: 4px 10px;
    border-radius: 999px;
    cursor: pointer;
  }

  .lang-toggle__button.is-active {
    background: #f97316;
    color: #0b1020;
  }

  /* Mobile nav toggle */

  .nav-toggle {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
  }

  .nav-toggle__line {
    width: 20px;
    height: 2px;
    background: var(--text);
    display: block;
    border-radius: 999px;
    transition: transform var(--transition-med), opacity var(--transition-med);
  }

  .nav-toggle__line + .nav-toggle__line {
    margin-top: 5px;
  }

  /* Hero */

  .hero {
    padding: 56px 0 72px;
  }

  .hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.2fr);
    gap: 60px;
    align-items: center;
  }

  .hero__eyebrow {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--muted);
    margin-bottom: 12px;
  }

  .hero__title {
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    line-height: 1.05;
    margin: 0 0 18px;
  }

  .hero__text {
    color: var(--muted);
    max-width: 540px;
    font-size: 15px;
    margin-bottom: 24px;
  }

  .hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
  }

  .hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12px;
    color: var(--muted);
  }

  .hero__meta span {
    padding: 6px 10px;
    border-radius: var(--radius-pill);
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.25);
  }

  /* Hero visual */

  .hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
  }

  .hero-card {
    background: radial-gradient(circle at top left, rgba(249, 115, 22, 0.2), #020617);
    border-radius: var(--radius-lg);
    padding: 24px 22px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    box-shadow: var(--shadow-soft);
    max-width: 320px;
    position: relative;
    z-index: 1;
  }

  .hero-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.4);
    color: var(--muted);
    margin-bottom: 14px;
  }

  .hero-card__client {
    font-weight: 600;
    margin-bottom: 4px;
  }

  .hero-card__desc {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 18px;
  }

  .hero-card__stats {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(148, 163, 184, 0.25);
    padding-top: 12px;
    margin-top: 12px;
    font-size: 12px;
  }

  .hero-card__label {
    font-weight: 600;
  }

  .hero-card__sub {
    display: block;
    color: var(--muted);
    margin-top: 2px;
  }

  .hero-orbit {
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle at top, rgba(249, 115, 22, 0.35), transparent 70%);
    filter: blur(0.5px);
    opacity: 0.9;
    top: 10%;
  }

  /* Section base */

  .section {
    padding: 60px 0;
  }

  .section--dark {
    background: radial-gradient(circle at top, #020617 0, #020617 40%, #000 100%);
  }

  .section--dark .section__title {
    color: white;
  }

  .section--dark .process-step {
    color: white !important;
  }

  .section--accent {
    background: radial-gradient(circle at top, rgba(249, 115, 22, 0.18), #020617);
  }

  .section__header {
    text-align: left;
    margin-bottom: 32px;
  }

  .section__eyebrow {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.27em;
    color: var(--muted);
    margin-bottom: 8px;
  }

  .section__title {
    font-size: 1.9rem;
    margin: 0 0 8px;
  }

  .section__subtitle {
    margin: 0;
    color: var(--muted);
    max-width: 460px;
    font-size: 14px;
  }

  /* Buttons */

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: var(--radius-pill);
    border: none;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
  }

  .btn--primary {
    background: linear-gradient(to bottom right, #f97316, #ea580c);
    color: #020617;
    box-shadow: var(--shadow-subtle);
  }

  .btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-soft);
  }

  .btn--ghost {
    background: rgba(15, 23, 42, 0.9);
    color: var(--text);
    border: 1px solid rgba(148, 163, 184, 0.4);
  }

  .btn--ghost:hover {
    background: rgba(15, 23, 42, 1);
  }

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

  /* Services */

  /* Services – mit Bild-Hintergrund + Hover */

  .services {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  /* Grundkarte: Inhalt unten, Bild im Hintergrund */
  .service-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    min-height: 220px;
    padding: 18px 18px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid rgba(31, 41, 55, 0.95);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    background: transparent;
    color: #fff;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border var(--transition-fast);
  }

  /* Bild-Layer */
  .service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.03);
    filter: saturate(1.1) contrast(1.05);
    transition: transform 0.5s ease-out, filter 0.5s ease-out;
    z-index: 0;
  }

  /* Dunkler Gradient-Layer */
  .service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.85),
            rgba(0, 0, 0, 0.25)
    );
    transition: background 0.4s ease-out, opacity 0.4s ease-out;
    opacity: 1;
    z-index: 1;
  }

  /* Inhalt kommt oben drauf */
  .service-card__title,
  .service-card__text {
    position: relative;
    z-index: 2;
  }

  .service-card__title {
    font-size: 1.1rem;
    margin: 0 0 8px;
  }

  .service-card__text {
    margin: 0;
    font-size: 14px;
    color: rgba(249, 250, 251, 0.9);
  }

  /* Hover-Effekt (Zoom + stärkerer Gradient + Lift) */
  .service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
    border-color: rgba(249, 115, 22, 0.7);
  }

  .service-card:hover::before {
    transform: scale(1.08);
    filter: saturate(1.25) contrast(1.1);
  }

  .service-card:hover::after {
    background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.95),
            rgba(0, 0, 0, 0.25)
    );
  }

  /* ============================
     Bilder pro Karte (nth-child)
     ============================ */

  .service-card:nth-child(1)::before {
    background-image: url("images/commercial\ copie.jpg");           /* Advertising spots */
  }

  .service-card:nth-child(2)::before {
    background-image: url("images/film\ institutionnel2.jpg");  /* Institutional films */
  }

  .service-card:nth-child(3)::before {
    background-image: url("images/CINEMA.jpeg");         /* Cinema & documentaries */
  }

  .service-card:nth-child(4)::before {
    background-image: url("images/CLIP1.jpg");          /* Music videos */
  }

  .service-card:nth-child(5)::before {
    background-image: url("images/360.jpeg");            /* 360° tours */
  }

  .service-card:nth-child(6)::before {
    background-image: url("images/Podcast.jpeg");       /* Podcasts */
  }

  /* Responsive: wie vorher */
  @media (max-width: 960px) {
    .services {
      grid-template-columns: 1fr 1fr;
    }
  }

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


  /* Process */

  .process {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  .process-step {
    background: rgba(15, 23, 42, 0.96);
    border-radius: var(--radius-md);
    border: 1px solid rgba(31, 41, 55, 0.95);
    padding: 18px 18px 20px;
    box-shadow: var(--shadow-subtle);
  }

  .process-step__badge {
    display: inline-flex;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    margin-bottom: 10px;
  }

  .process-step__title {
    margin: 0 0 8px;
  }

  .process-step__text {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
  }

  /* Video section */

  .video-section {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
    gap: 24px;
    align-items: flex-start;
  }

  .video-section__player {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .video-embed {
    position: relative;
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(31, 41, 55, 0.95);
    background: #020617;
  }

  /* 16:9 ratio */
  .video-embed::before {
    content: "";
    display: block;
    padding-top: 56.25%;
  }

  .video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .video-section__note {
    font-size: 12px;
    color: var(--muted);
  }

  /* Container für den Button zentrieren */
.more-button-container {
  display: flex;
  justify-content: center; /* Zentriert den Button */
  margin-top: 20px; /* Abstand zu den Video-Karten */
}

.more-button-container .btn {
  padding: 10px 20px; /* Button-Größe anpassen */
  text-align: center; /* Text im Button zentrieren */
}


  .video-section__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .video-section__label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--muted);
    margin: 0 0 4px;
  }

  .video-pill {
    border-radius: var(--radius-pill);
    border: 1px solid rgba(55, 65, 81, 0.9);
    background: rgba(15, 23, 42, 0.95);
    color: var(--text);
    font-size: 13px;
    padding: 8px 12px;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.18s ease-out, border 0.18s ease-out, transform 0.18s ease-out;
  }

  .video-pill:hover {
    background: rgba(15, 23, 42, 1);
    transform: translateY(-1px);
  }

  .video-pill--active {
    border-color: rgba(249, 115, 22, 0.9);
    background: var(--accent-soft);
  }

  /* Cases */

  .cases {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }

  .case-card {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.4fr);
    gap: 16px;
    padding: 18px;
    border-radius: var(--radius-md);
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(31, 41, 55, 0.95);
    box-shadow: var(--shadow-subtle);
  }

  .case-card__image {
    border-radius: var(--radius-md);
    background-size: cover;
    background-position: center;
    min-height: 160px;
  }

  .case-card__image--one {
    background-image: linear-gradient(135deg, #f97316, #1d4ed8);
  }

  .case-card__image--two {
    background-image: linear-gradient(135deg, #10b981, #6366f1);
  }

  .case-card__content {
    font-size: 14px;
  }

  .case-card__title {
    margin: 0 0 4px;
  }

  .case-card__tagline {
    margin: 0 0 10px;
    color: var(--muted);
    font-size: 13px;
  }

  .case-card__text {
    margin: 0 0 10px;
    color: var(--muted);
  }

  .case-card__meta {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 11px;
  }

  .case-card__meta li {
    padding: 4px 9px;
    border-radius: var(--radius-pill);
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.4);
  }

  /* About */

  .about {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 32px;
    align-items: center;
  }

  .about__text {
    color: var(--muted);
    font-size: 14px;
    margin-top: 10px;
  }

  .about__highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 20px;
  }

  .about__number {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
  }

  .about__label {
    font-size: 12px;
    color: var(--muted);
  }

  .about__visual {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
  }

  .about-pill {
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.4);
    font-size: 13px;
  }

  /* Contact */

  .contact {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.2fr);
    gap: 32px;
    align-items: flex-start;
  }

  .contact__info {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    font-size: 14px;
    color: var(--muted);
  }

  .contact__info li + li {
    margin-top: 6px;
  }

  .contact-form {
    background: rgba(15, 23, 42, 0.95);
    padding: 18px 18px 20px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(31, 41, 55, 0.95);
    box-shadow: var(--shadow-subtle);
    font-size: 14px;
  }

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

  .contact-form__field {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 10px;
  }

  .contact-form__field label {
    font-size: 13px;
    color: var(--muted);
  }

  .contact-form__field input,
  .contact-form__field select,
  .contact-form__field textarea {
    border-radius: 10px;
    border: 1px solid rgba(55, 65, 81, 0.9);
    background: rgba(15, 23, 42, 0.95);
    padding: 8px 10px;
    color: var(--text);
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: border var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
  }

  .contact-form__field input:focus,
  .contact-form__field select:focus,
  .contact-form__field textarea:focus {
    border-color: rgba(249, 115, 22, 0.8);
    box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.7);
    background: rgba(15, 23, 42, 1);
  }

  .contact-form__note {
    font-size: 13px;
    margin-top: 8px;
    color: var(--muted);
  }

  /* Footer */

  .footer {
    padding: 20px 0 26px;
    border-top: 1px solid rgba(31, 41, 55, 0.95);
    background: #020617;
  }

  .footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--muted);
  }

  .footer__top-link {
    color: var(--muted);
    text-decoration: none;
  }

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

  /* Language helpers: French hidden by default */

  .lang {
    display: none;
  }

  html[data-lang="en"] .lang-en,
  html[data-lang="fr"] .lang-fr {
    display: block;
  }

  /* Inline-Version nur wenn notwendig */
  .lang.inline {
    display: inline !important;
  }

  /* Basic tweak: make paragraphs and headings block by default */

  p.lang,
  h1.lang,
  h2.lang,
  h3.lang {
    display: none;
  }

  /* Responsive */

  @media (max-width: 960px) {
    .hero__inner {
      grid-template-columns: 1fr;
      gap: 34px;
    }

    .hero__visual {
      order: -1;
    }

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

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

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

    .case-card {
      grid-template-columns: 1.1fr 1.5fr;
    }

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

    .about__visual {
      justify-content: flex-start;
    }

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

  @media (max-width: 720px) {
    .header__inner {
      padding: 12px 0;
    }

    .nav-toggle {
      display: block;
    }

    .nav {
      position: absolute;
      inset: 60px 16px auto;
      background: rgba(15, 23, 42, 0.98);
      border-radius: var(--radius-md);
      border: 1px solid rgba(31, 41, 55, 0.95);
      box-shadow: var(--shadow-soft);
      padding: 10px 12px;
      display: none;
    }

    .nav--open {
      display: block;
    }

    .nav__list {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }

    .nav__link {
      width: 100%;
    }

    .nav__link--button {
      width: 100%;
      justify-content: center;
      text-align: center;
    }

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

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

    .case-card {
      grid-template-columns: 1fr;
    }

    .video-section {
      grid-template-columns: 1fr;
    }

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

    .footer__inner {
      flex-direction: column;
      gap: 8px;
      align-items: flex-start;
    }
  }

  .cases {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }


  .project-video-card {
    background: rgba(15, 23, 42, 0.96);
    border-radius: var(--radius-md);
    border: 1px solid rgba(31, 41, 55, 0.95);
    box-shadow: var(--shadow-subtle);
    padding: 0;
    overflow: hidden;
  }

  /* Video in den Karten soll die gleiche Optik behalten */
  .project-video-card .video-embed {
    border-radius: 0;
  }

  @media (max-width: 960px) {

    .cases {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  @media (max-width: 720px) {
    .cases {
      grid-template-columns: 1fr;
    }
  }

  .hero__image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    margin-right: -10px;
    max-width: 360px;
    box-shadow: var(--shadow-soft);
  }

  .hero__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.1);
    transform: scale(1.03);
  }

  /* ============================
     Video Modal (Project Popup)
     ============================ */

  .video-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 50;
  }

  .video-modal.is-open {
    display: flex;
  }

  .video-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.88);
    backdrop-filter: blur(8px);
  }

  /* Content-Container */
  .video-modal__content {
    position: relative;
    max-width: 960px;
    width: 100%;
    margin: 0 16px;
    background: #020617;
    border-radius: var(--radius-lg);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    z-index: 1;

    opacity: 0;
    transform: translateY(10px) scale(0.98);
    transition: opacity var(--transition-med), transform var(--transition-med);
  }

  .video-modal.is-open .video-modal__content {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  /* Video-Wrapper im Modal */
  .video-modal__content .video-embed {
    position: relative;
    width: 100%;
    border-radius: 0;
    border: none;
    box-shadow: none;
    background: #020617;
  }

  .video-modal__content .video-embed::before {
    content: "";
    display: block;
    padding-top: 56.25%; /* 16:9 */
  }

  .video-modal__content .video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  /* Close-Button */
  .video-modal__close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    background: rgba(15, 23, 42, 0.95);
    color: var(--text);
    font-size: 18px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-subtle);
    transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast), border var(--transition-fast);
  }

  .video-modal__close:hover {
    background: rgba(15, 23, 42, 1);
    transform: translateY(-1px);
    box-shadow: var(--shadow-soft);
    border-color: rgba(249, 115, 22, 0.8);
  }

  /* Body fixen wenn Modal offen */
  .no-scroll {
    overflow: hidden;
  }

  /* Cursor-Hinweis auf Projekt-Videos */
  .project-video-card iframe {
    cursor: pointer;
  }
  /* ============================
   ABOUT — Single Premium Photo
   ============================ */

  .about-photo-single {
    display: flex;
    justify-content: flex-end;     /* Foto rechts */
  }

  .about-photo--single {
    width: 100%;
    max-width: 420px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(31, 41, 55, 0.9);
    box-shadow:
            0 18px 45px rgba(0, 0, 0, 0.45),
            0 4px 12px rgba(249, 115, 22, 0.25); /* leichte orange Glow */
    background: #020617;
  }

  .about-photo--single img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1.06);
    filter: saturate(1.15) contrast(1.08);
  }

  /* Light orange cinematic gradient overlay */
  .about-photo--single::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
            15deg,
            rgba(249, 115, 22, 0.2),
            rgba(0, 0, 0, 0.0) 40%
    );
    mix-blend-mode: screen;
  }

  /* Mobile responsive */
  @media (max-width: 720px) {
    .about-photo-single {
      justify-content: center;
    }
    .about-photo--single {
      max-width: 100%;
    }
  }

  /* ============================
     THEME TOGGLE (Light / Dark)
     ============================ */

  .theme-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(55, 65, 81, 0.9);
    background: rgba(15, 23, 42, 0.9);
    cursor: pointer;
    font-size: 12px;
    color: var(--muted);
    transition: background var(--transition-fast), border var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast), color var(--transition-fast);
  }

  .theme-toggle:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-subtle);
  }

  .theme-toggle__icon {
    line-height: 1;
    opacity: 0.4;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
    font-size: 14px;
  }

  /* Dark: Mond aktiv */
  html[data-theme="dark"] .theme-toggle__icon--moon {
    opacity: 1;
    transform: translateY(-0.5px);
  }

  /* Light: Sonne aktiv */
  html[data-theme="light"] .theme-toggle__icon--sun {
    opacity: 1;
    transform: translateY(-0.5px);
  }

  /* Light-Mode Hintergrund für Toggle */
  html[data-theme="light"] .theme-toggle {
    background: rgba(243, 244, 246, 0.95);
    border-color: rgba(209, 213, 219, 1);
    color: #4b5563;
  }

  html[data-theme="light"] .btn--ghost{
    color: white !important;
  }

  html[data-theme="light"] .hero-card__badge{
    color: white;
  }

  html[data-theme="light"] .text-dark {
    color: black;
  }

  html[data-theme="light"] .marketing__grid{
    color: white !important;
  }

  html[data-theme="light"] .marketing__special{
    color: white !important;
  }

    /* ============================
       LIGHT THEME OVERRIDES
       ============================ */

  /* Basic Farben für Light-Mode */
  html[data-theme="light"] {
    --bg: #f3f4f6;
    --bg-alt: #ffffff;
    --bg-accent: #e5e7eb;
    --text: #020617;
    --muted: #4b5563;
    --card: #ffffff;
    --card-border: #e5e7eb;
  }

  /* Body Hintergrund */
  html[data-theme="light"] body {
    background: radial-gradient(circle at top, #e5e7eb 0, #f9fafb 55%, #ffffff 100%);
    color: var(--text);
  }

  /* Header heller */
  html[data-theme="light"] .header {
    background: linear-gradient(to bottom, rgba(249, 250, 251, 0.96), rgba(249, 250, 251, 0.9), transparent);
    border-bottom: 1px solid rgba(229, 231, 235, 0.9);
  }

  /* Nav Links */
  html[data-theme="light"] .nav__link {
    color: #6b7280;
  }

  html[data-theme="light"] .nav__link:hover {
    color: #111827;
  }

  /* Mobile Nav Hintergrund */

  /* Language Toggle */
  html[data-theme="light"] .lang-toggle {
    background: #f9fafb;
    border-color: #e5e7eb;
  }

  html[data-theme="light"] .lang-toggle__button {
    color: #6b7280;
  }

  /* Section Hintergründe */
  html[data-theme="light"] .section--dark {
    background: radial-gradient(circle at top, #f9fafb 0, #f3f4f6 40%, #e5e7eb 100%);
  }

  html[data-theme="light"] .section--accent {
    background: radial-gradient(circle at top, rgba(249, 115, 22, 0.12), #f9fafb);
  }

  /* Cards allgemein */
  html[data-theme="light"] .service-card,
  html[data-theme="light"] .process-step,
  html[data-theme="light"] .case-card,
  html[data-theme="light"] .contact-form,
  html[data-theme="light"] .project-video-card {
    background: #ffffff;
    border-color: #e5e7eb;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  }

  /* Hero Card */
  html[data-theme="light"] .hero-card {
    background: radial-gradient(circle at top left, rgba(249, 115, 22, 0.15), #ffffff);
    border-color: #e5e7eb;
  }

  /* Video-Wrapper */
  html[data-theme="light"] .video-embed {
    background: #0b1120;
    border-color: #e5e7eb;
  }

  /* Pills & kleine Badges */
  html[data-theme="light"] .video-pill,
  html[data-theme="light"] .case-card__meta li,
  html[data-theme="light"] .hero__meta span,
  html[data-theme="light"] .about-pill {
    background: #f9fafb;
    border-color: #e5e7eb;
    color: #111827;
  }

  /* About Photo (Single) */
  html[data-theme="light"] .about-photo--single {
    background: #ffffff;
    border-color: #e5e7eb;
    box-shadow:
            0 18px 45px rgba(15, 23, 42, 0.18),
            0 4px 12px rgba(249, 115, 22, 0.18);
  }

  /* Modal in Light-Mode */
  html[data-theme="light"] .video-modal__backdrop {
    background: rgba(15, 23, 42, 0.55);
  }

  html[data-theme="light"] .video-modal__content {
    background: #ffffff;
    border-color: #e5e7eb;
  }

  /* Footer Light */
  html[data-theme="light"] .footer {
    background: #f9fafb;
    border-top-color: #e5e7eb;
  }

  html[data-theme="light"] .footer p,
  html[data-theme="light"] .footer__top-link {
    color: #6b7280;
  }
  .hero {
    position: relative;
    overflow: hidden; /* damit der Glow nicht rausläuft */
  }

  /* Layer über dem Hero-Bereich */
  .cursor-spotlight {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3; /* über Bild, aber unter Text wenn du magst */
    opacity: 0;
    transition: opacity 0.25s ease-out;
    /* Default Position (Mitte) */
    --spot-x: 50%;
    --spot-y: 40%;

    background:
            radial-gradient(
                    circle 160px at var(--spot-x) var(--spot-y),
                    rgba(249, 115, 22, 0.40),
                    transparent 65%
            );
    mix-blend-mode: screen; /* macht den Effekt „lighty“ */
  }

  /* Wenn aktiv (Desktop-Hover) */
  .cursor-spotlight.is-visible {
    opacity: 1;
  }

  /* Auf sehr kleinen Screens lieber deaktivieren bzw. weniger stark */
  @media (max-width: 720px) {
    .cursor-spotlight {
      display: none;
    }
  }


  /* =============== GLOBAL NO-RADIUS MODE =============== */
  /* Macht ALLE Elemente auf der Website komplett eckig */

  *,
  *::before,
  *::after {
    border-radius: 0 !important;
  }

  /* ============================
   PROCESS — Cinematic Background
   ============================ */

  #process.section {
    position: relative;
    background: transparent; /* original entfernen */
    z-index: 1;
    overflow: hidden;
  }

  .section__eyebrow{
      color: white;
  }

  #process{
    .section__title{
      
    }

  }

  /* Hintergrundbild */
  #process.section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("images/process-1.jpg"); /* <<< DEIN BILD */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.35) saturate(1.2) contrast(1.1);
    z-index: -2;
  }

  /* Cinematischer Film-Overlay */
  #process.section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
            circle at center,
            rgba(249, 115, 22, 0.15),
            rgba(0, 0, 0, 0.65) 60%
    );
    mix-blend-mode: screen;
    opacity: 0.85;
    z-index: -1;
  }

  /* Karten wirken heller darüber */
  #process .process-step {
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(2px);
    border: 1px solid rgba(249, 115, 22, 0.25);
  }

  #process.section {
    position: relative;
    overflow: hidden;
  }

  /* Leichte cine-Glow-Fläche im Hintergrund */

  /* Grid bleibt, bekommt aber eine Timeline-Linie */
  .process {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  /* Horizontale „Pipeline“-Linie durch alle Schritte */
  .process::before {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    top: 40px;
    height: 1px;
    background: linear-gradient(
            to right,
            transparent,
            rgba(249, 115, 22, 0.85),
            transparent
    );
    opacity: 0.8;
    pointer-events: none;
    z-index: 0;
  }

  /* Einzelne Steps: Card mit Glow */
  .process-step {
    position: relative;
    background: rgba(15, 23, 42, 0.96);
    /* border-radius: var(--radius-md); fällt eh mit global no-radius weg */
    border: 1px solid rgba(31, 41, 55, 0.95);
    padding: 26px 18px 20px;
    padding-top: 32px;        /* bisschen mehr Platz für den Titel */
    box-shadow: var(--shadow-subtle);
    overflow: visible;        /* WICHTIG: nicht abschneiden */
    z-index: 1;
    transition:
            transform var(--transition-fast),
            box-shadow var(--transition-fast),
            border var(--transition-fast);
  }


  /* Cinematic Overlay in der Card */
  .process-step::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
            circle at top left,
            rgba(249, 115, 22, 0.18),
            transparent 60%
    );
    opacity: 0.0;
    pointer-events: none;
    transition: opacity 0.25s ease-out;
  }

  /* Floating Badge sitzt jetzt auf der Linie */
  .process-step__badge {
    top: -8px;
    position: absolute;
    top: -14px;
    left: 18px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;
    border-radius: 999px;

    font-size: 12px;
    font-weight: 500;

    background: #020617;
    border: 1px solid rgba(249, 115, 22, 0.9);
    box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.9), 0 0 18px rgba(249, 115, 22, 0.75);
    z-index: 2;
  }

  /* Titel & Text leicht absetzen */
  .process-step__title {
    margin-top: 10px;
    margin-bottom: 8px;
  }

  .process-step__text {
    color: var(--muted);
    font-size: 14px;
  }

  /* Hover-Effekt: Step „springt“ leicht raus */
  .process-step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-soft);
    border-color: rgba(249, 115, 22, 0.85);
  }

  .process-step:hover::after {
    opacity: 1;
  }

  .process-step:hover .process-step__badge {
    background: linear-gradient(to bottom right, #f97316, #ea580c);
    color: #020617;
  }

  .footer__signature {
    font-family: "Caveat", cursive;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    opacity: 0.75;
  }
  
  .footer__signature-link {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    transition: opacity 0.2s ease, border-color 0.2s ease;
  }
  
  .footer__signature-link:hover {
    opacity: 1;
    border-color: currentColor;
  }
  
  /* ============================
   MARKETING SECTION
   ============================ */

.marketing {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.marketing__special {
  position: relative;
  padding: 20px 18px;
  border: 1px solid rgba(249, 115, 22, 0.35);
  background: radial-gradient(circle at top left, rgba(249, 115, 22, 0.18), rgba(15, 23, 42, 0.92));
  box-shadow: var(--shadow-subtle);
  overflow: hidden;
}

.marketing__special::after {
  content: "";
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at 30% 20%, rgba(249, 115, 22, 0.25), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

.marketing__badge {
  position: relative;
  display: inline-flex;
  padding: 6px 10px;
  border: 1px solid rgba(249, 115, 22, 0.55);
  background: rgba(2, 6, 23, 0.75);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0 0 10px;
}

.marketing__title {
  position: relative;
  margin: 0 0 6px;
}

.marketing__text {
  position: relative;
  margin: 0;
  color: rgba(249, 250, 251, 0.88);
  max-width: 720px;
  font-size: 14px;
}

.marketing__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.marketing-card {
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(31, 41, 55, 0.95);
  box-shadow: var(--shadow-subtle);
  padding: 18px 18px 20px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border var(--transition-fast);
}

.marketing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(249, 115, 22, 0.7);
}

.marketing-card__icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(249, 115, 22, 0.45);
  background: rgba(249, 115, 22, 0.08);
  margin-bottom: 12px;
}

.marketing-card__icon svg {
  width: 22px;
  height: 22px;
}

.marketing-card__title {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.marketing-card__text {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* Responsive */
@media (max-width: 960px) {
  .marketing__grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

.footer__links {
  display: flex;
  font-size: 12px;
  opacity: 0.7;
}

.footer__link {
  color: inherit;
  text-decoration: none;
  margin-right: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

.footer__link:hover {
  opacity: 1;
  border-color: currentColor;
}
