/* ============================================================
 * BOOS Steuerberatungsgesellschaft mbH
 * Hauptstylesheet
 * ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --color-primary: #333333;
  --color-accent: #5BA4C9;
  --color-accent-light: rgba(91, 164, 201, 0.15);
  --color-bg: #ffffff;
  --color-bg-alt: #f5f5f5;
  --color-bg-dark: #f0f0f0;
  --color-text: #333333;
  --color-text-medium: #555555;
  --color-text-light: #888888;
  --color-border: #dddddd;
  --color-stars: #F5A623;
  --color-white: #ffffff;

  --font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 2rem;
  --font-size-3xl: 2.5rem;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  --max-width: 1440px;
  --header-height: 70px;
  --radius: 4px;
  --transition: 0.3s ease;
}

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

html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-text);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--color-accent); }

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

ul, ol { list-style: none; }

button {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ============================================================
 * HEADER
 * ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-bg);
  height: var(--header-height);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 54px;
  width: auto;
  display: block;
}

/* Desktop Navigation */
.main-nav {
  display: none;
}

.nav-list {
  display: flex;
  gap: var(--space-lg);
}

.nav-link {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  padding: var(--space-xs) 0;
  position: relative;
  letter-spacing: 0.5px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.nav-link.is-active {
  color: var(--color-primary);
  font-weight: var(--font-weight-bold);
  position: relative;
  padding: 6px 12px;
  border: 1px solid var(--color-primary);
  border-top: none;
}

.nav-link.is-active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 12px; /* Gap */
  right: 0;
  height: 1px;
  background: var(--color-primary);
}

.nav-link.is-active::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 1px;
  background: var(--color-primary);
}

/* Mobile Menu Button */
.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 6px;
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
}

/* Mobile Navigation Overlay */
.mobile-nav {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: var(--space-xl);
  transform: translateX(100%);
  transition: transform var(--transition);
}

.mobile-nav.is-open {
  transform: translateX(0);
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.mobile-nav-link {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-medium);
  padding: var(--space-xs) var(--space-md);
}

.mobile-nav-link.is-active {
  color: var(--color-accent);
}

/* ============================================================
 * HERO
 * ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 50vh;
  min-height: 280px;
  max-height: 500px;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ============================================================
 * SECTIONS
 * ============================================================ */
.section {
  padding: var(--space-xl) 0;
}

.section--alt {
  background: var(--color-bg-alt);
}

.section--alt {
  background-color: var(--color-bg-alt);
}

/* Spezial-Stil für Boxed Subtitles (Stärken-Sektion) */
.section-title--boxed {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  border-left: 1px solid var(--color-border);
  border-top: 1px solid var(--color-border);
  margin-top: 5px;
}

.section-title-line-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1440px; /* Extends to container edge roughly */
  height: 1px;
  background: var(--color-border);
  z-index: -1;
}
.bg-deco-l--right { right: 0; bottom: 0; transform: scaleX(-1); }

/* Section with blue corner decoration */
.decorated-title {
  position: relative;
  display: inline-block;
  padding-left: 12px;
}

.decorated-title::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 8px;
  height: calc(100% + 4px);
  border-left: 2px solid var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
}

.section-subtitle {
  font-size: var(--font-size-xl);
  color: var(--color-text-medium);
  margin-bottom: var(--space-lg);
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.section-text {
  color: var(--color-text-medium);
  margin-bottom: var(--space-sm);
  line-height: 1.8;
  max-width: 100%; /* Den gesamten Container ausnutzen */
}

.section-text:last-of-type {
  margin-bottom: var(--space-lg);
}

/* ============================================================
 * BUTTONS
 * ============================================================ */
.btn {
  display: inline-block;
  padding: 10px 28px;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all var(--transition);
  background: transparent;
  text-align: center;
}

.btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* ============================================================
 * WELCOME SECTION (Startseite)
 * ============================================================ */
.welcome {
  padding: var(--space-2xl) 0;
  background-image: url('../assets/images/abschnitts-bg-hero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* Die spezielle Stufen-Linie für "Herzlich [ Willkommen ]" */
.welcome-title-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: var(--space-xl);
  font-size: 42px;
  font-weight: var(--font-weight-bold);
  color: var(--color-text);
  position: relative;
  padding-top: 30px;
  margin-left: -10px;
  width: 100%; /* Gesamte Breite einnehmen */
}

.title-part-herzlich {
  position: relative;
  padding-bottom: 8px;
  line-height: 1;
}

/* Strich unter Herzlich */
.title-part-herzlich::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #B0B0B0;
}

.title-part-willkommen {
  position: relative;
  padding: 10px 20px;
  line-height: 1;
}

/* Die Treppe: Vertikaler Strich links + Horizontaler Strich oben */
.title-part-willkommen::before {
  content: '';
  position: absolute;
  left: 0;
  top: -15px; /* Höhe über dem Text */
  width: 100%;
  height: calc(100% + 15px); /* Deckt die Texthöhe bis zur Basis ab */
  border-left: 1px solid #B0B0B0;
  border-top: 1px solid #B0B0B0;
}

/* Die Treppe: Vertikaler Strich rechts */
.title-step-down {
  position: absolute;
  right: 0;
  top: -15px;
  height: calc(100% + 15px);
  width: 1px;
  background: #B0B0B0;
}

/* Die Treppe: Strich nach rechts am Ende - jetzt dynamisch füllend */
.title-step-continue {
  flex-grow: 1;
  height: 1px;
  background: #B0B0B0;
  align-self: flex-end;
  margin-bottom: 8px; /* Ausrichtung am Herzlich-Strich und Box-Ende */
}

/* Blaues L-Dekor unten links */
.welcome-deco-l {
  width: 25px;
  height: 40px;
  border-left: 3px solid var(--color-accent);
  border-bottom: 3px solid var(--color-accent);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-md);
}

/* CI-Button mit Lücke im Rand */
.btn--gap {
  position: relative;
  display: inline-block;
  padding: 12px 40px;
  border: 1px solid var(--color-primary);
  border-top: none;
  background: transparent;
  color: var(--color-primary);
  font-weight: var(--font-weight-medium);
  text-align: center;
  margin: 0 auto;
}

.btn-wrapper-center {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: var(--space-lg);
}

/* Dekorative L-Winkel (CI-Elemente) */
.welcome-text-wrapper {
  position: relative;
  padding-left: 0;
  padding-bottom: 20px;
}

.welcome-deco-l {
  position: absolute;
  left: -45px;
  bottom: 0;
  width: 30px;
  height: 65px;
  border-left: 6px solid #55C3FF;
  border-bottom: 6px solid #55C3FF;
  z-index: 1;
  pointer-events: none;
}

/* Spiegelverkehrte Ecke für unten rechts */
.deco-corner-br {
  position: absolute;
  right: -20px;
  bottom: 0;
  width: 30px;
  height: 65px;
  border-right: 6px solid #55C3FF;
  border-bottom: 6px solid #55C3FF;
  z-index: 1;
  pointer-events: none;
}

/* Kontakt Icons */
.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-right: 12px;
  color: var(--color-accent);
  vertical-align: middle;
}

.contact-icon svg {
  width: 100%;
  height: 100%;
}

/* Hintergrund-Dekore (Große graue L-Winkel) - Nutzt nun das offizielle Asset */
.bg-deco-l {
  position: absolute;
  width: 400px;
  height: 400px;
  background-image: url('../assets/images/Element_Ecke.png');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.8; /* Deutlich sichtbarer laut Feedback */
  z-index: 0; /* Vor dem Hintergrund, hinter dem Text */
  pointer-events: none;
}

.bg-deco-l--left {
  left: 0;
  bottom: 0;
}

.bg-deco-tr {
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background-image: url('../assets/images/Element_Ecke.png');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.15;
  transform: rotate(180deg);
  z-index: 0;
  pointer-events: none;
}

.btn--gap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 35px; /* Die Lücke */
  right: 0;
  height: 1px;
  background: var(--color-primary);
}

.btn--gap::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 1px;
  background: var(--color-primary);
}

.btn--gap:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* ============================================================
 * LEISTUNGEN PREVIEW (Startseite)
 * ============================================================ */
.leistungen-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 Spalten auf Desktop */
  gap: var(--space-md) var(--space-xl);
  margin-bottom: var(--space-xl);
  margin-top: var(--space-lg);
}

.leistungen-list-item {
  position: relative;
  padding-left: 1.5rem;
  color: var(--color-text-medium);
  line-height: 1.6;
  font-size: var(--font-size-sm);
}

.leistungen-list-item::before {
  content: '■'; /* Kleines Quadrat als Bullet */
  position: absolute;
  left: 0;
  top: 0.2rem;
  font-size: 8px;
  color: var(--color-accent);
}

@media (max-width: 992px) {
  .leistungen-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .leistungen-list {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
 * FULL-WIDTH IMAGE DIVIDER
 * ============================================================ */
.image-divider {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.image-divider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
 * STÄRKEN SECTION
 * ============================================================ */
.staerken-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md) var(--space-xl);
  margin-top: var(--space-xl);
}

@media (min-width: 768px) {
  .staerken-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .staerken-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.staerken-item {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: var(--space-sm);
  color: var(--color-text-medium);
  font-size: 0.95rem;
  line-height: 1.4;
}

.staerken-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 5px;
  height: 5px;
  background: var(--color-text);
  border-radius: 50%;
}

/* ============================================================
 * TEAM SECTION (Über uns)
 * ============================================================ */
.team-layout {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  align-items: center;
}

.team-illustration {
  width: 100%;
  max-width: 280px;
}

.team-illustration svg {
  width: 100%;
  height: auto;
  stroke: var(--color-text);
}

.team-content {
  flex: 1;
}

/* ============================================================
 * TESTIMONIALS (Über uns)
 * ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-card {
  text-align: center;
  padding: var(--space-md);
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--color-bg-dark);
  margin: 0 auto var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-light);
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 2px;
  margin-bottom: var(--space-xs);
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
}

.testimonial-name {
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-xs);
  font-size: var(--font-size-sm);
}

.testimonial-quote {
  font-style: italic;
  color: var(--color-text-medium);
  font-size: var(--font-size-sm);
  line-height: 1.6;
}

/* ============================================================
 * SERVICES GRID (Leistungen)
 * ============================================================ */
.services-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-xl);
  color: var(--color-text-medium);
  line-height: 1.8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  max-width: 900px;
  margin: 0 auto;
}

.service-card {
  text-align: center;
  padding: var(--space-md);
}

.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-sm);
}

.service-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--color-text);
}

.service-title {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  line-height: 1.5;
  color: var(--color-text);
}

/* ============================================================
 * CONTACT SECTION (shared)
 * ============================================================ */
.contact-cta {
  padding: var(--space-xl) 0;
  text-align: center;
}

.contact-cta-title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-xl);
  display: inline-block;
  position: relative;
}

.contact-cta-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
  background: var(--color-bg-alt);
  padding: var(--space-xl) var(--space-md);
}

.contact-cta-item {
  text-align: center;
}

.contact-cta-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-sm);
}

.contact-cta-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--color-text);
}

.contact-cta-label {
  font-size: var(--font-size-lg);
  color: var(--color-text);
}

.contact-cta-label a {
  color: var(--color-text);
}

.contact-cta-label a:hover {
  color: var(--color-accent);
}

/* ============================================================
 * KONTAKT PAGE
 * ============================================================ */
.kontakt-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.kontakt-illustration {
  width: 100%;
  max-width: 260px;
  position: relative;
}

.kontakt-illustration svg {
  width: 100%;
  height: auto;
  stroke: var(--color-text);
}

.kontakt-illustration::after {
  content: '';
  position: absolute;
  left: -8px;
  bottom: -8px;
  width: 20px;
  height: 30px;
  border-left: 2px solid var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
}

.kontakt-details {
  flex: 1;
}

.kontakt-heading {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-md);
}

.kontakt-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.kontakt-info-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.kontakt-info-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--color-text);
}

.kontakt-info-text {
  font-size: var(--font-size-base);
  line-height: 1.5;
}

.kontakt-info-text a {
  color: var(--color-text);
}

.kontakt-info-text a:hover {
  color: var(--color-accent);
}

/* ============================================================
 * FOOTER
 * ============================================================ */
.site-footer {
  margin-top: auto;
  border-top: 1px solid var(--color-border);
  padding: var(--space-lg) 0;
  font-size: var(--font-size-sm);
  color: var(--color-text-medium);
}

.site-footer {
  margin-top: auto;
  border-top: 1px solid var(--color-border);
  padding: 60px 0;
  font-size: 0.9rem;
  color: #666;
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  align-items: flex-end;
  position: relative;
}

/* Die durchgehende Linie im Hintergrund */
.footer-grid::before {
  content: '';
  position: absolute;
  top: 32px; /* Ausrichtung unter den Titeln */
  left: 0;
  right: 0;
  height: 1px;
  background: #ccc;
  z-index: 1;
}

.footer-col {
  position: relative;
  z-index: 2;
}

.footer-col-title {
  font-weight: 700;
  color: #555;
  margin-bottom: 25px;
  font-size: 0.95rem;
  background: #fff; /* Damit die Linie dahinter verschwindet */
  padding-right: 10px;
  display: inline-block;
}

.footer-col-line {
  margin-bottom: 4px;
  line-height: 1.5;
  color: #777;
}

.footer-col a {
  color: inherit;
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--color-accent);
}

/* Das Boxed-Element in der Mitte */
.footer-col--boxed {
  text-align: center;
  z-index: 3;
}

.footer-boxed-inner {
  border: 1px solid #ccc;
  border-bottom: none;
  padding: 20px 10px;
  background: #fff;
  display: inline-block;
  min-width: 180px;
  margin-bottom: -1px; /* Sitzt auf der Linie */
  font-weight: 700;
  color: #555;
}

.footer-col--boxed .footer-col-line {
  color: #555;
  font-weight: 700;
}

.footer-address {
  position: relative;
  padding-left: 12px;
}

.footer-address::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  border-left: 1px solid var(--color-border);
  border-top: 1px solid var(--color-border);
}

/* ============================================================
 * MAIN CONTENT AREA
 * ============================================================ */
.main-content {
  flex: 1;
}

/* ============================================================
 * RESPONSIVE: Tablet (768px+)
 * ============================================================ */
@media (min-width: 768px) {
  .main-nav {
    display: block;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-nav {
    display: none;
  }

  .hero {
    height: 55vh;
    max-height: 550px;
  }

  .section {
    padding: var(--space-2xl) 0;
  }

  .section-title {
    font-size: var(--font-size-3xl);
  }

  .welcome-title {
    font-size: var(--font-size-3xl);
  }

  .leistungen-list {
    grid-template-columns: 1fr 1fr;
  }

  .image-divider {
    height: 380px;
  }

  .team-layout {
    flex-direction: row;
    gap: var(--space-2xl);
  }

  .team-illustration {
    max-width: 320px;
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-cta-items {
    flex-direction: row;
    justify-content: center;
    gap: var(--space-2xl);
  }

  .kontakt-content {
    flex-direction: row;
    gap: var(--space-2xl);
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr) repeat(2, auto);
    gap: var(--space-xl);
  }
}

/* ============================================================
 * RESPONSIVE: Desktop (1024px+)
 * ============================================================ */
@media (min-width: 1024px) {
  .hero {
    height: 60vh;
    max-height: 600px;
  }

  .image-divider {
    height: 420px;
  }

  .nav-list {
    gap: var(--space-xl);
  }

  .section {
    padding: var(--space-2xl) 0;
  }

  .welcome {
    padding: var(--space-2xl) 0;
  }

  .contact-cta {
  padding: var(--space-2xl) 0;
  text-align: center;
}

.contact-cta-title-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: var(--space-2xl);
}

.contact-cta-title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-text);
  margin: 0;
}

.contact-cta-corner-tr {
  position: absolute;
  top: 0;
  right: -25px;
  width: 15px;
  height: 30px;
  border-top: 4px solid #55C3FF;
  border-right: 4px solid #55C3FF;
  pointer-events: none;
}

.contact-cta-items {
  display: flex;
  justify-content: center;
  gap: var(--space-2xl);
  flex-wrap: wrap;
}

.contact-cta-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.contact-cta-icon {
  width: 24px;
  height: 24px;
  color: var(--color-accent);
}

.contact-cta-icon svg {
  width: 100%;
  height: 100%;
}

.contact-cta-label a {
  text-decoration: none;
  color: var(--color-text-medium);
  font-weight: var(--font-weight-medium);
  transition: var(--transition);
}

.contact-cta-label a:hover {
  color: var(--color-accent);
}

/* ============================================================
 * PAGE TRANSITION (subtle)
 * ============================================================ */
/* ============================================================
 * FOOTER STYLES
 * ============================================================ */
.site-footer {
  position: relative;
  padding: var(--space-2xl) 0;
  color: var(--color-text);
  overflow: hidden;
}

.footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
  opacity: 0.1; /* Dezent laut Vorlage */
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-col-title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-md);
  color: var(--color-primary);
}

.footer-col-line {
  margin-bottom: 0.5rem;
  color: var(--color-text-medium);
  display: flex;
  align-items: center;
}

.footer-col-line a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.footer-col-line a:hover {
  color: var(--color-accent);
}

.page-enter {
  animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
