/* =========================================================
   WB MEDIAWORKS
   MASTER STYLESHEET

   Design:
   Schwarz / Anthrazit / Silber / Weiß
========================================================= */


/* =========================================================
   01 — DESIGN SYSTEM
========================================================= */

:root {

  --black: #050505;
  --black-deep: #030303;

  --black-soft: #111111;
  --dark: #151515;
  --dark-light: #1b1b1b;

  --white: #f4f4f4;
  --silver: #c8c8c8;

  --grey: #9a9a9a;
  --grey-light: #b7b7b7;
  --grey-dark: #626262;

  --border: rgba(255, 255, 255, 0.10);
  --border-light: rgba(255, 255, 255, 0.18);

  --max-width: 1380px;

}


/* =========================================================
   02 — RESET
========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}


body {

  background: var(--black);

  color: var(--white);

  font-family:
    Inter,
    "Helvetica Neue",
    Helvetica,
    Arial,
    sans-serif;

  line-height: 1.5;

  overflow-x: hidden;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;

}


a {
  color: inherit;
  text-decoration: none;
}


img {
  display: block;
  max-width: 100%;
}


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


/* =========================================================
   03 — GENERAL
========================================================= */

.section-container {

  width: min(90%, var(--max-width));

  margin: 0 auto;

}


.section-number {

  margin-bottom: 45px;

  color: var(--grey-dark);

  font-size: 0.68rem;
  font-weight: 600;

  letter-spacing: 0.24em;

}


.section-heading {

  display: flex;

  justify-content: space-between;
  align-items: flex-end;

  gap: 60px;

  margin-bottom: 80px;

}


.section-heading h2 {

  max-width: 850px;

  font-size: clamp(3rem, 6vw, 6.2rem);

  font-weight: 400;

  line-height: 0.94;

  letter-spacing: -0.055em;

}


.section-heading h2 span {

  color: var(--grey-dark);

}


.section-heading > p {

  max-width: 340px;

  color: var(--grey);

  font-size: 0.95rem;

  line-height: 1.8;

}


/* =========================================================
   04 — HEADER
========================================================= */

.header {

  position: fixed;

  top: 0;
  left: 0;

  width: 100%;

  z-index: 1000;

  background: rgba(5, 5, 5, 0.82);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-bottom: 1px solid rgba(255, 255, 255, 0.07);

}


.header-inner {

  width: min(92%, var(--max-width));

  height: 92px;

  margin: 0 auto;

  display: flex;

  align-items: center;
  justify-content: space-between;

}


/* =========================================================
   LOGO
========================================================= */

.brand {

  display: flex;

  align-items: center;

  gap: 13px;

}


.brand-logo {

  display: block;

  width: 170px;
  height: 60px;

  object-fit: contain;
  object-position: left center;

}


.brand-wb {

  font-size: 1.7rem;

  font-weight: 800;

  letter-spacing: -0.12em;

}


.brand-name {

  font-size: 0.8rem;

  font-weight: 500;

  letter-spacing: 0.28em;

}


/* =========================================================
   NAVIGATION
========================================================= */

.navigation {

  display: flex;

  align-items: center;

  gap: 36px;

}


.navigation a {

  position: relative;

  padding: 10px 0;

  color: #b5b5b5;

  font-size: 0.78rem;

  transition: color 0.25s ease;

}


.navigation a::after {

  content: "";

  position: absolute;

  left: 0;
  bottom: 4px;

  width: 0;
  height: 1px;

  background: var(--white);

  transition: width 0.3s ease;

}


.navigation a:hover {

  color: var(--white);

}


.navigation a:hover::after {

  width: 100%;

}


.navigation .nav-active {

  color: var(--white);

}


.navigation .nav-active::after {

  width: 100%;

}


/* =========================================================
   HEADER BUTTON
========================================================= */

.header-button {

  padding: 13px 21px;

  border: 1px solid var(--border-light);

  color: var(--white);

  font-size: 0.74rem;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;

}


.header-button:hover {

  background: var(--white);

  color: var(--black);

  border-color: var(--white);

  transform: translateY(-2px);

}


/* =========================================================
   05 — GLOBAL BUTTONS
========================================================= */

.button-primary,
.button-secondary {

  min-width: 195px;

  padding: 16px 25px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 28px;

  font-size: 0.77rem;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;

}


.button-primary {

  background: var(--white);

  color: var(--black);

}


.button-primary:hover {

  background: #d8d8d8;

  transform: translateY(-3px);

}


.button-primary span {

  font-size: 1rem;

}


.button-secondary {

  border: 1px solid var(--border-light);

  color: var(--silver);

}


.button-secondary:hover {

  color: var(--white);

  border-color: #666;

  transform: translateY(-3px);

}


/* =========================================================
   06 — STARTSEITE HERO
========================================================= */

.hero {

  position: relative;

  min-height: 100vh;

  display: flex;
  align-items: center;

  overflow: hidden;

  background: var(--black);

  border-bottom: 1px solid var(--border);

}


.hero::before {

  content: "";

  position: absolute;

  inset: 0;

  background:

    linear-gradient(
      rgba(255, 255, 255, 0.018) 1px,
      transparent 1px
    ),

    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.018) 1px,
      transparent 1px
    );

  background-size: 80px 80px;

  mask-image:
    linear-gradient(
      to bottom,
      black 20%,
      transparent 90%
    );

  -webkit-mask-image:
    linear-gradient(
      to bottom,
      black 20%,
      transparent 90%
    );

}


.hero-glow {

  position: absolute;

  top: 42%;
  left: 50%;

  width: 1000px;
  height: 800px;

  transform: translate(-50%, -50%);

  background:
    radial-gradient(
      circle,
      rgba(255, 255, 255, 0.09),
      rgba(255, 255, 255, 0.025) 30%,
      transparent 68%
    );

  pointer-events: none;

}


.hero-content {

  position: relative;

  width: min(90%, 1250px);

  margin: 120px auto 0;

  text-align: center;

  z-index: 2;

}


.eyebrow {

  margin-bottom: 36px;

  color: #818181;

  font-size: 0.66rem;

  font-weight: 500;

  letter-spacing: 0.35em;

}


.hero h1 {

  max-width: 1200px;

  margin: 0 auto;

  font-size: clamp(4rem, 8vw, 8.5rem);

  font-weight: 400;

  line-height: 0.89;

  letter-spacing: -0.065em;

}


.hero h1 span {

  display: block;

  color: #727272;

}


.hero-text {

  max-width: 630px;

  margin: 42px auto 0;

  color: #a0a0a0;

  font-size: clamp(1rem, 1.5vw, 1.15rem);

  line-height: 1.75;

}


.hero-buttons {

  display: flex;

  justify-content: center;

  gap: 14px;

  margin-top: 46px;

}


.hero-line {

  width: 1px;
  height: 46px;

  margin: 58px auto 20px;

  background:
    linear-gradient(
      var(--white),
      transparent
    );

}


.hero-tagline {

  color: #5d5d5d;

  font-size: 0.57rem;

  letter-spacing: 0.55em;

}


/* =========================================================
   07 — STARTSEITE INTRO
========================================================= */

.intro {

  padding: 170px 0;

  background: var(--black);

}


.intro-grid {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 110px;

  align-items: end;

}


.intro h2 {

  font-size: clamp(3.5rem, 7vw, 7rem);

  font-weight: 400;

  line-height: 0.91;

  letter-spacing: -0.055em;

}


.intro h2 span {

  color: #595959;

}


.intro-text {

  max-width: 530px;

}


.intro-text p {

  margin-top: 25px;

  color: var(--grey);

  font-size: 1.03rem;

  line-height: 1.85;

}


/* =========================================================
   08 — STARTSEITE LEISTUNGEN
========================================================= */

.services {

  padding: 155px 0;

  background: var(--black-soft);

  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);

}


.service-list {

  border-top: 1px solid var(--border);

}


.service-item {

  min-height: 150px;

  display: grid;

  grid-template-columns:
    80px
    1.3fr
    1fr
    50px;

  gap: 30px;

  align-items: center;

  border-bottom: 1px solid var(--border);

  transition:
    background 0.3s ease,
    padding 0.3s ease;

}


.service-item:hover {

  padding-left: 20px;

  background: rgba(255, 255, 255, 0.035);

}


.service-number {

  color: #555;

  font-size: 0.68rem;

}


.service-item h3 {

  font-size: clamp(1.7rem, 3vw, 2.8rem);

  font-weight: 400;

  letter-spacing: -0.035em;

}


.service-item p {

  max-width: 400px;

  color: var(--grey);

  font-size: 0.9rem;

  line-height: 1.7;

}


.service-arrow {

  color: #666;

  font-size: 1.4rem;

  transition:
    transform 0.3s ease,
    color 0.3s ease;

}


.service-item:hover .service-arrow {

  color: var(--white);

  transform: translate(6px, -6px);

}


/* =========================================================
   09 — STARTSEITE REFERENZEN
========================================================= */

.projects {

  padding: 165px 0;

  background: var(--black);

}


.project-preview {

  position: relative;

  padding: clamp(30px, 6vw, 90px);

  overflow: hidden;

  background:
    radial-gradient(
      circle at 50% 30%,
      #292929 0%,
      #171717 45%,
      #0c0c0c 100%
    );

  border: 1px solid var(--border);

}


.project-preview::before {

  content: "";

  position: absolute;

  left: 50%;
  bottom: -300px;

  width: 900px;
  height: 600px;

  transform: translateX(-50%);

  background:
    radial-gradient(
      circle,
      rgba(255, 255, 255, 0.08),
      transparent 65%
    );

  pointer-events: none;

}


/* =========================================================
   BROWSER MOCKUP
========================================================= */

.browser {

  position: relative;

  width: 100%;
  max-width: 1120px;

  margin: 0 auto;

  overflow: hidden;

  background: #fff;

  border: 1px solid rgba(255, 255, 255, 0.15);

  border-radius: 8px;

  box-shadow:
    0 45px 100px rgba(0, 0, 0, 0.65),
    0 10px 30px rgba(0, 0, 0, 0.4);

  z-index: 2;

}


.browser-bar {

  position: relative;

  height: 44px;

  display: flex;
  align-items: center;

  background: #eeeeee;

  border-bottom: 1px solid #d6d6d6;

}


.browser-dots {

  position: absolute;

  left: 16px;

  display: flex;

  gap: 7px;

}


.browser-dots span {

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #b5b5b5;

}


.browser-address {

  position: absolute;

  left: 50%;

  width: min(45%, 360px);

  padding: 6px 15px;

  transform: translateX(-50%);

  background: #dedede;

  border-radius: 5px;

  color: #777;

  text-align: center;

  font-size: 0.59rem;

}


.browser-content {

  position: relative;

  width: 100%;

  aspect-ratio: 16 / 9;

  overflow: hidden;

  background: #e7e3dd;

}


.project-screenshot {

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: top center;

  transition:
    transform 1.2s
    cubic-bezier(0.22, 1, 0.36, 1);

}


.browser:hover .project-screenshot {

  transform: scale(1.025);

}


/* Fallback für altes HTML */

.browser-content > p {

  position: absolute;

  top: 12%;
  left: 10%;

  color: #333;

  font-size: 0.6rem;

  letter-spacing: 0.4em;

}


.browser-content > h3 {

  position: absolute;

  top: 25%;
  left: 10%;

  color: #171717;

  font-family: Georgia, serif;

  font-size: clamp(3rem, 7vw, 7rem);

  font-weight: 400;

  line-height: 0.85;

}


/* =========================================================
   PROJECT INFORMATION
========================================================= */

.project-info {

  display: flex;

  justify-content: space-between;
  align-items: flex-end;

  gap: 40px;

  margin-top: 32px;

}


.project-category {

  margin-bottom: 12px;

  color: #666;

  font-size: 0.6rem;

  letter-spacing: 0.25em;

}


.project-info h3 {

  font-size: clamp(1.7rem, 3vw, 2.7rem);

  font-weight: 400;

  letter-spacing: -0.03em;

}


.project-link {

  color: #999;

  font-size: 0.8rem;

  transition:
    color 0.25s ease,
    transform 0.25s ease;

}


.project-link:hover {

  color: var(--white);

  transform: translateY(-2px);

}


/* =========================================================
   10 — STARTSEITE ABLAUF
========================================================= */

.process {

  padding: 160px 0;

  background: var(--black-soft);

  border-top: 1px solid var(--border);

}


.process-grid {

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  border-top: 1px solid var(--border);

}


.process-item {

  min-height: 330px;

  padding: 40px;

  border-right: 1px solid var(--border);

  transition: background 0.3s ease;

}


.process-item:first-child {

  border-left: 1px solid var(--border);

}


.process-item:hover {

  background: rgba(255, 255, 255, 0.035);

}


.process-item > span {

  display: block;

  margin-bottom: 105px;

  color: #555;

  font-size: 0.65rem;

}


.process-item h3 {

  margin-bottom: 20px;

  font-size: 1.4rem;

  font-weight: 400;

}


.process-item p {

  color: #888;

  font-size: 0.85rem;

  line-height: 1.75;

}


/* =========================================================
   11 — GLOBAL CTA
========================================================= */

.cta {

  position: relative;

  padding: 190px 0;

  overflow: hidden;

  text-align: center;

  background: var(--black);

  border-top: 1px solid var(--border);

}


.cta-glow {

  position: absolute;

  top: 50%;
  left: 50%;

  width: 1000px;
  height: 650px;

  transform: translate(-50%, -50%);

  background:
    radial-gradient(
      circle,
      rgba(255, 255, 255, 0.075),
      transparent 65%
    );

  pointer-events: none;

}


.cta-content {

  position: relative;

  z-index: 2;

}


.cta h2 {

  max-width: 1050px;

  margin: 0 auto 55px;

  font-size: clamp(3.5rem, 7vw, 7rem);

  font-weight: 400;

  line-height: 0.94;

  letter-spacing: -0.055em;

}


.cta h2 span {

  display: block;

  color: #666;

}


/* =========================================================
   12 — FOOTER
========================================================= */

.footer {

  padding: 65px 0 25px;

  background: var(--black-deep);

  border-top: 1px solid var(--border);

}


.footer-main {

  display: flex;

  justify-content: space-between;
  align-items: flex-start;

  gap: 80px;

  padding-bottom: 60px;

}


.footer-brand > div {

  display: flex;

  align-items: center;

  gap: 15px;

  margin-bottom: 15px;

}


.footer-brand strong {

  font-size: 2.2rem;

  letter-spacing: -0.12em;

}


.footer-brand span {

  font-size: 0.9rem;

  letter-spacing: 0.3em;

}


.footer-brand p {

  color: #555;

  font-size: 0.55rem;

  letter-spacing: 0.25em;

}


.footer-navigation {

  display: flex;

  gap: 100px;

}


.footer-navigation > div {

  display: flex;

  flex-direction: column;

  gap: 10px;

}


.footer-navigation p {

  margin-bottom: 10px;

  color: #555;

  font-size: 0.65rem;

  text-transform: uppercase;

  letter-spacing: 0.15em;

}


.footer-navigation a {

  color: #999;

  font-size: 0.8rem;

  transition: color 0.2s ease;

}


.footer-navigation a:hover {

  color: var(--white);

}


.footer-bottom {

  padding-top: 25px;

  display: flex;

  justify-content: space-between;

  border-top: 1px solid var(--border);

  color: #555;

  font-size: 0.7rem;

}


.footer-bottom div {

  display: flex;

  gap: 25px;

}


.footer-bottom a {

  transition: color 0.2s ease;

}


.footer-bottom a:hover {

  color: var(--white);

}


/* =========================================================
   13 — SUBPAGE HERO
   Leistungen
========================================================= */

.subpage-hero {

  position: relative;

  min-height: 88vh;

  display: flex;
  align-items: center;

  padding-top: 150px;

  overflow: hidden;

  background: var(--black);

  border-bottom: 1px solid var(--border);

}


.subpage-hero::before,
.reference-hero::before,
.process-page-hero::before {

  content: "";

  position: absolute;

  inset: 0;

  background:

    linear-gradient(
      rgba(255, 255, 255, 0.016) 1px,
      transparent 1px
    ),

    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.016) 1px,
      transparent 1px
    );

  background-size: 80px 80px;

  mask-image:
    linear-gradient(
      to bottom,
      black,
      transparent 95%
    );

  -webkit-mask-image:
    linear-gradient(
      to bottom,
      black,
      transparent 95%
    );

}


.subpage-glow {

  position: absolute;

  top: 40%;
  left: 70%;

  width: 900px;
  height: 900px;

  transform: translate(-50%, -50%);

  background:
    radial-gradient(
      circle,
      rgba(255, 255, 255, 0.08),
      transparent 65%
    );

  pointer-events: none;

}


.subpage-hero-content {

  position: relative;

  z-index: 2;

}


.subpage-hero h1 {

  max-width: 1200px;

  font-size: clamp(4rem, 8vw, 8.5rem);

  font-weight: 400;

  line-height: 0.9;

  letter-spacing: -0.065em;

}


.subpage-hero h1 span {

  display: block;

  color: #666;

}


.subpage-intro {

  max-width: 720px;

  margin-top: 65px;
  margin-left: auto;

  display: grid;

  grid-template-columns: 1fr 1.5fr;

  gap: 50px;

  color: var(--grey);

  font-size: 0.95rem;

  line-height: 1.8;

}


.subpage-intro p:first-child {

  color: #d0d0d0;

}


/* =========================================================
   14 — LEISTUNGEN INTRO
========================================================= */

.services-intro {

  padding: 170px 0;

  background: var(--black-soft);

  border-bottom: 1px solid var(--border);

}


.services-intro-grid {

  display: grid;

  grid-template-columns: 1.2fr 0.8fr;

  gap: 120px;

  align-items: end;

}


.services-intro h2 {

  font-size: clamp(3.5rem, 6vw, 6.5rem);

  font-weight: 400;

  line-height: 0.92;

  letter-spacing: -0.055em;

}


.services-intro h2 span {

  color: #5f5f5f;

}


.services-intro-grid > div {

  max-width: 500px;

}


.services-intro-grid p {

  margin-top: 25px;

  color: var(--grey);

  font-size: 1rem;

  line-height: 1.8;

}


/* =========================================================
   15 — LEISTUNGEN DETAILS
========================================================= */

.service-detail {

  padding: 140px 0;

  background: var(--black);

  border-top: 1px solid var(--border);

}


.service-detail-alt {

  background: var(--black-soft);

}


.service-detail-header {

  display: flex;

  align-items: center;

  gap: 30px;

  padding-bottom: 35px;

  margin-bottom: 80px;

  border-bottom: 1px solid var(--border);

}


.service-detail-number {

  color: #555;

  font-size: 0.7rem;

}


.service-detail-header p {

  color: #8a8a8a;

  font-size: 0.65rem;

  letter-spacing: 0.25em;

}


.service-detail-grid {

  display: grid;

  grid-template-columns: 1.15fr 0.85fr;

  gap: 120px;

}


.service-detail-title h2 {

  max-width: 700px;

  font-size: clamp(3.2rem, 6vw, 6rem);

  font-weight: 400;

  line-height: 0.94;

  letter-spacing: -0.055em;

}


.service-detail-title h2 span {

  display: block;

  color: #626262;

}


.service-detail-content {

  max-width: 520px;

}


.service-detail-content p {

  margin-bottom: 25px;

  color: var(--grey);

  font-size: 0.95rem;

  line-height: 1.85;

}


.service-detail-content .service-lead {

  color: #d0d0d0;

  font-size: 1.2rem;

  line-height: 1.65;

}


/* =========================================================
   LEISTUNGEN FEATURE LIST
========================================================= */

.service-features {

  margin-top: 50px;

  list-style: none;

  border-top: 1px solid var(--border);

}


.service-features li {

  position: relative;

  padding: 18px 0 18px 28px;

  border-bottom: 1px solid var(--border);

  color: #b0b0b0;

  font-size: 0.82rem;

}


.service-features li::before {

  content: "→";

  position: absolute;

  left: 0;

  color: #666;

}


/* =========================================================
   16 — ZUSATZLEISTUNGEN
========================================================= */

.additional-services {

  padding: 160px 0;

  background: var(--black-soft);

  border-top: 1px solid var(--border);

}


.additional-grid {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);

}


.additional-grid article {

  min-height: 330px;

  padding: 40px;

  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);

  transition: background 0.3s ease;

}


.additional-grid article:hover {

  background: rgba(255, 255, 255, 0.035);

}


.additional-grid article > span {

  display: block;

  margin-bottom: 110px;

  color: #555;

  font-size: 0.65rem;

}


.additional-grid h3 {

  margin-bottom: 20px;

  font-size: 1.6rem;

  font-weight: 400;

}


.additional-grid p {

  max-width: 320px;

  color: #888;

  font-size: 0.86rem;

  line-height: 1.75;

}


/* =========================================================
   17 — REFERENZEN HERO
========================================================= */

.reference-hero {

  position: relative;

  min-height: 90vh;

  padding-top: 160px;

  display: flex;
  align-items: center;

  overflow: hidden;

  background: var(--black);

  border-bottom: 1px solid var(--border);

}


.reference-hero-content {

  position: relative;

  z-index: 2;

}


.reference-hero h1 {

  max-width: 1200px;

  font-size: clamp(4rem, 8vw, 8.5rem);

  font-weight: 400;

  line-height: 0.9;

  letter-spacing: -0.065em;

}


.reference-hero h1 span {

  display: block;

  color: #666;

}


.reference-hero-bottom {

  max-width: 700px;

  margin-top: 70px;
  margin-left: auto;

  display: grid;

  grid-template-columns: 0.6fr 1.4fr;

  gap: 60px;

}


.reference-hero-bottom p {

  color: var(--grey);

  font-size: 0.95rem;

  line-height: 1.8;

}


.reference-hero-bottom p:first-child {

  color: #666;

  font-size: 0.62rem;

  letter-spacing: 0.25em;

}


/* =========================================================
   18 — REFERENZ PROJEKT
========================================================= */

.reference-project {

  padding: 160px 0;

  background: var(--black-soft);

}


.reference-project-head {

  display: flex;

  justify-content: space-between;
  align-items: flex-end;

  gap: 80px;

  margin-bottom: 80px;

}


.reference-project-head h2 {

  font-size: clamp(3.5rem, 6vw, 6.5rem);

  font-weight: 400;

  line-height: 0.92;

  letter-spacing: -0.055em;

}


.reference-project-head h2 span {

  display: block;

  color: #666;

}


.reference-meta {

  min-width: 320px;

}


.reference-meta > div {

  display: flex;

  justify-content: space-between;

  gap: 30px;

  padding: 14px 0;

  border-bottom: 1px solid var(--border);

}


.reference-meta span {

  color: #555;

  font-size: 0.57rem;

  letter-spacing: 0.2em;

}


.reference-meta p {

  color: #aaa;

  font-size: 0.75rem;

  text-align: right;

}


/* =========================================================
   REFERENZ SHOWCASE
========================================================= */

.reference-showcase {

  position: relative;

  padding: clamp(25px, 6vw, 90px);

  overflow: hidden;

  background:
    radial-gradient(
      circle at 50% 35%,
      #303030,
      #191919 50%,
      #0b0b0b
    );

  border: 1px solid var(--border);

}


.reference-showcase::before {

  content: "";

  position: absolute;

  left: 50%;
  bottom: -350px;

  width: 1000px;
  height: 700px;

  transform: translateX(-50%);

  background:
    radial-gradient(
      circle,
      rgba(255,255,255,0.08),
      transparent 65%
    );

}


.reference-browser {

  position: relative;

  max-width: 1150px;

  margin: auto;

  overflow: hidden;

  background: white;

  border-radius: 8px;

  box-shadow:
    0 60px 130px rgba(0,0,0,0.65);

  z-index: 2;

}


.reference-browser-bar {

  position: relative;

  height: 45px;

  display: flex;
  align-items: center;

  background: #ededed;

  border-bottom: 1px solid #d2d2d2;

}


.reference-browser-dots {

  position: absolute;

  left: 16px;

  display: flex;

  gap: 7px;

}


.reference-browser-dots span {

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #aaa;

}


.reference-browser-address {

  position: absolute;

  left: 50%;

  width: min(45%, 350px);

  padding: 6px 12px;

  transform: translateX(-50%);

  background: #dedede;

  border-radius: 5px;

  color: #777;

  text-align: center;

  font-size: 0.58rem;

}


.reference-browser-screen {

  width: 100%;

  aspect-ratio: 16 / 9;

  overflow: hidden;

  background: #ddd;

}


.reference-browser-screen img {

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: top center;

  transition:
    transform 1.2s
    cubic-bezier(0.22, 1, 0.36, 1);

}


.reference-browser:hover
.reference-browser-screen img {

  transform: scale(1.025);

}


/* =========================================================
   REFERENZ BESCHREIBUNG
========================================================= */

.reference-description {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 120px;

  padding: 140px 0;

}


.reference-small-title {

  margin-bottom: 35px;

  color: #555;

  font-size: 0.62rem;

  letter-spacing: 0.25em;

}


.reference-description h3 {

  max-width: 650px;

  font-size: clamp(3rem, 5vw, 5.5rem);

  font-weight: 400;

  line-height: 0.94;

  letter-spacing: -0.05em;

}


.reference-description h3 span {

  display: block;

  color: #666;

}


.reference-description-text {

  max-width: 520px;

}


.reference-description-text p {

  margin-bottom: 25px;

  color: var(--grey);

  font-size: 0.95rem;

  line-height: 1.85;

}


.reference-description-text .reference-lead {

  color: #d0d0d0;

  font-size: 1.15rem;

}


/* =========================================================
   REFERENZ LEISTUNGEN
========================================================= */

.reference-services {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 120px;

  padding-top: 60px;

  border-top: 1px solid var(--border);

}


.reference-services-title p {

  color: #555;

  font-size: 0.62rem;

  letter-spacing: 0.25em;

}


.reference-services-list {

  border-top: 1px solid var(--border);

}


.reference-services-list div {

  display: grid;

  grid-template-columns: 60px 1fr;

  gap: 20px;

  padding: 20px 0;

  border-bottom: 1px solid var(--border);

}


.reference-services-list span {

  color: #555;

  font-size: 0.65rem;

}


.reference-services-list p {

  color: #aaa;

  font-size: 0.88rem;

}


/* =========================================================
   REFERENZ MORE
========================================================= */

.reference-more {

  padding: 160px 0;

  background: var(--black);

  border-top: 1px solid var(--border);

}


.reference-more-grid {

  display: grid;

  grid-template-columns: 1.2fr 0.8fr;

  gap: 120px;

  align-items: end;

}


.reference-more h2 {

  max-width: 800px;

  font-size: clamp(3.5rem, 6vw, 6.5rem);

  font-weight: 400;

  line-height: 0.93;

  letter-spacing: -0.055em;

}


.reference-more h2 span {

  display: block;

  color: #666;

}


.reference-more-grid > div {

  max-width: 450px;

}


.reference-more-grid p {

  margin-bottom: 40px;

  color: var(--grey);

  font-size: 0.95rem;

  line-height: 1.8;

}


/* =========================================================
   19 — ABLAUF HERO
========================================================= */

.process-page-hero {

  position: relative;

  min-height: 90vh;

  padding-top: 160px;

  display: flex;
  align-items: center;

  overflow: hidden;

  background: var(--black);

  border-bottom: 1px solid var(--border);

}


.process-page-hero-content {

  position: relative;

  z-index: 2;

}


.process-page-hero h1 {

  max-width: 1250px;

  font-size: clamp(4rem, 8vw, 8.5rem);

  font-weight: 400;

  line-height: 0.9;

  letter-spacing: -0.065em;

}


.process-page-hero h1 span {

  display: block;

  color: #666;

}


.process-page-intro {

  max-width: 720px;

  margin-top: 70px;
  margin-left: auto;

  display: grid;

  grid-template-columns: 0.7fr 1.3fr;

  gap: 60px;

}


.process-page-intro p {

  color: var(--grey);

  font-size: 0.95rem;

  line-height: 1.8;

}


.process-page-intro p:first-child {

  color: #606060;

  font-size: 0.62rem;

  letter-spacing: 0.25em;

}


/* =========================================================
   20 — ABLAUF INTRO
========================================================= */

.process-page-start {

  padding: 170px 0;

  background: var(--black-soft);

  border-bottom: 1px solid var(--border);

}


.process-page-start-grid {

  display: grid;

  grid-template-columns: 1.1fr 0.9fr;

  gap: 120px;

  align-items: end;

}


.process-page-start h2 {

  max-width: 800px;

  font-size: clamp(3.5rem, 6vw, 6.5rem);

  font-weight: 400;

  line-height: 0.93;

  letter-spacing: -0.055em;

}


.process-page-start h2 span {

  display: block;

  color: #626262;

}


.process-page-start-grid > div {

  max-width: 520px;

}


.process-page-start-grid p {

  margin-top: 25px;

  color: var(--grey);

  font-size: 0.95rem;

  line-height: 1.85;

}


.process-page-start-grid .process-page-lead {

  color: #d0d0d0;

  font-size: 1.15rem;

}


/* =========================================================
   21 — ABLAUF SCHRITTE
========================================================= */

.process-step {

  padding: 145px 0;

  background: var(--black);

  border-top: 1px solid var(--border);

}


.process-step-alt {

  background: var(--black-soft);

}


.process-step-number {

  margin-bottom: 65px;

  color: #505050;

  font-size: 0.75rem;

  letter-spacing: 0.2em;

}


.process-step-grid {

  display: grid;

  grid-template-columns: 1.1fr 0.9fr;

  gap: 120px;

}


.process-step-title > p {

  margin-bottom: 30px;

  color: #626262;

  font-size: 0.62rem;

  letter-spacing: 0.28em;

}


.process-step-title h2 {

  max-width: 750px;

  font-size: clamp(3.3rem, 5.5vw, 6rem);

  font-weight: 400;

  line-height: 0.93;

  letter-spacing: -0.055em;

}


.process-step-title h2 span {

  display: block;

  color: #626262;

}


.process-step-content {

  max-width: 530px;

}


.process-step-content > p {

  margin-bottom: 25px;

  color: var(--grey);

  font-size: 0.95rem;

  line-height: 1.85;

}


.process-step-content .process-step-lead {

  color: #d0d0d0;

  font-size: 1.15rem;

  line-height: 1.7;

}


/* =========================================================
   ABLAUF CHECKLIST
========================================================= */

.process-checklist {

  margin-top: 55px;

  border-top: 1px solid var(--border);

}


.process-checklist > div {

  display: grid;

  grid-template-columns: 55px 1fr;

  gap: 20px;

  padding: 19px 0;

  border-bottom: 1px solid var(--border);

}


.process-checklist span {

  color: #505050;

  font-size: 0.63rem;

}


.process-checklist p {

  color: #aaa;

  font-size: 0.86rem;

}


/* =========================================================
   22 — ABLAUF ÜBERSICHT
========================================================= */

.process-overview {

  padding: 160px 0;

  background: var(--dark);

  border-top: 1px solid var(--border);

}


.process-overview-title {

  margin-bottom: 80px;

}


.process-overview-title h2 {

  max-width: 900px;

  font-size: clamp(3.5rem, 6vw, 6.5rem);

  font-weight: 400;

  line-height: 0.93;

  letter-spacing: -0.055em;

}


.process-overview-title h2 span {

  display: block;

  color: #626262;

}


.process-overview-grid {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);

}


.process-overview-grid a {

  min-height: 220px;

  padding: 35px;

  display: flex;

  flex-direction: column;
  justify-content: space-between;

  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);

  transition:
    background 0.3s ease,
    padding 0.3s ease;

}


.process-overview-grid a:hover {

  padding-left: 45px;

  background: rgba(255, 255, 255, 0.04);

}


.process-overview-grid span {

  color: #555;

  font-size: 0.65rem;

}


.process-overview-grid p {

  color: #c5c5c5;

  font-size: 1.3rem;

}


/* =========================================================
   23 — TABLET
========================================================= */

@media (max-width: 1000px) {

  .navigation {
    display: none;
  }


  .intro-grid,
  .services-intro-grid,
  .service-detail-grid,
  .process-page-start-grid,
  .process-step-grid,
  .reference-description,
  .reference-services,
  .reference-more-grid {

    grid-template-columns: 1fr;

    gap: 60px;

  }


  .subpage-intro,
  .process-page-intro {

    margin-left: 0;

  }


  .service-item {

    grid-template-columns:
      50px
      1fr
      40px;

  }


  .service-item p {
    display: none;
  }


  .process-grid {

    grid-template-columns:
      repeat(2, 1fr);

  }


  .process-item {

    border-bottom: 1px solid var(--border);

  }


  .additional-grid {

    grid-template-columns:
      repeat(2, 1fr);


  }


  .reference-project-head {

    flex-direction: column;

    align-items: flex-start;

  }


  .reference-meta {

    width: 100%;

  }


  .process-overview-grid {

    grid-template-columns:
      repeat(2, 1fr);

  }


  .footer-main {

    flex-direction: column;

  }

}


/* =========================================================
   24 — MOBILE
========================================================= */

@media (max-width: 650px) {

  html {

    scroll-padding-top: 75px;

  }


  .header-inner {

    height: 74px;

  }


  .brand-logo {

    width: 135px;
    height: 48px;

  }


  .brand-name {

    font-size: 0.63rem;

  }


  .header-button {

    display: none;

  }


  .hero {

    min-height: 100svh;

  }


  .hero-content {

    margin-top: 90px;

  }


  .eyebrow {

    font-size: 0.55rem;

    line-height: 1.7;

  }


  .hero h1,
  .subpage-hero h1,
  .reference-hero h1,
  .process-page-hero h1 {

    font-size:
      clamp(
        3.1rem,
        14vw,
        5rem
      );

  }


  .hero-text {

    font-size: 0.95rem;

  }


  .hero-buttons {

    flex-direction: column;

    max-width: 290px;

    margin-left: auto;
    margin-right: auto;

  }


  .button-primary,
  .button-secondary {

    width: 100%;

  }


  .intro,
  .services,
  .projects,
  .process,
  .services-intro,
  .additional-services,
  .reference-project,
  .reference-more,
  .process-page-start,
  .process-overview {

    padding: 100px 0;

  }


  .section-heading {

    align-items: flex-start;

    flex-direction: column;

    margin-bottom: 50px;

  }


  .service-item {

    min-height: 110px;

  }


  .project-preview,
  .reference-showcase {

    padding: 25px 10px;

  }


  .browser,
  .reference-browser {

    border-radius: 5px;

  }


  .browser-bar,
  .reference-browser-bar {

    height: 32px;

  }


  .browser-address,
  .reference-browser-address {

    padding: 4px 8px;

    font-size: 0.48rem;

  }


  .browser-dots span,
  .reference-browser-dots span {

    width: 6px;
    height: 6px;

  }


  .browser-content,
  .reference-browser-screen {

    aspect-ratio: 4 / 3;

  }


  .project-info {

    align-items: flex-start;

    flex-direction: column;

  }


  .process-grid {

    grid-template-columns: 1fr;

  }


  .process-item {

    min-height: auto;

    padding: 35px 25px;

  }


  .process-item > span {

    margin-bottom: 60px;

  }


  .subpage-hero,
  .reference-hero,
  .process-page-hero {

    min-height: 90svh;

    padding-top: 120px;

  }


  .subpage-intro,
  .reference-hero-bottom,
  .process-page-intro {

    grid-template-columns: 1fr;

    gap: 15px;

    margin-top: 45px;
    margin-left: 0;

  }


  .service-detail {

    padding: 90px 0;

  }


  .service-detail-header {

    margin-bottom: 55px;

  }


  .service-detail-grid,
  .process-step-grid {

    gap: 45px;

  }


  .service-detail-content .service-lead,
  .process-step-content .process-step-lead {

    font-size: 1.05rem;

  }


  .additional-grid {

    grid-template-columns: 1fr;

  }


  .additional-grid article {

    min-height: auto;

  }


  .additional-grid article > span {

    margin-bottom: 70px;

  }


  .reference-project-head {

    margin-bottom: 55px;

  }


  .reference-description {

    padding: 90px 0;

  }


  .reference-services {

    padding-top: 40px;

  }


  .process-step {

    padding: 90px 0;

  }


  .process-step-number {

    margin-bottom: 45px;

  }


  .process-overview-grid {

    grid-template-columns: 1fr;

  }


  .process-overview-grid a {

    min-height: 160px;

  }


  .cta {

    padding: 130px 0;

  }


  .footer-navigation {

    flex-direction: column;

    gap: 50px;

  }


  .footer-bottom {

    flex-direction: column;

    gap: 15px;

  }

}
/* =========================================================
   REFERENZ — DESKTOP + SMARTPHONE
========================================================= */

.reference-devices {

  position: relative;

  width: 100%;
  max-width: 1200px;

  margin: 0 auto;

  padding-right: 120px;

}


/* Desktop etwas nach links */

.reference-devices .reference-browser {

  width: 100%;

  margin: 0;

}


/* =========================================================
   SMARTPHONE
========================================================= */

.reference-phone {

  position: absolute;

  right: 0;
  bottom: -45px;

  width: clamp(170px, 18vw, 245px);

  z-index: 5;

  filter:
    drop-shadow(
      0 35px 45px
      rgba(0, 0, 0, 0.65)
    );

}


.reference-phone-frame {

  position: relative;

  width: 100%;

  padding: 9px;

  overflow: hidden;

  background:
    linear-gradient(
      145deg,
      #444,
      #111 35%,
      #292929 70%,
      #090909
    );

  border:
    1px solid
    rgba(255, 255, 255, 0.25);

  border-radius: 34px;

  box-shadow:

    inset 0 0 0 1px
    rgba(255, 255, 255, 0.05),

    0 25px 70px
    rgba(0, 0, 0, 0.6);

}


/* =========================================================
   PHONE SCREEN
========================================================= */

.reference-phone-screen {

  position: relative;

  width: 100%;

  aspect-ratio: 9 / 19.5;

  overflow: hidden;

  background: #111;

  border-radius: 27px;

}


.reference-phone-screen img {

  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: top center;

}


/* =========================================================
   PHONE SPEAKER / DYNAMIC ISLAND
========================================================= */

.reference-phone-speaker {

  position: absolute;

  top: 17px;
  left: 50%;

  width: 34%;
  height: 18px;

  transform:
    translateX(-50%);

  background: #050505;

  border-radius: 20px;

  z-index: 10;

}


/* =========================================================
   HOME INDICATOR
========================================================= */

.reference-phone-home {

  position: absolute;

  left: 50%;
  bottom: 15px;

  width: 35%;
  height: 4px;

  transform:
    translateX(-50%);

  background:
    rgba(
      255,
      255,
      255,
      0.75
    );

  border-radius: 10px;

  z-index: 10;

}


/* =========================================================
   HOVER
========================================================= */

.reference-phone {

  transition:
    transform
    0.6s
    cubic-bezier(
      0.22,
      1,
      0.36,
      1
    );

}


.reference-phone:hover {

  transform:
    translateY(-12px)
    rotate(-1deg);

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

  .reference-devices {

    padding-right: 70px;

  }


  .reference-phone {

    width: 180px;

  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

  .reference-devices {

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 40px;

    padding-right: 0;

  }


  .reference-devices
  .reference-browser {

    width: 100%;

  }


  .reference-phone {

    position: relative;

    right: auto;
    bottom: auto;

    width: 190px;

  }

}
/* =========================================================
   25 — ÜBER UNS
========================================================= */


/* =========================================================
   HERO
========================================================= */

.about-hero {

  position: relative;

  min-height: 90vh;

  padding-top: 160px;

  display: flex;
  align-items: center;

  overflow: hidden;

  background: var(--black);

  border-bottom: 1px solid var(--border);

}


.about-hero::before {

  content: "";

  position: absolute;

  inset: 0;

  background:

    linear-gradient(
      rgba(255,255,255,0.016) 1px,
      transparent 1px
    ),

    linear-gradient(
      90deg,
      rgba(255,255,255,0.016) 1px,
      transparent 1px
    );

  background-size: 80px 80px;

  mask-image:
    linear-gradient(
      to bottom,
      black,
      transparent 95%
    );

  -webkit-mask-image:
    linear-gradient(
      to bottom,
      black,
      transparent 95%
    );

}


.about-hero-content {

  position: relative;

  z-index: 2;

}


.about-hero h1 {

  max-width: 1250px;

  font-size:
    clamp(
      4rem,
      8vw,
      8.5rem
    );

  font-weight: 400;

  line-height: 0.9;

  letter-spacing: -0.065em;

}


.about-hero h1 span {

  display: block;

  color: #666;

}


.about-hero-intro {

  max-width: 720px;

  margin-top: 70px;
  margin-left: auto;

  display: grid;

  grid-template-columns:
    0.7fr
    1.3fr;

  gap: 60px;

}


.about-hero-intro p {

  color: var(--grey);

  font-size: 0.95rem;

  line-height: 1.8;

}


.about-hero-intro p:first-child {

  color: #606060;

  font-size: 0.62rem;

  letter-spacing: 0.25em;

}


/* =========================================================
   INTRO
========================================================= */

.about-intro {

  padding: 170px 0;

  background: var(--black-soft);

  border-bottom: 1px solid var(--border);

}


.about-intro-grid {

  display: grid;

  grid-template-columns:
    1.1fr
    0.9fr;

  gap: 120px;

  align-items: end;

}


.about-intro h2 {

  max-width: 800px;

  font-size:
    clamp(
      3.5rem,
      6vw,
      6.5rem
    );

  font-weight: 400;

  line-height: 0.93;

  letter-spacing: -0.055em;

}


.about-intro h2 span {

  display: block;

  color: #626262;

}


.about-intro-text {

  max-width: 520px;

}


.about-intro-text p {

  margin-top: 25px;

  color: var(--grey);

  font-size: 0.95rem;

  line-height: 1.85;

}


.about-intro-text .about-lead {

  color: #d0d0d0;

  font-size: 1.15rem;

}


/* =========================================================
   TEAM
========================================================= */

.about-team {

  padding: 160px 0;

  background: var(--black);

}


.about-team-heading {

  margin-bottom: 80px;

}


.about-team-heading h2 {

  max-width: 900px;

  font-size:
    clamp(
      3.5rem,
      6vw,
      6.5rem
    );

  font-weight: 400;

  line-height: 0.93;

  letter-spacing: -0.055em;

}


.about-team-heading h2 span {

  display: block;

  color: #626262;

}


.about-team-grid {

  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 30px;

}


/* =========================================================
   TEAM MEMBER
========================================================= */

.team-member {

  border-top: 1px solid var(--border);

}


.team-image {

  position: relative;

  width: 100%;

  aspect-ratio: 4 / 5;

  overflow: hidden;

  background: var(--dark);

}


.team-image img {

  width: 100%;
  height: 100%;

  object-fit: cover;

  filter: grayscale(100%);

  transition:
    filter 0.5s ease,
    transform 0.7s ease;

}


.team-member:hover
.team-image img {

  filter: grayscale(20%);

  transform: scale(1.025);

}


/* Placeholder solange keine Fotos vorhanden */

.team-image-placeholder {

  width: 100%;
  height: 100%;

  display: flex;

  align-items: center;
  justify-content: center;

  background:

    radial-gradient(
      circle at 50% 40%,
      #272727,
      #151515 55%,
      #0d0d0d
    );

}


.team-image-placeholder span {

  color: #2d2d2d;

  font-size:
    clamp(
      6rem,
      15vw,
      13rem
    );

  font-weight: 800;

  letter-spacing: -0.12em;

}


/* =========================================================
   TEAM INFO
========================================================= */

.team-member-info {

  display: grid;

  grid-template-columns:
    1fr
    0.8fr;

  gap: 40px;

  padding: 35px 0;

  border-bottom: 1px solid var(--border);

}


.team-number {

  margin-bottom: 15px;

  color: #555;

  font-size: 0.62rem;

}


.team-member-info h3 {

  font-size: 1.45rem;

  font-weight: 400;

}


.team-member-info > p {

  color: var(--grey);

  font-size: 0.85rem;

  line-height: 1.75;

}


/* =========================================================
   PHILOSOPHIE
========================================================= */

.about-philosophy {

  padding: 170px 0;

  background: var(--black-soft);

  border-top: 1px solid var(--border);

}


.about-philosophy-grid {

  display: grid;

  grid-template-columns:
    1.1fr
    0.9fr;

  gap: 120px;

}


.about-philosophy h2 {

  max-width: 800px;

  font-size:
    clamp(
      3.5rem,
      6vw,
      6.5rem
    );

  font-weight: 400;

  line-height: 0.93;

  letter-spacing: -0.055em;

}


.about-philosophy h2 span {

  display: block;

  color: #626262;

}


.about-philosophy-text {

  max-width: 520px;

}


.about-philosophy-text p {

  margin-bottom: 25px;

  color: var(--grey);

  font-size: 0.95rem;

  line-height: 1.85;

}


.about-philosophy-text .about-lead {

  color: #d0d0d0;

  font-size: 1.15rem;

}


/* =========================================================
   VALUES
========================================================= */

.about-values {

  padding: 0 0 160px;

  background: var(--black-soft);

}


.about-values-grid {

  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);

}


.about-values article {

  min-height: 320px;

  padding: 35px;

  display: flex;

  flex-direction: column;
  justify-content: space-between;

  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);

  transition:
    background 0.3s ease;

}


.about-values article:hover {

  background:
    rgba(
      255,
      255,
      255,
      0.035
    );

}


.about-values article > span {

  color: #555;

  font-size: 0.65rem;

}


.about-values h3 {

  margin-bottom: 18px;

  font-size: 1.4rem;

  font-weight: 400;

}


.about-values p {

  color: #888;

  font-size: 0.84rem;

  line-height: 1.75;

}


/* =========================================================
   STATEMENT
========================================================= */

.about-statement {

  padding: 190px 0;

  background: var(--black);

  border-top: 1px solid var(--border);

}


.about-statement-small {

  margin-bottom: 50px;

  color: #555;

  font-size: 0.62rem;

  letter-spacing: 0.28em;

}


.about-statement-text {

  max-width: 1150px;

  font-size:
    clamp(
      3.5rem,
      7vw,
      7.5rem
    );

  font-weight: 400;

  line-height: 0.93;

  letter-spacing: -0.06em;

}


.about-statement-text span {

  display: block;

  color: #626262;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

  .about-intro-grid,
  .about-philosophy-grid {

    grid-template-columns: 1fr;

    gap: 60px;

  }


  .about-values-grid {

    grid-template-columns:
      repeat(2, 1fr);

  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

  .about-hero {

    min-height: 90svh;

    padding-top: 120px;

  }


  .about-hero h1 {

    font-size:
      clamp(
        3.1rem,
        14vw,
        5rem
      );

  }


  .about-hero-intro {

    grid-template-columns: 1fr;

    gap: 15px;

    margin-top: 45px;
    margin-left: 0;

  }


  .about-intro,
  .about-team,
  .about-philosophy {

    padding: 100px 0;

  }


  .about-team-grid {

    grid-template-columns: 1fr;

    gap: 70px;

  }


  .team-member-info {

    grid-template-columns: 1fr;

    gap: 20px;

  }


  .about-values {

    padding-bottom: 100px;

  }


  .about-values-grid {

    grid-template-columns: 1fr;

  }


  .about-values article {

    min-height: 230px;

  }


  .about-statement {

    padding: 120px 0;

  }

}
/* =========================================================
   26 — KONTAKT
========================================================= */


/* =========================================================
   HERO
========================================================= */

.contact-hero {

  position: relative;

  min-height: 90vh;

  padding-top: 160px;

  display: flex;
  align-items: center;

  overflow: hidden;

  background: var(--black);

  border-bottom: 1px solid var(--border);

}


.contact-hero::before {

  content: "";

  position: absolute;

  inset: 0;

  background:

    linear-gradient(
      rgba(255,255,255,0.016) 1px,
      transparent 1px
    ),

    linear-gradient(
      90deg,
      rgba(255,255,255,0.016) 1px,
      transparent 1px
    );

  background-size: 80px 80px;

  mask-image:
    linear-gradient(
      to bottom,
      black,
      transparent 95%
    );

  -webkit-mask-image:
    linear-gradient(
      to bottom,
      black,
      transparent 95%
    );

}


.contact-hero-content {

  position: relative;

  z-index: 2;

}


.contact-hero h1 {

  max-width: 1250px;

  font-size:
    clamp(
      4rem,
      8vw,
      8.5rem
    );

  font-weight: 400;

  line-height: 0.9;

  letter-spacing: -0.065em;

}


.contact-hero h1 span {

  display: block;

  color: #666;

}


.contact-hero-intro {

  max-width: 720px;

  margin-top: 70px;
  margin-left: auto;

  display: grid;

  grid-template-columns:
    0.7fr 1.3fr;

  gap: 60px;

}


.contact-hero-intro p {

  color: var(--grey);

  font-size: 0.95rem;

  line-height: 1.8;

}


.contact-hero-intro p:first-child {

  color: #606060;

  font-size: 0.62rem;

  letter-spacing: 0.25em;

}


/* =========================================================
   MAIN CONTACT
========================================================= */

.contact-main {

  padding: 170px 0;

  background: var(--black-soft);

  border-bottom: 1px solid var(--border);

}


.contact-grid {

  display: grid;

  grid-template-columns:
    0.9fr 1.1fr;

  gap: 140px;

  align-items: start;

}


/* =========================================================
   CONTACT INFO
========================================================= */

.contact-info {

  position: sticky;

  top: 140px;

}


.contact-info h2 {

  max-width: 650px;

  font-size:
    clamp(
      3.5rem,
      5.5vw,
      6rem
    );

  font-weight: 400;

  line-height: 0.93;

  letter-spacing: -0.055em;

}


.contact-info h2 span {

  display: block;

  color: #626262;

}


.contact-info-text {

  max-width: 480px;

  margin: 40px 0 70px;

  color: var(--grey);

  font-size: 0.95rem;

  line-height: 1.85;

}


/* =========================================================
   CONTACT DETAILS
========================================================= */

.contact-detail {

  display: grid;

  grid-template-columns:
    110px 1fr;

  gap: 25px;

  max-width: 520px;

  padding: 22px 0;

  border-top: 1px solid var(--border);

}


.contact-detail:last-child {

  border-bottom: 1px solid var(--border);

}


.contact-detail > span {

  color: #555;

  font-size: 0.58rem;

  letter-spacing: 0.2em;

}


.contact-detail p,
.contact-detail a {

  color: #aaa;

  font-size: 0.86rem;

}


.contact-detail a {

  transition: color 0.25s ease;

}


.contact-detail a:hover {

  color: var(--white);

}


/* =========================================================
   FORM
========================================================= */

.contact-form-wrapper {

  padding: 55px;

  background: var(--dark);

  border: 1px solid var(--border);

}


.contact-form {

  width: 100%;

}


.form-group {

  margin-bottom: 42px;

}


.form-group label {

  display: flex;

  justify-content: space-between;

  margin-bottom: 13px;


  color: #777;

  font-size: 0.59rem;

  letter-spacing: 0.19em;

}


.form-group label span {

  color: #444;

  font-size: 0.52rem;

}


/* =========================================================
   INPUTS
========================================================= */

.form-group input,
.form-group select,
.form-group textarea {

  width: 100%;

  padding: 15px 0;

  background: transparent;

  border: none;
  border-bottom: 1px solid #383838;

  border-radius: 0;

  outline: none;

  color: var(--white);

  font-size: 1rem;

  transition:
    border-color 0.3s ease;

}


.form-group input::placeholder,
.form-group textarea::placeholder {

  color: #555;

}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

  border-color: #aaa;

}


.form-group textarea {

  min-height: 160px;

  resize: vertical;

  line-height: 1.7;

}


.form-group select {

  cursor: pointer;

}


.form-group select option {

  background: #151515;

  color: var(--white);

}


/* =========================================================
   PRIVACY CHECKBOX
========================================================= */

.form-checkbox {

  display: flex;

  align-items: flex-start;

  gap: 14px;

  margin:
    15px 0
    40px;

}


.form-checkbox input {

  width: 16px;
  height: 16px;

  margin-top: 4px;

  accent-color: #d0d0d0;

}


.form-checkbox label {

  max-width: 540px;

  color: #777;

  font-size: 0.75rem;

  line-height: 1.7;

}


.form-checkbox a {

  color: #bbb;

  border-bottom:
    1px solid
    #555;

  transition:
    color 0.25s ease;

}


.form-checkbox a:hover {

  color: var(--white);

}


/* =========================================================
   SUBMIT
========================================================= */

.contact-submit {

  width: 100%;

  padding: 20px 24px;

  display: flex;

  justify-content: space-between;
  align-items: center;

  background: var(--white);

  border: none;

  color: var(--black);

  cursor: pointer;

  font-size: 0.8rem;

  transition:
    background 0.3s ease,
    transform 0.3s ease;

}


.contact-submit:hover {

  background: #d7d7d7;

  transform: translateY(-3px);

}


.contact-submit span:last-child {

  font-size: 1.2rem;

}


/* =========================================================
   NEXT STEPS
========================================================= */

.contact-next {

  padding: 160px 0;

  background: var(--black);

}


.contact-next-heading {

  margin-bottom: 80px;

}


.contact-next-heading h2 {

  max-width: 850px;

  font-size:
    clamp(
      3.5rem,
      6vw,
      6.5rem
    );

  font-weight: 400;

  line-height: 0.93;

  letter-spacing: -0.055em;

}


.contact-next-heading h2 span {

  display: block;

  color: #626262;

}


.contact-next-grid {

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);

}


.contact-next-grid article {

  min-height: 330px;

  padding: 35px;

  display: flex;

  flex-direction: column;
  justify-content: space-between;

  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);

  transition:
    background 0.3s ease;

}


.contact-next-grid article:hover {

  background:
    rgba(
      255,
      255,
      255,
      0.03
    );

}


.contact-next-grid article > span {

  color: #555;

  font-size: 0.65rem;

}


.contact-next-grid h3 {

  max-width: 300px;

  margin-bottom: 20px;

  font-size: 1.35rem;

  font-weight: 400;

  line-height: 1.3;

}


.contact-next-grid p {

  max-width: 320px;

  color: #888;

  font-size: 0.84rem;

  line-height: 1.75;

}


/* =========================================================
   DIRECT CONTACT
========================================================= */

.contact-direct {

  padding: 180px 0;

  background: var(--black-soft);

  border-top: 1px solid var(--border);

}


.contact-direct > div {

  text-align: center;

}


.contact-direct > div > p {

  margin-bottom: 45px;

  color: #555;

  font-size: 0.62rem;

  letter-spacing: 0.28em;

}


.contact-direct h2 {

  max-width: 950px;

  margin: 0 auto 55px;

  font-size:
    clamp(
      3.5rem,
      7vw,
      7rem
    );

  font-weight: 400;

  line-height: 0.93;

  letter-spacing: -0.055em;

}


.contact-direct h2 span {

  display: block;

  color: #626262;

}


.contact-direct > div > a {

  display: inline-flex;

  align-items: center;

  gap: 25px;

  padding-bottom: 8px;

  border-bottom: 1px solid #555;

  color: #bdbdbd;

  font-size:
    clamp(
      1rem,
      2vw,
      1.4rem
    );

  transition:
    color 0.3s ease,
    border-color 0.3s ease;

}


.contact-direct > div > a:hover {

  color: var(--white);

  border-color: var(--white);

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

  .contact-grid {

    grid-template-columns: 1fr;

    gap: 80px;

  }


  .contact-info {

    position: static;

  }


  .contact-next-grid {

    grid-template-columns:
      repeat(2, 1fr);

  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

  .contact-hero {

    min-height: 90svh;

    padding-top: 120px;

  }


  .contact-hero h1 {

    font-size:
      clamp(
        3.1rem,
        14vw,
        5rem
      );

  }


  .contact-hero-intro {

    grid-template-columns: 1fr;

    gap: 15px;

    margin-top: 45px;
    margin-left: 0;

  }


  .contact-main,
  .contact-next {

    padding: 100px 0;

  }


  .contact-info-text {

    margin-bottom: 50px;

  }


  .contact-detail {

    grid-template-columns: 1fr;

    gap: 10px;

  }


  .contact-form-wrapper {

    padding: 30px 22px;

  }


  .form-group {

    margin-bottom: 35px;

  }


  .contact-next-grid {

    grid-template-columns: 1fr;

  }


  .contact-next-grid article {

    min-height: 250px;

  }


  .contact-direct {

    padding: 120px 0;

  }

}
/* =========================================================
   27 — WEBSITE KALKULATOR
========================================================= */


/* =========================================================
   HERO
========================================================= */

.calculator-hero {

  position: relative;

  min-height: 90vh;

  padding-top: 160px;

  display: flex;
  align-items: center;

  overflow: hidden;

  background: var(--black);

  border-bottom:
    1px solid var(--border);

}


.calculator-hero::before {

  content: "";

  position: absolute;

  inset: 0;

  background:

    linear-gradient(
      rgba(255,255,255,0.016) 1px,
      transparent 1px
    ),

    linear-gradient(
      90deg,
      rgba(255,255,255,0.016) 1px,
      transparent 1px
    );

  background-size:
    80px 80px;

  mask-image:
    linear-gradient(
      to bottom,
      black,
      transparent 95%
    );

  -webkit-mask-image:
    linear-gradient(
      to bottom,
      black,
      transparent 95%
    );

}


.calculator-hero-content {

  position: relative;

  z-index: 2;

}


.calculator-hero h1 {

  max-width: 1250px;

  font-size:
    clamp(
      4rem,
      8vw,
      8.5rem
    );

  font-weight: 400;

  line-height: 0.9;

  letter-spacing: -0.065em;

}


.calculator-hero h1 span {

  display: block;

  color: #666;

}


.calculator-hero-intro {

  max-width: 720px;

  margin-top: 70px;
  margin-left: auto;

  display: grid;

  grid-template-columns:
    0.7fr 1.3fr;

  gap: 60px;

}


.calculator-hero-intro p {

  color: var(--grey);

  font-size: 0.95rem;

  line-height: 1.8;

}


.calculator-hero-intro p:first-child {

  color: #606060;

  font-size: 0.62rem;

  letter-spacing: 0.25em;

}



/* =========================================================
   CALCULATOR MAIN
========================================================= */

.calculator {

  padding: 160px 0;

  background: var(--black-soft);

}


.calculator-layout {

  display: grid;

  grid-template-columns:
    minmax(0, 1.45fr)
    minmax(330px, 0.55fr);

  gap: 80px;

  align-items: start;

}



/* =========================================================
   SECTIONS
========================================================= */

.calculator-section {

  padding:
    0 0 100px;

  margin-bottom: 100px;

  border-bottom:
    1px solid var(--border);

}


.calculator-section-head {

  display: grid;

  grid-template-columns:
    60px 1fr;

  gap: 25px;

  margin-bottom: 50px;

}


.calculator-section-head > span {

  color: #555;

  font-size: 0.65rem;

}


.calculator-section-head p {

  margin-bottom: 16px;

  color: #555;

  font-size: 0.6rem;

  letter-spacing: 0.25em;

}


.calculator-section-head h2 {

  max-width: 750px;

  font-size:
    clamp(
      2.3rem,
      4vw,
      4.3rem
    );

  font-weight: 400;

  line-height: 1;

  letter-spacing: -0.045em;

}



/* =========================================================
   CHOICE CARDS
========================================================= */

.calculator-choice-grid {

  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 12px;

}


.calculator-choice-grid-three {

  grid-template-columns:
    repeat(3, 1fr);

}


.calculator-choice {

  position: relative;

  cursor: pointer;

}


.calculator-choice input {

  position: absolute;

  opacity: 0;

  pointer-events: none;

}


.calculator-choice-box {

  min-height: 180px;

  padding: 28px;

  display: flex;

  flex-direction: column;

  background: var(--dark);

  border:
    1px solid var(--border);

  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;

}


.calculator-choice:hover
.calculator-choice-box {

  background: var(--dark-light);

  border-color:
    rgba(255,255,255,0.2);

  transform:
    translateY(-3px);

}


.calculator-choice input:checked
+ .calculator-choice-box {

  background: #202020;

  border-color:
    rgba(255,255,255,0.55);

}


.calculator-choice input:checked
+ .calculator-choice-box::before {

  content: "✓";

  position: absolute;

  top: 20px;
  right: 22px;

  color: var(--white);

  font-size: 0.8rem;

}


.calculator-choice-box strong {

  max-width: 85%;

  color: #ddd;

  font-size: 1.05rem;

  font-weight: 400;

}


.calculator-choice-box small {

  max-width: 250px;

  margin-top: 12px;

  color: #777;

  font-size: 0.76rem;

  line-height: 1.6;

}


.calculator-choice-box b {

  margin-top: auto;
  padding-top: 25px;

  color: #aaa;

  font-size: 0.75rem;

  font-weight: 400;

}



/* =========================================================
   EXTRA PAGE COUNTER
========================================================= */

.calculator-counter {

  margin-top: 12px;

  padding: 25px 28px;

  display: flex;

  justify-content: space-between;
  align-items: center;

  gap: 30px;

  background: var(--dark);

  border:
    1px solid var(--border);

}


.calculator-counter strong {

  display: block;

  margin-bottom: 5px;

  color: #ccc;

  font-size: 0.9rem;

  font-weight: 400;

}


.calculator-counter p {

  color: #666;

  font-size: 0.72rem;

}


.counter-controls {

  display: flex;

  align-items: center;

  border:
    1px solid var(--border);

}


.counter-controls button {

  width: 45px;
  height: 45px;

  background: transparent;

  border: none;

  color: #aaa;

  cursor: pointer;

  font-size: 1.3rem;

  transition:
    background 0.2s ease,
    color 0.2s ease;

}


.counter-controls button:hover {

  background:
    rgba(255,255,255,0.06);

  color: white;

}


.counter-controls span {

  width: 50px;

  text-align: center;

  color: white;

  font-size: 0.9rem;

}



/* =========================================================
   ADDONS
========================================================= */

.calculator-addon-grid {

  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  border-top:
    1px solid var(--border);

  border-left:
    1px solid var(--border);

}


.calculator-addon {

  min-height: 95px;

  padding: 24px;

  display: grid;

  grid-template-columns:
    22px 1fr auto;

  gap: 14px;

  align-items: center;

  border-right:
    1px solid var(--border);

  border-bottom:
    1px solid var(--border);

  cursor: pointer;

  transition:
    background 0.25s ease;

}


.calculator-addon:hover {

  background:
    rgba(255,255,255,0.03);

}


.calculator-addon input {

  width: 16px;
  height: 16px;

  accent-color: #ddd;

}


.calculator-addon span {

  color: #aaa;

  font-size: 0.82rem;

}


.calculator-addon b {

  color: #666;

  font-size: 0.68rem;

  font-weight: 400;

}



/* =========================================================
   RESULT CARD
========================================================= */

.calculator-result {

  position: sticky;

  top: 125px;

  padding: 42px;

  background: var(--black);

  border:
    1px solid var(--border);

  box-shadow:
    0 30px 80px
    rgba(0,0,0,0.3);

}


.calculator-result-label {

  margin-bottom: 25px;

  color: #555;

  font-size: 0.58rem;

  letter-spacing: 0.25em;

}


.calculator-result h2 {

  margin-bottom: 45px;

  color: #bbb;

  font-size:
    clamp(
      1.7rem,
      2.5vw,
      2.6rem
    );

  font-weight: 400;

  line-height: 1.1;

  letter-spacing: -0.035em;

}



/* =========================================================
   PRICE
========================================================= */

.calculator-price {

  padding-bottom: 35px;

  display: flex;

  flex-wrap: wrap;

  align-items: baseline;

  gap: 10px;

  border-bottom:
    1px solid var(--border);

}


.calculator-price span {

  color: var(--white);

  font-size:
    clamp(
      1.8rem,
      3vw,
      3.2rem
    );

  font-weight: 400;

  letter-spacing: -0.05em;

}


.calculator-price small {

  color: #555;

  font-size: 0.7rem;

}



/* =========================================================
   SUMMARY
========================================================= */

.calculator-summary {

  padding: 25px 0;

  border-bottom:
    1px solid var(--border);

}


.calculator-summary > div {

  display: grid;

  grid-template-columns:
    20px 1fr;

  gap: 10px;

  padding: 6px 0;

}


.calculator-summary span {

  color: #666;

  font-size: 0.65rem;

}


.calculator-summary p {

  color: #888;

  font-size: 0.73rem;

  line-height: 1.5;

}



/* =========================================================
   DISCLAIMER
========================================================= */

.calculator-note {

  display: grid;

  grid-template-columns:
    25px 1fr;

  gap: 15px;

  margin: 25px 0 30px;

}


.calculator-note > span {

  width: 20px;
  height: 20px;

  display: flex;

  align-items: center;
  justify-content: center;

  border:
    1px solid #444;

  border-radius: 50%;

  color: #777;

  font-size: 0.6rem;

}


.calculator-note p {

  color: #666;

  font-size: 0.67rem;

  line-height: 1.7;

}



/* =========================================================
   REQUEST BUTTON
========================================================= */

.calculator-request {

  width: 100%;

  padding: 19px 22px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  background: var(--white);

  color: var(--black);

  font-size: 0.78rem;

  transition:
    background 0.3s ease,
    transform 0.3s ease;

}


.calculator-request:hover {

  background: #d7d7d7;

  transform:
    translateY(-3px);

}


.calculator-request span:last-child {

  font-size: 1.1rem;

}


.calculator-reset {

  width: 100%;

  margin-top: 15px;

  padding: 12px;

  background: transparent;

  border: none;

  color: #555;

  cursor: pointer;

  font-size: 0.65rem;

  transition:
    color 0.2s ease;

}


.calculator-reset:hover {

  color: #999;

}



/* =========================================================
   INFO SECTION
========================================================= */

.calculator-info {

  padding: 160px 0;

  background: var(--black);

  border-top:
    1px solid var(--border);

}


.calculator-info-grid {

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  border-top:
    1px solid var(--border);

  border-left:
    1px solid var(--border);

}


.calculator-info-grid article {

  min-height: 320px;

  padding: 35px;

  display: flex;

  flex-direction: column;

  border-right:
    1px solid var(--border);

  border-bottom:
    1px solid var(--border);

}


.calculator-info-grid article > span {

  margin-bottom: auto;

  color: #555;

  font-size: 0.65rem;

}


.calculator-info-grid h3 {

  max-width: 280px;

  margin-bottom: 20px;

  color: #ccc;

  font-size: 1.3rem;

  font-weight: 400;

  line-height: 1.3;

}


.calculator-info-grid p {

  max-width: 320px;

  color: #777;

  font-size: 0.82rem;

  line-height: 1.75;

}



/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

  .calculator-layout {

    grid-template-columns: 1fr;

  }


  .calculator-result {

    position: relative;

    top: auto;

  }


  .calculator-choice-grid-three {

    grid-template-columns:
      repeat(2, 1fr);

  }

}



/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

  .calculator-hero {

    min-height: 90svh;

    padding-top: 120px;

  }


  .calculator-hero h1 {

    font-size:
      clamp(
        3.1rem,
        14vw,
        5rem
      );

  }


  .calculator-hero-intro {

    grid-template-columns: 1fr;

    gap: 15px;

    margin-top: 45px;
    margin-left: 0;

  }


  .calculator {

    padding: 100px 0;

  }


  .calculator-section {

    padding-bottom: 70px;

    margin-bottom: 70px;

  }


  .calculator-section-head {

    grid-template-columns: 1fr;

    gap: 15px;

  }


  .calculator-choice-grid,
  .calculator-choice-grid-three {

    grid-template-columns: 1fr;

  }


  .calculator-choice-box {

    min-height: 150px;

  }


  .calculator-counter {

    align-items: flex-start;

    flex-direction: column;

  }


  .calculator-addon-grid {

    grid-template-columns: 1fr;

  }


  .calculator-result {

    padding: 30px 22px;

  }


  .calculator-info {

    padding: 100px 0;

  }


  .calculator-info-grid {

    grid-template-columns: 1fr;

  }


  .calculator-info-grid article {

    min-height: 250px;

  }

}
/* =========================================================
   KONTAKT — KALKULATOR ERGEBNIS
========================================================= */

.contact-right {
  min-width: 0;
}


.contact-calculation {

  margin-bottom: 25px;

  padding: 35px;

  background: #101010;

  border: 1px solid var(--border);

}


.contact-calculation[hidden] {
  display: none;
}


.contact-calculation-head {

  display: flex;

  align-items: flex-start;
  justify-content: space-between;

  gap: 30px;

  padding-bottom: 25px;

  border-bottom: 1px solid var(--border);

}


.contact-calculation-head span {

  display: block;

  margin-bottom: 10px;

  color: #555;

  font-size: 0.56rem;

  letter-spacing: 0.22em;

}


.contact-calculation-head h3 {

  color: #ccc;

  font-size: 1.35rem;

  font-weight: 400;

}


.contact-calculation-head a {

  color: #777;

  font-size: 0.7rem;

  border-bottom: 1px solid #444;

  transition:
    color 0.25s ease,
    border-color 0.25s ease;

}


.contact-calculation-head a:hover {

  color: #fff;

  border-color: #aaa;

}


/* AUSWAHL */

.contact-calculation-items {

  padding: 22px 0;

  border-bottom: 1px solid var(--border);

}


.contact-calculation-items > div {

  display: grid;

  grid-template-columns: 20px 1fr;

  gap: 10px;

  padding: 6px 0;

}


.contact-calculation-items span {

  color: #666;

  font-size: 0.65rem;

}


.contact-calculation-items p {

  color: #888;

  font-size: 0.76rem;

}


/* PREIS */

.contact-calculation-price {

  padding: 25px 0;

}


.contact-calculation-price > span {

  display: block;

  margin-bottom: 10px;

  color: #555;

  font-size: 0.55rem;

  letter-spacing: 0.2em;

}


.contact-calculation-price strong {

  color: #eee;

  font-size:
    clamp(
      1.6rem,
      3vw,
      2.5rem
    );

  font-weight: 400;

  letter-spacing: -0.04em;

}


/* HINWEIS */

.contact-calculation-note {

  padding-top: 20px;

  border-top: 1px solid var(--border);

  color: #5f5f5f;

  font-size: 0.67rem;

  line-height: 1.7;

}


/* MOBILE */

@media (max-width: 650px) {

  .contact-calculation {
    padding: 25px 20px;
  }


  .contact-calculation-head {

    flex-direction: column;

    gap: 15px;

  }

}
/* =========================================================
   KONTAKTFORMULAR — STATUS
========================================================= */

.contact-form-status {

  display: none;

  margin-bottom: 20px;

  padding: 14px 16px;

  border: 1px solid var(--border);

  color: #aaa;

  font-size: 0.75rem;

  line-height: 1.6;

}


.contact-form-status:not(:empty) {

  display: block;

}


.contact-form-status.is-error {

  border-color:
    rgba(255,255,255,0.18);

  background:
    rgba(255,255,255,0.035);

  color: #ccc;

}


/* BUTTON WÄHREND DES SENDENS */

.contact-submit:disabled {

  cursor: wait;

  opacity: 0.65;

  transform: none;

}


.contact-submit.is-sending {

  pointer-events: none;

}
/* =========================================================
   28 — DANKE / ERFOLGSSEITE
========================================================= */


/* =========================================================
   SUCCESS PAGE
========================================================= */

.success-page {

  position: relative;

  min-height: 100vh;

  padding:
    190px 0
    140px;

  display: flex;

  align-items: center;

  overflow: hidden;

  background: var(--black);

  border-bottom:
    1px solid var(--border);

}


/* =========================================================
   HINTERGRUND GRID
========================================================= */

.success-page::before {

  content: "";

  position: absolute;

  inset: 0;

  background:

    linear-gradient(
      rgba(255,255,255,0.016) 1px,
      transparent 1px
    ),

    linear-gradient(
      90deg,
      rgba(255,255,255,0.016) 1px,
      transparent 1px
    );

  background-size:
    80px 80px;

  mask-image:
    linear-gradient(
      to bottom,
      black 0%,
      black 55%,
      transparent 100%
    );

  -webkit-mask-image:
    linear-gradient(
      to bottom,
      black 0%,
      black 55%,
      transparent 100%
    );

  pointer-events: none;

}


/* =========================================================
   GLOW
========================================================= */

.success-glow {

  position: absolute;

  top: -350px;
  left: 50%;

  width: 900px;
  height: 900px;

  transform:
    translateX(-50%);

  background:
    radial-gradient(
      circle,
      rgba(255,255,255,0.065) 0%,
      rgba(255,255,255,0.025) 35%,
      transparent 70%
    );

  filter:
    blur(20px);

  pointer-events: none;

}


/* =========================================================
   CONTENT
========================================================= */

.success-content {

  position: relative;

  z-index: 2;

  width: 100%;

}


/* =========================================================
   CHECK ICON
========================================================= */

.success-icon {

  position: relative;

  width: 68px;
  height: 68px;

  margin-bottom: 45px;

  display: flex;

  align-items: center;
  justify-content: center;

  border:
    1px solid
    rgba(255,255,255,0.25);

  border-radius: 50%;

  background:
    rgba(255,255,255,0.025);

  box-shadow:

    inset 0 0 30px
    rgba(255,255,255,0.025),

    0 0 50px
    rgba(255,255,255,0.025);

}


.success-icon::before {

  content: "";

  position: absolute;

  inset: 6px;

  border:
    1px solid
    rgba(255,255,255,0.06);

  border-radius: 50%;

}


.success-icon span {

  position: relative;

  z-index: 2;

  color: #d0d0d0;

  font-size: 1.25rem;

  font-weight: 300;

}


/* =========================================================
   EYEBROW
========================================================= */

.success-content .eyebrow {

  margin-bottom: 28px;

  color: #666;

  font-size: 0.62rem;

  letter-spacing: 0.27em;

}


/* =========================================================
   HEADLINE
========================================================= */

.success-content h1 {

  max-width: 1150px;

  margin: 0;

  font-size:
    clamp(
      4rem,
      8vw,
      8.3rem
    );

  font-weight: 400;

  line-height: 0.9;

  letter-spacing: -0.065em;

}


.success-content h1 span {

  display: block;

  color: #626262;

}


/* =========================================================
   INTRO TEXT
========================================================= */

.success-text {

  max-width: 600px;

  margin:
    60px 0
    90px auto;

  color: #8a8a8a;

  font-size: 0.98rem;

  line-height: 1.9;

}


/* =========================================================
   NEXT STEPS
========================================================= */

.success-next {

  padding:
    45px 0;

  border-top:
    1px solid var(--border);

  border-bottom:
    1px solid var(--border);

}


.success-next > p {

  margin-bottom: 40px;

  color: #555;

  font-size: 0.58rem;

  letter-spacing: 0.25em;

}


/* =========================================================
   STEP GRID
========================================================= */

.success-steps {

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

}


.success-steps > div {

  min-height: 120px;

  padding:
    10px 40px
    10px 0;

  display: grid;

  grid-template-columns:
    35px 1fr;

  gap: 15px;

  border-right:
    1px solid var(--border);

}


.success-steps > div:not(:first-child) {

  padding-left: 40px;

}


.success-steps > div:last-child {

  border-right: none;

}


.success-steps span {

  color: #505050;

  font-size: 0.62rem;

  letter-spacing: 0.1em;

}


.success-steps p {

  max-width: 260px;

  color: #999;

  font-size: 0.83rem;

  line-height: 1.75;

}


/* =========================================================
   BUTTON AREA
========================================================= */

.success-buttons {

  margin-top: 65px;

  display: flex;

  align-items: center;

  gap: 45px;

}


/* =========================================================
   PRIMARY BUTTON
========================================================= */

.success-buttons .button-primary {

  min-width: 220px;

  padding:
    18px 22px;

  display: inline-flex;

  align-items: center;
  justify-content: space-between;

  gap: 45px;

  background: var(--white);

  color: var(--black);

  border:
    1px solid var(--white);

  font-size: 0.76rem;

  transition:

    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;

}


.success-buttons .button-primary:hover {

  background: #d8d8d8;

  transform:
    translateY(-3px);

}


.success-buttons
.button-primary span {

  font-size: 1.05rem;

}


/* =========================================================
   SECONDARY BUTTON
========================================================= */

.success-secondary {

  display: inline-flex;

  align-items: center;

  gap: 20px;

  padding-bottom: 8px;

  color: #888;

  border-bottom:
    1px solid #414141;

  font-size: 0.75rem;

  transition:

    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;

}


.success-secondary:hover {

  color: #fff;

  border-color: #aaa;

  transform:
    translateX(3px);

}


.success-secondary span {

  color: #666;

  transition:
    transform 0.25s ease;

}


.success-secondary:hover span {

  transform:
    translate(
      3px,
      -3px
    );

}


/* =========================================================
   SUBTLE ENTRY ANIMATION
========================================================= */

@keyframes successFadeUp {

  from {

    opacity: 0;

    transform:
      translateY(20px);

  }

  to {

    opacity: 1;

    transform:
      translateY(0);

  }

}


.success-icon {

  animation:
    successFadeUp
    0.7s ease
    both;

}


.success-content > .eyebrow {

  animation:
    successFadeUp
    0.7s ease
    0.08s
    both;

}


.success-content > h1 {

  animation:
    successFadeUp
    0.8s ease
    0.14s
    both;

}


.success-text {

  animation:
    successFadeUp
    0.8s ease
    0.22s
    both;

}


.success-next {

  animation:
    successFadeUp
    0.8s ease
    0.3s
    both;

}


.success-buttons {

  animation:
    successFadeUp
    0.8s ease
    0.38s
    both;

}


/* =========================================================
   REDUCED MOTION
========================================================= */

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

  .success-icon,
  .success-content > .eyebrow,
  .success-content > h1,
  .success-text,
  .success-next,
  .success-buttons {

    animation: none;

  }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

  .success-page {

    padding:
      170px 0
      120px;

  }


  .success-text {

    margin:
      50px 0
      70px;

  }


  .success-steps {

    grid-template-columns: 1fr;

  }


  .success-steps > div {

    min-height: auto;

    padding:
      25px 0;

    border-right: none;

    border-bottom:
      1px solid var(--border);

  }


  .success-steps > div:not(:first-child) {

    padding-left: 0;

  }


  .success-steps > div:last-child {

    border-bottom: none;

  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

  .success-page {

    min-height: 100svh;

    padding:
      135px 0
      90px;

    align-items: flex-start;

  }


  .success-glow {

    top: -250px;

    width: 600px;
    height: 600px;

  }


  .success-icon {

    width: 55px;
    height: 55px;

    margin-bottom: 35px;

  }


  .success-icon span {

    font-size: 1rem;

  }


  .success-content h1 {

    font-size:
      clamp(
        3.2rem,
        14vw,
        5rem
      );

  }


  .success-text {

    margin:
      40px 0
      60px;

    font-size: 0.9rem;

  }


  .success-next {

    padding:
      35px 0;

  }


  .success-next > p {

    margin-bottom: 20px;

  }


  .success-steps > div {

    grid-template-columns:
      30px 1fr;

  }


  .success-buttons {

    margin-top: 50px;

    align-items: flex-start;

    flex-direction: column;

    gap: 30px;

  }


  .success-buttons
  .button-primary {

    width: 100%;

  }

}
/* =========================================================
   29 — LEGAL / IMPRESSUM
========================================================= */


/* =========================================================
   HERO
========================================================= */

.legal-hero {

  position: relative;

  min-height: 70vh;

  padding:
    180px 0
    100px;

  display: flex;

  align-items: flex-end;

  overflow: hidden;

  background: var(--black);

  border-bottom:
    1px solid var(--border);

}


/* GRID BACKGROUND */

.legal-hero::before {

  content: "";

  position: absolute;

  inset: 0;

  background:

    linear-gradient(
      rgba(255,255,255,0.016) 1px,
      transparent 1px
    ),

    linear-gradient(
      90deg,
      rgba(255,255,255,0.016) 1px,
      transparent 1px
    );

  background-size:
    80px 80px;

  mask-image:
    linear-gradient(
      to bottom,
      black,
      transparent 100%
    );

  -webkit-mask-image:
    linear-gradient(
      to bottom,
      black,
      transparent 100%
    );

  pointer-events: none;

}


/* CONTENT */

.legal-hero-content {

  position: relative;

  z-index: 2;

  width: 100%;

}


/* HEADLINE */

.legal-hero h1 {

  margin-top: 30px;

  font-size:
    clamp(
      5rem,
      12vw,
      12rem
    );

  font-weight: 400;

  line-height: 0.85;

  letter-spacing: -0.075em;

}


.legal-hero h1 span {

  color: #555;

}


/* META */

.legal-hero-meta {

  max-width: 650px;

  margin:
    70px 0
    0 auto;

  padding-top: 25px;

  display: grid;

  grid-template-columns:
    0.8fr 1.2fr;

  gap: 40px;

  border-top:
    1px solid var(--border);

}


.legal-hero-meta span {

  color: #555;

  font-size: 0.58rem;

  letter-spacing: 0.22em;

}


.legal-hero-meta p {

  color: #888;

  font-size: 0.82rem;

}


/* =========================================================
   MAIN CONTENT
========================================================= */

.legal-content {

  padding:
    150px 0
    170px;

  background: var(--black-soft);

}


.legal-layout {

  display: grid;

  grid-template-columns:
    260px minmax(0, 1fr);

  gap: 110px;

  align-items: start;

}


/* =========================================================
   SIDEBAR
========================================================= */

.legal-sidebar {

  position: sticky;

  top: 130px;

}


.legal-sidebar > p {

  margin-bottom: 35px;

  color: #555;

  font-size: 0.58rem;

  letter-spacing: 0.25em;

}


.legal-sidebar nav {

  display: flex;

  flex-direction: column;

}


.legal-sidebar nav a {

  padding:
    13px 0;

  color: #686868;

  border-bottom:
    1px solid var(--border);

  font-size: 0.72rem;

  transition:

    color 0.25s ease,
    padding-left 0.25s ease;

}


.legal-sidebar nav a:first-child {

  border-top:
    1px solid var(--border);

}


.legal-sidebar nav a:hover {

  padding-left: 8px;

  color: #ccc;

}


/* =========================================================
   SECTIONS
========================================================= */

.legal-sections {

  min-width: 0;

}


.legal-section {

  display: grid;

  grid-template-columns:
    60px minmax(0, 1fr);

  gap: 35px;

  padding:
    0 0
    100px;

  margin-bottom: 100px;

  border-bottom:
    1px solid var(--border);

}


.legal-section-number {

  padding-top: 5px;

  color: #4d4d4d;

  font-size: 0.62rem;

}


/* =========================================================
   SECTION BODY
========================================================= */

.legal-section-body {

  max-width: 780px;

}


.legal-label {

  margin-bottom: 22px;

  color: #555;

  font-size: 0.57rem;

  letter-spacing: 0.24em;

}


.legal-section h2 {

  max-width: 700px;

  margin-bottom: 45px;

  color: #d0d0d0;

  font-size:
    clamp(
      2.4rem,
      4.5vw,
      4.5rem
    );

  font-weight: 400;

  line-height: 1;

  letter-spacing: -0.05em;

}


/* =========================================================
   ADDRESS
========================================================= */

.legal-address {

  padding:
    35px 0;

  border-top:
    1px solid var(--border);

  border-bottom:
    1px solid var(--border);

}


.legal-address strong {

  display: block;

  margin-bottom: 20px;

  color: #d0d0d0;

  font-size: 1.05rem;

  font-weight: 400;

}


.legal-address p {

  margin:
    5px 0;

  color: #888;

  font-size: 0.9rem;

  line-height: 1.7;

}


/* =========================================================
   CONTACT ROWS
========================================================= */

.legal-contact-row {

  display: grid;

  grid-template-columns:
    150px 1fr;

  gap: 30px;

  padding:
    22px 0;

  border-top:
    1px solid var(--border);

}


.legal-contact-row:last-child {

  border-bottom:
    1px solid var(--border);

}


.legal-contact-row > span {

  color: #555;

  font-size: 0.56rem;

  letter-spacing: 0.2em;

}


.legal-contact-row p,
.legal-contact-row a {

  color: #999;

  font-size: 0.86rem;

}


.legal-contact-row a {

  width: fit-content;

  transition:
    color 0.25s ease;

}


.legal-contact-row a:hover {

  color: #fff;

}


/* =========================================================
   LEGAL TEXT
========================================================= */

.legal-text {

  max-width: 720px;

}


.legal-text p {

  margin-bottom: 25px;

  color: #858585;

  font-size: 0.9rem;

  line-height: 1.9;

}


.legal-text p:last-child {

  margin-bottom: 0;

}


/* =========================================================
   LAST UPDATE
========================================================= */

.legal-update {

  display: grid;

  grid-template-columns:
    100px 1fr;

  gap: 30px;

  padding-top: 5px;

}


.legal-update span {

  color: #4d4d4d;

  font-size: 0.56rem;

  letter-spacing: 0.22em;

}


.legal-update p {

  color: #777;

  font-size: 0.75rem;

}


/* =========================================================
   SCROLL OFFSET
========================================================= */

.legal-section {

  scroll-margin-top: 130px;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

  .legal-layout {

    grid-template-columns: 1fr;

    gap: 70px;

  }


  .legal-sidebar {

    position: static;

  }


  .legal-sidebar nav {

    display: grid;

    grid-template-columns:
      repeat(2, 1fr);

  }


  .legal-sidebar nav a {

    padding:
      15px 10px;

    border:
      1px solid var(--border);

    margin:
      -1px 0 0 -1px;

  }


  .legal-sidebar nav a:hover {

    padding-left: 15px;

  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

  .legal-hero {

    min-height: 60svh;

    padding:
      140px 0
      70px;

  }


  .legal-hero h1 {

    font-size:
      clamp(
        4.2rem,
        20vw,
        7rem
      );

  }


  .legal-hero-meta {

    grid-template-columns: 1fr;

    gap: 12px;

    margin-top: 50px;

  }


  .legal-content {

    padding:
      90px 0
      110px;

  }


  .legal-layout {

    gap: 60px;

  }


  .legal-sidebar nav {

    grid-template-columns: 1fr;

  }


  .legal-section {

    grid-template-columns: 1fr;

    gap: 20px;

    padding-bottom: 70px;

    margin-bottom: 70px;

  }


  .legal-section h2 {

    margin-bottom: 35px;

    font-size:
      clamp(
        2.3rem,
        11vw,
        3.5rem
      );

  }


  .legal-contact-row {

    grid-template-columns: 1fr;

    gap: 10px;

  }


  .legal-update {

    grid-template-columns: 1fr;

    gap: 10px;

  }

}
/* =========================================================
   30 — DATENSCHUTZ
========================================================= */


/* =========================================================
   LISTEN
========================================================= */

.legal-list {

  margin:
    30px 0
    35px;

  padding: 0;

  list-style: none;

  border-top:
    1px solid var(--border);

}


.legal-list li {

  position: relative;

  padding:
    15px 15px
    15px 28px;

  color: #858585;

  border-bottom:
    1px solid var(--border);

  font-size: 0.85rem;

  line-height: 1.6;

}


.legal-list li::before {

  content: "";

  position: absolute;

  top: 50%;
  left: 5px;

  width: 5px;
  height: 5px;

  transform:
    translateY(-50%);

  background: #555;

  border-radius: 50%;

}


/* =========================================================
   EXTERNAL LINK
========================================================= */

.legal-external-link {

  width: fit-content;

  margin-top: 35px;

  padding-bottom: 8px;

  display: inline-flex;

  align-items: center;

  gap: 18px;

  color: #aaa;

  border-bottom:
    1px solid #444;

  font-size: 0.78rem;

  transition:
    color 0.25s ease,
    border-color 0.25s ease;

}


.legal-external-link:hover {

  color: #fff;

  border-color: #aaa;

}


.legal-external-link span {

  color: #666;

  transition:
    transform 0.25s ease;

}


.legal-external-link:hover span {

  transform:
    translate(
      3px,
      -3px
    );

}


/* =========================================================
   DATENSCHUTZRECHTE
========================================================= */

.privacy-rights {

  margin-top: 45px;

  border-top:
    1px solid var(--border);

}


.privacy-rights article {

  display: grid;

  grid-template-columns:
    55px 1fr;

  gap: 25px;

  padding:
    28px 0;

  border-bottom:
    1px solid var(--border);

}


.privacy-rights article > span {

  padding-top: 3px;

  color: #4f4f4f;

  font-size: 0.6rem;

}


.privacy-rights h3 {

  margin-bottom: 9px;

  color: #aaa;

  font-size: 0.92rem;

  font-weight: 400;

}


.privacy-rights p {

  max-width: 580px;

  color: #777;

  font-size: 0.8rem;

  line-height: 1.75;

}


/* =========================================================
   CONTACT
========================================================= */

.privacy-contact {

  margin-top: 45px;

}


.privacy-contact a {

  display: inline-block;

  margin-top: 5px;

  padding-bottom: 6px;

  color: #aaa;

  border-bottom:
    1px solid #444;

  font-size: 0.85rem;

  transition:
    color 0.25s ease,
    border-color 0.25s ease;

}


.privacy-contact a:hover {

  color: #fff;

  border-color: #aaa;

}


/* LINK IN ADDRESS */

.legal-address a {

  color: #aaa;

  transition:
    color 0.25s ease;

}


.legal-address a:hover {

  color: #fff;

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

  .privacy-rights article {

    grid-template-columns:
      35px 1fr;

    gap: 15px;

  }


  .legal-list li {

    padding-left: 25px;

  }

}
/* =========================================================
   COOKIE / CONSENT BANNER
========================================================= */

.cookie-banner {

  position: fixed;

  inset: 0;

  z-index: 99999;

  display: flex;

  align-items: flex-end;
  justify-content: center;

  padding: 30px;

  background:
    rgba(0, 0, 0, 0.68);

  backdrop-filter:
    blur(10px);

  -webkit-backdrop-filter:
    blur(10px);

}


.cookie-banner[hidden] {

  display: none;

}


.cookie-banner-inner {

  width: 100%;
  max-width: 1100px;

  padding:
    40px 45px
    30px;

  background:
    rgba(15,15,15,0.98);

  border:
    1px solid
    rgba(255,255,255,0.12);

  box-shadow:
    0 30px 100px
    rgba(0,0,0,0.7);

  animation:
    cookieSlideUp
    0.4s ease
    both;

}


@keyframes cookieSlideUp {

  from {

    opacity: 0;

    transform:
      translateY(30px);

  }

  to {

    opacity: 1;

    transform:
      translateY(0);

  }

}


.cookie-banner-closing {

  opacity: 0;

  transition:
    opacity 0.3s ease;

}


.cookie-eyebrow {

  margin-bottom: 15px;

  color: #555;

  font-size: 0.55rem;

  letter-spacing: 0.25em;

}


.cookie-banner-header h2 {

  margin-bottom: 20px;

  color: #ddd;

  font-size:
    clamp(
      2rem,
      4vw,
      3.8rem
    );

  font-weight: 400;

  line-height: 1;

  letter-spacing:
    -0.05em;

}


.cookie-banner-header h2 span {

  color: #626262;

}


.cookie-banner-header > p:last-child {

  max-width: 760px;

  color: #888;

  font-size: 0.8rem;

  line-height: 1.75;

}


/* =========================================================
   BUTTONS
========================================================= */

.cookie-main-actions {

  margin-top: 35px;

  display: flex;

  align-items: center;

  gap: 12px;

}


.cookie-button {

  padding:
    14px 22px;

  border:
    1px solid
    rgba(255,255,255,0.15);

  font-family: inherit;

  font-size: 0.7rem;

  cursor: pointer;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;

}


.cookie-button-primary {

  background: #eee;

  border-color: #eee;

  color: #111;

}


.cookie-button-primary:hover {

  background: #fff;

  transform:
    translateY(-2px);

}


.cookie-button-secondary {

  background: transparent;

  color: #aaa;

}


.cookie-button-secondary:hover {

  color: #fff;

  border-color: #666;

}


.cookie-settings-button {

  margin-left: 8px;

  padding:
    10px 5px;

  background: transparent;

  border: 0;

  border-bottom:
    1px solid #444;

  color: #777;

  font-family: inherit;

  font-size: 0.68rem;

  cursor: pointer;

}


.cookie-settings-button:hover {

  color: #fff;

}


/* =========================================================
   DETAILS
========================================================= */

.cookie-details {

  margin-top: 35px;

  border-top:
    1px solid
    var(--border);

}


.cookie-details[hidden] {

  display: none;

}


.cookie-option {

  position: relative;

  display: grid;

  grid-template-columns:
    1fr auto;

  gap: 40px;

  align-items: center;

  padding:
    25px 0;

  border-bottom:
    1px solid
    var(--border);

}


.cookie-option-heading {

  display: flex;

  align-items: center;

  gap: 15px;

  margin-bottom: 8px;

}


.cookie-option h3 {

  color: #bbb;

  font-size: 0.85rem;

  font-weight: 400;

}


.cookie-option p {

  max-width: 650px;

  color: #666;

  font-size: 0.7rem;

  line-height: 1.7;

}


.cookie-required {

  padding:
    4px 7px;

  border:
    1px solid #333;

  color: #555;

  font-size: 0.5rem;

  letter-spacing: 0.1em;

}


/* =========================================================
   SWITCH
========================================================= */

.cookie-option input {

  position: absolute;

  opacity: 0;

  pointer-events: none;

}


.cookie-switch {

  position: relative;

  width: 46px;
  height: 24px;

  flex-shrink: 0;

  background: #292929;

  border:
    1px solid #3a3a3a;

  border-radius: 30px;

  cursor: pointer;

  transition:
    background 0.25s ease;

}


.cookie-switch::before {

  content: "";

  position: absolute;

  top: 3px;
  left: 3px;

  width: 16px;
  height: 16px;

  background: #777;

  border-radius: 50%;

  transition:
    transform 0.25s ease,
    background 0.25s ease;

}


.cookie-option
input:checked
+
.cookie-switch {

  background: #ddd;

}


.cookie-option
input:checked
+
.cookie-switch::before {

  background: #111;

  transform:
    translateX(21px);

}


/* =========================================================
   DETAIL ACTIONS
========================================================= */

.cookie-details-actions {

  margin-top: 30px;

  display: flex;

  gap: 12px;

}


/* =========================================================
   FOOTER
========================================================= */

.cookie-footer {

  margin-top: 25px;

  padding-top: 20px;

  display: flex;

  gap: 25px;

  border-top:
    1px solid
    var(--border);

}


.cookie-footer a {

  color: #555;

  font-size: 0.62rem;

  transition:
    color 0.25s ease;

}


.cookie-footer a:hover {

  color: #aaa;

}


/* =========================================================
   FOOTER COOKIE BUTTON
========================================================= */

.footer-cookie-settings {

  padding: 0;

  background: transparent;

  border: 0;

  color: inherit;

  font: inherit;

  cursor: pointer;

  opacity: 0.7;

}


.footer-cookie-settings:hover {

  opacity: 1;

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

  .cookie-banner {

    padding: 10px;

  }


  .cookie-banner-inner {

    max-height: 90svh;

    padding:
      28px 20px
      22px;

    overflow-y: auto;

  }


  .cookie-main-actions {

    align-items: stretch;

    flex-direction: column;

  }


  .cookie-button {

    width: 100%;

  }


  .cookie-settings-button {

    margin:
      5px auto 0;

  }


  .cookie-option {

    gap: 20px;

  }


  .cookie-details-actions {

    flex-direction: column;

  }


  .cookie-footer {

    flex-wrap: wrap;

  }

}


/* =========================================================
   99 — RESPONSIVE HEADER / MOBILE OPTIMIERUNG
   Ergänzung für WB Mediaworks
========================================================= */

.menu-toggle,
.mobile-nav-cta,
.mobile-nav-mail {
  display: none;
}

.footer-cookie-settings {
  appearance: none;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

body.mobile-menu-open {
  overflow: hidden;
}


/* =========================================================
   TABLET + MOBILE NAVIGATION
========================================================= */

@media (max-width: 1000px) {

  .header-inner {
    position: relative;
  }

  .header-button {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 1002;

    width: 48px;
    height: 48px;

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

    gap: 6px;

    padding: 0;

    border: 1px solid var(--border-light);
    background: rgba(5, 5, 5, 0.7);

    color: var(--white);

    cursor: pointer;
  }

  .menu-toggle span {
    width: 20px;
    height: 1px;

    display: block;

    background: currentColor;

    transition:
      transform 0.25s ease,
      opacity 0.25s ease;
  }

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

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

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

  .navigation {
    position: fixed;

    top: 0;
    right: 0;

    width: min(88vw, 430px);
    height: 100dvh;

    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;

    gap: 0;

    padding:
      118px
      clamp(26px, 6vw, 48px)
      40px;

    overflow-y: auto;

    background: rgba(5, 5, 5, 0.98);

    border-left: 1px solid var(--border);

    transform: translateX(105%);

    visibility: hidden;
    pointer-events: none;

    transition:
      transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0.32s ease;

    z-index: 1001;
  }

  .navigation.navigation-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .navigation a {
    width: 100%;

    padding: 17px 0;

    border-bottom: 1px solid var(--border);

    color: #bcbcbc;

    font-size: 1.05rem;
    letter-spacing: -0.01em;
  }

  .navigation a::after {
    display: none;
  }

  .navigation .nav-active {
    color: var(--white);
  }

  .navigation .mobile-nav-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 28px;
    padding: 16px 18px;

    border: 1px solid var(--white);

    background: var(--white);
    color: var(--black);

    font-size: 0.82rem;
  }

  .navigation .mobile-nav-mail {
    display: block;

    margin-top: 14px;

    border-bottom: 0;

    color: #777;

    font-size: 0.76rem;

    overflow-wrap: anywhere;
  }

  .calculator-teaser-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .calculator-teaser-content {
    max-width: 620px;
  }

  .cookie-banner-inner {
    max-height: calc(100dvh - 32px);
    overflow-y: auto;
  }

}


/* =========================================================
   SMARTPHONE
========================================================= */

@media (max-width: 650px) {

  .section-container {
    width: min(90%, 100%);
  }

  .header-inner {
    width: 90%;
    height: 74px;
  }

  .brand-logo {
    width: 128px;
    height: 46px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .navigation {
    width: 100%;
    padding:
      96px
      5%
      32px;

    border-left: 0;
  }

  .navigation a {
    font-size: 1rem;
  }

  .hero {
    min-height: 100svh;
    padding: 110px 0 50px;
  }

  .hero-content {
    width: 90%;
    margin: 0 auto;
  }

  .hero h1 {
    max-width: 100%;

    font-size: clamp(2.85rem, 13vw, 4.6rem);
    line-height: 0.94;

    overflow-wrap: normal;
    word-break: normal;
  }

  .hero-text {
    margin-top: 32px;
    font-size: 0.96rem;
    line-height: 1.7;
  }

  .hero-buttons {
    width: 100%;
    max-width: 100%;
  }

  .button-primary,
  .button-secondary {
    min-width: 0;
    min-height: 52px;
  }

  .intro h2,
  .section-heading h2,
  .calculator-teaser h2,
  .cta h2 {
    font-size: clamp(2.7rem, 12vw, 4.5rem);
    line-height: 0.96;
  }

  .intro-grid {
    gap: 42px;
  }

  .intro-text p {
    font-size: 0.96rem;
  }

  .service-item {
    grid-template-columns: 38px minmax(0, 1fr) 28px;
    gap: 14px;
    min-height: 105px;
  }

  .service-item h3 {
    font-size: clamp(1.35rem, 6vw, 1.9rem);
  }

  .service-arrow {
    justify-self: end;
  }

  .project-preview {
    padding: 20px 8px;
  }

  .browser-address {
    width: 55%;
  }

  .project-info {
    gap: 22px;
  }

  .process-item {
    padding: 30px 22px;
  }

  .calculator-teaser,
  .intro,
  .services,
  .projects,
  .process {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .calculator-teaser-inner {
    gap: 36px;
  }

  .calculator-teaser-content p {
    font-size: 0.95rem;
  }

  .footer {
    padding-top: 55px;
  }

  .footer-main {
    gap: 50px;
  }

  .footer-navigation {
    width: 100%;
    gap: 38px;
  }

  .footer-navigation > div {
    width: 100%;
  }

  .footer-navigation a {
    padding: 4px 0;
  }

  .footer-bottom > div {
    flex-wrap: wrap;
    gap: 14px 22px;
  }

  .footer-cookie-settings {
    text-align: left;
  }

  .cookie-banner {
    padding: 10px;
  }

  .cookie-banner-inner {
    width: 100%;
    max-height: calc(100dvh - 20px);
    padding: 24px 20px;
  }

  .cookie-banner-header h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .cookie-main-actions,
  .cookie-details-actions {
    flex-direction: column;
  }

  .cookie-button,
  .cookie-settings-button {
    width: 100%;
    min-height: 48px;
  }

  .cookie-option {
    gap: 14px;
  }

}


/* =========================================================
   SEHR KLEINE SMARTPHONES
========================================================= */

@media (max-width: 380px) {

  .hero h1 {
    font-size: clamp(2.55rem, 12.5vw, 3.4rem);
  }

  .eyebrow {
    letter-spacing: 0.22em;
  }

  .section-number {
    letter-spacing: 0.18em;
  }

  .brand-logo {
    width: 116px;
  }

}
