/* Modernes CSS Reset, Stand 2026 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

body {
  min-height: 100dvh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

/* montserrat */
@font-face {
  font-display: swap;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/montserrat-v31-latin-regular.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/montserrat-v31-latin-500.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/montserrat-v31-latin-700.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 900;
  src: url('../fonts/montserrat-v31-latin-900.woff2') format('woff2');
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

:root {
  --nav-x: 1.5rem;
  --nav-h: 60px;
  --content-max: 2000px;
  --hell: #e7f6fd;
  --main-blau: #003d58;
  --dark-blau: #001929;
  --akzent: #7dcef2;
  --bluemain-blau-2: #00648d;
  --star: #ffb300;
  --schwarz: #000000;
  --card-bg: #0b141d;
}

html {
  scroll-padding-top: var(--nav-h);
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--main-blau);
  background: #fff;
}

/* ===================== UNIVERSELLES SEITEN-PADDING ===================== */
nav,
header,
.angebot,
.section,
.footer {
  padding-inline: max(var(--nav-x), calc((100% - var(--content-max)) / 2));
}

/* ===================== NAV ===================== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: flex-start;
  min-height: var(--nav-h);
  padding-block: 0;
  background: rgba(255, 255, 255, .72);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid rgba(255, 255, 255, .5);
  box-shadow: 0 4px 20px rgba(14, 42, 82, .05);
}

/* ===================== NAV-DROPDOWN (Fachbereich) ===================== */
.has-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  align-self: stretch;      /* <- füllt die Nav-Höhe, statt feste height */
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 500;
  font-size: inherit;
  color: var(--dark-blau);
  padding: 0;
}

.chevron {
  transition: transform .25s ease;
}

.has-dropdown.open .chevron {
  transform: rotate(180deg);
}


.dropdown {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px !important;
  margin: 0;
  padding: 8px;

  position: absolute;
  top: 180%;
  left: -14px;                      /* Text fluchtet mit "Fachbereich" */
  min-width: 190px;

  background: #fff;                  /* schlicht weiß, kein Glas */
  border: 1px solid rgba(0, 25, 41, .08);
  border-top: none;                 /* nahtloser Anschluss an die Navbar */
  border-radius: 0 0 14px 14px;     /* nur unten abgerundet */
  box-shadow: 0 12px 20px -6px rgba(14, 42, 82, .18);

  overflow: hidden;

  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.has-dropdown.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li:not(:last-child) a {
  border-bottom: 1px solid rgba(0, 25, 41, .08);
  border-radius: 0;
}

.has-dropdown.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 10px 14px;
  border: none;
  font-weight: 500;
  font-size: .95rem;
  line-height: 1.2;
  color: var(--dark-blau);
  transition: background .18s ease;
}

.dropdown a:hover {
  background: rgb(125, 207, 242);
}


.nav-logo {
  display: flex;
  align-items: center;
  min-height: var(--nav-h);
}

.nav-logo .logo {
  display: block;
  width: 180px;
  height: 20px;
  background-color: var(--dark-blau);
  -webkit-mask-image: url('../img/Logo.svg');
  mask-image: url('../img/Logo.svg');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: var(--nav-h);
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark-blau);
  border-radius: 2px;
  transition: transform .5s ease, opacity .25s ease;
}

.nav-links ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark-blau);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}
body.resizing * {
  transition: none !important;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    flex-basis: 100%;
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .5s cubic-bezier(.4, 0, .2, 1);
  }

  .nav-links>ul {
    margin: 0;
    overflow: hidden;
    min-height: 0;
    flex-direction: column;
    gap: 0;
    padding: 0;
    list-style: none;
  }

  nav.open .nav-links {
    grid-template-rows: 1fr;
  }

  nav.open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  nav.open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  nav.open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Trennlinien auf die Haupt-Listenpunkte */
  .nav-links>ul>li {
    border-bottom: 1px solid #0019291c;
  }
  .nav-links>ul>li:last-child {
    border-bottom: none;
  }
  .nav-links a {
    display: block;
    padding: .9rem 0;
    font-size: 1.05rem;
    border-bottom: none;
  }

  /* WICHTIG: has-dropdown zurück auf Block, sonst steht das Dropdown NEBEN dem Button */
  .has-dropdown {
    display: block;
    align-self: auto;
    height: auto;
  }

  /* Fachbereich-Button wie ein Hauptlink */
  .dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: .9rem 0;
    font-size: 1.05rem;
  }

  /* Dropdown: Desktop-Positionierung komplett zurücksetzen, weich aufklappen */
  .dropdown {
    position: static;
    top: auto;
    left: auto;
    min-width: 0;
    display: block;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    padding: 0;

    opacity: 1;
    visibility: visible;
    transform: none;

    overflow: hidden;
    max-height: 0;
    transition: max-height .4s ease;
  }

  .has-dropdown.open .dropdown {
    max-height: 500px;
  }

  /* Unterpunkte: gleiche Höhe/Schrift wie Hauptpunkte, eingerückt, ohne eigene Linie */
  .dropdown a {
    display: block;
    padding: .9rem 0 .9rem 1.8rem;
    font-size: 1.05rem;
    border-radius: 0;
    border-bottom: none;
  }
  .dropdown a:hover {
    background: none;
  }
}

@media (min-width: 901px) {
  .nav-links > ul > li > a,
  .nav-links > ul > li > .dropdown-toggle {
    display: inline-flex;
    align-items: center;
    transition: color .2s ease, transform .2s ease;
  }
  .nav-links > ul > li > a:hover,
  .nav-links > ul > li > .dropdown-toggle:hover {
    color: var(--bluemain-blau-2);
    transform: translateY(-1px);
  }
}

/* ===================== BUTTONS – EINE Basis für ALLE (Padding/Form nur hier!) ===================== */
.btn,
.btn-primary,
.btn-ghost,
.plan-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 100px;
  font-weight: 700;
  font-size: .98rem;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, color .25s ease;
}

/* Farb-Varianten – NUR Farbe/Hover, kein Padding mehr */
.btn-primary {
  background: var(--main-blau);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 61, 88, .28);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 61, 88, .38);
  background: var(--dark-blau);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-ghost {
  background: #fff;
  color: var(--main-blau);
  border: 1px solid rgba(0, 61, 88, .15);
  box-shadow: 0 4px 14px rgba(0, 25, 41, .06);
}

.btn-ghost:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(0, 25, 41, .14);
  background: var(--hell);
  color: var(--dark-blau);
}

.btn-ghost:active {
  transform: translateY(-1px);
}

/* ===================== HERO ===================== */
header {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding-block: calc(var(--nav-h) + 2.2rem) 0;
  background: var(--hell);
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: .55;
  z-index: 0;
  pointer-events: none;
}

.blob-1 {
  width: 280px;
  height: 280px;
  background: var(--akzent);
  top: 6%;
  right: -70px;
  animation: float1 14s ease-in-out infinite;
}

.blob-2 {
  width: 230px;
  height: 230px;
  background: #bce6f7;
  bottom: 24%;
  left: -80px;
  animation: float2 18s ease-in-out infinite;
}

@keyframes float1 {

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

  50% {
    transform: translate(-24px, 30px) scale(1.12);
  }
}

@keyframes float2 {

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

  50% {
    transform: translate(30px, -22px) scale(1.08);
  }
}

.header-text {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--bluemain-blau-2);
  background: none;
  /* Pille weg */
  padding: 0;
  /* Padding weg */
  margin-bottom: 16px;
}

.eyebrow::before {
  display: none;
}

/* Punkt weg */
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--star);
  box-shadow: 0 0 0 3px rgba(255, 179, 0, .25);
}

h1 {
  font-weight: 900;
  font-size: clamp(3.3rem, 16vw, 4.6rem);
  line-height: .9;
  letter-spacing: -.03em;
  text-transform: uppercase;
  color: var(--dark-blau);
}

h1 .w {
  display: block;
  opacity: 0;
  transform: translateY(24px);
  animation: rise .7s ease forwards;
}

h1 .w:nth-child(1) {
  animation-delay: .12s;
}

h1 .w:nth-child(2) {
  animation-delay: .22s;
}

h1 .w:nth-child(3) {
  animation-delay: .32s;
}

h1 .w:nth-child(4) {
  animation-delay: .42s;
}

.header-text p {
  margin-top: 1.4rem;
  max-width: 30ch;
  font-size: 1.05rem;
  line-height: 1.55;
  font-weight: 500;
  color: var(--main-blau);
  opacity: 0;
  animation: rise .7s .55s ease both;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.8rem;
  opacity: 0;
  animation: rise .7s .68s ease both;
}

.team {
  margin-top: auto;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  opacity: 0;
  animation: rise .9s .8s ease both;
}

.team img {
  width: 200vw;
  height: auto;
  max-width: none;
  display: block;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

.bokeh {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.bokeh span {
  position: absolute;
  bottom: -40px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, var(--akzent));
  opacity: 0;
  filter: blur(1px);
  animation: floatUp linear infinite;
}

.bokeh span:nth-child(1) {
  width: 14px;
  height: 14px;
  left: 12%;
  animation-duration: 16s;
  animation-delay: 0s;
}

.bokeh span:nth-child(2) {
  width: 8px;
  height: 8px;
  left: 28%;
  animation-duration: 22s;
  animation-delay: 6s;
}

.bokeh span:nth-child(3) {
  width: 20px;
  height: 20px;
  left: 45%;
  animation-duration: 19s;
  animation-delay: 3s;
}

.bokeh span:nth-child(4) {
  width: 6px;
  height: 6px;
  left: 60%;
  animation-duration: 25s;
  animation-delay: 9s;
}

.bokeh span:nth-child(5) {
  width: 16px;
  height: 16px;
  left: 74%;
  animation-duration: 18s;
  animation-delay: 1s;
}

.bokeh span:nth-child(6) {
  width: 10px;
  height: 10px;
  left: 85%;
  animation-duration: 23s;
  animation-delay: 12s;
}

.bokeh span:nth-child(7) {
  width: 12px;
  height: 12px;
  left: 38%;
  animation-duration: 21s;
  animation-delay: 14s;
}

.bokeh span:nth-child(8) {
  width: 9px;
  height: 9px;
  left: 20%;
  animation-duration: 24s;
  animation-delay: 4s;
}

.bokeh span:nth-child(9) {
  width: 13px;
  height: 13px;
  left: 52%;
  animation-duration: 20s;
  animation-delay: 8s;
}

.bokeh span:nth-child(10) {
  width: 7px;
  height: 7px;
  left: 67%;
  animation-duration: 26s;
  animation-delay: 2s;
}

.bokeh span:nth-child(11) {
  width: 15px;
  height: 15px;
  left: 92%;
  animation-duration: 19s;
  animation-delay: 10s;
}

@keyframes floatUp {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }

  10% {
    opacity: .5;
  }

  50% {
    transform: translateY(-45vh) translateX(14px);
  }

  90% {
    opacity: .5;
  }

  100% {
    transform: translateY(-90vh) translateX(-10px);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bokeh span {
    animation: none;
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .blob {
    animation: none;
  }

  .eyebrow,
  .header-text p,
  .cta-row,
  .team,
  h1 .w {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ===================== HERO – DESKTOP (ab 769px) ===================== */
@media (min-width: 769px) {
  :root {
    --nav-x: clamp(3rem, 6vw, 6rem);
  }

  header {
    min-height: 80svh;
    flex-direction: row;
    align-items: center;
    gap: clamp(2rem, 4vw, 4rem);
    padding-block: calc(var(--nav-h) + 2rem) 2rem;
  }

  .header-text {
    flex: 1 1 42%;
    max-width: 620px;
  }

  .team {
    flex: 1 1 50%;
    margin-top: 0;
    justify-content: center;
    align-items: center;
    position: relative;
  }

  .team img {
    width: clamp(600px, 90vw, 1500px);
    height: auto;
    max-width: none;
    margin-right: 0;
    transform: translateX(-9rem);
  }

  .team::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 20%;
    background: linear-gradient(to bottom, transparent, var(--hell));
    pointer-events: none;
  }

  h1 {
    font-size: clamp(4rem, 6vw, 7rem);
  }

  .header-text p {
    font-size: 1.2rem;
  }
}

/* ===================== LEISTUNGEN (.angebot) ===================== */
.angebot {
  padding-block: clamp(3rem, 8vw, 6rem);
  background: #fff;
}

.angebot>.eyebrow {
  display: inline-flex;
  margin-bottom: 0;
}

.angebot-heading {
  max-width: 640px;
  margin: 14px 0 clamp(1.5rem, 3vw, 2.5rem);
}

.angebot-heading h2 {
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--dark-blau);
}

.angebot-heading p {
  margin-top: .75rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--main-blau);
}

.angebot-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.angebot-card {
  flex: 1 1 350px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  border: 1px solid rgba(0, 25, 41, .09);
  border-radius: 20px;
  padding: 24px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.angebot-card:hover {
  transform: translateY(-3px);
  border-color: var(--akzent);
  box-shadow: 0 14px 30px rgba(0, 25, 41, .10);
}

.angebot-card-content {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "icon title" "desc desc";
  align-items: center;
  column-gap: 16px;
  row-gap: 14px;
}

.angebot-card-content img {
  grid-area: icon;
  width: 52px;
  height: 52px;
  padding: 11px;
  box-sizing: border-box;
  border-radius: 14px;
  background: rgba(125, 206, 242, .20);
  align-self: start;
}

.angebot-card-content>div {
  grid-area: title;
  min-width: 0;
}

.angebot-card-content>div h3 {
  font-weight: 900;
  font-size: 1.35rem;
  line-height: 1;
  color: var(--dark-blau);
}

.angebot-card-content>div h4 {
  margin-top: 5px;
  font-weight: 600;
  font-size: .9rem;
  color: var(--bluemain-blau-2);
}

.angebot-card-content>p {
  grid-area: desc;
  font-size: .95rem;
  line-height: 1.55;
  color: var(--main-blau);
}

.tags {
  margin-top: auto;
}

.tags ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.tags li {
  font-size: .8rem;
  font-weight: 500;
  color: var(--bluemain-blau-2);
  background: var(--hell);
  padding: 6px 12px;
  border-radius: 100px;
}

/* ===================== ARBEITEN / REFERENZ (.section + .proj) ===================== */
.section {
  padding-block: clamp(3rem, 8vw, 6rem);
}

.section>.eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
}

.section>h2 {
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--dark-blau);
  max-width: 640px;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.proj-link {
  display: block;
  width: 100%;
  text-decoration: none;
  color: inherit;
}

.proj {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  background: #fff;
  border: 1px solid rgba(0, 25, 41, .09);
  border-radius: 24px;
  padding: clamp(1rem, 2vw, 1.5rem);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.proj-link:hover .proj {
  transform: translateY(-3px);
  border-color: var(--akzent);
  box-shadow: 0 14px 30px rgba(0, 25, 41, .10);
}

.proj .media {
  position: relative;
  flex: 1 1 340px;
  border-radius: 16px;
  overflow: hidden;
  min-height: 240px;
}

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

.proj .badges {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.type-pill,
.live-pill {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
}

.type-pill {
  background: rgba(0, 25, 41, .78);
  color: #fff;
}

.live-pill {
  background: rgba(255, 255, 255, .85);
  color: var(--main-blau);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.live-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #16b364;
  box-shadow: 0 0 0 3px rgba(22, 179, 100, .25);
}

.proj-body {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  padding: clamp(.5rem, 1.5vw, 1.25rem);
}

.proj-body h3 {
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.05;
  color: var(--dark-blau);
}

.proj-loc {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--bluemain-blau-2);
}

.proj-body p {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--main-blau);
}

.proj-body .tags {
  margin-top: 1.25rem;
}

.visit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 1.25rem;
  font-weight: 700;
  font-size: .98rem;
  color: var(--bluemain-blau-2);
  transition: gap .2s ease, color .2s ease;
}

.proj-link:hover .visit {
  gap: 12px;
  color: var(--dark-blau);
}

/* ===================== DUNKLE SECTION-VARIANTE ===================== */
.section--dark {
  background: var(--main-blau);
}

.section--dark>.eyebrow {
  color: var(--akzent);
}

.section--dark>h2 {
  color: #fff;
  max-width: 640px;
  margin-bottom: 0;
}

.section--dark .dot {
  color: var(--akzent);
}

.section--dark .lead {
  max-width: 46ch;
  margin-top: .9rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, .8);
}

/* ===================== WARUM VIDEOCEAN – Benefits ===================== */
.benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 2.75rem);
}

.benefit {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.b-icon {
  flex: none;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(125, 206, 242, .14);
}

.b-icon img {
  width: 26px;
  height: 26px;
  filter: brightness(0) invert(1);
}

.b-text h3 {
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
}

.b-text p {
  font-size: .95rem;
  color: rgba(255, 255, 255, .72);
}

.section--dark .cta {
  margin-top: clamp(2rem, 4vw, 3rem);
}

/* Button: nur Farbe – Padding/Form kommt aus der Basis */
.section--dark .btn {
  background: #fff;
  color: var(--main-blau);
}

.section--dark .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .25);
}

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

@media (min-width: 1400px) {
  .benefits {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===================== ABLAUF (.timeline) ===================== */
.section>.lead {
  max-width: 46ch;
  margin-top: .5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--main-blau);
}

.timeline {
  display: flex;
  flex-direction: column;
}

.step {
  display: flex;
  gap: 18px;
}

.rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: none;
}

.num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--main-blau);
  color: #fff;
  font-weight: 900;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.line {
  width: 2px;
  flex: 1;
  background: rgba(0, 25, 41, .12);
  margin: 8px 0;
}

.body {
  padding-top: 9px;
  padding-bottom: 32px;
}

.step:last-child .body {
  padding-bottom: 0;
}

.body h3 {
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--dark-blau);
  margin-bottom: 6px;
}

.body p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--main-blau);
  max-width: 52ch;
}

/* ===================== PREISE (.plans) ===================== */
.plans {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 960px) {
  .plans {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(0, 25, 41, .10);
  border-radius: 22px;
  padding: 28px 24px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.plan:hover {
  transform: translateY(-3px);
  border-color: var(--akzent);
  box-shadow: 0 14px 30px rgba(0, 25, 41, .10);
}

.plan-name {
  font-weight: 900;
  font-size: 1.35rem;
  color: var(--dark-blau);
}

.plan-desc {
  margin-top: 4px;
  margin-bottom: 20px;
  font-size: .9rem;
  color: var(--bluemain-blau-2);
}

.plan.feat {
  background: var(--main-blau);
  border-color: var(--main-blau);
}

.plan.feat .plan-name {
  color: #fff;
}

.plan.feat .plan-desc {
  color: rgba(255, 255, 255, .7);
}

.badge {
  position: absolute;
  top: 20px;
  left: 24px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--main-blau);
  background: #fff;
  padding: 5px 11px;
  border-radius: 100px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 20px;
}

.price .from {
  font-size: .9rem;
  color: rgba(255, 255, 255, .7);
}

.price .amount {
  font-weight: 900;
  font-size: 2.4rem;
  letter-spacing: -.02em;
  color: #fff;
}

.rows {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 12px 0;
  border-top: 1px solid rgba(0, 25, 41, .08);
}

.row:first-child {
  border-top: none;
}

.row-l {
  display: flex;
  align-items: center;
  gap: 11px;
}

.row-l img {
  width: 34px;
  height: 34px;
  padding: 7px;
  box-sizing: border-box;
  border-radius: 9px;
  background: rgba(125, 206, 242, .20);
}

.row-l span {
  font-size: .95rem;
  font-weight: 600;
  color: var(--dark-blau);
}

.row-l em {
  font-style: normal;
  font-weight: 500;
  font-size: .8rem;
  color: var(--bluemain-blau-2);
}

.row-r {
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--dark-blau);
  white-space: nowrap;
}

.row-r em {
  font-style: normal;
  font-weight: 500;
  font-size: .8rem;
  color: var(--main-blau);
  margin-right: 3px;
}

.feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 0 0 20px;
  padding: 0;
}

.feats li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .95rem;
  line-height: 1.4;
  color: var(--main-blau);
}

.feats img {
  width: 20px;
  height: 20px;
  flex: none;
  margin-top: 1px;
}

.plan.feat .feats li {
  color: rgba(255, 255, 255, .9);
}

.plan.feat .feats img {
  filter: brightness(0) invert(1);
}

/* Preis-Buttons: Layout (Padding/Form kommt aus der Basis), nur Karten-Anordnung + Farbe */
.plan-btn {
  width: 100%;
  align-self: stretch;
  flex: none;
  margin-top: auto;
}

.plan-btn.ghost {
  background: var(--hell);
  color: var(--main-blau);
}

.plan-btn.ghost:hover {
  transform: translateY(-2px);
  background: #d8eefb;
}

.plan-btn.solid {
  background: #fff;
  color: var(--main-blau);
}

.plan-btn.solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, .25);
}

.plan-btn.line {
  background: var(--main-blau);
  color: #fff;
}

.plan-btn.line:hover {
  transform: translateY(-2px);
  background: var(--dark-blau);
}

.note {
  margin-top: 20px;
  font-size: .82rem;
  line-height: 1.5;
  color: var(--bluemain-blau-2);
  text-align: center;
}

/* ===================== KONTAKT (.form / .direct) ===================== */

/* Formular-Karte */
.form {
  display: grid;
  gap: 16px;
  max-width: 680px;
  margin-inline: auto;
  background: #fff;
  border: 1px solid rgba(0, 25, 41, .09);
  border-radius: 24px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: 0 20px 50px rgba(0, 25, 41, .06);
}

.form label {
  display: block;
  margin-bottom: 7px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--dark-blau);
}

.field {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: var(--dark-blau);
  background: var(--hell);
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 13px 15px;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.field::placeholder {
  color: #7d94a8;
}

.field:focus {
  outline: none;
  background: #fff;
  border-color: var(--akzent);
  box-shadow: 0 0 0 4px rgba(125, 206, 242, .3);
}

textarea.field {
  min-height: 120px;
  resize: vertical;
  line-height: 1.55;
}

/* Select mit eigenem Pfeil */
select.field {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%2300648d' stroke-width='2'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 42px;
  cursor: pointer;
}

/* Senden-Button (volle Breite, wie die Primär-Buttons) */
.send {
  width: 100%;
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 24px;
  border: none;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  background: var(--main-blau);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 61, 88, .28);
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
}

.send:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 61, 88, .38);
  background: var(--dark-blau);
}

.send:active {
  transform: translateY(-1px);
}

/* Trenner „oder direkt" */
.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 680px;
  margin: clamp(1.75rem, 4vw, 2.5rem) auto;
  font-size: .85rem;
  font-weight: 600;
  color: var(--bluemain-blau-2);
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(0, 25, 41, .12);
}

/* Direkt-Kontakte als Mini-Cards */
.direct {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 680px;
  margin-inline: auto;
}


.drow {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid rgba(0, 25, 41, .09);
  border-radius: 16px;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

a.drow:hover {
  transform: translateY(-3px);
  border-color: var(--akzent);
  box-shadow: 0 12px 26px rgba(0, 25, 41, .10);
}

.drow img {
  width: 44px;
  height: 44px;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 12px;
  background: rgba(125, 206, 242, .20);
  flex: none;
}

.drow .dl {
  font-size: .78rem;
  font-weight: 600;
  color: var(--bluemain-blau-2);
}

.drow .dv {
  font-size: .98rem;
  font-weight: 700;
  color: var(--dark-blau);
}

/* ===================== FOOTER ===================== */
.footer {
  background: var(--dark-blau);
  color: #fff;
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
}

.footer .brand img {
  height: 20px;
  width: auto;
  filter: brightness(0) invert(1);
  /* Logo weiß auf dunkel */
}

.footer .tag {
  margin-top: 16px;
  max-width: 44ch;
  font-size: .95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, .6);
}

/* Spalten */
.footer .cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: clamp(2rem, 5vw, 3rem) 0;
}

@media (min-width: 640px) {
  .footer .cols {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer .col h3 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--akzent);
  margin-bottom: 14px;
}

.footer .col a,
.footer .col p {
  display: block;
  font-size: .95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, .7);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color .2s ease;
}

.footer .col a:hover {
  color: #fff;
}

/* Social */
.footer .social {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.footer .social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(125, 206, 242, .12);
  transition: background .2s ease, transform .2s ease;
}

.footer .social a:hover {
  background: rgba(125, 206, 242, .22);
  transform: translateY(-2px);
}

.footer .social img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

/* Untere Leiste */
.footer .bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.footer .legal {
  display: flex;
  gap: 20px;
}

.footer .legal a {
  font-size: .9rem;
  color: rgba(255, 255, 255, .7);
  text-decoration: none;
}

.footer .legal a:hover {
  color: #fff;
}

.footer .copy {
  font-size: .85rem;
  color: rgba(255, 255, 255, .45);
}

@media (prefers-reduced-motion: no-preference) {
  .plan.feat {
    animation: pulse-feat 3.5s ease-in-out infinite;
  }
}

@keyframes pulse-feat {

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

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

.plan.feat:hover {
  animation-play-state: paused;
}

/* Zentrierter "Mehr anzeigen"-Button (Arbeiten/Portfolio) */
.work-more {
  display: flex;
  justify-content: center;
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
}

/* DSGVO-Zustimmung im Kontaktformular */
.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .85rem;
  line-height: 1.5;
  color: var(--main-blau);
}

.consent input {
  margin-top: 3px;
  flex: none;
  width: 16px;
  height: 16px;
  accent-color: var(--main-blau);
  cursor: pointer;
}

.consent a {
  color: var(--bluemain-blau-2);
  text-decoration: underline;
}

.contact-page h1 {
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.05;
  letter-spacing: -.02em;
  text-transform: none;
  color: var(--dark-blau);
}

.contact-page .dot {
  color: var(--akzent);
}

/* ===================== SCROLL-REVEAL (Content) ===================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Domino: gestaffelte Verzögerung für Karten/Kacheln in Grids */
:is(.angebot-cards, .gallery-grid, .work-grid, .benefits, .plans, .direct) > .reveal:nth-child(2) { --reveal-delay: .08s; }
:is(.angebot-cards, .gallery-grid, .work-grid, .benefits, .plans, .direct) > .reveal:nth-child(3) { --reveal-delay: .16s; }
:is(.angebot-cards, .gallery-grid, .work-grid, .benefits, .plans, .direct) > .reveal:nth-child(4) { --reveal-delay: .24s; }
:is(.angebot-cards, .gallery-grid, .work-grid, .benefits, .plans, .direct) > .reveal:nth-child(5) { --reveal-delay: .32s; }
:is(.angebot-cards, .gallery-grid, .work-grid, .benefits, .plans, .direct) > .reveal:nth-child(6) { --reveal-delay: .40s; }

/* ===================== HERO-EINBLENDUNG (Unterseiten, beim Laden) ===================== */
@media (prefers-reduced-motion: no-preference) {
  .page-hero > * {
    opacity: 0;
    transform: translateY(24px);
    animation: heroRise .7s ease forwards;
  }
  .page-hero > .eyebrow        { animation-delay: .05s; }
  .page-hero > h1              { animation-delay: .15s; }
  .page-hero > .lead           { animation-delay: .30s; }
  .page-hero > .cta-row        { animation-delay: .45s; }
  .page-hero > .showreel-frame { animation-delay: .55s; }
}
@keyframes heroRise { to { opacity: 1; transform: none; } }

/* Barrierefreiheit: keine Bewegung bei entsprechender Einstellung */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

.form-success {
  max-width: 680px;
  margin: 16px auto 0;
  padding: 18px 20px;
  background: rgba(22, 179, 100, .10);
  border: 1px solid rgba(22, 179, 100, .35);
  border-radius: 16px;
  font-size: .98rem;
  line-height: 1.5;
  color: #0f7a45;
}
.form-success strong { color: #0b5c34; }