/* ═══════════════════════════════════════════
   stimme24.com 2026 — Shared Stylesheet
   Design-Basis: v26.html
═══════════════════════════════════════════ */

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

:root {
  --petrol:    #005976;
  --petrol-10: rgba(0,89,118,0.08);
  --petrol-20: rgba(0,89,118,0.14);
  --sky:       #89c8db;
  --red:       #f02040;
  --ink:       #0d1e27;
  --body:      #3d5560;
  --muted:     #6e8a96;
  --rule:      #dce8ed;
  --pale:      #f3f4f5;
  --tint-1:    #eaf4f8;
  --tint-2:    #d4eaf2;
  --tint-3:    #4a8fa5;
  --navy:      #071820;
  --max:       1200px;
  --px:        48px;
  --s1: 0 1px 4px rgba(0,40,60,0.07), 0 4px 16px rgba(0,40,60,0.06);
  --s2: 0 4px 12px rgba(0,40,60,0.09), 0 12px 36px rgba(0,40,60,0.08);
  --s3: 0 8px 24px rgba(0,40,60,0.12), 0 24px 64px rgba(0,40,60,0.10);
}

html { font-size: 16px; scroll-behavior: smooth; overflow-x: clip; }
body {
  background: #fff;
  color: var(--ink);
  font-family: 'Geist', -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
a { color: inherit; text-decoration: none; }

/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
.nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  height: 56px;
  display: flex; align-items: center;
}
.nav-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 0 var(--px);
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
}
.nav-logo {
  font-size: 1.1rem; font-weight: 700;
  letter-spacing: -0.03em; color: var(--ink);
}
.nav-logo-dot { color: var(--petrol); }
.nav-links {
  display: flex; align-items: center; gap: 28px; list-style: none;
}
.nav-links a {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink); transition: color 0.15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--petrol); }
.nav-lang {
  color: var(--muted) !important;
  font-size: 11px !important;
}
.nav-cta {
  background: var(--red) !important;
  color: #fff !important;
  padding: 7px 16px; border-radius: 3px;
  font-size: 11px !important;
  letter-spacing: 0.08em !important;
}

/* ═══════════════════════════════════════════
   HERO — Homepage
═══════════════════════════════════════════ */
.hero {
  padding: 64px 0 0;
  background: linear-gradient(to bottom, rgba(0,89,118,0.07) 0%, #ffffff 55%);
  position: relative;
}
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(0,89,118,0.05) 0%, transparent 70%);
  animation: hero-pulse 9s ease-in-out infinite;
  pointer-events: none;
}
@keyframes hero-pulse {
  0%, 100% { opacity: 0; }
  50%       { opacity: 1; }
}
.hero-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 0 var(--px);
  display: grid;
  grid-template-columns: 1fr 560px;
  gap: 0;
  align-items: start;
  border-bottom: 1px solid var(--rule);
  position: relative; z-index: 1;
}
.hero-left {
  padding-right: 64px;
  padding-bottom: 72px;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--petrol);
  margin-bottom: 28px;
}
.hero-eyebrow span { display: block; width: 20px; height: 1.5px; background: var(--petrol); }
.hero-h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 800; line-height: 1.06;
  letter-spacing: -0.04em; color: var(--ink);
}
.hero-h1-sub {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 200; line-height: 1.06;
  letter-spacing: -0.04em; color: var(--petrol);
  margin-bottom: 28px;
}
.hero-slogan {
  background: var(--ink);
  border-left: 4px solid var(--petrol);
  padding: 18px 22px;
  margin-bottom: 28px;
}
.hero-slogan-text {
  font-size: 0.95rem; font-weight: 700;
  color: #fff; letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.hero-slogan-phone {
  font-size: 1rem; font-weight: 700;
  color: var(--sky);
}
.hero-lead {
  font-size: 0.925rem; color: var(--body);
  line-height: 1.8; margin-bottom: 32px;
  max-width: 440px; font-weight: 400;
}
.hero-actions { display: flex; gap: 12px; align-items: center; margin-bottom: 36px; }
.btn-cta {
  background: var(--red); color: #fff;
  padding: 12px 22px; border-radius: 3px;
  font-weight: 700; font-size: 0.855rem;
  letter-spacing: 0.04em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
  transition: opacity 0.2s;
}
.btn-cta:hover { opacity: 0.88; }
.btn-soft {
  color: var(--ink);
  border: 2px solid var(--ink);
  padding: 10px 20px; border-radius: 3px;
  font-weight: 700; font-size: 0.855rem;
  letter-spacing: 0.04em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.15s, color 0.15s;
}
.btn-soft:hover { background: var(--ink); color: #fff; }
.hero-meta {
  display: flex; gap: 24px; align-items: center;
}
.hero-meta-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 500;
  color: var(--muted); letter-spacing: 0.02em;
}
.hero-meta-item i { color: var(--petrol); font-size: 11px; }
.hero-meta-item a { color: var(--petrol); font-weight: 600; transition: opacity 0.2s; }
.hero-meta-item a:hover { opacity: 0.75; }
.hero-photo-col {
  position: relative;
  padding-left: 48px;
  align-self: stretch;
  display: flex;
  align-items: flex-end;
}
.hero-photo-frame {
  position: absolute;
  top: 18px; left: 30px; right: -18px; bottom: -18px;
  border: 1px solid rgba(0,89,118,0.15);
  pointer-events: none; z-index: 0;
}
.hero-photo {
  position: relative; z-index: 1;
  width: 100%; display: block;
}
.hero-badge {
  position: absolute; z-index: 2;
  left: 28px; bottom: -18px;
  background: #fff;
  border: 1px solid var(--rule);
  border-left: 3px solid var(--petrol);
  box-shadow: var(--s2);
  padding: 16px 20px; min-width: 130px;
}
.hero-badge-val {
  font-size: 1.7rem; font-weight: 800;
  color: var(--petrol); line-height: 1;
  letter-spacing: -0.04em;
}
.hero-badge-label {
  font-size: 0.68rem; color: var(--muted);
  margin-top: 4px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
}

/* ═══════════════════════════════════════════
   PAGE HERO — Unterseiten
═══════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(to bottom, rgba(0,89,118,0.06) 0%, #ffffff 70%);
  border-bottom: 1px solid var(--rule);
  padding: 60px 0 52px;
}
.page-hero-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--px);
}
.page-hero-eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--petrol);
  margin-bottom: 20px;
}
.page-hero-eyebrow span { display: block; width: 20px; height: 1.5px; background: var(--petrol); }
.page-hero h1 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800; line-height: 1.08;
  letter-spacing: -0.04em; color: var(--ink);
  margin-bottom: 16px;
}
.page-hero h1 em { color: var(--petrol); font-style: normal; font-weight: 200; }
.page-hero p {
  font-size: 1rem; color: var(--body);
  line-height: 1.75; max-width: 620px;
  margin-bottom: 28px;
}
.page-hero-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════ */
.stats-bar {
  background: #1a3040;
  padding: 40px 0;
  position: relative; overflow: hidden;
}
.stats-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 0 var(--px);
  display: grid; grid-template-columns: repeat(4,1fr);
}
.stat-item {
  text-align: center; padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.18);
}
.stat-item:last-child { border-right: none; }
.stat-val {
  font-size: 1.5rem; font-weight: 600;
  color: #b8c8d0; display: block;
  line-height: 1.1; letter-spacing: -0.03em;
}
.stat-label {
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  display: block; margin-top: 6px;
}
.stat-item--link { text-decoration: none; transition: opacity 0.2s; }
.stat-item--link:hover { opacity: 0.72; }

/* ═══════════════════════════════════════════
   SECTION HEADER
═══════════════════════════════════════════ */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--px); }
.sh {
  display: flex; align-items: baseline; gap: 20px;
  margin-bottom: 52px;
}
.sh-num {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--petrol); flex-shrink: 0;
  padding-top: 4px;
}
.sh-title {
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.18;
  color: var(--ink);
}
.sh-sub {
  font-size: 0.925rem; color: var(--body);
  margin-top: 10px; max-width: 500px; line-height: 1.75;
}
.sh-group { flex: 1; }

/* ═══════════════════════════════════════════
   LEISTUNGEN
═══════════════════════════════════════════ */
.leistungen { padding: 96px 0; background: var(--pale); position: relative; overflow: hidden; }
.leistungen::after {
  content: '';
  position: absolute; bottom: -250px; left: -250px;
  width: 600px; height: 600px; border-radius: 50%;
  border: 60px solid rgba(0,89,118,0.04);
  pointer-events: none;
  animation: slow-spin 40s linear infinite;
}
@keyframes slow-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.l-list {
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.l-item {
  display: grid;
  grid-template-columns: 40px 1fr 20px;
  gap: 16px 20px; align-items: start;
  padding: 26px 28px;
  background: #fff;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  transition: background 0.2s;
  cursor: pointer;
}
.l-item:hover { background: var(--tint-1); }
.l-icon {
  width: 34px; height: 34px;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 13px;
  flex-shrink: 0; margin-top: 3px;
  transition: background 0.2s;
}
.l-item:hover .l-icon { background: var(--petrol); }
.l-item:nth-child(2n) { border-right: none; }
.l-item:nth-last-child(-n+2) { border-bottom: none; }
.l-title {
  font-size: 0.95rem; font-weight: 700; color: var(--ink);
  margin-bottom: 4px; letter-spacing: -0.01em;
}
.l-text { font-size: 0.845rem; color: var(--body); line-height: 1.6; }
.l-arr {
  color: var(--rule); font-size: 0.8rem; margin-top: 6px;
  transition: color 0.2s, transform 0.2s; flex-shrink: 0;
}
.l-item:hover .l-arr { color: var(--petrol); transform: translateX(4px); }

/* ═══════════════════════════════════════════
   ÜBER MICH
═══════════════════════════════════════════ */
.about { display: grid; grid-template-columns: 1fr 1fr; }
.about-img {
  background:
    url('https://www.stimme24.com/_assets/images/tonstudio-sprecher-andreas-brenner.webp')
    center center / cover no-repeat;
  min-height: 520px;
}
.about-body {
  background: #08212f;
  padding: 72px 60px;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
}
.about-body::before {
  content: '24';
  position: absolute; bottom: -40px; right: -20px;
  font-size: 18rem; font-weight: 900;
  color: rgba(255,255,255,0.025);
  line-height: 1; letter-spacing: -0.06em;
  pointer-events: none; user-select: none;
}
.about-eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--sky);
  margin-bottom: 20px;
}
.about-eyebrow span { display: block; width: 20px; height: 1.5px; background: var(--sky); }
.about-h {
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.2;
  color: #fff; margin-bottom: 18px;
}
.about-h em { color: var(--sky); font-style: normal; font-weight: 300; }
.about-p {
  font-size: 0.9rem; color: rgba(255,255,255,0.5);
  line-height: 1.8; margin-bottom: 36px;
}
.about-nums {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: rgba(255,255,255,0.06);
  margin-bottom: 40px;
}
.about-num { background: #08212f; padding: 20px 22px; }
.about-num-v {
  font-size: 1.8rem; font-weight: 800; color: var(--sky);
  line-height: 1; letter-spacing: -0.04em;
}
.about-num-l {
  font-size: 0.7rem; color: rgba(255,255,255,0.35);
  margin-top: 5px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase;
}
.about-cta {
  background: var(--red); color: #fff;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  font-weight: 700; font-size: 0.855rem;
  letter-spacing: 0.04em; text-transform: uppercase;
  align-self: flex-start; transition: opacity 0.2s;
}
.about-cta:hover { opacity: 0.88; }
.about-tel {
  margin-top: 12px; font-size: 0.8rem; color: rgba(255,255,255,0.35);
}
.about-tel a { color: rgba(255,255,255,0.6); font-weight: 500; transition: color 0.2s; }
.about-tel a:hover { color: #fff; }

/* ═══════════════════════════════════════════
   REFERENZEN
═══════════════════════════════════════════ */
.referenzen {
  padding: 96px 0;
  background: var(--tint-2);
  position: relative; overflow: hidden;
}
.referenzen::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(0,89,118,0.12) 1px, transparent 1px);
  background-size: 24px 24px;
  z-index: 0;
}
.ref-flow {
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 800;
  color: var(--petrol);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 56px;
}
.ref-dot { color: var(--tint-3); }
.ref-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(6,1fr);
  border: 1px solid var(--rule);
  background: #fff;
  box-shadow: var(--s1);
}
.ref-cell {
  padding: 28px 12px;
  display: flex; align-items: center; justify-content: center;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  transition: background 0.15s;
}
.ref-cell:hover { background: var(--pale); }
.ref-cell:nth-child(6n) { border-right: none; }
.ref-cell:nth-last-child(-n+6) { border-bottom: none; }
.ref-logo {
  max-height: 28px; max-width: 90px;
  width: auto; display: block;
  opacity: 0.35; filter: grayscale(100%);
  transition: opacity 0.2s, filter 0.2s;
}
.ref-cell:hover .ref-logo { opacity: 0.7; filter: grayscale(0%); }

/* ═══════════════════════════════════════════
   TESTIMONIAL
═══════════════════════════════════════════ */
.testimonials {
  padding: 80px 0;
  background: #fff;
  overflow: hidden;
}
.testi-track-wrap {
  position: relative;
  overflow: hidden;
}
.testi-track-wrap::before,
.testi-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.testi-track-wrap::before { left: 0; background: linear-gradient(to right, #fff 0%, transparent 100%); }
.testi-track-wrap::after  { right: 0; background: linear-gradient(to left, #fff 0%, transparent 100%); }
.testi-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: testi-scroll 34s linear infinite;
}
.testi-track:hover { animation-play-state: paused; }
@keyframes testi-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.testi-slide {
  width: 340px;
  background: var(--pale);
  padding: 28px 32px;
  flex-shrink: 0;
  border-top: 3px solid var(--petrol);
}
.testi-stars {
  color: #f59e0b;
  font-size: .9rem;
  margin-bottom: 14px;
  letter-spacing: 3px;
}
.testi-quote {
  font-size: .9rem;
  line-height: 1.7;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 18px;
}
.testi-name { font-size: .85rem; font-weight: 700; color: var(--petrol); }
.testi-org  { font-size: .78rem; color: var(--muted); margin-top: 2px; }

/* kontakt section on homepage */
.hp-kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.hp-kontakt-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.hp-kontakt-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.hp-kontakt-icon {
  width: 44px; height: 44px;
  background: var(--petrol);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hp-kontakt-icon i { color: #fff; font-size: 15px; }
.hp-kontakt-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 4px;
}
.hp-kontakt-val {
  font-size: 1.2rem; font-weight: 800;
  color: var(--ink); letter-spacing: -.02em;
  display: block;
}
.hp-kontakt-val-sm {
  font-size: .95rem; font-weight: 600; color: var(--ink);
}
.hp-kontakt-hint {
  font-size: .8rem; color: var(--muted); margin-top: 2px;
}
.hp-kontakt-form {
  background: #fff;
  padding: 40px;
  border: 1px solid var(--rule);
}
.hp-kontakt-form-label-row {
  font-size: 10px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--petrol); margin-bottom: 24px;
}
.hp-kontakt-form .f-field { display: flex; flex-direction: column; gap: 14px; }
.hp-kontakt-form label {
  font-size: .75rem; font-weight: 600;
  color: var(--muted); display: block;
  margin-bottom: 5px; text-transform: uppercase;
  letter-spacing: .08em;
}
.hp-kontakt-form input,
.hp-kontakt-form textarea {
  width: 100%; box-sizing: border-box;
  border: 1px solid var(--rule);
  padding: 10px 14px;
  font-size: .9rem; font-family: inherit;
  outline: none; color: var(--ink);
  transition: border-color .15s;
}
.hp-kontakt-form input:focus,
.hp-kontakt-form textarea:focus { border-color: var(--petrol); }
.hp-kontakt-form textarea { resize: vertical; }
.hp-kontakt-form .btn-send {
  background: var(--red); color: #fff;
  border: none; padding: 13px 24px;
  font-family: inherit; font-weight: 700;
  font-size: .875rem; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: opacity .2s;
}
.hp-kontakt-form .btn-send:hover { opacity: .88; }
@media(max-width:768px){
  .hp-kontakt-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   KSK HINWEIS
═══════════════════════════════════════════ */
.ksk-box {
  background: var(--petrol-10);
  border-left: 4px solid var(--petrol);
  padding: 28px 32px;
}
.ksk-box h3 {
  font-size: 0.95rem; font-weight: 700; color: var(--petrol);
  margin-bottom: 10px;
}
.ksk-box p {
  font-size: 0.875rem; color: var(--body); line-height: 1.7;
}

/* ═══════════════════════════════════════════
   GENERIC SECTION + PROSE (Sprecher/Ratgeber-Seiten)
═══════════════════════════════════════════ */
.section { padding: 72px 0; background: #fff; }
.section--pale { background: var(--pale); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; align-items: start; }
.prose p { margin-bottom: 1.25em; line-height: 1.75; color: var(--body); font-size: 1rem; }
.prose p:last-child { margin-bottom: 0; }

/* ═══════════════════════════════════════════
   LEISTUNGEN-GRID / LEISTUNG-CARD (Sprecher-Seiten)
═══════════════════════════════════════════ */
.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.leistung-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 28px 24px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.leistung-card:hover {
  box-shadow: 0 4px 20px rgba(0,89,118,0.1);
  border-color: var(--sky);
}
.leistung-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--petrol-10, #e6f0f4);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  font-size: 1.1rem;
  color: var(--petrol);
}
.leistung-card h3 {
  font-size: 1rem; font-weight: 700;
  color: var(--ink); margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.leistung-card p {
  font-size: .875rem; color: var(--body);
  line-height: 1.65; margin: 0;
}
.leistung-card a {
  display: inline-block; margin-top: 12px;
  font-size: .8rem; font-weight: 600;
  color: var(--petrol); text-decoration: none;
}
.leistung-card a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════
   FAQ
═══════════════════════════════════════════ */
.faq { padding: 96px 0; background: var(--pale); position: relative; overflow: hidden; }
.faq::after {
  content: '+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  font-size: 1.4rem; font-weight: 300; color: rgba(0,89,118,0.06);
  letter-spacing: 2.5rem; line-height: 3.8rem;
  pointer-events: none; overflow: hidden;
  word-break: break-all;
}
.faq-list { border-top: 1px solid var(--rule); margin-top: 52px; }
.faq-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0; padding: 32px 0;
  border-bottom: 1px solid var(--rule);
  transition: background 0.15s;
  position: relative; z-index: 1;
}
.faq-item:hover { background: rgba(255,255,255,0.6); margin: 0 -12px; padding-left: 12px; padding-right: 12px; }
.faq-num {
  font-size: 2rem; font-weight: 800;
  color: var(--petrol); opacity: 0.25;
  line-height: 1.2; padding-top: 2px;
  letter-spacing: -0.04em;
}
.faq-q {
  font-weight: 700; font-size: 0.95rem; color: var(--ink);
  line-height: 1.4; margin-bottom: 8px; letter-spacing: -0.01em;
}
.faq-a { font-size: 0.87rem; color: var(--body); line-height: 1.7; }
.faq-a a { color: var(--petrol); }

/* ═══════════════════════════════════════════
   CTA BAND
═══════════════════════════════════════════ */
.cta-band {
  background: linear-gradient(120deg, #004a63 0%, var(--petrol) 100%);
  padding: 80px 0;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
  pointer-events: none;
  box-shadow:
    0 0 0 80px rgba(255,255,255,0.03),
    0 0 0 160px rgba(255,255,255,0.02);
}
.cta-band::after {
  content: '';
  position: absolute; bottom: -40px; left: -40px;
  width: 300px; height: 300px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.04);
  pointer-events: none;
}
.cta-band-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 0 var(--px);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  position: relative; z-index: 1;
}
.cta-h {
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  font-weight: 800; color: #fff;
  letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 10px;
}
.cta-sub { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.6; }
.cta-right { display: flex; flex-direction: column; gap: 12px; }
.cta-phone {
  font-size: 1.6rem; font-weight: 800;
  color: #fff; letter-spacing: -0.03em;
  display: block; transition: opacity 0.2s;
}
.cta-phone:hover { opacity: 0.8; }
.cta-btns { display: flex; gap: 12px; align-items: center; }
.btn-w {
  background: #fff; color: var(--petrol);
  padding: 12px 24px;
  font-weight: 700; font-size: 0.855rem;
  letter-spacing: 0.04em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: var(--s1);
  transition: opacity 0.2s;
}
.btn-w:hover { opacity: 0.94; }
.btn-ghost-w {
  border: 2px solid rgba(255,255,255,0.3); color: rgba(255,255,255,0.8);
  padding: 10px 20px;
  font-weight: 700; font-size: 0.855rem;
  letter-spacing: 0.04em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost-w:hover { border-color: rgba(255,255,255,0.8); color: #fff; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
  background: #1c2e38;
  border-top: 3px solid var(--petrol);
}
.footer-body {
  max-width: var(--max); margin: 0 auto; padding: 72px var(--px) 36px;
}
.footer-cols {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 56px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 28px;
}
.f-logo {
  font-size: 1.05rem; font-weight: 700; color: #fff;
  letter-spacing: -0.03em; display: inline-flex;
  align-items: baseline; gap: 1px;
  margin-bottom: 14px;
}
.f-logo-dot { color: var(--sky); }
.f-tagline {
  font-size: 0.82rem; color: rgba(255,255,255,0.35);
  line-height: 1.75; margin-bottom: 24px;
}
.f-contact a {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: rgba(255,255,255,0.5);
  font-weight: 500; margin-bottom: 8px;
  transition: color 0.2s;
}
.f-contact a:hover { color: rgba(255,255,255,0.85); }
.f-contact i { color: var(--sky); font-size: 10px; width: 12px; }
.f-col-label {
  font-size: 9px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.2);
  margin-bottom: 20px; display: block;
}
.f-col ul { list-style: none; }
.f-col li { margin-bottom: 10px; }
.f-col a {
  font-size: 0.825rem; color: rgba(255,255,255,0.4);
  transition: color 0.2s; font-weight: 400;
}
.f-col a:hover { color: rgba(255,255,255,0.8); }
.footer-bottom {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  font-size: 0.75rem; color: rgba(255,255,255,0.2);
}
.footer-copy { text-align: center; color: rgba(255,255,255,0.35); white-space: nowrap; }
.footer-bottom-links { display: flex; gap: 20px; justify-content: flex-end; }
.memberof {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.75rem; font-weight: 500;
  color: rgba(255,255,255,0.25);
  transition: color 0.2s;
}
.memberof:hover { color: rgba(255,255,255,0.6); }
.memberof span { display: inline-flex; align-items: center; }
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: rgba(255,255,255,0.75); }

/* ═══════════════════════════════════════════
   SCROLL REVEAL ANIMATIONEN
═══════════════════════════════════════════ */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-left {
  opacity: 0; transform: translateX(-28px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.fade-left.visible { opacity: 1; transform: translateX(0); }
.fade-right {
  opacity: 0; transform: translateX(28px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.fade-right.visible { opacity: 1; transform: translateX(0); }
.scale-in {
  opacity: 0; transform: scale(0.94);
  transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1), transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.scale-in.visible { opacity: 1; transform: scale(1); }
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.08s; }
.stagger > *:nth-child(3) { transition-delay: 0.16s; }
.stagger > *:nth-child(4) { transition-delay: 0.24s; }
.stagger > *:nth-child(5) { transition-delay: 0.32s; }
.stagger > *:nth-child(6) { transition-delay: 0.40s; }
.stagger > *:nth-child(7) { transition-delay: 0.48s; }
.stagger > *:nth-child(8) { transition-delay: 0.56s; }

/* Stat-Zahlen Animation */
@keyframes count-up {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.stat-val { animation: count-up 0.7s ease both; }
.stat-item:nth-child(1) .stat-val { animation-delay: 0.1s; }
.stat-item:nth-child(2) .stat-val { animation-delay: 0.25s; }
.stat-item:nth-child(3) .stat-val { animation-delay: 0.4s; }
.stat-item:nth-child(4) .stat-val { animation-delay: 0.55s; }

/* ═══════════════════════════════════════════
   DEMOS / YOUTUBE LAZY
═══════════════════════════════════════════ */
.demos-subnav {
  background: #fff;
  border-bottom: 1px solid var(--rule);
  position: sticky; top: 56px; z-index: 100;
}
.demos-subnav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--px);
  display: flex; align-items: center; gap: 0;
  overflow-x: auto; scrollbar-width: none;
}
.demos-subnav-inner::-webkit-scrollbar { display: none; }
.demos-subnav-inner a {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--muted);
  padding: 16px 16px; white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.demos-subnav-inner a:hover { color: var(--petrol); border-bottom-color: var(--petrol); }

.demos-section { padding: 72px 0; border-bottom: 1px solid var(--rule); }
.demos-section:last-of-type { border-bottom: none; }
.demos-section-header { margin-bottom: 36px; }
.demos-section-header h2 {
  font-size: clamp(1.4rem, 2vw, 1.7rem);
  font-weight: 700; letter-spacing: -0.03em; color: var(--ink);
  margin-bottom: 8px;
}
.demos-section-header p {
  font-size: 0.875rem; color: var(--body); line-height: 1.65;
  max-width: 640px;
}
.demos-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.demo-card { background: var(--pale); }
.demo-card-label {
  padding: 12px 16px;
  border-top: 2px solid var(--petrol);
}
.demo-card-cat {
  font-size: 9px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--muted); display: block;
  margin-bottom: 2px;
}
.demo-card-title {
  font-size: 0.875rem; font-weight: 700; color: var(--ink);
}
.yt-lazy {
  position: relative; cursor: pointer;
  background: #000;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.yt-lazy img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: opacity 0.3s;
}
.yt-lazy:hover img { opacity: 0.8; }
.play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(0,0,0,0.72);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
  pointer-events: none;
}
.yt-lazy:hover .play-btn {
  background: var(--red);
  transform: translate(-50%, -50%) scale(1.1);
}
.play-btn::after {
  content: '';
  display: block;
  width: 0; height: 0;
  border-style: solid;
  border-width: 9px 0 9px 18px;
  border-color: transparent transparent transparent #fff;
  margin-left: 3px;
}
.yt-lazy iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: none;
}
.demos-cta {
  margin-top: 28px;
}

/* Downloads Box */
.downloads-box {
  background: var(--petrol-10);
  border-left: 4px solid var(--petrol);
  padding: 24px 28px;
  display: flex; align-items: center; gap: 24px;
  flex-wrap: wrap;
}
.downloads-box p {
  font-size: 0.9rem; color: var(--body); flex: 1;
}
.downloads-box .btn-dl {
  background: var(--petrol); color: #fff;
  padding: 10px 20px;
  font-weight: 700; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.08em;
  display: inline-flex; align-items: center; gap: 8px;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.downloads-box .btn-dl:hover { opacity: 0.85; }

/* ═══════════════════════════════════════════
   PREISLISTE
═══════════════════════════════════════════ */
.price-section { padding: 80px 0; }
.price-section + .price-section { border-top: 1px solid var(--rule); }

.sprechdauer-box {
  background: var(--pale);
  border: 1px solid var(--rule);
  display: grid; grid-template-columns: 1fr 180px;
  margin-bottom: 40px;
}
.sprechdauer-input {
  padding: 20px 24px;
  font-size: 0.9rem; color: var(--ink);
  font-family: inherit;
  min-height: 100px;
  outline: none; border: none;
  resize: none; background: transparent;
  line-height: 1.7;
}
.sprechdauer-result {
  background: var(--petrol);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 20px;
  text-align: center;
}
.sprechdauer-val {
  font-size: 2.2rem; font-weight: 800;
  color: #fff; line-height: 1;
  letter-spacing: -0.04em;
}
.sprechdauer-unit {
  font-size: 0.75rem; color: rgba(255,255,255,0.6);
  font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; margin-top: 4px;
}
.sprechdauer-hint {
  font-size: 0.7rem; color: rgba(255,255,255,0.4);
  margin-top: 8px;
}

.price-table { border-top: 1px solid var(--rule); margin-bottom: 32px; }
.price-group-title {
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--petrol); background: var(--tint-1);
  padding: 12px 16px;
  border-bottom: 1px solid var(--rule);
  margin-top: 0;
}
.price-group-title em {
  font-style: normal; font-weight: 400;
  color: var(--muted); margin-left: 8px;
}
.price-row {
  display: grid; grid-template-columns: 1fr 1fr auto;
  gap: 16px; padding: 14px 16px;
  border-bottom: 1px solid var(--rule);
  align-items: center;
}
.price-row:last-of-type { border-bottom: none; }
.price-row:hover { background: var(--tint-1); }
.price-name { font-size: 0.9rem; font-weight: 600; color: var(--ink); }
.price-desc { font-size: 0.82rem; color: var(--muted); }
.price-val {
  font-size: 0.975rem; font-weight: 800;
  color: var(--petrol); text-align: right;
  white-space: nowrap;
}
.price-notes {
  font-size: 0.82rem; color: var(--body);
  line-height: 1.7; padding: 16px 0;
  border-top: 1px solid var(--rule);
}

/* ═══════════════════════════════════════════
   STUDIO
═══════════════════════════════════════════ */
.studio-panorama {
  width: 100%; display: block;
  max-height: 480px; object-fit: cover;
  margin-bottom: 2px;
}
.studio-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; background: var(--rule);
  margin-bottom: 64px;
}
.studio-photo {
  aspect-ratio: 16/9;
  background-size: cover; background-position: center;
}
.studio-spec-block {
  background: #fff; padding: 36px 40px;
  display: flex; flex-direction: column; gap: 0;
}
.spec-item {
  display: grid; grid-template-columns: 110px 1fr;
  gap: 12px; padding: 12px 0;
  border-bottom: 1px solid var(--rule);
}
.spec-item:last-child { border-bottom: none; }
.spec-label {
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--muted);
}
.spec-val {
  font-size: 0.875rem; color: var(--ink); line-height: 1.6;
}
.spec-val em { color: var(--muted); font-style: normal; font-size: 0.8rem; }
.spec-val a { color: var(--petrol); }
.remote-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1px; background: var(--rule);
}
.remote-item {
  background: #fff; padding: 24px 20px; text-align: center;
}
.remote-icon {
  width: 40px; height: 40px; background: var(--petrol);
  margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 16px;
}
.remote-name {
  font-size: 0.85rem; font-weight: 700; color: var(--ink);
  margin-bottom: 4px;
}
.remote-detail {
  font-size: 0.75rem; color: var(--muted);
}
.remote-detail a { color: var(--petrol); }

/* ═══════════════════════════════════════════
   KONTAKT
═══════════════════════════════════════════ */
.kontakt-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
}
.kontakt-info { display: flex; flex-direction: column; gap: 28px; }
.kontakt-item {
  display: flex; gap: 16px; align-items: flex-start;
}
.kontakt-icon {
  width: 44px; height: 44px; background: var(--petrol);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: #fff; font-size: 15px;
}
.kontakt-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 4px;
}
.kontakt-val {
  font-size: 1.1rem; font-weight: 700; color: var(--ink); display: block;
}
.kontakt-val-big {
  font-size: 1.4rem; font-weight: 800; letter-spacing: -0.02em;
}
.kontakt-hint { font-size: 0.8rem; color: var(--muted); margin-top: 2px; }
.kontakt-form {
  background: #fff; padding: 40px;
  border: 1px solid var(--rule);
}
.form-label {
  font-size: 0.75rem; font-weight: 600; color: var(--muted);
  display: block; margin-bottom: 5px;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.form-input, .form-textarea {
  width: 100%; border: 1px solid var(--rule);
  padding: 10px 14px; font-size: 0.9rem;
  font-family: inherit; outline: none; color: var(--ink);
  background: #fff;
  transition: border-color 0.15s;
}
.form-input:focus, .form-textarea:focus { border-color: var(--petrol); }
.form-textarea { resize: vertical; }
.form-group { margin-bottom: 14px; }
.form-submit {
  background: var(--red); color: #fff;
  border: none; padding: 13px 24px;
  font-family: inherit; font-weight: 700; font-size: 0.875rem;
  cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
  transition: opacity 0.2s;
}
.form-submit:hover { opacity: 0.88; }

/* Impressum / Legal */
.legal-section { padding: 72px 0; border-top: 1px solid var(--rule); }
.legal-grid {
  display: grid; grid-template-columns: 180px 1fr;
  gap: 0;
}
.legal-item {
  display: contents;
}
.legal-key {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--muted);
  padding: 14px 0; border-bottom: 1px solid var(--rule);
}
.legal-val {
  font-size: 0.875rem; color: var(--ink);
  padding: 14px 0 14px 24px; border-bottom: 1px solid var(--rule);
  line-height: 1.6;
}
.legal-val a { color: var(--petrol); }
.legal-text a, .legal-section p a {
  color: var(--petrol);
  text-decoration: underline;
  text-decoration-color: rgba(0,89,118,0.35);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s;
}
.legal-text a:hover, .legal-section p a:hover {
  text-decoration-color: var(--petrol);
}
.legal-heading {
  font-size: 1.3rem; font-weight: 700; letter-spacing: -0.02em;
  color: var(--ink); margin-bottom: 20px; margin-top: 48px;
}
.legal-text {
  font-size: 0.875rem; color: var(--body); line-height: 1.75;
  max-width: 720px;
}

/* ═══════════════════════════════════════════
   MOBILE & RESPONSIVE — GLOBAL
   Breakpoints: 1024px (tablet), 768px (mobile)
═══════════════════════════════════════════ */

/* ── NAV BURGER MENU ── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none; border: none;
  cursor: pointer; padding: 4px;
}
.nav-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* nav-actions: wrapper for CTA button in new pages */
.nav-actions { display: flex; align-items: center; gap: 12px; }

/* btn-sm for nav CTA */
.btn-sm { padding: 7px 16px !important; font-size: 0.75rem !important; }

/* studio-photos-grid: inline two-photo grid on studio page */
.studio-photos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--rule);
  margin-bottom: 64px;
  max-width: 100%;
  overflow: hidden;
}

@media(max-width: 768px) {

  :root { --px: 16px; }

  /* Kein horizontaler Overflow — nur Media-Elemente beschränken, nie layout-Elemente */
  img, svg, video, iframe, embed, object { max-width: 100%; height: auto; }

  /* ── NAV ── */
  .nav-burger { display: flex; }
  .nav-links {
    display: none;
    position: fixed; top: 56px; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: flex-start;
    gap: 0; padding: 24px var(--px);
    overflow-y: auto;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; border-bottom: 1px solid var(--rule); }
  .nav-links a {
    display: block; padding: 14px 0;
    font-size: 1rem !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
  }
  .nav-actions { display: none; }

  /* ── HERO ── */
  .hero { padding: 40px 0 0; }
  .hero-eyebrow { font-size: 0.75rem; }
  .hero-h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-h1-sub { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-meta { flex-wrap: wrap; gap: 12px; }
  .hero-grid { grid-template-columns: 1fr !important; gap: 40px; }
  .hero-img { display: none; }
  .hero-inner { grid-template-columns: 1fr !important; }
  .hero-photo-col { display: none; }
  .hero-left { padding-right: 0; padding-bottom: 48px; }

  /* ── PAGE HERO (Unterseiten) ── */
  .page-hero { padding: 40px 0 36px; }
  .page-hero-title { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .page-hero-lead { font-size: 1rem; }

  /* ── STATS BAR ── */
  .stats-bar { padding: 24px 0; }
  .stats-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 16px;
  }
  .stat-item { text-align: center; }
  .stat-val { font-size: 1.5rem; }

  /* ── SECTION ── */
  .section { padding: 48px 0; }
  .section--pale { padding: 48px 0; }

  /* ── LEISTUNGEN GRID ── */
  .leistungen-grid {
    grid-template-columns: 1fr;
  }

  /* ── ABOUT (Homepage) ── */
  .about, .about-grid { grid-template-columns: 1fr !important; }
  .about-photo { aspect-ratio: 16/9; width: 100%; }
  .about-body { padding: 48px 28px; }
  .about-img { min-height: 280px; }

  /* ── REFERENZEN ── */
  .ref-grid { grid-template-columns: repeat(3, 1fr) !important; }
  .ref-logos { gap: 16px; }
  .ref-logo { font-size: 0.8rem; max-width: 80px !important; max-height: 24px !important; }

  /* ── FAQ ── */
  .faq { padding: 48px 0; }
  .faq-list { margin-top: 32px; }
  .faq-item {
    grid-template-columns: 40px 1fr;
    gap: 0;
    padding: 20px 0;
  }
  .faq-num { font-size: 0.75rem; padding-top: 2px; }

  /* ── CTA BAND ── */
  .cta-band { padding: 48px 0; }
  .cta-band-inner { display: flex !important; flex-direction: column; align-items: flex-start; gap: 28px; }
  .cta-btns { flex-direction: column; align-items: flex-start; }
  .cta-band-actions { flex-direction: column; width: 100%; }
  .cta-band-actions .btn { width: 100%; text-align: center; }

  /* ── STUDIO ── */
  .studio-grid {
    grid-template-columns: 1fr !important;
  }
  .studio-photo {
    aspect-ratio: 16/9;
    min-height: 220px;
  }
  .studio-photos-grid {
    grid-template-columns: 1fr !important;
  }
  .remote-grid {
    grid-template-columns: 1fr 1fr !important;
  }
  .spec-item { grid-template-columns: 90px 1fr; }

  /* ── KONTAKT GRID ── */
  .kontakt-grid { grid-template-columns: 1fr !important; }
  .hp-kontakt-grid { grid-template-columns: 1fr !important; }

  /* ── PREISLISTE ── */
  .preise-grid { grid-template-columns: 1fr !important; }
  .preise-card.featured { transform: none; }

  /* ── DEMOS (YouTube Grids) ── */
  .yt-grid-3 { grid-template-columns: 1fr !important; }
  .yt-grid-2 { grid-template-columns: 1fr !important; }
  .demos-grid { grid-template-columns: 1fr !important; }

  /* ── FOOTER ── */
  .footer-cols {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .f-col { min-width: unset; }
  .footer-bottom {
    display: flex; flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-top: 20px;
  }
  .footer-copy { text-align: left; }
  .footer-bottom-links { flex-wrap: wrap; gap: 12px; justify-content: flex-start; }

  /* ── TESTIMONIALS ── */
  .testi { padding: 48px 0; }

  /* ── LEISTUNGEN HOMEPAGE ── */
  .l-list { grid-template-columns: 1fr !important; }

  /* ── LEGAL ── */
  .legal-grid { grid-template-columns: 1fr !important; }
  .legal-key, .legal-val { display: block; padding: 6px 0; border: none; }
  .legal-item { border-bottom: 1px solid var(--rule); margin-bottom: 8px; }

  /* ── GRID UTILITIES ── */
  .grid-2, .grid-3 { grid-template-columns: 1fr !important; }

  /* ── BREADCRUMB ── */
  .breadcrumb { font-size: 0.75rem; }

  /* ── PROSE ── */
  .prose p { font-size: 0.9375rem; }

  /* ── BUTTONS ── */
  .btn { padding: 11px 20px; font-size: 0.85rem; }
}

@media(max-width: 480px) {
  /* ── EXTRA SMALL ── */
  :root { --px: 16px; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 0; }
  .stat-item:nth-child(2n) { border-right: none; }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,0.1); padding: 20px 16px; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }
  .stat-val { font-size: 1.3rem; }
  .remote-grid { grid-template-columns: 1fr !important; }
  .hero-h1 { font-size: clamp(1.8rem, 9vw, 2.5rem); }
  .page-hero-title { font-size: clamp(1.4rem, 7vw, 2rem); }
}

@media(max-width: 1024px) {
  /* ── TABLET ── */
  .studio-grid { gap: 2px; }
  .remote-grid { grid-template-columns: repeat(3, 1fr) !important; }
  .leistungen-grid { grid-template-columns: repeat(2, 1fr); }
  .preise-grid { grid-template-columns: 1fr !important; }
}
