/* ===== GlanzStar – Stylesheet ===== */

/* ===== Webfonts (selbst-gehostet, DSGVO-konform) ===== */
@font-face {
  font-family: "Sora"; font-style: normal; font-weight: 600; font-display: swap;
  src: url("../fonts/sora-600-lat.woff2") format("woff2");
}
@font-face {
  font-family: "Sora"; font-style: normal; font-weight: 700; font-display: swap;
  src: url("../fonts/sora-700-lat.woff2") format("woff2");
}
@font-face {
  font-family: "Sora"; font-style: normal; font-weight: 800; font-display: swap;
  src: url("../fonts/sora-800-lat.woff2") format("woff2");
}
@font-face {
  font-family: "Inter"; font-style: normal; font-weight: 400; font-display: swap;
  src: url("../fonts/inter-400-lat.woff2") format("woff2");
}
@font-face {
  font-family: "Inter"; font-style: normal; font-weight: 500; font-display: swap;
  src: url("../fonts/inter-500-lat.woff2") format("woff2");
}
@font-face {
  font-family: "Inter"; font-style: normal; font-weight: 600; font-display: swap;
  src: url("../fonts/inter-600-lat.woff2") format("woff2");
}
@font-face {
  font-family: "Inter"; font-style: normal; font-weight: 700; font-display: swap;
  src: url("../fonts/inter-700-lat.woff2") format("woff2");
}

:root {
  --blue-900: #0b2545;
  --blue-800: #0f2d52;
  --blue-700: #13315c;
  --blue-500: #1d4e89;
  --navy-950: #061629;
  --cyan: #58e0e0;          /* Logo-Türkis */
  --cyan-light: #7ae7ea;
  --cyan-300: #9bedef;
  --cyan-dark: #0e9aa6;     /* dunkles Teal für Text auf hellem Grund */
  --cyan-deep: #0b7b86;
  --bg: #ffffff;
  --bg-alt: #f1f7fb;
  --bg-soft: #eaf3fa;
  --surface: #ffffff;
  --text: #1c2b3a;
  --text-light: #5b6b7b;
  --line: #dce8f2;
  --ring: rgba(88, 224, 224, .55);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 10px rgba(11, 37, 69, .06);
  --shadow: 0 14px 38px rgba(11, 37, 69, .10);
  --shadow-lg: 0 28px 64px rgba(11, 37, 69, .18);
  --grad-cyan: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-dark) 100%);
  --grad-deep: linear-gradient(135deg, var(--navy-950) 0%, var(--blue-500) 58%, var(--cyan-deep) 100%);
  --maxw: 1160px;
  --font-head: "Sora", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font: "Inter", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font); color: var(--text); background: var(--bg);
  line-height: 1.65; overflow-x: hidden;
  text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "cv11", "ss01"; font-synthesis: none;
}
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; letter-spacing: -.012em; line-height: 1.18; }
img { max-width: 100%; display: block; }
a { color: var(--cyan-dark); text-decoration: none; }
::selection { background: var(--cyan); color: var(--blue-900); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

.skip-link {
  position: fixed; left: 16px; top: 12px; z-index: 1000;
  transform: translateY(-140%); background: #fff; color: var(--blue-900);
  padding: 10px 14px; border-radius: 10px; box-shadow: var(--shadow);
  font-weight: 800; transition: transform .15s ease;
}
.skip-link:focus { transform: translateY(0); }
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--cyan); outline-offset: 3px;
}
main:focus,
section:focus { outline: none; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 28px; border-radius: var(--radius-pill);
  font-family: var(--font); font-weight: 700; border: 2px solid transparent; cursor: pointer;
  transition: transform .18s cubic-bezier(.2,.7,.3,1), box-shadow .2s ease, background .2s ease, border-color .2s ease;
  font-size: 1rem; position: relative; overflow: hidden; isolation: isolate;
}
.btn::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,.45) 50%, transparent 100%);
  transform: translateX(-130%); transition: transform .6s cubic-bezier(.2,.7,.3,1);
}
.btn:hover { transform: translateY(-3px); }
.btn:hover::after { transform: translateX(130%); }
.btn:active { transform: translateY(-1px); }
.btn:disabled { cursor: wait; opacity: .72; transform: none; box-shadow: none; }
.btn:disabled::after { display: none; }
.btn--primary {
  background: var(--grad-cyan); color: var(--blue-900);
  box-shadow: 0 10px 26px rgba(14, 154, 166, .38), inset 0 1px 0 rgba(255,255,255,.5);
}
.btn--primary:hover { box-shadow: 0 16px 36px rgba(14, 154, 166, .46), inset 0 1px 0 rgba(255,255,255,.5); }
.btn--ghost {
  border-color: rgba(255,255,255,.5); color: #fff;
  backdrop-filter: blur(4px); background: rgba(255,255,255,.06);
}
.btn--ghost:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.85); }
.btn--lg { padding: 16px 34px; font-size: 1.06rem; }
.btn--phone { font-variant-numeric: tabular-nums; letter-spacing: .2px; }
.btn--whatsapp { background: #25d366; color: #fff; margin-top: 18px; box-shadow: 0 10px 24px rgba(37,211,102,.32); }
.btn--whatsapp:hover { background: #1ebe5b; }

/* ===== Header ===== */
.header {
  position: sticky; top: 0; z-index: 100;
  background: linear-gradient(180deg, rgba(8, 24, 46, .98), rgba(8, 24, 46, .92));
  backdrop-filter: saturate(140%) blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,.05), 0 10px 30px rgba(0, 0, 0, .28);
}
.header::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(88,224,224,.65) 18%, rgba(88,224,224,.9) 50%, rgba(88,224,224,.65) 82%, transparent);
  opacity: .5;
}
.header__inner { display: flex; align-items: center; gap: 28px; height: 80px; }
.logo { display: flex; align-items: center; transition: transform .2s ease; }
.logo:hover { transform: scale(1.03); }
.logo__img { height: 66px; width: auto; filter: drop-shadow(0 4px 12px rgba(0,0,0,.35)); }
.logo__img--footer { height: 96px; margin: 0 0 12px; filter: none; }
.nav { display: flex; gap: 24px; margin-left: auto; align-items: center; }
.nav a,
.nav__services-toggle {
  color: #d9eff1; font-weight: 600; font-size: .98rem; position: relative;
  padding: 6px 2px; transition: color .18s ease;
}
.nav > a::after {
  content: ""; position: absolute; left: 2px; right: 2px; bottom: -2px; height: 2px;
  border-radius: 2px; background: var(--cyan); transform: scaleX(0); transform-origin: left;
  transition: transform .2s ease;
}
.nav > a:hover::after,
.nav > a[aria-current="location"]::after { transform: scaleX(1); }
.nav a:hover,
.nav a[aria-current="location"],
.nav__services-toggle:hover,
.nav__services-toggle:focus-visible,
.nav__services-toggle.is-current { color: var(--cyan); }
.nav a[aria-current="location"],
.nav__services-toggle.is-current { text-decoration: none; }
.nav__item { position: relative; display: flex; align-items: center; }
.nav__services-toggle {
  appearance: none; border: 0; background: transparent; cursor: pointer; font: inherit; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
}
.nav__chevron {
  width: 8px; height: 8px; border: solid currentColor; border-width: 0 2px 2px 0;
  transform: rotate(45deg) translateY(-1px); transition: transform .16s ease;
}
.nav__item:hover .nav__chevron,
.nav__item:focus-within .nav__chevron,
.nav__item.is-open .nav__chevron { transform: rotate(225deg) translate(-1px, -1px); }
.nav__dropdown {
  position: absolute; top: calc(100% + 18px); left: 50%; z-index: 120;
  width: min(920px, calc(100vw - 40px)); transform: translate(-50%, 10px);
  display: grid; grid-template-columns: repeat(3, minmax(190px, 1fr)); gap: 0;
  padding: 16px; border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-lg);
  border: 1px solid #dce8f2; opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.nav__dropdown::before {
  content: ""; position: absolute; left: 0; right: 0; top: -20px; height: 20px;
}
.nav__item:hover .nav__dropdown,
.nav__item:focus-within .nav__dropdown,
.nav__item.is-open .nav__dropdown {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0);
}
.nav__item.is-open .nav__dropdown { transition: none; }
.nav__dropdown-group { display: grid; align-content: start; gap: 2px; padding: 4px 20px; }
.nav__dropdown-group:not(:last-of-type) { border-right: 1px solid var(--line); }
.nav__dropdown-head { display: flex; align-items: center; gap: 9px; padding: 2px 12px; color: var(--cyan-dark); }
.nav__dropdown-ico { flex: none; width: 18px; height: 18px; }
.nav__dropdown-title {
  color: inherit; font-size: .72rem; font-weight: 800; letter-spacing: .09em;
  line-height: 1.3; text-transform: uppercase;
}
.nav__dropdown-desc {
  display: block; margin: 0 12px 8px; padding-bottom: 10px; border-bottom: 1px solid var(--line);
  color: var(--text-light); font-size: .82rem; font-weight: 500; line-height: 1.35;
}
.nav__dropdown a {
  display: block; padding: 9px 12px; border-radius: var(--radius-sm); color: var(--blue-900);
  font-weight: 700; line-height: 1.25; transition: background .15s ease, color .15s ease, transform .15s ease;
}
.nav__dropdown a:hover,
.nav__dropdown a:focus-visible,
.nav__dropdown a[aria-current="page"] {
  background: var(--bg-alt); color: var(--cyan-dark); transform: translateX(4px);
}
.nav__dropdown-all {
  grid-column: 1 / -1; margin: 12px 8px 2px; padding: 13px 14px 4px;
  border-top: 1px solid var(--line); display: flex; align-items: center; gap: 8px;
  color: var(--blue-900); font-weight: 800; transition: color .15s ease;
}
.nav__dropdown-all::after { content: "→"; transition: transform .15s ease; }
.nav__dropdown-all:hover { color: var(--cyan-dark); }
.nav__dropdown-all:hover::after { transform: translateX(5px); }
.legal-nav { display: flex; margin-left: auto; }
.legal-nav a { color: #d9eff1; font-weight: 700; }
.legal-nav a:hover { color: var(--cyan); }
.header__cta { white-space: nowrap; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: #fff; margin: 6px 0; border-radius: 2px; transition: .25s ease; }
.nav.is-open ~ .nav-toggle span:nth-child(1),
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  background: url("../img/hero.jpg") center / cover no-repeat;
  color: #fff; overflow: hidden; position: relative; isolation: isolate;
}
.hero::before,
.hero::after { content: ""; position: absolute; inset: 0; pointer-events: none; }
.hero::before {
  z-index: 1;
  background:
    radial-gradient(120% 90% at 88% 8%, rgba(88,224,224,.28), transparent 46%),
    linear-gradient(104deg, rgba(4, 18, 38, .70) 0%, rgba(7, 26, 50, .78) 50%, rgba(11, 123, 134, .30) 100%),
    linear-gradient(0deg, rgba(4, 18, 38, .56), rgba(4, 18, 38, .06));
}
.hero::after {
  z-index: 1;
  background: repeating-linear-gradient(0deg, rgba(255,255,255,.06) 0 1px, transparent 1px 5px);
  opacity: .14;
}
.hero__video {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  filter: saturate(1.08) contrast(1.05);
}
.hero__decor {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-repeat: no-repeat;
  background-image:
    radial-gradient(closest-side, rgba(255,255,255,.95), rgba(255,255,255,0) 70%),
    radial-gradient(closest-side, rgba(255,255,255,.9), rgba(255,255,255,0) 70%),
    radial-gradient(closest-side, rgba(122,231,234,.95), rgba(122,231,234,0) 70%),
    radial-gradient(closest-side, rgba(255,255,255,.85), rgba(255,255,255,0) 70%),
    radial-gradient(closest-side, rgba(122,231,234,.85), rgba(122,231,234,0) 70%);
  background-size: 6px 6px, 4px 4px, 8px 8px, 5px 5px, 4px 4px;
  background-position: 64% 26%, 78% 18%, 86% 40%, 72% 62%, 90% 72%;
  animation: twinkle 4.5s ease-in-out infinite;
}
@keyframes twinkle {
  0%, 100% { opacity: .35; }
  50% { opacity: .95; }
}
.hero__inner {
  min-height: min(680px, calc(100svh - 116px));
  padding: clamp(64px, 9vh, 96px) 22px clamp(58px, 8vh, 90px);
  position: relative; z-index: 2; display: flex; align-items: center;
}
.hero__kicker {
  display: inline-flex; align-items: center; gap: 9px;
  text-transform: uppercase; letter-spacing: .16em; font-size: .8rem; color: var(--cyan);
  font-weight: 700; margin-bottom: 18px; padding: 7px 14px; border-radius: var(--radius-pill);
  background: rgba(88,224,224,.12); border: 1px solid rgba(88,224,224,.32); backdrop-filter: blur(4px);
}
.hero__kicker::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(88,224,224,.25);
}
.hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.1; max-width: 760px; }
.hero h1 em { font-style: normal; color: var(--cyan); position: relative; white-space: nowrap; }
.hero h1 em::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: .04em; height: .12em;
  background: rgba(88,224,224,.4); border-radius: 4px; z-index: -1;
}
.hero h1 span { display: block; }
.hero__text { margin: 22px 0 32px; max-width: 580px; font-size: 1.14rem; color: #e3edf6; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__badges {
  display: flex; gap: 12px; flex-wrap: wrap; list-style: none; margin-top: 36px;
}
.hero__badges li {
  display: inline-flex; align-items: center; color: #eaf4fb; font-size: .92rem; font-weight: 600;
  padding: 8px 15px; border-radius: var(--radius-pill);
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); backdrop-filter: blur(4px);
}
.hero__content > * { animation: heroRise .7s cubic-bezier(.2,.7,.3,1) both; }
.hero__content > *:nth-child(2) { animation-delay: .08s; }
.hero__content > *:nth-child(3) { animation-delay: .16s; }
.hero__content > *:nth-child(4) { animation-delay: .24s; }
.hero__content > *:nth-child(5) { animation-delay: .32s; }
@keyframes heroRise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

/* ===== Trust-/Stats-Leiste ===== */
.trustbar { position: relative; z-index: 5; margin-top: -42px; padding: 0 22px; }
.trustbar__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.trust {
  display: grid; gap: 4px; padding: 24px 26px; position: relative; text-align: center;
}
.trust + .trust::before {
  content: ""; position: absolute; left: 0; top: 22%; bottom: 22%; width: 1px;
  background: linear-gradient(180deg, transparent, var(--line) 30%, var(--line) 70%, transparent);
}
.trust__num {
  font-family: var(--font-head); font-weight: 800; font-size: clamp(1.6rem, 3.4vw, 2.25rem);
  line-height: 1; background: linear-gradient(135deg, var(--blue-500), var(--cyan-dark));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-variant-numeric: tabular-nums;
}
.trust__label { color: var(--text-light); font-size: .9rem; font-weight: 600; line-height: 1.35; }

/* ===== Video-Einblicke ===== */
.section--showcase {
  background: var(--grad-deep); color: #fff; position: relative; overflow: hidden;
}
.section--showcase::before {
  content: ""; position: absolute; top: -30%; right: -10%; width: 60%; height: 120%;
  background: radial-gradient(closest-side, rgba(88,224,224,.18), transparent 70%); pointer-events: none;
}
.showcase {
  display: grid; grid-template-columns: .82fr 1.18fr; gap: 48px; align-items: center;
  position: relative; z-index: 1;
}
.showcase__copy h2 {
  color: #fff; font-size: clamp(1.7rem, 3vw, 2.45rem); line-height: 1.16; margin-bottom: 16px;
}
.showcase__copy > p:not(.section__kicker) { color: #d8e8f4; max-width: 520px; }
.showcase__checks { list-style: none; display: grid; gap: 13px; margin-top: 28px; max-width: 520px; }
.showcase__checks li { position: relative; padding-left: 34px; color: #e7f3fb; font-weight: 600; }
.showcase__checks li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 23px; height: 23px; border-radius: 50%;
  display: grid; place-items: center; background: rgba(88,224,224,.2);
  color: var(--cyan); font-weight: 800; line-height: 1; font-size: .85rem;
}
.showcase__media { display: grid; grid-template-columns: minmax(0, 1fr) minmax(150px, .42fr); gap: 18px; align-items: end; }
.showcase__media--single { grid-template-columns: minmax(260px, 520px); justify-content: end; }
.video-frame {
  margin: 0; border-radius: var(--radius); overflow: hidden; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16); box-shadow: var(--shadow-lg); position: relative;
}
.video-frame video { width: 100%; height: 100%; display: block; object-fit: cover; background: #061a2e; pointer-events: none; }
.video-frame--wide { aspect-ratio: 16 / 10; }
.video-frame--portrait { aspect-ratio: 9 / 16; transform: translateY(28px); }
.video-frame--feature { aspect-ratio: 16 / 10; }
.video-frame figcaption {
  padding: 13px 15px; color: #d9e8f2; font-size: .9rem; font-weight: 600; background: rgba(5, 22, 44, .84);
}

/* ===== Sections ===== */
.section { padding: 92px 0; }
.section--alt { background: var(--bg-alt); }
.section__head { text-align: center; max-width: 660px; margin: 0 auto 52px; }
.section__kicker {
  display: inline-flex; align-items: center; gap: 8px;
  text-transform: uppercase; letter-spacing: .14em; font-size: .8rem; color: var(--cyan-dark);
  font-weight: 800; margin-bottom: 14px;
}
.section__kicker::before {
  content: ""; width: 18px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan-dark));
}
.section__kicker::after {
  content: ""; width: 18px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--cyan-dark), transparent);
}
.section__head h2, .contact__info h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); color: var(--blue-900); }
.section__head h2 { position: relative; display: inline-block; }

/* ===== Services ===== */
.services { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(250px, 100%), 1fr)); gap: 22px; }
.service {
  position: relative; z-index: 1; min-height: 246px; aspect-ratio: 4 / 3;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .24s cubic-bezier(.2,.7,.3,1), box-shadow .24s ease, border-color .24s ease;
  will-change: transform; box-shadow: var(--shadow-sm);
}
.service:hover,
.service:focus-within {
  z-index: 3; transform: translateY(-8px) scale(1.025);
  border-color: rgba(14,154,166,.4); box-shadow: 0 26px 52px rgba(11,37,69,.24);
}
.service__tile {
  position: relative; display: grid; align-items: end; width: 100%; height: 100%;
  color: #fff; overflow: hidden;
}
.service__tile::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(5,22,44,.0) 18%, rgba(4,16,34,.9) 100%),
    linear-gradient(90deg, rgba(11,37,69,.3), rgba(14,154,166,.04));
  opacity: .96; transition: opacity .24s ease;
}
.service__tile img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s cubic-bezier(.2,.7,.3,1), filter .5s ease; will-change: transform;
}
.service:hover .service__tile img,
.service:focus-within .service__tile img { transform: scale(1.09); filter: saturate(1.08) contrast(1.04); }
.service:hover .service__tile::after,
.service:focus-within .service__tile::after { opacity: .82; }
.service__body {
  position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 22px; transition: transform .24s ease;
}
.service__body::after {
  content: "→"; font-size: 1.15rem; font-weight: 700; color: var(--cyan);
  opacity: 0; transform: translateX(-8px); transition: opacity .24s ease, transform .24s ease;
}
.service:hover .service__body,
.service:focus-within .service__body { transform: translateY(-6px); }
.service:hover .service__body::after,
.service:focus-within .service__body::after { opacity: 1; transform: translateX(0); }
.service__icon {
  position: absolute; left: 22px; top: 22px; z-index: 2;
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center; background: rgba(88,224,224,.2);
  color: var(--cyan); font-size: 1.6rem; font-weight: 800; backdrop-filter: blur(3px);
  border: 1px solid rgba(88,224,224,.3);
}
.service h3 {
  color: #fff; margin: 0; font-size: clamp(1.1rem, 2.1vw, 1.32rem);
  line-height: 1.2; text-shadow: 0 2px 16px rgba(0,0,0,.4); font-weight: 700;
}
.service--cta { background: linear-gradient(135deg, var(--blue-700), var(--blue-500)); border: 0; }
.service__tile--custom {
  background:
    radial-gradient(circle at 26% 22%, rgba(88,224,224,.32), transparent 28%),
    linear-gradient(135deg, var(--blue-700), var(--blue-500));
}
.service__tile--custom::after { background: linear-gradient(180deg, rgba(5,22,44,.04), rgba(5,22,44,.32)); }
.service__tile--custom .service__body::after { content: ""; }

/* ===== Leistungsseiten ===== */
.service-page-hero {
  background:
    radial-gradient(110% 90% at 90% 10%, rgba(88,224,224,.24), transparent 48%),
    linear-gradient(105deg, rgba(5,22,44,.94), rgba(11,37,69,.78) 55%, rgba(14,154,166,.3)),
    url("../img/hero.jpg") center / cover no-repeat;
  color: #fff; padding: 84px 0;
}
.breadcrumb { font-size: .9rem; margin-bottom: 18px; color: #d6e8f4; }
.breadcrumb a { color: var(--cyan); font-weight: 700; }
.service-page-hero h1 { max-width: 800px; font-size: clamp(2rem, 4vw, 3.3rem); font-weight: 800; line-height: 1.1; margin-bottom: 18px; }
.service-page-hero p { max-width: 680px; color: #e6f1f8; font-size: 1.1rem; }
.service-page-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.service-detail { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: start; }
.service-detail__media img {
  width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.service-detail__copy h2,
.service-includes h2,
.service-related h2 { color: var(--blue-900); font-size: clamp(1.6rem, 3vw, 2.2rem); line-height: 1.2; margin-bottom: 14px; }
.service-detail__copy p { color: var(--text-light); margin-bottom: 18px; }
.service-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 26px; }
.service-fact {
  border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px; background: #fff;
  box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease;
}
.service-fact:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.service-fact strong { display: block; color: var(--cyan-dark); font-family: var(--font-head); font-size: 1.2rem; line-height: 1.1; font-weight: 800; }
.service-fact span { color: var(--text-light); font-size: .9rem; font-weight: 600; }
.service-includes { background: var(--bg-alt); }
.service-checks { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 14px; list-style: none; }
.service-checks li {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px 18px 16px 46px;
  color: var(--blue-900); font-weight: 700; position: relative; box-shadow: var(--shadow-sm);
}
.service-checks li::before {
  content: "✓"; position: absolute; left: 15px; top: 15px; width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center; background: rgba(14,154,166,.12); color: var(--cyan-dark); font-weight: 900; font-size: .8rem;
}
.service-related__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 14px; margin-top: 24px; }
.service-related__grid a {
  border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 17px; background: #fff;
  color: var(--blue-900); font-weight: 800; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease;
}
.service-related__grid a:hover { border-color: var(--cyan); color: var(--cyan-dark); box-shadow: var(--shadow); transform: translateY(-3px); }
.service-cta-band { background: var(--grad-deep); color: #fff; padding: 60px 0; }
.service-cta-band__inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.service-cta-band h2 { color: #fff; }
.service-cta-band p { color: #dbeaf5; max-width: 620px; }

/* ===== Features ===== */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 24px; }
.feature {
  text-align: center; padding: 34px 26px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.feature::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: var(--grad-cyan); transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(14,154,166,.3); }
.feature:hover::before { transform: scaleX(1); }
.feature__icon {
  width: 66px; height: 66px; margin: 0 auto 18px; border-radius: 18px;
  background: linear-gradient(135deg, rgba(88,224,224,.18), rgba(29,78,137,.12));
  border: 1px solid rgba(14,154,166,.22);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1.15rem; color: var(--cyan-dark); font-weight: 800;
}
.feature h3 { color: var(--blue-900); font-size: 1.08rem; margin-bottom: 9px; }
.feature p { color: var(--text-light); font-size: .94rem; }

/* ===== Steps ===== */
.steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px;
  list-style: none; counter-reset: step; position: relative;
}
.step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 28px 30px; position: relative; box-shadow: var(--shadow-sm); overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.step::after {
  content: counter(step, decimal-leading-zero); counter-increment: step;
  position: absolute; right: 14px; top: 2px; font-family: var(--font-head); font-weight: 800;
  font-size: 4.6rem; line-height: 1; color: rgba(14,154,166,.07); pointer-events: none;
}
.step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 14px; background: var(--grad-cyan);
  color: var(--blue-900); font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; margin-bottom: 16px;
  box-shadow: 0 8px 20px rgba(14,154,166,.3);
}
.step h3 { color: var(--blue-900); margin-bottom: 7px; font-size: 1.12rem; }
.step p { color: var(--text-light); font-size: .94rem; }

/* ===== Testimonials ===== */
.testimonials {
  max-width: 760px; margin: 0 auto; text-align: center; position: relative;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 52px 44px 38px; box-shadow: var(--shadow);
}
.testimonials::before {
  content: "\201C"; position: absolute; left: 28px; top: 2px;
  font-family: var(--font-head); font-size: 7rem; line-height: 1; color: rgba(88,224,224,.28); pointer-events: none;
}
.testimonial { display: none; }
.testimonial.is-active { display: block; animation: fadeIn .45s ease; }
.testimonial .stars { color: var(--cyan); letter-spacing: 3px; font-size: 1.05rem; margin-bottom: 16px; }
.testimonial p { font-family: var(--font-head); font-weight: 600; font-size: clamp(1.15rem, 2.3vw, 1.4rem); color: var(--blue-900); line-height: 1.45; }
.testimonial footer { margin-top: 18px; color: var(--text-light); font-weight: 600; }
.testimonials__nav { margin-top: 28px; display: flex; gap: 12px; justify-content: center; }
.testimonials__nav button {
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line);
  background: #fff; font-size: 1.35rem; cursor: pointer; color: var(--blue-900);
  display: grid; place-items: center; transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.testimonials__nav button:hover { background: var(--grad-cyan); color: var(--blue-900); border-color: transparent; transform: translateY(-2px); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* ===== Google-Bewertungen CTA ===== */
.reviews-cta { display: flex; justify-content: center; margin-top: 30px; }
.reviews-google {
  display: inline-flex; align-items: center; gap: 13px;
  padding: 12px 22px; border-radius: var(--radius-pill);
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  color: var(--blue-900); font-weight: 700;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.reviews-google:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(14,154,166,.4); }
.reviews-google__g { flex: none; width: 22px; height: 22px; }
.reviews-google__text { display: inline-flex; flex-direction: column; gap: 1px; line-height: 1.25; text-align: left; }
.reviews-google__stars { color: #fbbc04; letter-spacing: 2px; font-size: .82rem; }
.reviews-google__label { font-size: .95rem; }
.reviews-google__arrow { color: var(--cyan-dark); font-weight: 800; transition: transform .18s ease; }
.reviews-google:hover .reviews-google__arrow { transform: translateX(4px); }
@media (max-width: 520px) {
  .reviews-google { gap: 11px; padding: 12px 18px; }
  .reviews-google__label { font-size: .9rem; }
}

/* ===== Einsatzgebiet ===== */
.section--service-area { background: #fff; }
.service-area { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: start; }
.service-area__copy h2 { color: var(--blue-900); font-size: clamp(1.6rem, 3vw, 2.3rem); line-height: 1.2; margin-bottom: 16px; }
.service-area__copy p:not(.section__kicker) { color: var(--text-light); max-width: 560px; }
.service-area__facts { display: grid; margin: 0; border-top: 1px solid var(--line); }
.service-area__facts > div { display: grid; grid-template-columns: 150px 1fr; gap: 22px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.service-area__facts dt { color: var(--blue-900); font-weight: 800; font-family: var(--font-head); }
.service-area__facts dd { margin: 0; color: var(--text-light); }

/* ===== Kontakt ===== */
.contact { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start; }
.contact__info > p { color: var(--text-light); margin: 14px 0 24px; }
.contact__list { list-style: none; display: grid; gap: 12px; }
.contact__list li { padding-left: 2px; }
.contact__list strong { color: var(--blue-900); font-family: var(--font-head); font-weight: 700; }
.contact__next {
  margin: 26px 0 0; padding: 20px 0 0 24px; border-top: 1px solid var(--line);
  color: var(--text-light); display: grid; gap: 9px;
}
.contact__next li::marker { color: var(--cyan-dark); font-weight: 800; }
.contact__form {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px; box-shadow: var(--shadow); display: grid; gap: 17px; position: relative;
}
.contact__form::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px;
  background: var(--grad-cyan); border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.contact__form label { display: grid; gap: 7px; font-weight: 600; font-size: .92rem; color: var(--blue-900); }
.contact__form input, .contact__form select, .contact__form textarea {
  font: inherit; padding: 12px 15px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: #fbfdfe; width: 100%; transition: border-color .15s ease, box-shadow .15s ease;
}
.contact__form input:focus, .contact__form select:focus, .contact__form textarea:focus {
  outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px var(--ring);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.checkbox { display: flex !important; align-items: flex-start; gap: 10px; font-weight: 400 !important; color: var(--text-light) !important; font-size: .85rem !important; }
.checkbox input { width: auto; margin-top: 3px; }
.form-status { min-height: 1.4em; color: var(--text-light); font-size: .9rem; font-weight: 600; }
.form-status.is-visible { color: var(--cyan-dark); }
.form-status.is-error { color: #b42318; }
.form-note { color: var(--text-light); font-size: .85rem; line-height: 1.45; }
.form-honeypot {
  position: absolute !important; left: -10000px !important;
  width: 1px !important; height: 1px !important; overflow: hidden !important;
}

/* ===== Footer ===== */
.footer { background: var(--navy-950); color: #c6d6e4; position: relative; }
.footer::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: linear-gradient(90deg, transparent, rgba(88,224,224,.7) 30%, rgba(88,224,224,.9) 50%, rgba(88,224,224,.7) 70%, transparent);
}
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; padding: 62px 22px 40px; }
.footer h4 { color: #fff; margin-bottom: 12px; font-size: 1rem; }
.footer p { font-size: .95rem; line-height: 1.8; }
.footer a { color: #9fc3dd; transition: color .15s ease; }
.footer a:hover { color: var(--cyan); }
.logo--footer { margin-bottom: 14px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 22px; font-size: .85rem; }

/* ===== WhatsApp FAB ===== */
.whatsapp-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px rgba(37,211,102,.45); transition: transform .18s ease;
}
.whatsapp-fab::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37,211,102,.5); animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.whatsapp-fab img { width: 31px; height: 31px; display: block; position: relative; }
.whatsapp-fab:hover { transform: scale(1.1); }
.mobile-cta { display: none; }

/* ===== Scroll-Reveal ===== */
.reveal { opacity: 1; transform: none; }
.js .reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1);
  transition-delay: var(--reveal-delay, 0ms);
}
.services .reveal:nth-child(2),
.features .reveal:nth-child(2),
.steps .reveal:nth-child(2) { --reveal-delay: 70ms; }
.services .reveal:nth-child(3),
.features .reveal:nth-child(3),
.steps .reveal:nth-child(3) { --reveal-delay: 140ms; }
.services .reveal:nth-child(4),
.features .reveal:nth-child(4) { --reveal-delay: 210ms; }
.services .reveal:nth-child(5) { --reveal-delay: 280ms; }
.services .reveal:nth-child(n+6) { --reveal-delay: 340ms; }
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .js .reveal, .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .hero__video { display: none; }
  .hero__decor { display: none; }
}

/* ===== Rechtsseiten ===== */
.legal { padding: 72px 0; max-width: 760px; }
.legal h1 { color: var(--blue-900); margin-bottom: 24px; font-size: clamp(1.8rem, 3.5vw, 2.4rem); }
.legal h2 { color: var(--blue-900); margin: 30px 0 10px; font-size: 1.25rem; }
.legal p { margin-bottom: 12px; }
.legal__ghost { margin-left: 10px; color: var(--blue-900); border-color: #bacada; }
.legal__ghost:hover { background: var(--bg-alt); }

/* ===== Responsive ===== */
@media (max-width: 1080px) {
  .header__inner { flex-wrap: wrap; height: auto; min-height: 80px; padding-top: 8px; padding-bottom: 12px; }
  .nav { order: 3; flex-basis: 100%; margin-left: 0; flex-direction: column; padding: 12px 0 2px; gap: 12px; }
  .nav > a::after { display: none; }
  .js .header__inner { flex-wrap: nowrap; height: 80px; min-height: 0; padding-top: 0; padding-bottom: 0; }
  .js .nav {
    position: fixed; inset: 80px 0 auto 0; background: linear-gradient(180deg, rgba(8,24,46,.99), rgba(8,24,46,.97));
    backdrop-filter: blur(12px); box-shadow: 0 16px 34px rgba(0,0,0,.34);
    display: none; padding: 20px 24px 28px; gap: 16px; max-height: calc(100svh - 80px); overflow-y: auto;
  }
  .js .nav.is-open { display: flex; }
  .nav__item { display: grid; gap: 10px; align-items: stretch; }
  .nav__item--services { width: min(100%, 680px); }
  .nav__services-toggle { justify-content: center; color: #d9eff1; }
  .nav__dropdown {
    position: static; width: 100%; transform: none; opacity: 1; visibility: visible; pointer-events: auto;
    grid-template-columns: 1fr; padding: 12px; gap: 12px; box-shadow: none;
    background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.14);
  }
  .nav__item:hover .nav__dropdown,
  .nav__item:focus-within .nav__dropdown,
  .nav__item.is-open .nav__dropdown { transform: none; }
  .nav__dropdown-group { gap: 3px; padding: 4px 6px; }
  .nav__dropdown-group:not(:last-of-type) { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); padding-bottom: 10px; }
  .nav__dropdown-head { color: var(--cyan); padding: 4px 10px 2px; }
  .nav__dropdown-desc { color: #b8d4e2; margin: 0 10px 6px; padding-bottom: 8px; border-bottom-color: rgba(255,255,255,.14); }
  .nav__dropdown a { color: #e8f4f5; padding: 10px; }
  .nav__dropdown a:hover,
  .nav__dropdown a:focus-visible,
  .nav__dropdown a[aria-current="page"] { background: rgba(88,224,224,.14); color: var(--cyan); transform: none; }
  .nav__dropdown-all { color: #eaf4f5; margin: 6px 6px 2px; border-top-color: rgba(255,255,255,.18); }
  .nav__dropdown-all:hover { color: var(--cyan); }
  .js .nav-toggle { display: block; margin-left: auto; }
  .header__cta { display: none; }
  .trustbar__inner { grid-template-columns: repeat(2, 1fr); }
  .trust:nth-child(3)::before,
  .trust:nth-child(2) + .trust::before { content: ""; }
  .trust:nth-child(odd)::before { content: none; }
  .trust:nth-child(n+3) { border-top: 1px solid var(--line); }
  .contact { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; }
  .service-facts { grid-template-columns: 1fr; }
  .service-cta-band__inner { display: grid; }
  .hero__inner { padding: 64px 22px 84px; }
  .showcase { grid-template-columns: 1fr; gap: 34px; }
  .showcase__media, .showcase__media--single { grid-template-columns: 1fr; justify-content: stretch; }
  .service-area { grid-template-columns: 1fr; gap: 30px; }
  .video-frame--portrait { aspect-ratio: 16 / 10; transform: none; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .section { padding: 66px 0; }
}

@media (max-width: 520px) {
  body { padding-bottom: 78px; }
  .hero__inner { min-height: auto; padding: 46px 22px 76px; }
  .hero__actions .btn { width: 100%; }
  .hero__badges { gap: 8px; margin-top: 26px; }
  .trustbar { margin-top: -30px; }
  .trustbar__inner { grid-template-columns: 1fr 1fr; }
  .trust { padding: 18px 14px; }
  .testimonials { padding: 44px 24px 32px; }
  .service-area__facts > div { grid-template-columns: 1fr; gap: 4px; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .whatsapp-fab { bottom: 92px; width: 54px; height: 54px; }
  .mobile-cta {
    position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 92;
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
    padding: 10px; border-radius: var(--radius); background: rgba(8, 24, 46, .96);
    box-shadow: 0 14px 36px rgba(0,0,0,.32); backdrop-filter: blur(12px);
  }
  .mobile-cta a {
    display: flex; align-items: center; justify-content: center;
    min-height: 46px; border-radius: var(--radius-sm); color: var(--blue-900);
    background: var(--cyan); font-weight: 800;
  }
  .mobile-cta a + a { color: #fff; background: transparent; border: 1px solid rgba(255,255,255,.45); }
}
