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

:root {
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #1a1a1a;
  --dark3: #222222;
  --white: #ffffff;
  --grey: #ffffff;
  --grey-light: #ffffff;
  --accent: #ffffff;
  --border: rgba(255,255,255,0.1);
  --font: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo img { height: 36px; width: auto; }

.btn-primary {
  display: inline-block;
  background: var(--white);
  color: var(--black);
  font-weight: 600;
  font-size: 14px;
  padding: 12px 28px;
  border-radius: 0;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
  letter-spacing: 0.02em;
}
.btn-primary:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: var(--white);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  padding: 12px 28px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.3);
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
  letter-spacing: 0.02em;
}
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.05); }

/* ===== SECTIONS ===== */
section { padding: 100px 60px; }

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

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 20px;
}

h1 {
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

p { color: var(--grey-light); line-height: 1.7; font-size: 14px; }

/* ===== HERO ===== */
.hero {
  height: 100vh;
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Parallax background layer */
.hero-bg {
  position: absolute;
  inset: -15%;
  background-image: url('images/hero-marvin-media-consten.gif');
  background-size: cover;
  background-position: center;
  will-change: transform;
}

/* Gradient overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 50% 45%, rgba(0,0,0,0.0) 0%, rgba(0,0,0,0.92) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.95) 100%);
}

/* Centered content */
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
  max-width: 780px;
  will-change: transform, filter, opacity;
  transform-origin: center center;
}

.hero-logo {
  height: 120px;
  width: auto;
  margin: 0 auto 32px;
}

.hero-content .section-tag {
  display: block;
  margin-bottom: 16px;
}

.hero-content h1 {
  font-size: clamp(22px, 2.8vw, 36px);
  margin-bottom: 16px;
}

.hero-content h1 em {
  font-style: normal;
  color: var(--grey-light);
}

.hero-content p {
  font-size: 14px;
  margin-bottom: 32px;
  color: var(--grey-light);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== VALUE PROPS ===== */
.values {
  background: #ffffff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 2;
}

.values .container {
  will-change: transform, filter, opacity;
  transform-origin: center center;
}

/* ===== SECTION 3 (About Podcast – sticky) ===== */
.section-3 {
  position: sticky;
  top: 0;
  z-index: 3;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  padding: 0 60px;
}

.section-3-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  will-change: transform, filter, opacity;
  transform-origin: center center;
}

.sec3-text { text-align: left; }
.sec3-text .section-tag { display: block; margin-bottom: 16px; }
.sec3-text h2 { margin-bottom: 24px; }
.sec3-text p { margin-bottom: 16px; font-size: 14px; }
.sec3-text .btn-primary { margin-top: 12px; }

.sec3-images {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
}

.sec3-img-front {
  position: absolute;
  top: 0;
  left: 0;
  width: 68%;
  height: 72%;
  object-fit: cover;
  border-radius: var(--radius);
  z-index: 2;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
}

.sec3-img-back {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 68%;
  height: 72%;
  object-fit: cover;
  border-radius: var(--radius);
  z-index: 1;
}

.page-rest {
  position: relative;
  z-index: 7;
  background: #000000;
}

.values .container {
  width: 100%;
}

.values-intro {
  text-align: center;
  margin-bottom: 56px;
}

.values-intro h2 {
  color: #000000;
  margin-bottom: 20px;
}

.values-intro p {
  color: #000000;
  font-size: 14px;
  max-width: 680px;
  line-height: 1.75;
  margin: 0 auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.value-item {
  padding: 0;
}

.value-item h3 {
  margin-bottom: 12px;
  font-weight: 700;
  color: #000000;
}

.value-item p {
  font-size: 14px;
  color: #000000;
  line-height: 1.7;
}

/* ===== ABOUT PODCAST ===== */
.about-podcast {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-podcast-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.about-podcast-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-podcast-text h2 { margin-bottom: 24px; }
.about-podcast-text p { margin-bottom: 32px; font-size: 17px; }

/* ===== SERVICES ===== */
.services {
  background: var(--black);
  position: sticky;
  top: 0;
  z-index: 4;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 60px;
  overflow: hidden;
}

.services-bg {
  position: absolute;
  inset: -15%;
  background-image: url('images/AdobeStock_982004057.jpg');
  background-size: cover;
  background-position: center;
  will-change: transform;
  pointer-events: none;
}

.services-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0,0,0,0.0) 0%, rgba(0,0,0,0.96) 48%, rgba(0,0,0,0.99) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.97) 100%);
  pointer-events: none;
}

.services .container {
  will-change: transform, filter, opacity;
  transform-origin: center center;
  width: 100%;
}

.services-header { text-align: center; margin-bottom: 48px; }
.services-header h2 { margin-bottom: 0; }

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

.service-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 36px 32px;
  transition: border-color 0.2s;
  opacity: 0;
}

.service-card:hover {
  border-color: rgba(255,255,255,0.25);
}

.services-cta {
  text-align: center;
  margin-top: 40px;
  opacity: 0;
}

.service-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  object-fit: contain;
  filter: invert(1);
}

.service-card h3 { margin-bottom: 12px; font-size: 18px; }
.service-card p { font-size: 14px; color: #ffffff; }

/* ===== REFERENCES ===== */
.references-section {
  background: var(--black);
  position: sticky;
  top: 0;
  z-index: 5;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 60px;
  overflow: hidden;
}

.references-bg {
  display: none;
}

.references-section .container {
  will-change: transform, filter, opacity;
  transform-origin: center center;
  width: 100%;
}

.references-header {
  text-align: center;
  margin-bottom: 60px;
}

.references-header h2 { margin-bottom: 8px; }

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

.ref-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
}

.ref-card {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark2);
  border: 1px solid var(--border);
}

.ref-card--empty { background: var(--dark2); }

.ref-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.ref-card:hover img {
  transform: scale(1.08);
}

.ref-card-label {
  margin-top: 14px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.ref-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: #ffffff;
  color: #000000;
  padding: 3px 8px;
  border-radius: 0;
}

/* ===== ABOUT ===== */
.about-section {
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 6;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-section .container {
  will-change: transform, filter, opacity;
  transform-origin: center center;
  width: 100%;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-photo {
  display: flex;
  justify-content: center;
}

.about-photo img {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}

.about-text h2 { margin-bottom: 28px; color: #000000; }
.about-text p { font-size: 17px; line-height: 1.75; margin-bottom: 20px; color: #000000; }

.about-quote {
  border-left: 3px solid #000000;
  padding-left: 24px;
  margin: 32px 0;
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  line-height: 1.5;
}

.about-email {
  color: #000000;
  font-size: 14px;
  margin-top: 8px;
}

.about-email a { color: #000000; text-decoration: underline; text-decoration-color: rgba(0,0,0,0.3); }
.about-email a:hover { text-decoration-color: #000000; }

/* ===== FAQ ===== */
.faq-header { text-align: center; margin-bottom: 60px; }
.faq-header h2 { margin-bottom: 0; }

.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font);
  font-size: 17px;
  font-weight: 600;
  text-align: left;
  padding: 28px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--grey-light); }

.faq-icon {
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  display: inline-block;
  transform-origin: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding-bottom: 0;
  color: var(--grey);
  font-size: 15px;
  line-height: 1.75;
  max-width: 680px;
  transition: max-height 0.45s ease, opacity 0.35s ease, padding-bottom 0.45s ease;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  opacity: 1;
  padding-bottom: 28px;
}

@keyframes faqSpinOpen {
  0%   { transform: rotate(0deg);   animation-timing-function: cubic-bezier(0.4,0,1,1); }
  25%  { transform: rotate(360deg); animation-timing-function: cubic-bezier(0.4,0,1,1); }
  55%  { transform: rotate(700deg); animation-timing-function: ease-out; }
  100% { transform: rotate(765deg); }
}

@keyframes faqSpinClose {
  0%   { transform: rotate(765deg); animation-timing-function: cubic-bezier(0.4,0,1,1); }
  25%  { transform: rotate(405deg); animation-timing-function: cubic-bezier(0.4,0,1,1); }
  55%  { transform: rotate(65deg);  animation-timing-function: ease-out; }
  100% { transform: rotate(0deg); }
}

/* ===== CONTACT ===== */
.contact-section { background: #000000; }

.contact-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.contact-inner h2 { margin-bottom: 20px; }
.contact-inner > p { font-size: 17px; margin-bottom: 48px; }

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: #000000;
  border: none;
  border-bottom: 2px solid #ffffff;
  border-radius: 0;
  color: #ffffff;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 12px 0;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-bottom-color: #ffffff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.form-group textarea { resize: none; min-height: 100px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }

.form-consent {
  margin-bottom: 28px;
}
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  color: #ffffff;
  font-size: 12px;
  line-height: 1.6;
  font-weight: 400;
}
.consent-label input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  min-width: 16px;
  border: 2px solid #ffffff;
  background: transparent;
  margin-top: 2px;
  cursor: pointer;
  position: relative;
}
.consent-label input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 1px;
  left: 4px;
  width: 4px;
  height: 8px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(45deg);
}
.consent-label a {
  color: #ffffff;
  text-decoration: underline;
}

.form-submit { margin-top: 16px; }
.form-submit .btn-primary {
  width: 100%;
  font-size: 14px;
  padding: 18px 28px;
  border-radius: 0;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-message {
  display: none;
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.form-message.success { background: rgba(0,255,100,0.1); border: 1px solid rgba(0,255,100,0.2); color: #00e060; }
.form-message.error { background: rgba(255,50,50,0.1); border: 1px solid rgba(255,50,50,0.2); color: #ff5050; }

/* ===== AUDIO WAVE ===== */
.wave-divider {
  text-align: center;
  padding: 40px 60px;
  opacity: 0.35;
}

.wave-divider img { max-width: 900px; width: 100%; margin: 0 auto; filter: invert(1); }

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 36px;
  right: 36px;
  z-index: 200;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid #ffffff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top:hover {
  background: rgba(255, 255, 255, 0.22);
}

.scroll-top::before {
  content: '';
  display: block;
  width: 13px;
  height: 13px;
  border-left: 2.5px solid #ffffff;
  border-top: 2.5px solid #ffffff;
  transition: border-color 0.3s ease;
  transform: rotate(45deg) translate(2px, 3px);
}

/* Chamäleon – heller Hintergrund */
.scroll-top.on-light {
  background: rgba(0, 0, 0, 0.1);
  border-color: #000000;
}

.scroll-top.on-light:hover {
  background: rgba(0, 0, 0, 0.18);
}

.scroll-top.on-light::before {
  border-left-color: #000000;
  border-top-color: #000000;
}

@media (max-width: 640px) {
  .scroll-top { display: none; }
}

/* ===== MOBILE BAR ===== */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 16px;
  right: 16px;
  z-index: 9999;
  gap: 10px;
  align-items: stretch;
}

.mobile-bar-contact {
  flex: 1;
  background:rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 2px solid #ffffff;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  cursor: pointer;
}

.mobile-bar-top {
  flex-shrink: 0;
  width: 52px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 2px solid #ffffff;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-bar-top::before {
  content: '';
  display: block;
  width: 11px;
  height: 11px;
  border-left: 2.5px solid #ffffff;
  border-top: 2.5px solid #ffffff;
  transform: rotate(45deg) translate(2px, 3px);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: #111111;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.cookie-banner p {
  color: #ffffff;
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
  max-width: 680px;
}
.cookie-banner p a {
  color: #ffffff;
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-decline {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 0;
  transition: background 0.2s, color 0.2s;
}
.cookie-decline:hover {
  background: rgba(255,255,255,0.08);
}
.cookie-accept {
  background: #ffffff;
  border: 2px solid #ffffff;
  color: #000000;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 0;
  transition: background 0.2s, color 0.2s;
}
.cookie-accept:hover {
  background: #dddddd;
  border-color: #dddddd;
}
@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 16px;
    bottom: 80px;
  }
  .cookie-actions { width: 100%; }
  .cookie-decline, .cookie-accept { flex: 1; text-align: center; }
}

/* ===== FOOTER ===== */
footer {
  background: #ffffff;
  border-top: none;
  padding: 40px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo img { height: 28px; width: auto; filter: invert(1); }

.footer-links {
  display: flex;
  gap: 32px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #000000;
}

.footer-links a:hover { color: #555555; }

/* ===== LEGAL PAGES ===== */
.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 140px 60px 100px;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}

.legal-page h1 { margin-bottom: 48px; font-size: 40px; }
.legal-page h2 { font-size: 22px; margin: 40px 0 16px; color: var(--white); }
.legal-page h3 { font-size: 17px; margin: 28px 0 10px; }
.legal-page p { margin-bottom: 16px; font-size: 15px; color: var(--grey-light); }
.legal-page ul { margin: 12px 0 16px 20px; list-style: disc; }
.legal-page ul li { margin-bottom: 6px; font-size: 15px; color: var(--grey-light); }
.legal-page a { color: var(--white); text-decoration: underline; }

/* ===== KONTAKT PAGE ===== */
.kontakt-page {
  min-height: 100vh;
  padding-top: 120px;
}

.kontakt-header {
  text-align: center;
  padding: 60px 60px 0;
  max-width: 700px;
  margin: 0 auto;
}

.kontakt-header h1 { font-size: clamp(36px, 4vw, 56px); margin-bottom: 24px; }
.kontakt-header p { font-size: 18px; color: var(--grey-light); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  nav, section, footer { padding-left: 32px; padding-right: 32px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-image { display: none; }
  .values-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .about-inner, .about-podcast, .section-3-inner { grid-template-columns: 1fr; gap: 48px; }
  .sec3-images { aspect-ratio: auto; height: 320px; }
  .references-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 640px) {
  .mobile-bar { display: flex; }

  nav { padding: 16px 20px; }
  section { padding: 72px 20px; }

  /* Hero: echte mobile Viewport-Höhe, kein sticky */
  .hero { height: 100dvh; padding: 0 !important; position: relative; }

  /* Hero Overlay: mehr Bild sichtbar auf Mobile */
  .hero-overlay {
    background:
      radial-gradient(ellipse 80% 60% at 50% 40%, rgba(0,0,0,0.0) 0%, rgba(0,0,0,0.80) 100%),
      linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.85) 100%);
  }

  /* Sticky-Effekte deaktivieren (außer Hero) */
  .values,
  .section-3,
  .about-section {
    position: relative !important;
    height: auto !important;
    overflow: visible;
    padding: 72px 20px !important;
  }

  .services,
  .references-section {
    position: relative !important;
    height: auto !important;
    overflow: hidden;
    padding: 72px 20px !important;
  }

  .services-overlay {
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.0) 0%, rgba(0,0,0,0.96) 65%, rgba(0,0,0,0.99) 100%);
  }

  /* JS-gesetzte Transforms zurücksetzen */
  .values .container,
  .section-3-inner,
  .services .container,
  .references-section .container,
  .about-section .container {
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
  }

  .service-card,
  .services-cta,
  .ref-item {
    opacity: 1 !important;
    transform: none !important;
  }

  /* Globale Typografie mobile */
  h1 { font-size: 19px; line-height: 1.25; }
  h2 { font-size: 17px; line-height: 1.3; }
  h3 { font-size: 14px; }
  p  { font-size: 12px; line-height: 1.6; }

  /* Spezifische Überschreibungen */
  .about-podcast-text p,
  .about-text p,
  .contact-inner > p,
  .sec3-text p,
  .service-card p { font-size: 12px; line-height: 1.6; }

  .service-card h3 { font-size: 14px; }
  .about-quote { font-size: 14px; }
  .values-intro p,
  .value-item p,
  .ref-card-label,
  .form-message,
  .about-email,
  .faq-answer { font-size: 12px; }

  /* Hero mobile */
  .hero-logo { height: 64px; margin-bottom: 20px; }
  .hero-content h1 { font-size: 19px; line-height: 1.25; margin-bottom: 12px; }
  .hero-content p { font-size: 12px; line-height: 1.6; margin-bottom: 24px; }
  .hero-content .section-tag { margin-bottom: 12px; }
  footer { padding: 32px 20px 100px; flex-direction: column; gap: 24px; text-align: center; }
  .footer-logo { display: none; }
  .wave-divider { padding: 32px 20px; }
  .values-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .references-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .references-section { padding-bottom: 150px !important; }
  .about-section { padding-bottom: 150px !important; }
  .about-photo img { width: 300px; height: 300px; }
  .faq-question { font-size: 14px; padding: 20px 0; }
  .form-group input,
  .form-group textarea { font-size: 12px; }
  .form-row { gap: 0; }
  .form-row .form-group { margin-bottom: 32px; }
  .about-inner { gap: 24px; }
  .section-3 { padding-top: 0; padding-bottom: 0; }
  .sec3-images { order: -1; height: 260px; }
  .sec3-text   { order: 1; }
  .services { padding-top: 0; padding-bottom: 0; }
  .references-section { padding-top: 0; padding-bottom: 0; }
  .about-section { padding-top: 0; padding-bottom: 0; }
  .contact-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .legal-page { padding: 60px 20px 80px; overflow-wrap: break-word; word-break: break-word; }
  .legal-page h1 { font-size: 24px; margin-bottom: 32px; }
  .legal-page h2 { font-size: 16px; margin: 28px 0 12px; }
  .legal-page h3 { font-size: 14px; margin: 20px 0 8px; }
  .legal-page p, .legal-page ul li { font-size: 12px; line-height: 1.7; }
  .kontakt-header { padding: 60px 20px 0; }
}
