/* ===== FONTS (lokal – kein Google CDN) ===== */
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Medium.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-SemiBold.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}

/* ===== VARIABLES ===== */
:root {
  --primaer:    #1a6fba;
  --sekundaer:  #e8f4fd;
  --akzent:     #0d4a8a;
  --white:      #ffffff;
  --dark:       #0f2340;
  --dark-2:     #1a3560;
  --text:       #2d3748;
  --text-light: #718096;
  --border:     #e2e8f0;
  --shadow:       0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 40px rgba(26,111,186,0.18);
  --radius: 12px;
  --transition: 0.3s ease;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primaer); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--akzent); }
ul { list-style: none; }

/* ===== ACCESSIBILITY ===== */
.skip-link {
  position: absolute; top: -100%; left: 0;
  background: var(--akzent); color: var(--white);
  padding: 0.75rem 1.5rem; z-index: 9999;
  font-weight: 600; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { top: 0; }
*:focus-visible { outline: 3px solid var(--primaer); outline-offset: 3px; border-radius: 4px; }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 1rem 0;
}
.nav.scrolled { background: var(--white); box-shadow: 0 2px 20px rgba(0,0,0,0.1); }
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 0.625rem; text-decoration: none; }
.nav-logo img { height: 38px; width: auto; }
.nav-logo-text { font-size: 1.25rem; font-weight: 700; color: var(--white); transition: color var(--transition); }
.nav.scrolled .nav-logo-text { color: var(--akzent); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: 0.9375rem; font-weight: 500;
  color: rgba(255,255,255,0.9); text-decoration: none;
  transition: color var(--transition); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--primaer);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav.scrolled .nav-links a { color: var(--text); }
.nav.scrolled .nav-links a:hover { color: var(--primaer); }
.nav-cta {
  background: var(--primaer) !important; color: var(--white) !important;
  padding: 0.5rem 1.25rem !important; border-radius: 50px !important;
  font-weight: 600 !important; transition: background var(--transition) !important;
}
.nav-cta:hover { background: var(--akzent) !important; }
.nav-cta::after { display: none !important; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav.scrolled .hamburger span { background: var(--text); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 767px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none; position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--dark); flex-direction: column;
    justify-content: center; align-items: center;
    gap: 2.5rem; z-index: -1;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.375rem; color: var(--white) !important; }
  .nav-cta { padding: 0.75rem 2.5rem !important; font-size: 1.125rem !important; }
}

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--dark);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.3; will-change: transform; }
.hero-content { position: relative; z-index: 1; text-align: center; padding: 2rem 1.5rem; max-width: 900px; color: var(--white); }
.hero-tag {
  display: inline-block; background: rgba(26,111,186,0.3);
  border: 1px solid rgba(26,111,186,0.5); color: #90c8f7;
  font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 0.375rem 1rem;
  border-radius: 50px; margin-bottom: 1.5rem;
}
.hero h1 { font-size: clamp(2.5rem,6vw,4.5rem); font-weight: 700; line-height: 1.1; margin-bottom: 1.25rem; letter-spacing: -0.02em; }
.hero-sub { font-size: clamp(1.0625rem,2.5vw,1.3125rem); color: rgba(255,255,255,0.8); max-width: 640px; margin: 0 auto 2.5rem; line-height: 1.65; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.5); display: flex; flex-direction: column;
  align-items: center; gap: 0.5rem; font-size: 0.75rem;
  letter-spacing: 0.08em; text-transform: uppercase; animation: bounce 2.5s infinite;
}
.hero-scroll svg { width: 18px; height: 18px; }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--primaer); color: var(--white);
  padding: 0.875rem 2rem; border-radius: 50px;
  font-size: 1rem; font-weight: 600; text-decoration: none;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(26,111,186,0.35);
}
.btn-primary:hover { transform: scale(1.03); background: var(--akzent); color: var(--white); box-shadow: 0 6px 30px rgba(13,74,138,0.45); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: var(--white);
  padding: 0.875rem 2rem; border-radius: 50px;
  font-size: 1rem; font-weight: 600; text-decoration: none;
  border: 2px solid rgba(255,255,255,0.5);
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}
.btn-secondary:hover { transform: scale(1.03); border-color: var(--white); background: rgba(255,255,255,0.1); color: var(--white); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: var(--primaer);
  padding: 0.875rem 2rem; border-radius: 50px;
  font-size: 1rem; font-weight: 600; text-decoration: none;
  border: 2px solid var(--primaer);
  transition: transform var(--transition), background var(--transition), color var(--transition);
}
.btn-outline:hover { transform: scale(1.03); background: var(--primaer); color: var(--white); }
.btn-white {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--white); color: var(--akzent);
  padding: 0.875rem 2rem; border-radius: 50px;
  font-size: 1rem; font-weight: 700; text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover { transform: scale(1.03); box-shadow: 0 6px 30px rgba(0,0,0,0.25); color: var(--akzent); }
.btn-wa {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.625rem;
  background: #25D366; color: var(--white); padding: 0.875rem 2rem;
  border-radius: 50px; font-size: 1rem; font-weight: 600; text-decoration: none;
  transition: transform var(--transition), background var(--transition);
}
.btn-wa:hover { transform: scale(1.03); background: #1da855; color: var(--white); }
.btn-call {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.625rem;
  background: var(--primaer); color: var(--white); padding: 0.875rem 2rem;
  border-radius: 50px; font-size: 1rem; font-weight: 600; text-decoration: none;
  transition: transform var(--transition), background var(--transition);
}
.btn-call:hover { transform: scale(1.03); background: var(--akzent); color: var(--white); }

/* ===== SECTIONS ===== */
section { padding: 5rem 0; }
.section-alt { background: var(--sekundaer); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag { display: inline-block; color: var(--primaer); font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.75rem; }
h2 { font-size: clamp(1.875rem,4vw,2.75rem); font-weight: 700; line-height: 1.2; color: var(--dark); letter-spacing: -0.02em; }
h3 { font-size: 1.25rem; font-weight: 600; color: var(--dark); margin-bottom: 0.75rem; }
.section-header p { font-size: 1.0625rem; color: var(--text-light); max-width: 600px; margin: 1rem auto 0; line-height: 1.7; }

/* ===== PAGE HERO (Unterseiten) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  padding: 8rem 0 4rem; text-align: center; color: var(--white);
}
.page-hero h1 { font-size: clamp(2rem,5vw,3rem); font-weight: 700; color: var(--white); margin-bottom: 1rem; letter-spacing: -0.02em; }
.page-hero p { font-size: 1.125rem; color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto; line-height: 1.65; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem; margin-bottom: 1.5rem; font-size: 0.875rem;
}
.breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.3); }
.breadcrumb strong { color: rgba(255,255,255,0.9); font-weight: 400; }

/* ===== CARDS ===== */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 1.5rem; }
.card {
  background: var(--white); border-radius: var(--radius); padding: 2rem;
  box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.card-icon { width: 56px; height: 56px; background: var(--sekundaer); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.card-icon svg { width: 28px; height: 28px; color: var(--primaer); }
.card p { color: var(--text-light); font-size: 0.9375rem; line-height: 1.7; }

/* ===== HOME – ÜBER UNS ===== */
.ueber-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.ueber-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.ueber-img img { width: 100%; height: 480px; object-fit: cover; }
.ueber-text .section-tag { display: block; text-align: left; }
.ueber-text h2 { text-align: left; margin-bottom: 1.25rem; }
.ueber-text p { color: var(--text-light); margin-bottom: 1rem; font-size: 1rem; line-height: 1.8; }
.ueber-badges { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--sekundaer); color: var(--akzent);
  padding: 0.4rem 0.875rem; border-radius: 50px;
  font-size: 0.875rem; font-weight: 600;
}

/* ===== HOME – VERTRAUEN ===== */
.vertrauen { background: var(--dark); color: var(--white); padding: 4rem 0; }
.vertrauen-inner { display: grid; grid-template-columns: repeat(auto-fit,minmax(180px,1fr)); gap: 2rem; text-align: center; }
.vertrauen-item .num { font-size: clamp(2.25rem,5vw,3rem); font-weight: 700; color: var(--white); display: block; margin-bottom: 0.25rem; }
.vertrauen-item p { color: rgba(255,255,255,0.6); font-size: 0.9375rem; }

/* ===== HOME – REGION ===== */
.region-block { background: var(--primaer); border-radius: var(--radius); padding: 3.5rem 3rem; text-align: center; color: var(--white); }
.region-block h2 { color: var(--white); margin-bottom: 1rem; }
.region-block p { color: rgba(255,255,255,0.85); font-size: 1.0625rem; max-width: 600px; margin: 0 auto 1.75rem; line-height: 1.7; }

/* ===== HOME – KONTAKTBEREICH ===== */
.kontakt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.kontakt-info h2 { text-align: left; margin-bottom: 2rem; }
.kontakt-items { display: flex; flex-direction: column; gap: 1.25rem; }
.kontakt-item { display: flex; align-items: center; gap: 1rem; }
.kontakt-item-icon { width: 48px; height: 48px; background: var(--white); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: var(--shadow); }
.kontakt-item-icon svg { width: 22px; height: 22px; color: var(--primaer); }
.kontakt-item-text strong { display: block; font-size: 0.75rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.2rem; }
.kontakt-item-text a, .kontakt-item-text span { font-size: 1rem; color: var(--text); font-weight: 500; }
.kontakt-item-text a:hover { color: var(--primaer); }
.kontakt-cta-box { background: var(--white); border-radius: var(--radius); padding: 2.5rem; box-shadow: var(--shadow); text-align: center; border: 1px solid var(--border); }
.kontakt-cta-box h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.kontakt-cta-box p { color: var(--text-light); margin-bottom: 1.75rem; font-size: 0.9375rem; line-height: 1.7; }
.btn-group { display: flex; flex-direction: column; gap: 0.75rem; }

/* ===== CTA SECTION ===== */
.cta-section { background: linear-gradient(135deg, var(--akzent) 0%, var(--primaer) 100%); padding: 5rem 0; text-align: center; color: var(--white); }
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 1.0625rem; max-width: 560px; margin: 0 auto 2rem; line-height: 1.7; }

/* ===== LEISTUNGEN PAGE ===== */
.leistungen-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(320px,1fr)); gap: 2rem; }
.leistung-card { background: var(--white); border-radius: var(--radius); padding: 2.5rem; box-shadow: var(--shadow); border: 1px solid var(--border); transition: transform var(--transition), box-shadow var(--transition); }
.leistung-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.leistung-card .card-icon { width: 64px; height: 64px; margin-bottom: 1.5rem; }
.leistung-card .card-icon svg { width: 32px; height: 32px; }
.leistung-card h3 { font-size: 1.375rem; margin-bottom: 0.875rem; }
.leistung-card p { color: var(--text-light); line-height: 1.8; font-size: 0.9375rem; }
.leistung-img { margin-top: 1.5rem; border-radius: 8px; overflow: hidden; }
.leistung-img img { width: 100%; height: 200px; object-fit: cover; }

/* ===== REFERENZEN PAGE ===== */
.referenzen-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 1.5rem; }
.referenz-item { border-radius: var(--radius); overflow: hidden; cursor: pointer; box-shadow: var(--shadow); position: relative; aspect-ratio: 3/2; }
.referenz-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.referenz-overlay { position: absolute; inset: 0; background: rgba(13,74,138,0); display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
.referenz-overlay svg { color: var(--white); width: 36px; height: 36px; opacity: 0; transition: opacity var(--transition); }
.referenz-item:hover img { transform: scale(1.05); }
.referenz-item:hover .referenz-overlay { background: rgba(13,74,138,0.5); }
.referenz-item:hover .referenz-overlay svg { opacity: 1; }
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 9999; align-items: center; justify-content: center; padding: 2rem; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 88vh; object-fit: contain; border-radius: var(--radius); }
.lightbox-close { position: absolute; top: 1.25rem; right: 1.25rem; background: rgba(255,255,255,0.1); border: none; color: var(--white); cursor: pointer; padding: 0; border-radius: 50%; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-close svg { width: 22px; height: 22px; }

/* ===== ÜBER MICH PAGE ===== */
.ueber-page-grid { display: grid; grid-template-columns: 380px 1fr; gap: 4.5rem; align-items: start; }
.ueber-page-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); position: sticky; top: 100px; }
.ueber-page-img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.ueber-page-text h1 { font-size: 2.25rem; font-weight: 700; color: var(--dark); margin-bottom: 0.25rem; letter-spacing: -0.02em; }
.ueber-page-text .role { color: var(--primaer); font-size: 1.125rem; font-weight: 600; margin-bottom: 2rem; display: block; }
.ueber-page-text p { color: var(--text-light); margin-bottom: 1.25rem; line-height: 1.85; font-size: 1rem; }
.ueber-werte { margin-top: 2.5rem; }
.ueber-werte h3 { margin-bottom: 1.25rem; font-size: 1.125rem; }
.werte-list { display: flex; flex-direction: column; gap: 0.75rem; }
.wert-item { display: flex; align-items: flex-start; gap: 0.875rem; padding: 1rem 1.25rem; background: var(--sekundaer); border-radius: 10px; border-left: 3px solid var(--primaer); }
.wert-item svg { width: 20px; height: 20px; color: var(--primaer); flex-shrink: 0; margin-top: 2px; }
.wert-item p { margin: 0; font-size: 0.9375rem; color: var(--text); line-height: 1.6; }

/* ===== ABLAUF PAGE ===== */
.timeline { max-width: 720px; margin: 0 auto; position: relative; }
.timeline::before { content: ''; position: absolute; left: 27px; top: 0; bottom: 0; width: 2px; background: var(--border); }
.timeline-item { display: flex; gap: 2rem; margin-bottom: 2.5rem; position: relative; }
.timeline-num { width: 56px; height: 56px; background: var(--primaer); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.125rem; font-weight: 700; flex-shrink: 0; position: relative; z-index: 1; box-shadow: 0 0 0 4px var(--white), 0 0 0 6px var(--sekundaer); }
.timeline-content { flex: 1; padding-top: 0.875rem; }
.timeline-content h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.timeline-content p { color: var(--text-light); font-size: 0.9375rem; line-height: 1.75; }

/* ===== KONTAKT PAGE ===== */
.kontakt-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.kontakt-page-info h2 { text-align: left; margin-bottom: 2rem; }
.kontakt-page-items { display: flex; flex-direction: column; gap: 1.5rem; }
.ot-block { background: var(--sekundaer); border-radius: var(--radius); padding: 1.5rem; margin-top: 2rem; }
.ot-block h3 { font-size: 0.8125rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; margin-bottom: 0.625rem; }
.ot-block p { color: var(--text); font-size: 0.9375rem; line-height: 1.7; }
.kontakt-action-box { background: var(--white); border-radius: var(--radius); padding: 2.5rem; box-shadow: var(--shadow); border: 1px solid var(--border); }
.kontakt-action-box h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.kontakt-action-box p { color: var(--text-light); margin-bottom: 1.75rem; font-size: 0.9375rem; line-height: 1.7; }
.kontakt-btns { display: flex; flex-direction: column; gap: 1rem; }

/* ===== IMPRESSUM / DATENSCHUTZ ===== */
.text-page { max-width: 800px; margin: 0 auto; padding: 7rem 1.5rem 5rem; }
.text-page h1 { font-size: 2.25rem; font-weight: 700; color: var(--dark); margin-bottom: 2.5rem; }
.text-page h2 { font-size: 1.125rem; margin-top: 2.5rem; margin-bottom: 0.625rem; color: var(--dark); }
.text-page p, .text-page address { color: var(--text-light); font-size: 0.9375rem; line-height: 1.8; margin-bottom: 0.75rem; font-style: normal; }
.text-page a { color: var(--primaer); }

/* ===== 404 PAGE ===== */
.page-404 { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 2rem; }
.page-404 .num { font-size: clamp(6rem,20vw,10rem); font-weight: 700; line-height: 1; color: var(--sekundaer); letter-spacing: -0.05em; -webkit-text-stroke: 2px var(--primaer); }
.page-404 h1 { font-size: 1.75rem; color: var(--dark); margin-bottom: 1rem; }
.page-404 p { color: var(--text-light); margin-bottom: 2rem; max-width: 400px; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: rgba(255,255,255,0.65); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .footer-logo { font-size: 1.375rem; font-weight: 700; color: var(--white); display: block; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.875rem; line-height: 1.75; max-width: 320px; }
.footer h4 { color: var(--white); font-size: 0.8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.9375rem; text-decoration: none; transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-contact-list { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-contact-list li { font-size: 0.875rem; }
.footer-contact-list a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color var(--transition); }
.footer-contact-list a:hover { color: var(--white); }
.footer-bottom { padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.8125rem; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(255,255,255,0.45); font-size: 0.8125rem; text-decoration: none; transition: color var(--transition); }
.footer-legal a:hover { color: var(--white); }

/* ===== FLOATING BUTTONS ===== */
.float-btns { position: fixed; bottom: 1.5rem; right: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; z-index: 900; }
.float-btn { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: 0 4px 20px rgba(0,0,0,0.2); transition: transform var(--transition), box-shadow var(--transition); }
.float-btn:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(0,0,0,0.3); }
.float-btn svg { width: 26px; height: 26px; }
.float-call { background: var(--primaer); color: var(--white); }
.float-wa { background: #25D366; color: var(--white); animation: pulse 2.5s infinite; }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed; bottom: 1.5rem; left: 1.5rem;
  width: 44px; height: 44px; background: var(--white);
  border: 2px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: var(--shadow);
  opacity: 0; pointer-events: none;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition), border-color var(--transition);
  z-index: 900;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--primaer); border-color: var(--primaer); }
.back-to-top svg { width: 18px; height: 18px; color: var(--text); transition: color var(--transition); }
.back-to-top:hover svg { color: var(--white); }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.from-left  { transform: translateX(-40px); }
.reveal.from-right { transform: translateX(40px); }
.reveal.visible { opacity: 1; transform: translate(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .ueber-grid      { grid-template-columns: 1fr; gap: 2.5rem; }
  .ueber-page-grid { grid-template-columns: 1fr; }
  .ueber-page-img  { position: static; max-width: 380px; }
  .footer-grid     { grid-template-columns: 1fr 1fr; }
  .footer-brand    { grid-column: 1 / -1; }
}
@media (max-width: 767px) {
  section { padding: 3.5rem 0; }
  .cards-grid        { grid-template-columns: 1fr; }
  .kontakt-grid      { grid-template-columns: 1fr; gap: 2rem; }
  .kontakt-page-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid       { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom     { flex-direction: column; text-align: center; }
  .region-block      { padding: 2rem 1.5rem; }
  .ueber-img img     { height: 320px; }
  .timeline::before  { display: none; }
  .timeline-item     { flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
  .leistungen-grid   { grid-template-columns: 1fr; }
  .hero-actions      { flex-direction: column; align-items: center; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .float-wa { animation: none; }
}
