/* ================================================================
   Alltagsgefährten GmbH – Stylesheet
   DSGVO-konform: Keine externen Ressourcen, keine Tracking-Klassen
   Systemschriften – kein Google Fonts nötig
   ================================================================ */

/* -- DESIGN TOKENS -- */
:root {
  --font-head:    -apple-system, "Segoe UI", system-ui, sans-serif;
  --font-body:    -apple-system, "Segoe UI", system-ui, sans-serif;
  --red:          #AA2034;
  --red-dark:     #8B1929;
  --charcoal:     #2E2E2E;
  --grey-dark:    #444444;
  --grey-mid:     #888888;
  --grey-light:   #F4F4F4;
  --white:        #FFFFFF;
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    32px;
  --shadow-sm:    0 2px 12px rgba(0, 0, 0, 0.07);
  --shadow-md:    0 8px 32px rgba(0, 0, 0, 0.10);
  --shadow-lg:    0 24px 64px rgba(0, 0, 0, 0.13);
  --trans:        0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* -- TYPOGRAPHY -- */
.display {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.h2 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
}

.h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
}

.lead {
  font-size: 1.125rem;
  color: var(--grey-dark);
  line-height: 1.7;
}

.label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
}

/* -- BUTTONS -- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--trans);
  cursor: pointer;
  border: none;
  text-decoration: none;
}

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

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(170, 32, 52, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}

.btn-outline:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

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

.btn-white:hover {
  background: var(--grey-light);
  transform: translateY(-2px);
}

/* -- LAYOUT -- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

/* -- SECTION HEADER -- */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-header .label {
  margin-bottom: 0.75rem;
}

.section-header .h2 {
  margin-bottom: 1rem;
}

/* -- FADE-UP ANIMATION -- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================================
   NAV
   ================================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow var(--trans);
}

.nav.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: 1180px;
  margin: 0 auto;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--charcoal);
  transition: color var(--trans);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--red);
}

/* -- HAMBURGER -- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--trans);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* -- MOBILE MENU -- */
.mobile-menu {
  display: none;
  position: fixed;
  top: 73px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 99;
  flex-direction: column;
  padding: 2rem 1.5rem;
  gap: 1.5rem;
  overflow-y: auto;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--charcoal);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--grey-light);
  transition: color var(--trans);
}

.mobile-menu a:hover {
  color: var(--red);
}

.mobile-menu .btn {
  align-self: flex-start;
  margin-top: 1rem;
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  padding-top: 73px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2E2E2E 50%, #1a1a1a 100%);
}

.hero-arc {
  position: absolute;
  right: -5%;
  top: -10%;
  width: 65%;
  height: 120%;
  background: var(--red);
  border-radius: 50% 0 0 50%;
  opacity: 0.07;
  z-index: 1;
}

.hero-arc-2 {
  position: absolute;
  right: 5%;
  top: 0;
  width: 55%;
  height: 110%;
  border: 2px solid var(--red);
  border-radius: 50% 0 0 50%;
  opacity: 0.12;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-eyebrow .dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-eyebrow span {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero h1 em {
  color: var(--red);
  font-style: normal;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
}

.stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.25rem;
  letter-spacing: 0.05em;
}

/* Hero card stack */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  position: relative;
}

.hero-card-2 {
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 85%;
  background: var(--red);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  z-index: -1;
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.card-title {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.card-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.6;
}

.hero-card-2 .card-text {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
}

/* ================================================================
   TRUST BAR
   ================================================================ */
.trust-bar {
  background: var(--grey-light);
  padding: 2rem 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.trust-item svg {
  color: var(--red);
  flex-shrink: 0;
}

.trust-item span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--grey-dark);
}

/* ================================================================
   LEISTUNGEN
   ================================================================ */
#leistungen {
  background: var(--white);
}

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

.service-card {
  background: var(--white);
  border: 1.5px solid #EBEBEB;
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
  transform: translateY(-4px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(170, 32, 52, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.service-card .h3 {
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--grey-dark);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ================================================================
   ÜBER UNS
   ================================================================ */
#ueberuns {
  background: var(--grey-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-block {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 3rem;
  color: var(--white);
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.big-quote {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  line-height: 1.4;
  flex: 1;
  display: flex;
  align-items: center;
}

.quote-author {
  font-size: 0.9rem;
  opacity: 0.75;
  margin-top: 1.5rem;
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.badge-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--red);
}

.badge-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--grey-dark);
  line-height: 1.3;
}

.about-content .label {
  margin-bottom: 0.75rem;
}

.about-content .h2 {
  margin-bottom: 1.25rem;
}

.about-content .lead {
  margin-bottom: 2rem;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.value-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.value-icon {
  width: 36px;
  height: 36px;
  background: rgba(170, 32, 52, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.value-text .h3 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.value-text p {
  font-size: 0.9rem;
  color: var(--grey-dark);
}

/* ================================================================
   PROZESS
   ================================================================ */
#prozess {
  background: var(--white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 2px;
  color:#000000;
  background: linear-gradient(90deg, var(--red), rgba(170, 32, 52, 0.2));
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 0 0 6px rgba(170, 32, 52, 0.12);
}

.process-step .h3 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.process-step p {
  color: var(--grey-dark);
  font-size: 0.88rem;
  line-height: 1.6;
}
/* Ausblenden der Standard-Listennummerierung */
ol, li {
  list-style: none;
  /* Alternativ: list-style-type: none; */
}
/* ================================================================
   REGIONEN
   ================================================================ */
.regions {
  background: var(--charcoal);
  color: var(--white);
  padding: 4rem 0;
}

.regions-inner {
  display: flex;
  gap: 4rem;
  align-items: center;
  flex-wrap: wrap;
}

.regions-text {
  flex: 1;
  min-width: 280px;
}

.regions-text .label {
  color: rgba(255, 255, 255, 0.45);
}

.regions-text .h2 {
  color: var(--white);
  margin: 0.75rem 0 1rem;
}

.regions-text p {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

.regions-cities {
  flex: 1;
  min-width: 280px;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.city-pill {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--trans);
}

.city-pill:hover {
  background: var(--red);
  border-color: var(--red);
}

.city-pill svg {
  color: var(--red);
  transition: color var(--trans);
  flex-shrink: 0;
}

.city-pill:hover svg {
  color: var(--white);
}

/* ================================================================
   TESTIMONIALS
   ================================================================ */
#referenzen {
  background: var(--grey-light);
}

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

.testi-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--trans);
}

.testi-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.testi-stars {
  color: var(--red);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.testi-text {
  color: var(--grey-dark);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testi-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.testi-role {
  font-size: 0.8rem;
  color: var(--grey-mid);
}

/* ================================================================
   BEWERBUNG
   ================================================================ */
#bewerbung {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
}

.bewerbung-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.bewerbung-text .label {
  color: rgba(255, 255, 255, 0.55);
}

.bewerbung-text .h2 {
  color: var(--white);
  margin: 0.75rem 0 1.25rem;
}

.bewerbung-text .lead {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

.bew-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.bew-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

/* -- FORMS -- */
.bew-form {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 2rem;
}

.form-title {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.form-group--light label {
  color: rgba(255, 255, 255, 0.75);
}

.form-group--dark label {
  color: var(--charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--trans);
}

/* Light form variant (on dark/red background) */
.form-light input,
.form-light select,
.form-light textarea {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.form-light input::placeholder,
.form-light textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-light input:focus,
.form-light select:focus,
.form-light textarea:focus {
  border-color: rgba(255, 255, 255, 0.5);
}

.form-light select option {
  background: var(--red-dark);
  color: var(--white);
}

/* Dark form variant (on white/light background) */
.form-dark input,
.form-dark select,
.form-dark textarea {
  background: var(--white);
  border: 1.5px solid #E5E5E5;
  color: var(--charcoal);
}

.form-dark input:focus,
.form-dark select:focus,
.form-dark textarea:focus {
  border-color: var(--red);
}

.form-dark textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.privacy-note {
  background: rgba(170, 32, 52, 0.06);
  border-left: 3px solid var(--red);
  padding: 0.75rem 1rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.85rem;
  color: var(--grey-dark);
  margin-top: 1rem;
  line-height: 1.5;
}

.privacy-note--light {
  background: rgba(255, 255, 255, 0.1);
  border-left-color: rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 0.75);
}

/* ================================================================
   KONTAKT
   ================================================================ */
#kontakt {
  background: var(--white);
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.kontakt-info .h2 {
  margin-bottom: 1.25rem;
}

.kontakt-info .lead {
  margin-bottom: 2rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(170, 32, 52, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  color: var(--red);
}

.contact-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--grey-mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
}

.contact-value {
  font-weight: 600;
  color: var(--charcoal);
}

.contact-value a {
  color: var(--red);
}

.kontakt-form {
  background: var(--grey-light);
  border-radius: var(--radius-md);
  padding: 2.5rem;
}

.kontakt-form .h3 {
  margin-bottom: 1.5rem;
}

/* ================================================================
   FOOTER
   ================================================================ */
footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.6);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 260px;
}

.footer-col h4 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul li a,
.footer-col ul li button {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--trans);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  text-align: left;
}

.footer-col ul li a:hover,
.footer-col ul li button:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links button {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--trans);
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

.footer-bottom-links button:hover {
  color: var(--white);
}

/* ================================================================
   SCROLL-TO-TOP BUTTON
   ================================================================ */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 50;
  width: 48px;
  height: 48px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: var(--trans);
  opacity: 0;
  pointer-events: none;
  border: none;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
}

.scroll-top:hover {
  background: var(--red-dark);
  transform: translateY(-3px);
}

/* ================================================================
   MODALS (Impressum / Datenschutz)
   ================================================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 200;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: 2rem 1rem;
}

.modal-overlay.open {
  display: flex;
}

.modal-box {
  background: var(--white);
  border-radius: var(--radius-md);
  max-width: 780px;
  width: 100%;
  padding: 2.5rem;
  position: relative;
  margin: auto;
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--grey-light);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--trans);
  line-height: 1;
}

.modal-close:hover {
  background: #ddd;
}

.modal-box h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--charcoal);
  padding-right: 2.5rem;
}

.modal-box h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 1.75rem 0 0.5rem;
  color: var(--charcoal);
}

.modal-box p {
  font-size: 0.95rem;
  color: var(--grey-dark);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.modal-box a {
  color: var(--red);
  text-decoration: underline;
}

.modal-box ul {
  margin-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.modal-box ul li {
  font-size: 0.95rem;
  color: var(--grey-dark);
  line-height: 1.7;
  list-style: disc;
}

.modal-meta {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--grey-light);
  font-size: 0.82rem;
  color: var(--grey-mid);
  line-height: 1.5;
}

/* ================================================================
   RESPONSIVE BREAKPOINTS
   ================================================================ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps::before {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
    padding: 3rem 1.5rem 4rem;
  }

  .hero-sub {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
    gap: 2rem;
  }

  .hero-visual {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-badge {
    right: 0;
    bottom: -1rem;
  }

  .bewerbung-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .kontakt-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .trust-bar-inner {
    gap: 1.5rem;
    justify-content: flex-start;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.5rem 0;
  }

  .regions-inner {
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .modal-box {
    padding: 1.5rem;
  }













/* ================================================================
   ANSPRECHPARTNER
   ================================================================ */

.team-contact{
  display:flex;
  flex-direction:column;
  gap:1.25rem;
  margin-top:2rem;
}

.team-person{
  display:flex;
  align-items:center;
  gap:1rem;
  padding-bottom:1rem;
  border-bottom:1px solid #ECECEC;
}

.team-person:last-child{
  border-bottom:none;
  padding-bottom:0;
}

.team-person img{
  width:64px;
  height:64px;
  border-radius:50%;
  object-fit:cover;
  flex-shrink:0;
  border:3px solid rgba(170,32,52,.08);
}

.team-person-info{
  line-height:1.45;
}

.team-person-info strong{
  display:block;
  font-size:1rem;
  color:var(--charcoal);
  margin-bottom:.15rem;
}

.team-person-info span{
  display:block;
  font-size:.9rem;
  color:var(--grey-mid);
  margin-bottom:.35rem;
}

.team-person-info a{
  display:block;
  font-size:.9rem;
  color:var(--red);
  transition:var(--trans);
}

.team-person-info a:hover{
  color:var(--red-dark);
}
}


/* ================================================================
   REPARATUR: NEUES LAYOUT TEAM 2 LINKS / 2 RECHTS
   ================================================================ */
/* ================================================================
   ANSPRECHPARTNER (GLOBAL AKTIVIERT & REPARIERT)
   ================================================================ */
/* ================================================================
   ANSPRECHPARTNER (GLOBAL AKTIVIERT & IM PASSBILD-FORMAT)
   ================================================================ */

/* Setzt das Layout im Kontaktbereich auf 2 Spalten nebeneinander */
#kontakt .kontakt-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  align-items: start;
}

/* Richtet die 2 Karten innerhalb einer Spalte untereinander aus */
.team-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Modifiziert die .service-card, damit Inhalt horizontal fließt */
.service-card.team-card-fix {
  display: flex;
  flex-direction: row; 
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  overflow: visible;
  height: auto;
}

/* Proportionale Passbildgröße (3:4 Format) – Verhindert jede Stauchung */
.team-avatar-img {
  width: 63px;                 /* Feste Breite */
  height: 84px;                /* Proportionale Höhe im Passbild-Verhältnis 3:4 */
  min-width: 63px;  
  max-width: 63px;
  min-height: 84px; 
  max-height: 84px;
  border-radius: var(--radius-sm); /* Dezente, moderne Ecken statt Kreis */
  object-fit: cover;           /* Schneidet das Bild proportional ohne Verzerrung zu */
  border: 2px solid rgba(170, 32, 52, 0.08);
  display: block;
  flex-shrink: 0;              /* Verhindert das Zusammendrücken im Flex-Layout */
}

/* Textbereich innerhalb der Karten */
.team-info-box {
  font-size: 0.9rem;
  line-height: 1.5;
  flex-grow: 1;
}

.team-info-box strong {
  display: block;
  font-size: 1.05rem;
  color: var(--charcoal);
  margin-bottom: 0.15rem;
}

.team-role-label {
  display: block;
  font-size: 0.85rem;
  color: var(--grey-mid);
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.team-info-box a {
  display: block;
  color: var(--red);
  text-decoration: none;
  transition: color var(--trans);
}

.team-info-box a:hover {
  color: var(--red-dark);
  text-decoration: underline;
}

/* Responsive: Auf Smartphones alles untereinander brechen */
@media (max-width: 768px) {
  #kontakt .kontakt-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .service-card.team-card-fix {
    flex-direction: column; 
    align-items: flex-start;
    gap: 1rem;
  }
}