:root {
  --navy: #0b2f52;
  --navy-deep: #071f38;
  --blue: #0079ca;
  --blue-dark: #045a99;
  --blue-light: #38a6e0;
  --gray-dark: #2b333d;
  --gray: #5c6773;
  --gray-soft: #8792a0;
  --bg: #ffffff;
  --bg-soft: #f4f7fa;
  --bg-card: #ffffff;
  --border: #e3e8ee;
  --text: #2b333d;
  --text-strong: #0b2f52;
  --shadow: 0 20px 50px rgba(11, 47, 82, 0.1);
  --shadow-sm: 0 10px 24px rgba(11, 47, 82, 0.08);
  --radius: 16px;
  --radius-sm: 12px;
  --max: 1180px;
  --font-body: "Manrope", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --header-bg: rgba(255, 255, 255, 0.9);
  color-scheme: light;
}

html[data-theme="dark"] {
  --navy: #eaf2fb;
  --navy-deep: #ffffff;
  --blue: #3ea6e0;
  --blue-dark: #6fc2f0;
  --blue-light: #3ea6e0;
  --gray-dark: #d7e0ea;
  --gray: #a9b6c4;
  --gray-soft: #7c8896;
  --bg: #0b1826;
  --bg-soft: #101f30;
  --bg-card: #12233a;
  --border: rgba(255, 255, 255, 0.09);
  --text: #d7e0ea;
  --text-strong: #f2f6fa;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  --shadow-sm: 0 10px 24px rgba(0, 0, 0, 0.3);
  --header-bg: rgba(11, 24, 38, 0.85);
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
  transition: background 0.25s ease, color 0.25s ease;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }

.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  z-index: 60;
  pointer-events: none;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--blue);
  color: #fff;
  padding: 12px 18px;
  border-radius: 0 0 10px 0;
  z-index: 100;
}
.skip-link:focus { left: 0; }

.section { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; padding: 80px 0; position: relative; }
.section-soft {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 64px clamp(20px, 4vw, 56px);
  position: relative;
}

/* Reveal animation */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-reveal].in-view { opacity: 1; transform: translateY(0); }
/* Gestaffeltes Einblenden für wiederkehrende Karten/Listen beim Scrollen */
.benefits [data-reveal]:nth-child(1) { transition-delay: 0.02s; }
.benefits [data-reveal]:nth-child(2) { transition-delay: 0.07s; }
.benefits [data-reveal]:nth-child(3) { transition-delay: 0.12s; }
.benefits [data-reveal]:nth-child(4) { transition-delay: 0.17s; }
.benefits [data-reveal]:nth-child(5) { transition-delay: 0.22s; }
.benefits [data-reveal]:nth-child(6) { transition-delay: 0.27s; }
.benefits [data-reveal]:nth-child(7) { transition-delay: 0.32s; }
.benefits [data-reveal]:nth-child(8) { transition-delay: 0.37s; }
.benefits [data-reveal]:nth-child(9) { transition-delay: 0.42s; }
.service-grid [data-reveal]:nth-child(1) { transition-delay: 0.02s; }
.service-grid [data-reveal]:nth-child(2) { transition-delay: 0.08s; }
.service-grid [data-reveal]:nth-child(3) { transition-delay: 0.14s; }
.service-grid [data-reveal]:nth-child(4) { transition-delay: 0.2s; }
.service-grid [data-reveal]:nth-child(5) { transition-delay: 0.26s; }
.service-grid [data-reveal]:nth-child(6) { transition-delay: 0.32s; }
.timeline [data-reveal]:nth-child(1) { transition-delay: 0.02s; }
.timeline [data-reveal]:nth-child(2) { transition-delay: 0.09s; }
.timeline [data-reveal]:nth-child(3) { transition-delay: 0.16s; }
.timeline [data-reveal]:nth-child(4) { transition-delay: 0.23s; }
.timeline [data-reveal]:nth-child(5) { transition-delay: 0.3s; }
.faq-list [data-reveal]:nth-child(1) { transition-delay: 0.02s; }
.faq-list [data-reveal]:nth-child(2) { transition-delay: 0.09s; }
.faq-list [data-reveal]:nth-child(3) { transition-delay: 0.16s; }
.faq-list [data-reveal]:nth-child(4) { transition-delay: 0.23s; }
.faq-list [data-reveal]:nth-child(5) { transition-delay: 0.3s; }
.trust-grid [data-reveal]:nth-child(1) { transition-delay: 0.02s; }
.trust-grid [data-reveal]:nth-child(2) { transition-delay: 0.1s; }
.trust-grid [data-reveal]:nth-child(3) { transition-delay: 0.18s; }
.trust-grid [data-reveal]:nth-child(4) { transition-delay: 0.26s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .hero-media-block, .about-media-block { animation: none; }
}

/* Header */
.site-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(20px, 4vw, 56px);
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--header-bg);
  box-shadow: 0 1px 0 rgba(11, 47, 82, 0.05);
}
.brand-logo { height: 64px; width: auto; }
.logo-dark { display: none; }
html[data-theme="dark"] .logo-light { display: none; }
html[data-theme="dark"] .logo-dark { display: block; }

.site-nav { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.site-nav a {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--gray);
  font-weight: 600;
  font-size: 0.95rem;
  transition: 0.2s ease;
  white-space: nowrap;
}
.site-nav a:hover { color: var(--text-strong); background: var(--bg-soft); }
.site-nav a.active { color: var(--blue); background: var(--bg-soft); font-weight: 800; }
.site-nav a.nav-cta.active { color: #fff !important; }
.nav-cta {
  color: #fff !important;
  background: var(--blue);
  box-shadow: 0 10px 22px rgba(0, 121, 202, 0.28);
}
.nav-cta:hover { color: #fff !important; background: var(--blue-dark); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.header-phone {
  display: flex; align-items: center; gap: 8px;
  color: var(--text-strong); font-weight: 700; font-size: 0.92rem;
  padding: 8px 14px; border-radius: 999px; border: 1px solid var(--border);
  white-space: nowrap;
}
.header-phone svg { width: 16px; height: 16px; color: var(--blue); flex: none; }
.header-phone:hover { border-color: var(--blue); color: var(--blue); }
.header-phone:hover svg { color: var(--blue); }
.theme-toggle {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--navy);
  display: grid;
  place-items: center;
  flex: none;
}
.theme-toggle svg { width: 20px; height: 20px; }
.theme-toggle .icon-moon { display: none; }
html[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
html[data-theme="dark"] .theme-toggle .icon-moon { display: block; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex: none;
}
.nav-toggle span { width: 20px; height: 2px; background: var(--navy); border-radius: 2px; transition: 0.25s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero-band {
  width: 100%;
  background: linear-gradient(135deg, #0b2f52 0%, #071f38 100%);
  clip-path: polygon(0 0, 100% 0, 100% 94%, 0 100%);
  padding-bottom: 36px;
}
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  padding-top: 56px;
  padding-bottom: 56px;
}
.hero-copy { display: flex; flex-direction: column; justify-content: center; align-self: stretch; }
.hero-media { display: flex; align-items: center; align-self: center; position: relative; }
.hero-media-block {
  position: absolute;
  left: -16px; bottom: -16px;
  width: 100%; height: 100%;
  background: var(--blue);
  border-radius: 20px;
  z-index: 0;
  animation: float-accent-left 6s ease-in-out infinite;
}
.hero-media img {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.35);
  width: 100%;
  height: auto;
  align-self: center;
}

@keyframes float-accent-left {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-6px, 0); }
}
@keyframes float-accent-right {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(6px, 0); }
}
@keyframes float-accent-vertical {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(0, 6px); }
}

.hero-band .eyebrow { color: #7fd0ff; }
.hero-band .eyebrow::before { background: linear-gradient(90deg, #7fd0ff, #cdeeff); }
.hero-band h1 { color: #fff; }
.hero-band .lead { color: #cfe0f2; }
.hero-band .hero-points li { color: #fff; }
.hero-band .button-secondary { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.25); color: #fff; }
.hero-band .button-secondary:hover { border-color: #7fd0ff; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 800;
  margin: 0 0 14px;
}
h1, h2, h3 { margin: 0; color: var(--text-strong); }
h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 14ch;
}
h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
}
h3 { font-size: 1.1rem; }
.lead { color: var(--gray); font-size: 1.08rem; line-height: 1.7; max-width: 56ch; margin: 22px 0 0; }
p { line-height: 1.7; color: var(--gray); }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.98rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: none;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 12px 24px rgba(0, 121, 202, 0.3);
}
.button-primary:hover { background: var(--blue-dark); }
.button-secondary {
  border: 1.5px solid var(--border);
  background: var(--bg-card);
  color: var(--text-strong);
}
.button-secondary:hover { border-color: var(--blue); }

.hero-points { list-style: none; margin: 30px 0 0; display: grid; gap: 12px; }
.hero-points li { padding-left: 24px; position: relative; color: var(--text-strong); font-weight: 600; font-size: 0.98rem; }
.hero-points li::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 2px;
  background: var(--blue-light);
  position: absolute; left: 0; top: 0.55em;
}

/* Trust strip */
.trust-strip { padding-top: 0; padding-bottom: 40px; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  padding: 28px clamp(16px, 3vw, 32px);
}
.trust-item { display: flex; align-items: center; gap: 14px; min-width: 0; }
.trust-item > div { min-width: 0; }
.trust-icon {
  flex: none; width: 44px; height: 44px; border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(0, 121, 202, 0.1);
  border: 1px solid rgba(0,121,202,0.22);
  color: var(--blue);
}
.trust-icon svg { width: 22px; height: 22px; }
.trust-icon { transition: transform 0.3s ease, background 0.3s ease; }
.trust-item:hover .trust-icon { transform: scale(1.12); background: rgba(0, 121, 202, 0.18); }
.trust-item strong { color: var(--text-strong); font-size: 1.3rem; font-family: var(--font-display); display: block; }
.trust-item span { color: var(--gray); font-size: 0.92rem; }

/* Technologie-Band (Marquee) */
.tech-strip {
  overflow: hidden;
  margin-top: 24px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.tech-track {
  display: flex;
  width: max-content;
  animation: tech-marquee 32s linear infinite;
}
.tech-strip:hover .tech-track { animation-play-state: paused; }
.tech-set {
  display: flex;
  gap: 10px;
  padding-right: 10px;
}
.tech-set span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--gray);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.tech-set span svg { width: 16px; height: 16px; color: var(--blue); flex: none; }
.tech-set span:hover { border-color: var(--blue); color: var(--blue); }
@keyframes tech-marquee {
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .tech-strip { mask-image: none; -webkit-mask-image: none; }
  .tech-track { animation: none; width: 100%; }
  .tech-set { flex-wrap: wrap; justify-content: center; width: 100%; padding-right: 0; }
  .tech-set[aria-hidden="true"] { display: none; }
}

/* Section heads */
.section-head { max-width: 720px; margin-bottom: 36px; }
.section-head p { margin-top: 12px; font-size: 1.05rem; }
.eyebrow { position: relative; padding-left: 22px; }
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 14px; height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
}

/* Benefits */
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.benefit {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px;
}
.benefit .check {
  flex: none; width: 28px; height: 28px; border-radius: 8px;
  background: var(--blue);
  color: #fff; display: grid; place-items: center; font-size: 0.85rem; font-weight: 900;
}
.benefit p { margin: 0; color: var(--text); font-size: 0.98rem; line-height: 1.5; }

/* Dezente Glow-Hintergründe */
#leistungen::before,
#ablauf::before {
  content: "";
  position: absolute;
  width: min(480px, 60%);
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 121, 202, 0.08), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
#leistungen::before { top: -40px; right: 0; }
#ablauf::before { bottom: -40px; left: 0; background: radial-gradient(circle, rgba(56, 166, 224, 0.09), transparent 70%); }
#leistungen > *, #ablauf > * { position: relative; z-index: 1; }

/* Services */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  border: 1px solid var(--border);
  border-top: 4px solid var(--blue);
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card img { height: 210px; width: 100%; object-fit: cover; transition: transform 0.4s ease; }
.service-card:hover img { transform: scale(1.06); }
.service-body { padding: 22px; display: flex; flex-direction: column; flex: 1; position: relative; }
.service-icon {
  width: 46px; height: 46px; border-radius: 10px;
  display: grid; place-items: center;
  background: var(--blue);
  color: #fff; margin-top: -44px; margin-bottom: 14px;
  box-shadow: 0 10px 20px rgba(0, 121, 202, 0.3);
  border: 3px solid var(--bg-card);
}
.service-icon svg { width: 22px; height: 22px; }
.service-icon { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.service-card:hover .service-icon {
  transform: scale(1.12) rotate(-6deg);
  box-shadow: 0 14px 26px rgba(0, 121, 202, 0.4);
}
.service-body h3 { margin-bottom: 12px; }
.service-body ul { list-style: none; display: grid; gap: 7px; margin-bottom: 16px; }
.service-body li { padding-left: 18px; position: relative; color: var(--gray); font-size: 0.92rem; }
.service-body li::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue); position: absolute; left: 0; top: 0.55em;
}
.service-link {
  margin-top: auto;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.9rem;
  align-self: flex-start;
}
.service-link:hover { color: var(--blue-dark); }

/* Timeline */
.timeline { display: grid; gap: 16px; }
.timeline-item {
  display: grid; grid-template-columns: 56px minmax(0, 1fr); gap: 20px; align-items: start;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.timeline-item span {
  width: 56px; height: 56px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(0, 121, 202, 0.1);
  border: 1px solid rgba(0,121,202,0.25);
  font-weight: 900; font-size: 1.2rem; color: var(--blue); font-family: var(--font-display);
}
.timeline-item h3 { margin-bottom: 6px; }
.timeline-item p { margin: 0; }
.timeline-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

/* About */
.about { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: center; }
.about-media { align-self: center; position: relative; }
.about-media-block {
  position: absolute;
  right: -16px; bottom: -16px;
  width: 100%; height: 100%;
  background: var(--blue-light);
  border-radius: 20px;
  z-index: 0;
  animation: float-accent-right 7s ease-in-out infinite;
}
.about-media img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center 30%;
}
.about-copy p { margin: 16px 0 0; }
.about-copy .lead { margin-top: 22px; }

/* FAQ */
.faq-list { display: grid; gap: 12px; max-width: 820px; }
.faq-item {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 20px 22px; background: none; border: none; text-align: left;
  color: var(--text-strong); font-weight: 700; font-size: 1rem;
  transition: background 0.2s ease;
}
.faq-question:hover { background: var(--bg-soft); }
.faq-item.open { border-color: rgba(0, 121, 202, 0.35); box-shadow: var(--shadow-sm); }
.faq-icon {
  flex: none; width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg-soft); display: grid; place-items: center; color: var(--blue);
  font-size: 1.1rem; transition: transform 0.25s ease;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding: 0 22px; }
.faq-answer p { margin: 0 0 20px; }
.faq-item.open .faq-answer { max-height: 240px; }

/* Contact + Termin */
.contact-band {
  width: 100%;
  background: var(--bg-soft);
  clip-path: polygon(0 0, 100% 3%, 100% 100%, 0 100%);
  margin-top: 40px;
}
.contact { padding-bottom: 96px; }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 24px; align-items: stretch; }
.contact-card {
  background: linear-gradient(135deg, #0b2f52 0%, #071f38 100%);
  border-radius: 18px;
  padding: clamp(28px, 4vw, 48px);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 140px 140px 0;
  border-color: transparent var(--blue) transparent transparent;
  opacity: 0.35;
  pointer-events: none;
}
.contact-card > * { position: relative; z-index: 1; }
.contact-card .eyebrow { color: #7fd0ff; }
.availability {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
}
.availability-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #3ddc84;
  flex: none;
  animation: pulse-dot 2s ease-in-out infinite;
}
.availability.offline .availability-dot { background: #f2b02c; animation: none; }
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(61, 220, 132, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(61, 220, 132, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .availability-dot { animation: none; }
}
.contact-card .eyebrow::before { background: linear-gradient(90deg, #7fd0ff, #cdeeff); }
.contact-card h2 { color: #fff; }
.contact-card p { max-width: 60ch; color: #cfe0f2; }
.contact-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.contact-card .button-secondary { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.2); color: #fff; }
.contact-card .button-secondary:hover { border-color: #7fd0ff; }

.contact-details {
  display: flex; flex-direction: column; gap: 16px;
  margin-top: 36px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.14);
}
.contact-details div { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.contact-details span:first-child { color: #7fd0ff; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; }
.contact-details a, .contact-details span:last-child { color: #fff; font-weight: 600; }
.contact-details a:hover { color: #7fd0ff; }

.termin-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: clamp(28px, 4vw, 48px);
  scroll-margin-top: 100px;
}
.termin-hint { margin-top: 10px; }
#termin-form { margin-top: 24px; display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row-inline { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
label { display: flex; flex-direction: column; gap: 6px; font-size: 0.88rem; font-weight: 700; color: var(--text-strong); }
.form-full { display: flex; flex-direction: column; gap: 6px; }
input, select, textarea {
  font-family: inherit;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--blue); }
textarea { resize: vertical; }
.termin-submit-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 4px; }
.form-note { font-size: 0.82rem; color: var(--gray-soft); margin: 4px 0 0; }
.form-status { font-size: 0.9rem; font-weight: 700; margin-top: 4px; }
.form-status.success { color: #1f9d55; }

/* 404 */
.error-page { text-align: center; padding: 100px 0 120px; }
.error-page .eyebrow { padding-left: 0; }
.error-page .eyebrow::before { display: none; }
.error-code {
  font-family: var(--font-display);
  font-size: clamp(5rem, 14vw, 9rem);
  line-height: 1;
  color: var(--blue);
  margin-bottom: 8px;
}
.error-page h2 { margin-bottom: 14px; }
.error-page p { max-width: 46ch; margin: 0 auto; }
.error-page .hero-actions { justify-content: center; margin-top: 28px; }

/* Legal pages */
.legal-title { font-size: clamp(2rem, 4vw, 2.8rem); }
.legal-body { max-width: 760px; }
.legal-body h2 { font-size: 1.15rem; font-family: var(--font-body); margin-top: 32px; margin-bottom: 8px; }
.legal-body h3 { font-size: 1rem; font-family: var(--font-body); color: var(--text-strong); margin-top: 20px; margin-bottom: 6px; }
.legal-body p { margin: 0 0 4px; }
.legal-body a { color: var(--blue); text-decoration: underline; }
.legal-note { margin-top: 32px; padding: 16px 18px; border-radius: var(--radius-sm); background: var(--bg-soft); font-size: 0.88rem; color: var(--gray-soft); }

/* Footer */
.site-footer {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  padding: 28px clamp(20px, 4vw, 56px) 40px;
  border-top: 1px solid var(--border);
  color: var(--gray); font-size: 0.9rem;
}
.footer-brand { display: flex; align-items: center; gap: 14px; min-width: 0; }
.footer-mark { height: 34px; width: auto; flex: none; }
.footer-brand > div { min-width: 0; }
.footer-brand strong { display: block; color: var(--text-strong); }
.footer-brand span { color: var(--gray); font-size: 0.85rem; display: block; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a:hover { color: var(--blue); }
.footer-copy { color: var(--gray-soft); }

/* Mobile quick-contact bar */
.mobile-bar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 24px rgba(0,0,0,0.08);
  padding: 8px max(10px, env(safe-area-inset-left)) calc(8px + env(safe-area-inset-bottom));
  grid-template-columns: repeat(3, 1fr);
}
.mobile-bar a {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  color: var(--text-strong); font-size: 0.72rem; font-weight: 700; padding: 6px 0;
}
.mobile-bar a svg { width: 20px; height: 20px; color: var(--blue); }

/* Back to top */
.to-top {
  position: fixed; right: 20px; bottom: 90px; z-index: 40;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--blue); color: #fff; border: none;
  font-size: 1.1rem; box-shadow: var(--shadow-sm);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: 0.25s ease;
}
.to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* Responsive */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .benefits, .service-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .about { grid-template-columns: 1fr; }
  .about-media { max-width: 480px; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-media-block, .about-media-block {
    top: auto; left: 0; right: 0; bottom: -16px;
    animation-name: float-accent-vertical;
  }
}
@media (max-width: 860px) {
  .header-phone { display: none; }
  .site-nav {
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 10px 20px 18px;
    gap: 4px;
    max-height: 80vh;
    overflow: hidden auto;
    box-shadow: var(--shadow-sm);
    transform: translateY(-130%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.25s ease, visibility 0s linear 0.3s;
  }
  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.3s ease, opacity 0.25s ease;
  }
  .site-nav a { text-align: left; padding: 12px 14px; }
  .nav-toggle { display: flex; }
  .mobile-bar { display: grid; }
  .to-top { bottom: 78px; }
  .section { padding: 56px 0; width: calc(100% - 40px); }
  .section-soft { padding: 40px 28px; }
}
@media (max-width: 720px) {
  .benefits, .service-grid, .trust-grid { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 44px minmax(0, 1fr); }
  .timeline-item span { width: 44px; height: 44px; font-size: 1rem; border-radius: 12px; }
  .site-footer { flex-direction: column; align-items: flex-start; }
  .form-row, .form-row-inline { grid-template-columns: 1fr; }
  h1 { max-width: none; }
  .contact-actions { flex-direction: column; }
  .contact-actions .button { width: 100%; }
  .termin-submit-row { flex-direction: column; }
  .termin-submit-row .button { width: 100%; }
}
