/* ===========================
   FONTS
=========================== */
@font-face {
  font-family: 'Clash Display';
  src: url('../assets/fonts/ClashDisplay-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Clash Display';
  src: url('../assets/fonts/ClashDisplay-Semibold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Clash Display';
  src: url('../assets/fonts/ClashDisplay-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../assets/fonts/Satoshi-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../assets/fonts/Satoshi-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../assets/fonts/Satoshi-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ===========================
   VARIABLES
=========================== */
:root {
  --background: #0A0A0A;
  --bg-secondary: #171717;
  --bg-card: #1C1C1C;
  --foreground: #FFFFFF;
  --gray-400: #A3A3A3;
  --gray-800: #262626;
  --blue-primary: #0070F3;
  --border: rgba(255,255,255,0.08);
  --radius-btn: 5px;
  --radius-card: 7px;

  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  --space-5xl: 128px;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out-quart: cubic-bezier(0.76, 0, 0.24, 1);
  --duration-fast: 200ms;
  --duration-normal: 400ms;
  --duration-slow: 800ms;
  --duration-page: 700ms;
}

/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.025;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 9998;
}

h1, h2, h3, h4 {
  font-family: 'Clash Display', sans-serif;
  color: var(--foreground);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

h1 {
  font-size: clamp(40px, 6vw, 72px);
}
h2 {
  font-size: clamp(32px, 4.5vw, 52px);
}
h3 {
  font-size: clamp(20px, 2.5vw, 28px);
}

p {
  font-size: 16px;
  letter-spacing: -0.01em;
  line-height: 1.6;
  color: var(--gray-400);
}

.large-text {
  font-size: 18px;
  line-height: 1.65;
}

.small-text {
  font-size: 14px;
  line-height: 1.6;
}

.label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
}

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

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

/* ===========================
   CONTAINER
=========================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 48px;
}

/* ===========================
   BACKGROUND ORBS
=========================== */
.bg-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.bg-orb-1 {
  width: 600px;
  height: 600px;
  background: transparent;
  top: -100px;
  right: -100px;
  animation: orb-float-1 18s ease-in-out infinite;
}

.bg-orb-2 {
  width: 500px;
  height: 500px;
  background: transparent;
  bottom: 20%;
  left: -80px;
  animation: orb-float-2 22s ease-in-out infinite;
}

.bg-orb-3 {
  width: 400px;
  height: 400px;
  background: transparent;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orb-float-3 28s ease-in-out infinite;
}

@keyframes orb-float-1 {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(-40px, 30px); }
  66% { transform: translate(20px, -20px); }
}

@keyframes orb-float-2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -40px); }
}

@keyframes orb-float-3 {
  0%, 100% { transform: translate(-50%, -50%); }
  25% { transform: translate(-53%, -47%); }
  75% { transform: translate(-47%, -53%); }
}

/* ===========================
   NAVIGATION
=========================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 48px 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: all 0.4s var(--ease-out-expo);
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 48px 12px 24px;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  height: 72px;
  width: auto;
  display: block;
  mix-blend-mode: screen;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-400);
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover {
  color: var(--foreground);
}

.nav-links a.active {
  color: var(--foreground);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue-primary);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--foreground);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out-expo);
  transform-origin: center;
}

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

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

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

/* Mobile overlay */
.nav-mobile-overlay {
  position: fixed;
  inset: 0;
  background: var(--background);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out-expo);
}

.nav-mobile-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.nav-mobile-links {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.nav-mobile-links a {
  font-family: 'Clash Display', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--foreground);
  opacity: 0;
  transform: translateY(20px);
  display: block;
  transition: color 0.2s;
}

.nav-mobile-links a:hover {
  color: var(--blue-primary);
}

.nav-mobile-overlay.open .nav-mobile-links a {
  animation: mobile-link-in 0.5s var(--ease-out-expo) forwards;
}

.nav-mobile-overlay.open .nav-mobile-links li:nth-child(1) a { animation-delay: 0ms; }
.nav-mobile-overlay.open .nav-mobile-links li:nth-child(2) a { animation-delay: 80ms; }
.nav-mobile-overlay.open .nav-mobile-links li:nth-child(3) a { animation-delay: 160ms; }
.nav-mobile-overlay.open .nav-mobile-links li:nth-child(4) a { animation-delay: 240ms; }

@keyframes mobile-link-in {
  to { opacity: 1; transform: translateY(0); }
}

/* ===========================
   PAGE TRANSITIONS
=========================== */
.page-wrapper {
  position: relative;
  z-index: 1;
}

/* ===========================
   HERO SECTION
=========================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.75);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
  padding: 0 40px;
}

.hero-headline {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--foreground);
  line-height: 1.15;
  margin-bottom: 24px;
  min-height: 1.08em;
}

.hero-cursor {
  display: inline-block;
  width: 3px;
  background: var(--blue-primary);
  animation: blink 0.6s ease-in-out infinite;
  vertical-align: text-bottom;
  margin-left: 2px;
  border-radius: 2px;
}

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

.hero-cursor.hidden {
  display: none;
}

.hero-badge {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 4px 12px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--gray-400);
  display: inline-block;
  margin-bottom: 24px;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.btn-secondary {
  display: inline-block;
  padding: 10px 20px;
  background: transparent;
  color: var(--foreground);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
  font-family: 'Satoshi', sans-serif;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: all 0.25s var(--ease-out-expo);
  text-decoration: none;
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,0.2);
  color: var(--foreground);
}

.hero-subtitle {
  font-size: 18px;
  color: var(--gray-400);
  letter-spacing: -0.01em;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
}

.hero-subtitle.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Magnetic pull animation */
@keyframes hero-pull {
  0% { transform: translateY(0); }
  100% { transform: translateY(-25px); }
}

.hero-content.pulling {
  animation: hero-pull 3s linear infinite alternate;
}

/* ===========================
   SCROLL REVEAL
=========================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0ms; }
.reveal-delay-2 { transition-delay: 120ms; }
.reveal-delay-3 { transition-delay: 240ms; }
.reveal-delay-4 { transition-delay: 360ms; }

/* ===========================
   SERVICE CARDS (Startseite)
=========================== */
.services-section {
  padding: 112px 0;
  position: relative;
  z-index: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 2px solid transparent;
  border-radius: var(--radius-card);
  padding: 36px 32px;
  transition: transform 0.5s var(--ease-out-expo), border-color 0.4s, border-top-color 0.2s ease, background 0.4s;
}

@media (hover: hover) {
  .service-card:hover {
    transform: translateY(-8px) rotateX(2deg) rotateY(-1deg);
    border-color: rgba(255,255,255,0.14);
    border-top-color: var(--blue-primary);
    background: #222222;
  }

  .service-card:hover .service-icon {
    transform: scale(1.1);
  }
}

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(0, 112, 243, 0.1);
  border-radius: var(--radius-card);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s var(--ease-out-expo);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--blue-primary);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}

/* ===========================
   FOMO STATEMENT
=========================== */
.fomo-section {
  padding: 112px 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.fomo-text {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 700px;
  margin: 0 auto;
  color: var(--foreground);
}

/* ===========================
   PRODUCTS TEASER
=========================== */
.products-section {
  padding: 112px 0;
  position: relative;
  z-index: 1;
  text-align: center;
}

.products-section h2 {
  margin-bottom: 16px;
}

.products-subtitle {
  color: var(--gray-400);
  max-width: 500px;
  margin: 0 auto 48px;
}

.frosted-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.frosted-card {
  height: 220px;
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
}

.frosted-card-inner {
  padding: 20px;
}

.frosted-line {
  height: 10px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 4px;
  margin: 12px 0;
}

.frosted-line:nth-child(2) { width: 80%; }
.frosted-line:nth-child(3) { width: 60%; }
.frosted-line:nth-child(4) { width: 75%; }

.frosted-card::after {
  content: '';
  position: absolute;
  inset: 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(15, 22, 40, 0.6);
  transition: backdrop-filter 0.6s ease;
}

.frosted-card:hover::after {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ===========================
   CONTACT FORM
=========================== */
.contact-section {
  padding: 112px 0;
  position: relative;
  z-index: 1;
}

.contact-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-inner h2 {
  margin-bottom: 8px;
}

.contact-sub-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 48px;
  display: block;
}

.contact-form {
  text-align: left;
  margin-top: 48px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-400);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 14px 18px;
  font-size: 15px;
  color: var(--foreground);
  font-family: 'Satoshi', sans-serif;
  transition: border-color 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-primary);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.3)' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}

.form-group select option {
  background: var(--bg-secondary);
  color: var(--foreground);
}

.btn-primary {
  display: block;
  width: 100%;
  padding: 10px 20px;
  margin-top: 8px;
  background: var(--blue-primary);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
  font-family: 'Satoshi', sans-serif;
  border: none;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: all 0.25s var(--ease-out-expo);
}

.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

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

.btn-cta {
  display: inline-block;
  padding: 10px 20px;
  background: var(--blue-primary);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
  font-family: 'Satoshi', sans-serif;
  border: none;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: all 0.25s var(--ease-out-expo);
  text-decoration: none;
}

.btn-cta:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn-cta:active {
  transform: translateY(0);
}

/* ===========================
   FOOTER
=========================== */
.footer {
  padding: 64px 0 40px;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}

.footer-brand img {
  height: 30px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--gray-400);
  max-width: 240px;
}

.footer-col h4 {
  font-family: 'Satoshi', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 14px;
  color: var(--gray-400);
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: var(--foreground);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  font-size: 13px;
  color: var(--gray-400);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: var(--gray-400);
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: var(--foreground);
}

/* ===========================
   COOKIE BANNER
=========================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: transform 0.4s var(--ease-out-expo);
}

.cookie-banner.hidden {
  transform: translateY(100%);
}

.cookie-banner p {
  font-size: 14px;
  color: var(--gray-400);
  margin: 0;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-accept {
  background: var(--blue-primary);
  color: #fff;
  padding: 8px 20px;
  border-radius: var(--radius-btn);
  border: none;
  font-size: 14px;
  font-family: 'Satoshi', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s;
}

.cookie-accept:hover {
  opacity: 0.88;
}

.cookie-decline {
  background: transparent;
  color: var(--gray-400);
  padding: 8px 20px;
  border: none;
  font-size: 14px;
  font-family: 'Satoshi', sans-serif;
  cursor: pointer;
  transition: color 0.2s;
}

.cookie-decline:hover {
  color: var(--foreground);
}

/* ===========================
   HERO (Subpages)
=========================== */
.page-hero {
  padding: 160px 40px 80px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.page-hero.tall {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-hero.taller {
  min-height: 70vh;
}

.page-hero h1 {
  margin-bottom: 20px;
}

.page-hero .large-text {
  color: var(--gray-400);
  max-width: 600px;
  margin: 0 auto;
}

/* ===========================
   WAS UNS AUSMACHT
=========================== */
.was-uns-ausmacht {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.ueber-bg-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

.ueber-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 1;
}

.ueber-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto 0 0;
  padding: 96px 48px;
}

.ueber-content h2 {
  letter-spacing: -0.02em;
  line-height: 1.2;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  display: inline-block;
  padding: 8px 16px;
  border-radius: 4px;
  margin-bottom: 24px;
}

.ueber-content p {
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  padding: 12px 16px;
  border-radius: 4px;
  margin-bottom: 12px;
  line-height: 1.7;
}

/* ===========================
   LEISTUNGEN
=========================== */
.leistung-section {
  padding: 112px 0;
  position: relative;
  z-index: 1;
}

.leistung-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.leistung-grid.reverse {
  direction: rtl;
}

.leistung-grid.reverse > * {
  direction: ltr;
}

.leistung-img-wrap {
  border-radius: var(--radius-card);
  overflow: hidden;
  perspective: 800px;
}

.leistung-img-wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
  display: block;
}

@media (hover: hover) {
  .leistung-img-wrap:hover img {
    transform: scale(1.04);
  }
}

.leistung-text .label {
  display: block;
  margin-bottom: 16px;
}

.leistung-text h2 {
  margin-bottom: 20px;
}

.leistung-text p {
  margin-bottom: 28px;
}

.leistung-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.leistung-bullet {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--gray-400);
}

.leistung-bullet::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-primary);
  flex-shrink: 0;
}

/* ===========================
   LEISTUNGEN CTA
=========================== */
.leistungen-cta {
  padding: 80px 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.leistungen-cta h2 {
  margin-bottom: 24px;
}

/* ===========================
   UEBER UNS
=========================== */
.letter-reveal span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: letter-in 0.5s var(--ease-out-expo) forwards;
}

@keyframes letter-in {
  to { opacity: 1; transform: translateY(0); }
}

.ueber-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 40px 120px;
  position: relative;
  z-index: 1;
}

.ueber-img {
  border-radius: var(--radius-card);
  overflow: hidden;
}

.ueber-img img {
  width: 100%;
  height: auto;
  display: block;
}

.ueber-text h2 {
  margin-bottom: 20px;
}

.werte-section {
  padding: 60px 0 112px;
  position: relative;
  z-index: 1;
}

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

.wert-card {
  padding: 40px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  text-align: center;
  transition: transform 0.5s var(--ease-out-expo), border-color 0.4s, background 0.4s;
}

@media (hover: hover) {
  .wert-card:hover {
    transform: translateY(-8px) rotateX(2deg);
    border-color: rgba(255,255,255,0.14);
  }
}

.wert-card h3 {
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 12px;
}

/* ===========================
   KONTAKT PAGE
=========================== */
.kontakt-hero {
  padding: 160px 40px 60px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.trust-signals {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 40px 0 60px;
  flex-wrap: wrap;
}

.trust-signal {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-400);
}

.trust-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-primary);
  flex-shrink: 0;
}

.urgency-note {
  margin-top: 32px;
  text-align: center;
  font-size: 14px;
  color: var(--gray-400);
  font-style: italic;
}

.contact-info {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
  border-top: 1px solid var(--border);
  padding-top: 48px;
}

.contact-info-item p:first-child {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 6px;
}

.contact-info-item p:last-child {
  font-size: 14px;
  color: var(--gray-400);
}

/* Newsletter */
.newsletter-section {
  margin-top: 80px;
  text-align: center;
  padding: 60px 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  position: relative;
  z-index: 1;
}

.newsletter-section h3 {
  margin-bottom: 8px;
}

.newsletter-section p {
  margin-bottom: 28px;
  color: var(--gray-400);
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 14px 18px;
  font-size: 15px;
  color: var(--foreground);
  font-family: 'Satoshi', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-form input::placeholder {
  color: var(--gray-400);
}

.newsletter-form input:focus {
  border-color: var(--blue-primary);
}

.newsletter-form button {
  padding: 14px 24px;
  background: var(--blue-primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-btn);
  font-size: 14px;
  letter-spacing: -0.01em;
  font-family: 'Satoshi', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
}

.newsletter-form button:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

/* ===========================
   LEGAL PAGES
=========================== */
.legal-page {
  padding: 160px 40px 120px;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.legal-page h1 {
  margin-bottom: 48px;
  font-size: clamp(28px, 4vw, 44px);
}

.legal-page h2 {
  font-size: clamp(18px, 2.5vw, 24px);
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-page h3 {
  font-size: 18px;
  margin-top: 28px;
  margin-bottom: 12px;
}

.legal-page p {
  margin-bottom: 16px;
}

.legal-page ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-page ul li {
  font-size: 16px;
  color: var(--gray-400);
  margin-bottom: 6px;
  line-height: 1.7;
}

.legal-page a {
  color: var(--blue-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav { padding: 20px 24px; }
  .nav.scrolled { padding: 14px 24px; }
}

@media (max-width: 1200px) {
  .container { padding: 0 32px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .frosted-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }

  .hero-headline { font-size: clamp(30px, 8vw, 48px); }

  .services-section { padding: 80px 20px 60px; }
  .services-grid { grid-template-columns: 1fr; }

  .fomo-section { padding: 80px 20px; }

  .products-section { padding: 60px 20px; }
  .frosted-grid { grid-template-columns: 1fr; }

  .contact-section { padding: 60px 20px; }

  .leistung-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 20px;
  }

  .leistung-grid.reverse { direction: ltr; }

  .leistung-section { padding: 60px 0; }

  .ueber-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 20px 60px;
  }

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

  .werte-section { padding: 0 20px 60px; }

  .trust-signals { flex-direction: column; align-items: center; gap: 16px; }

  .contact-info { grid-template-columns: 1fr; gap: 20px; }

  .newsletter-form { flex-direction: column; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }

  .cookie-banner { flex-direction: column; align-items: flex-start; padding: 16px 20px; }

  .page-hero { padding: 120px 20px 60px; }
  .kontakt-hero { padding: 120px 20px 40px; }
  .leistungen-cta { padding: 40px 20px; }
  .legal-page { padding: 120px 20px 80px; }
}

.leistung-img-wrap,
.ueber-img {
  overflow: hidden;
}

.leistung-img-wrap img,
.ueber-img img {
  object-fit: cover;
  object-position: center 5%;
  transform: scale(1.08);
  transform-origin: center top;
  transition: none;
}

.leistung-img-wrap img:hover,
.ueber-img img:hover {
  transform: scale(1.08);
}

@media (max-width: 768px) {

  /* Hero Headline Schriftgröße verkleinern damit kein falscher Umbruch */
  .hero-headline, .hero h1, [class*="hero"] h1 {
    font-size: clamp(2rem, 8vw, 3.5rem);
    word-break: keep-all;
    hyphens: none;
  }

  /* Über uns Hero Headline */
  .ueber-hero h1, .ueber-hero h2 {
    font-size: clamp(2rem, 8vw, 3rem);
    word-break: keep-all;
    hyphens: none;
  }

  /* Generell alle Headlines */
  h1 {
    font-size: clamp(1.8rem, 7vw, 3rem);
    word-break: keep-all;
    hyphens: none;
  }

  h2 {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }

  /* Container padding auf Mobile */
  .container, [class*="container"] {
    padding-inline: 20px;
  }

}
