﻿:root {
  --brand:      #0c4a86;
  --brand-dark: #082f5f;
  --accent:     #19a96b;
  --dark:       #101820;
  --dark-2:     #162432;
  --surface:    #ffffff;
  --bg:         #f4f8fb;
  --text:       #101820;
  --text-2:     #243341;
  --muted:      #657383;
  --border:     #dce7ef;
  --radius-sm:  8px;
  --radius:     16px;
  --radius-lg:  24px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.06), 0 4px 12px rgba(0,0,0,.06);
  --shadow:     0 2px 6px rgba(0,0,0,.06), 0 12px 32px rgba(0,0,0,.1);
  --shadow-lg:  0 8px 24px rgba(0,0,0,.12), 0 32px 64px rgba(0,0,0,.14);
  --ease:       cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', Inter, system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; transition: color .2s var(--ease); }
a:hover { text-decoration: underline; }

.skip { position: absolute; left: -9999px; }
.skip:focus { left: 1rem; top: 1rem; background: #fff; padding: .6rem .8rem; border-radius: var(--radius-sm); outline: 3px solid var(--brand); }

/* ---- Layout ---- */
.container { width: min(1200px, 92vw); margin: 0 auto; }
.narrow    { width: min(820px, 92vw); margin: 0 auto; }
.section   { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section--alt { background: var(--surface); }

/* ---- Typography ---- */
.h1 {
  font-size: clamp(2.2rem, 1.4rem + 2.4vw, 3.5rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -.03em;
}
.h2 {
  font-size: clamp(1.7rem, 1.1rem + 1.4vw, 2.5rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -.025em;
  margin: 0 0 .6em;
}
.h3 { font-size: 1.05rem; font-weight: 700; margin: 0 0 .3em; }
.lead { font-size: 1.08rem; color: var(--text-2); max-width: 66ch; line-height: 1.75; }
.small { font-size: .9rem; }
.muted { color: var(--muted); }
.center { text-align: center; margin-inline: auto; }
.mt-1 { margin-top: 1rem; }

/* ---- Section Label ---- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: .9rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  flex-shrink: 0;
}

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  background: var(--dark);
  color: rgba(255,255,255,.75);
  font-size: .85rem;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .55rem 0;
}
.brand {
  font-weight: 800;
  color: #fff;
  letter-spacing: -.01em;
}
.topbar__contacts a {
  color: rgba(255,255,255,.75);
  margin-left: 1.25rem;
  transition: color .2s var(--ease);
}
.topbar__contacts a:hover { color: #fff; text-decoration: none; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.nav.scrolled {
  box-shadow: 0 4px 40px rgba(0,0,0,.1);
  border-bottom-color: transparent;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .8rem 0;
  gap: 1rem;
}
.nav__logo {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--dark);
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
  letter-spacing: -.02em;
}
.nav__logo span { color: var(--brand); }
.nav__logo:hover { text-decoration: none; }
.nav__toggle {
  display: none;
  background: transparent;
  border: 1.5px solid var(--border);
  padding: .45rem .7rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: .9rem;
  color: var(--text);
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: .15rem;
  flex-wrap: wrap;
}
.nav__menu a {
  color: var(--text);
  font-weight: 600;
  font-size: .88rem;
  padding: .42rem .65rem;
  border-radius: var(--radius-sm);
  transition: background .18s var(--ease), color .18s var(--ease);
  text-decoration: none;
}
.nav__menu a:hover { background: var(--bg); color: var(--brand); text-decoration: none; }
.nav__cta {
  background: var(--brand) !important;
  color: #fff !important;
  border-radius: var(--radius-sm) !important;
  padding: .45rem .9rem !important;
  margin-left: .35rem;
}
.nav__cta:hover { background: var(--brand-dark) !important; color: #fff !important; }

@media (max-width: 900px) {
  .nav__toggle { display: block; }
  .nav__menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: .35rem;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 16px 48px rgba(0,0,0,.12);
  }
  .nav__menu.open { display: flex; }
  .nav__menu a { font-size: .97rem; padding: .7rem 1rem; }
  .nav__cta { text-align: center; margin: .5rem 0 0; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 76vh;
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--hero) center / cover no-repeat;
  opacity: .38;
  transform: scale(1.06);
  transition: transform 12s ease;
}
.hero:hover .hero__bg { transform: scale(1.0); }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    rgba(6,14,22,.96) 0%,
    rgba(6,14,22,.68) 55%,
    rgba(6,14,22,.32) 100%
  );
}
.hero__sparkles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hero__sparkles span {
  position: absolute;
  width: 18px;
  height: 18px;
  opacity: 0;
  transform: scale(.45) rotate(0deg);
  animation: sparkleTwinkle 3.8s ease-in-out infinite;
}
.hero__sparkles span::before,
.hero__sparkles span::after {
  content: '';
  position: absolute;
  inset: 50% auto auto 50%;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.95), transparent);
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 0 8px rgba(255,255,255,.75));
}
.hero__sparkles span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.hero__sparkles span:nth-child(1) { top: 18%; left: 58%; animation-delay: .1s; }
.hero__sparkles span:nth-child(2) { top: 28%; left: 83%; width: 14px; height: 14px; animation-delay: 1.2s; }
.hero__sparkles span:nth-child(3) { top: 54%; left: 74%; width: 22px; height: 22px; animation-delay: 2.1s; }
.hero__sparkles span:nth-child(4) { top: 72%; left: 52%; width: 12px; height: 12px; animation-delay: .8s; }
.hero__sparkles span:nth-child(5) { top: 38%; left: 44%; width: 10px; height: 10px; animation-delay: 2.8s; }
.hero__sparkles span:nth-child(6) { top: 16%; left: 32%; width: 13px; height: 13px; animation-delay: 1.7s; }
.hero__sparkles span:nth-child(7) { top: 66%; left: 88%; width: 16px; height: 16px; animation-delay: 3.2s; }
@keyframes sparkleTwinkle {
  0%, 100% {
    opacity: 0;
    transform: scale(.35) rotate(0deg);
  }
  42% {
    opacity: .18;
  }
  50% {
    opacity: 1;
    transform: scale(1) rotate(45deg);
  }
  58% {
    opacity: .22;
  }
}
.hero__wrap {
  position: relative;
  z-index: 2;
  padding: clamp(2.5rem, 5vw, 4.25rem) 0;
  max-width: 820px;
}
.hero__label {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #dff9ef;
  margin-bottom: 1.25rem;
}
.hero__label::before {
  content: '';
  display: block;
  width: 26px;
  height: 2px;
  background: #dff9ef;
  border-radius: 2px;
}
.hero .h1 { color: #fff; }
.hero .h1 em {
  color: var(--accent);
  font-style: normal;
  font-weight: 800;
}
.hero__sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,.78);
  max-width: 65ch;
  margin: 1.3rem 0 2rem;
  line-height: 1.78;
}
.hero__sub strong { color: rgba(255,255,255,.95); font-weight: 600; }
.hero__actions { display: flex; gap: .85rem; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.35);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: scrollBounce 2.2s ease infinite;
  pointer-events: none;
}
.hero__scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,.35), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 2.25rem 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
  position: relative;
}
.stats__grid > div {
  padding: .75rem 1rem;
  border-right: 1px solid var(--border);
}
.stats__grid > div:last-child { border-right: none; }
.stat__num {
  display: block;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
}
.stat__label {
  display: block;
  font-size: .78rem;
  color: var(--muted);
  font-weight: 600;
  margin-top: .4rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
@media (max-width: 700px) {
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats__grid > div:nth-child(2) { border-right: none; }
  .stats__grid > div:nth-child(3) { border-top: 1px solid var(--border); }
  .stats__grid > div:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
}

/* ============================================================
   ÜBER UNS
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }

.ticks {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: .85rem;
}
.ticks li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .97rem;
  line-height: 1.55;
}
.ticks li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  background: var(--brand);
  border-radius: 50%;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='white' d='M16.7 5.3a1 1 0 0 1 0 1.4l-8 8a1 1 0 0 1-1.4 0l-3-3a1 1 0 1 1 1.4-1.4L8 12.6l7.3-7.3a1 1 0 0 1 1.4 0z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='white' d='M16.7 5.3a1 1 0 0 1 0 1.4l-8 8a1 1 0 0 1-1.4 0l-3-3a1 1 0 1 1 1.4-1.4L8 12.6l7.3-7.3a1 1 0 0 1 1.4 0z'/%3E%3C/svg%3E");
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}

.about-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}
.about-logo svg {
  max-width: 400px;
  width: 100%;
  overflow: visible;
}
.about-logo img {
  max-width: 620px;
  width: 100%;
}

/* ============================================================
   LEISTUNGEN – Service Cards
   ============================================================ */
.svc { position: relative; margin-top: 2rem; }
.svc__scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(256px, 1fr);
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: .5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.svc__scroller::-webkit-scrollbar { height: 5px; }
.svc__scroller::-webkit-scrollbar-thumb { background: var(--border); border-radius: 10px; }

.svc__card {
  position: relative;
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 270px;
  cursor: pointer;
  border: 2px solid transparent;
  background: var(--bg-img) center / cover no-repeat;
  transition: transform .22s var(--ease), border-color .22s var(--ease), box-shadow .22s var(--ease);
}
.svc__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(6,16,8,.15) 0%, rgba(6,16,8,.88) 100%);
  z-index: 1;
  transition: opacity .22s var(--ease);
}
.svc__card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.svc__card.is-active {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(29,160,64,.22), var(--shadow);
}

.svc__meta {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 1.25rem;
  color: #fff;
}
.svc__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  font-size: .78rem;
  margin-bottom: .45rem;
}
.svc__title { font-size: 1rem; font-weight: 700; color: #fff; margin: 0 0 .2rem; }
.svc__desc  { font-size: .87rem; color: rgba(255,255,255,.78); margin: 0; max-width: 32ch; }

.svc__arrows {
  position: absolute;
  top: -2.9rem;
  right: 0;
  display: flex;
  gap: .4rem;
}
.svc__arrow {
  border: 1.5px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: .5rem .8rem;
  cursor: pointer;
  font-size: 1.15rem;
  line-height: 1;
  transition: all .2s var(--ease);
  color: var(--text);
}
.svc__arrow:hover { background: var(--brand); color: #fff; border-color: var(--brand); transform: translateY(-1px); }

.svc__detail {
  margin-top: 1.4rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
}
.svc__detail-img {
  background: var(--detail-bg) center / cover no-repeat;
  min-height: 340px;
}
.svc__detail-body {
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  justify-content: center;
}
.svc__bullets {
  list-style: none;
  padding: 0;
  display: grid;
  gap: .65rem;
  margin-top: .25rem;
}
.svc__bullets li {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .95rem;
}
.svc__bullets li::before {
  content: '';
  flex-shrink: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand);
}
@media (max-width: 900px) { .svc__detail { grid-template-columns: 1fr; } }

/* ============================================================
   GALLERY (Dienstleistungen)
   ============================================================ */
.gallery-section {
  background: var(--dark);
  color: #e8f5ea;
}
.gallery-section .h2 { color: #fff; }
.gallery-section .section-label { color: #7fe39a; }

.gallery-scroller { position: relative; margin-top: 1.75rem; }
.gallery-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: .5rem;
}
.gallery-track::-webkit-scrollbar { display: none; }

.gallery-card {
  flex: 0 0 360px;
  height: 420px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  scroll-snap-align: start;
  overflow: hidden;
  position: relative;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
}
.gallery-card:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}

.gallery-arrows {
  display: flex;
  justify-content: center;
  gap: .75rem;
  margin-top: 1.5rem;
}
.gallery-arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.07);
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s var(--ease);
  backdrop-filter: blur(8px);
  line-height: 1;
}
.gallery-arrow:hover { background: var(--brand); border-color: var(--brand); transform: scale(1.1); }

@media (max-width: 700px) {
  .gallery-card { flex: 0 0 280px; height: 300px; }
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.step {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.step::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.step:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.step:hover::after { transform: scaleX(1); }
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(12,74,134,.1);
  color: var(--brand);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  transition: all .25s var(--ease);
}
.step:hover .step__num {
  background: var(--brand);
  color: #fff;
  transform: rotate(6deg) scale(1.1);
}
.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: .45rem; color: var(--text); }
.step p  { font-size: .9rem; color: var(--muted); line-height: 1.65; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }

/* ============================================================
   GRID
   ============================================================ */
.grid--2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
@media (max-width: 900px) { .grid--2 { grid-template-columns: 1fr; } }

/* ============================================================
   MAP
   ============================================================ */
.map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-wrap {
  max-width: 860px;
  margin: 0 auto;
}

.contact-info {
  background: var(--surface);
  color: var(--text-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3.5rem 4rem;
  box-shadow: var(--shadow-lg);
}
.contact-info .h2 { color: var(--text); margin-bottom: .35em; }
.contact-info .section-label { color: var(--brand); }
.contact-info .lead { color: var(--muted); font-size: 1.05rem; }

.contact-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2.5rem;
  margin-top: 2rem;
}
@media (max-width: 600px) {
  .contact-details-grid { grid-template-columns: 1fr; }
  .contact-info { padding: 2rem 1.5rem; }
}

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(12,74,134,.1);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail-text strong {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: .3rem;
}
.contact-detail-text a,
.contact-detail-text span {
  color: var(--text-2);
  font-size: 1rem;
  font-weight: 500;
}
.contact-detail-text a:hover { color: var(--brand); text-decoration: none; }

/* ============================================================
   FORM
   ============================================================ */
.form { display: grid; gap: 1.1rem; }
.form__group { display: grid; gap: .42rem; }
.form__group label { font-size: .86rem; font-weight: 600; color: var(--text); }
.form input,
.form textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: .92rem 1rem;
  font: inherit;
  font-size: .96rem;
  outline: none;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
  color: var(--text);
}
.form input:focus,
.form textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(29,160,64,.15);
}
.form__check {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  font-size: .9rem;
  color: var(--muted);
}
.form__check input { margin-top: .22rem; accent-color: var(--brand); flex-shrink: 0; }
.hp { position: absolute; left: -50000px; width: 1px; height: 1px; overflow: hidden; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .95rem 1.8rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .97rem;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all .22s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.btn--primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(12,74,134,.35);
  text-decoration: none;
  color: #fff;
}
.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.42);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.7);
  text-decoration: none;
  color: #fff;
}
.btn--outline {
  background: #fff;
  color: var(--brand);
  border-color: rgba(12,74,134,.28);
}
.btn--outline:hover {
  background: rgba(12,74,134,.08);
  border-color: var(--brand);
  color: var(--brand);
  transform: translateY(-2px);
  text-decoration: none;
}

/* ============================================================
   FLOATING CTA
   ============================================================ */
.float-cta {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  align-items: flex-end;
}
.float-btn {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .75rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .88rem;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(0,0,0,.28);
  transition: all .22s var(--ease);
  white-space: nowrap;
}
.float-btn:hover { transform: translateY(-3px) scale(1.04); text-decoration: none; color: #fff; }
.float-btn--call { background: var(--accent); }
.float-btn--mail { background: var(--brand); }
.float-btn__icon { font-size: 1rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--surface);
  color: var(--text-2);
  border-top: 1px solid var(--border);
  padding-top: 3.5rem;
  padding-bottom: 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__brand {
  font-size: 1.2rem;
  color: var(--text);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -.02em;
}
.footer__logo {
  max-width: 230px;
  margin-bottom: 1rem;
  opacity: .95;
}
.foot__title {
  font-weight: 700;
  color: var(--text);
  font-size: .9rem;
  margin: 0 0 .9rem;
  letter-spacing: .04em;
}
.foot__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .5rem;
  font-size: .88rem;
}
.foot__list li { color: var(--muted); }
.footer a { color: var(--brand); }
.footer a:hover { color: var(--brand-dark); text-decoration: none; }
.footer__copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .83rem;
  color: var(--muted);
  flex-wrap: wrap;
  gap: .5rem;
}
.footer__copy a { color: var(--brand); }
.footer__copy a:hover { color: var(--brand-dark); }

/* ============================================================
   MEDIA FRAME
   ============================================================ */
.media-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal-up   { opacity: 0; transform: translateY(26px); }
.reveal-fade { opacity: 0; }
.reveal-in {
  opacity: 1 !important;
  transform: none !important;
  transition: opacity .65s ease, transform .65s ease;
}
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }
@media (prefers-reduced-motion: reduce) {
  .reveal-up, .reveal-fade { opacity: 1; transform: none; }
}

/* ============================================================
   LEGAL / IMPRESSUM PAGES
   ============================================================ */
.legal-hero {
  background: linear-gradient(135deg, rgba(12,74,134,.95), rgba(16,24,32,.88));
  color: #fff;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}
.breadcrumbs { display: flex; gap: .5rem; font-size: .95rem; margin-top: .5rem; color: rgba(255,255,255,.9); }
.legal__block { margin-bottom: 2.2rem; }
