:root {
  
  --asphalt-900: #14181f;   
  --asphalt-800: #1e242e;
  --asphalt-700: #2b323e;
  --brand: #008244;          
  --brand-dark: #00693a;     
  --brand-light: #3ed488;    
  --marking-white: #f2f2ee;  
  --surface: #f6f8f6;        
  --surface-card: #ffffff;
  --ink: #1c2129;            
  --ink-soft: #5a6270;
  --line: #e0e5e0;

  
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Barlow", "Helvetica Neue", Arial, sans-serif;

  
  --container: 1140px;
  --radius: 10px;
  --shadow: 0 8px 30px rgba(20, 24, 31, 0.08);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

ul {
  list-style: none;
}

:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
}

.section-dark :focus-visible,
.site-header :focus-visible,
.site-footer :focus-visible {
  outline-color: var(--brand-light);
}

.container {
  width: min(var(--container), 92%);
  margin-inline: auto;
}

.container-narrow {
  width: min(760px, 92%);
  margin-inline: auto;
}

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  margin-bottom: 0.75em;
}

h3 {
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 0.4em;
}

h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.05rem;
  letter-spacing: 1.5px;
  margin-bottom: 0.9em;
  color: var(--brand-light);
}

.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--brand);
  margin-bottom: 0.6em;
}

.section-intro {
  max-width: 620px;
  color: var(--ink-soft);
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 1.05rem;
  padding: 0.85em 2em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 130, 68, 0.35);
}

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.btn-ghost:hover {
  border-color: var(--brand-light);
  color: var(--brand-light);
}

.btn-dark {
  background: var(--asphalt-900);
  color: #fff;
}

.btn-small {
  padding: 0.55em 1.3em;
  font-size: 0.95rem;
}

.btn-full {
  width: 100%;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--asphalt-900);
  color: #fff;
  border-bottom: 3px solid var(--brand);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.8rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.15rem;
  letter-spacing: 1px;
  white-space: nowrap;
}

.logo-badge {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  font-size: 1.5rem;
  border-radius: 8px;
  flex-shrink: 0;
}

.logo-text strong {
  color: var(--brand-light);
  font-weight: 800;
}

.main-nav ul {
  display: flex;
  gap: 1.6rem;
}

.main-nav a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.85);
  padding-block: 0.3em;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--brand-light);
  border-color: var(--brand-light);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
}

.header-phone:hover {
  color: var(--brand-light);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(0, 130, 68, 0.18), transparent 55%),
    var(--asphalt-900);
  color: #fff;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 3rem;
  padding-block: 5.5rem 4.5rem;
}

.hero .highlight {
  color: var(--brand-light);
}

.hero-sub {
  margin-top: 1.2rem;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 1.8rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.25);
}

.hero-facts li {
  display: flex;
  flex-direction: column;
}

.hero-facts strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--brand-light);
  letter-spacing: 1px;
}

.hero-facts span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.road-sign {
  background: #005ba4; 
  color: #fff;
  border: 4px solid #fff;
  border-radius: 14px;
  padding: 1.4rem 2rem;
  text-align: left;
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
  min-width: 260px;
}

.road-sign-top {
  display: block;
  font-size: 0.95rem;
  opacity: 0.85;
}

.road-sign-main {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 2.2rem;
  letter-spacing: 1px;
  line-height: 1.05;
}

.road-sign-arrow {
  display: block;
  font-size: 2rem;
  margin-top: 0.2rem;
}

.hero-road {
  width: 100%;
  height: 70px;
  background: var(--asphalt-700);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.road-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 6px;
  transform: translateY(-50%);
  background-image: linear-gradient(90deg, var(--marking-white) 0 40px, transparent 40px 70px);
  background-size: 70px 6px;
  animation: roadmove 1.4s linear infinite;
}

@keyframes roadmove {
  to { background-position-x: -70px; }
}

.page-hero {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(0, 130, 68, 0.18), transparent 55%),
    var(--asphalt-900);
  color: #fff;
  padding-block: 4.2rem 3.6rem;
}

.page-hero .eyebrow {
  color: var(--brand-light);
}

.page-hero .hero-sub {
  margin-top: 1rem;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.12rem;
}

.roadline {
  height: 6px;
  background-image: linear-gradient(90deg, var(--brand) 0 36px, transparent 36px 64px);
  background-size: 64px 6px;
  opacity: 0.9;
}

.section {
  padding-block: 5rem;
}

.section-dark {
  background: var(--asphalt-900);
  color: #fff;
}

.section-dark .eyebrow {
  color: var(--brand-light);
}

.section-accent {
  background: var(--brand);
  color: #fff;
}

.section-accent .eyebrow,
.section-accent .eyebrow-dark {
  color: rgba(255, 255, 255, 0.85);
}

.section-accent h2 {
  color: #fff;
}

.section-cta {
  margin-top: 2.5rem;
  text-align: center;
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: center;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 2.5rem;
}

.card {
  background: var(--surface-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease;
}

.card:hover {
  transform: translateY(-4px);
}

.card p {
  color: var(--ink-soft);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--brand);
  color: #fff;
  margin-bottom: 1.2rem;
}

.klassen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.8rem;
  margin-top: 1rem;
}

.klasse-card {
  background: var(--asphalt-800);
  border: 1px solid var(--asphalt-700);
  border-radius: var(--radius);
  padding: 2rem 1.7rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.klasse-card:hover {
  border-color: var(--brand-light);
  transform: translateY(-4px);
}

.klasse-badge {
  align-self: flex-start;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 1px;
  background: var(--brand);
  color: #fff;
  padding: 0.15em 0.6em;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.klasse-card p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1rem;
}

.klasse-card ul {
  margin-bottom: 1.4rem;
  flex-grow: 1;
}

.klasse-card li {
  position: relative;
  padding-left: 1.4em;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  margin-bottom: 0.35em;
}

.klasse-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand-light);
  font-weight: 700;
}

.link-arrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  text-decoration: none;
  color: var(--brand-light);
}

.link-arrow::after {
  content: " →";
  transition: margin-left 0.15s ease;
}

.link-arrow:hover::after {
  margin-left: 5px;
}

.klasse-detail .klasse-badge {
  font-size: 1.6rem;
}

.klasse-detail h2 {
  margin-top: 0.4em;
}

.klasse-detail p {
  margin-bottom: 1em;
  max-width: 580px;
}

.facts-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.4rem 0 2rem;
  font-size: 0.98rem;
}

.facts-table th,
.facts-table td {
  text-align: left;
  padding: 0.65em 0.4em;
  border-bottom: 1px dashed rgba(128, 128, 128, 0.35);
  vertical-align: top;
}

.facts-table th {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  white-space: nowrap;
  padding-right: 1.2em;
  color: var(--brand);
}

.section-dark .facts-table th {
  color: var(--brand-light);
}

.klasse-detail-visual {
  display: grid;
  place-items: center;
}

.big-badge {
  display: grid;
  place-items: center;
  width: 220px;
  height: 220px;
  border-radius: 24px;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 6rem;
  transform: rotate(-3deg);
  box-shadow: var(--shadow);
}

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
  margin-top: 2.5rem;
}

.step {
  position: relative;
  background: var(--surface-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.4rem 1.6rem 1.8rem;
  box-shadow: var(--shadow);
}

.step-num {
  position: absolute;
  top: -22px;
  left: 1.4rem;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  border: 3px solid var(--surface);
}

.step p {
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.steps-dark .step {
  background: var(--asphalt-800);
  border-color: var(--asphalt-700);
}

.steps-dark .step p {
  color: rgba(255, 255, 255, 0.75);
}

.steps-dark .step-num {
  border-color: var(--asphalt-900);
}

.section-accent p {
  max-width: 540px;
}

.check-list {
  margin: 1.4rem 0 2rem;
}

.check-list li {
  position: relative;
  padding-left: 1.6em;
  font-weight: 600;
  margin-bottom: 0.4em;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: 800;
}

.check-list-dark li::before {
  color: var(--brand);
}

.intensiv-visual {
  text-align: center;
}

.speed-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: #fff;
  border: 12px solid #d90429; 
  color: var(--asphalt-900);
  box-shadow: var(--shadow);
}

.speed-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 5rem;
  line-height: 1;
}

.speed-label {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

.fineprint {
  font-size: 0.8rem;
  margin-top: 1.2rem;
  opacity: 0.8;
  max-width: 260px;
  margin-inline: auto;
}

.cta-banner-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-banner-inner h2 {
  margin-bottom: 0.2em;
}

.cta-banner-light {
  padding-block: 3.5rem;
}

.quote-card {
  background: var(--surface-card);
  border: 1px solid var(--line);
  border-left: 5px solid var(--brand);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow);
}

.quote-card p {
  font-size: 1.02rem;
  margin-bottom: 1rem;
}

.quote-card footer {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--ink-soft);
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.stat {
  background: var(--surface-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--brand);
  line-height: 1.1;
}

.stat span {
  font-size: 0.9rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team-card {
  background: var(--asphalt-800);
  border: 1px solid var(--asphalt-700);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
}

.team-photo {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  background: var(--asphalt-700);
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.2rem;
}

.team-role {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--brand-light);
  font-size: 0.95rem;
  margin-bottom: 0.6em;
}

.team-card > p:last-child {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.97rem;
}

.faq-list {
  margin-top: 2rem;
  display: grid;
  gap: 0.9rem;
}

.faq-section-title {
  margin-top: 3rem;
}

.faq-item {
  background: var(--surface-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 3rem 1.1rem 1.4rem;
  font-weight: 600;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.3rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brand);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-item p {
  padding: 0 1.4rem 1.3rem;
  color: var(--ink-soft);
}

.faq-item a {
  color: var(--brand);
}

.contact-info {
  font-style: normal;
  margin-top: 1.8rem;
  display: grid;
  gap: 1.2rem;
}

.contact-info a {
  color: var(--brand-light);
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.hours {
  color: rgba(255, 255, 255, 0.75);
}

.map-placeholder {
  margin-top: 2rem;
  display: grid;
  place-items: center;
  min-height: 220px;
  border-radius: var(--radius);
  border: 2px dashed var(--asphalt-700);
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.contact-form {
  background: var(--asphalt-800);
  border: 1px solid var(--asphalt-700);
  border-radius: var(--radius);
  padding: 2.2rem 2rem;
}

.form-title {
  margin-bottom: 1.4rem;
}

.form-row {
  margin-bottom: 1.2rem;
}

.form-row label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 0.35em;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-display);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.75em 0.9em;
  border-radius: 8px;
  border: 1px solid var(--asphalt-700);
  background: var(--asphalt-900);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 2px solid var(--brand-light);
  outline-offset: 1px;
}

.form-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 1rem;
}

.form-note a {
  color: var(--brand-light);
}

.form-feedback {
  margin-top: 0.8rem;
  font-weight: 600;
  color: var(--brand-light);
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 2.2em;
  margin-bottom: 0.5em;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content p {
  color: var(--ink-soft);
}

.site-footer {
  background: var(--asphalt-800);
  color: rgba(255, 255, 255, 0.8);
  border-top: 6px solid var(--brand);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-block: 3.5rem;
}

.logo-footer {
  color: #fff;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.95rem;
  max-width: 260px;
}

.site-footer ul li {
  margin-bottom: 0.5em;
}

.site-footer a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
}

.site-footer a:hover {
  color: var(--brand-light);
}

.footer-bottom {
  border-top: 1px solid var(--asphalt-700);
  padding-block: 1.2rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .road-line {
    animation: none;
  }
  .btn,
  .card,
  .klasse-card {
    transition: none;
  }
}

@media (max-width: 1000px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding-block: 4rem 3.5rem;
  }

  .hero-visual {
    order: -1;
  }

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

  .cards-3,
  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .steps {
    row-gap: 3rem;
  }

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

@media (max-width: 820px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--asphalt-900);
    border-bottom: 3px solid var(--brand);
    display: none;
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0 1rem;
  }

  .main-nav a {
    display: block;
    padding: 0.8rem 1.5rem;
    border-bottom: none;
  }

  .nav-toggle {
    display: flex;
  }

  .header-phone span {
    display: none;
  }
}

@media (max-width: 620px) {
  .cards-3,
  .steps {
    grid-template-columns: 1fr;
  }

  .steps {
    row-gap: 3rem;
  }

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

  .hero-facts {
    gap: 1.4rem;
  }

  .contact-form {
    padding: 1.6rem 1.3rem;
  }

  .stat-grid {
    gap: 1rem;
  }

  .big-badge {
    width: 160px;
    height: 160px;
    font-size: 4.2rem;
  }

  .cta-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

.logo-footer .logo-img {
  height: 64px;
}

@media (max-width: 620px) {
  .logo-img {
    height: 42px;
  }
}

.standort-card {
  background: var(--asphalt-800);
  border: 1px solid var(--asphalt-700);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  margin-bottom: 1.5rem;
}

.standort-card h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.standort-badge {
  display: inline-grid;
  place-items: center;
  font-size: 0.95rem;
  letter-spacing: 1px;
  background: var(--brand);
  color: #fff;
  padding: 0.2em 0.55em;
  border-radius: 6px;
}

.standort-card .contact-info {
  margin-top: 0;
  gap: 0.8rem;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.2rem;
  font-size: 0.97rem;
}

.hours-table caption {
  text-align: left;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: var(--brand-light);
  margin-bottom: 0.4em;
}

.hours-table th,
.hours-table td {
  text-align: left;
  padding: 0.4em 0.3em;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
}

.hours-table th {
  font-weight: 600;
  white-space: nowrap;
  padding-right: 1.5em;
  color: rgba(255, 255, 255, 0.9);
}

.hours-table td {
  color: rgba(255, 255, 255, 0.7);
}

.hero-road .vehicle {
  position: absolute;
  width: auto;
  z-index: 2;
}

.vehicle-car {
  height: 22px;
  bottom: 5px;
  left: 20%;
  animation: drive-right 12s linear infinite;
  animation-delay: -1s;
}

.vehicle-truck {
  height: 28px;
  bottom: 3px;
  left: 60%;
  animation: drive-right 12s linear infinite;
  animation-delay: -7s;
}

.vehicle-bike {
  height: 27px;
  top: 2px;
  right: 25%;
  transform: scaleX(-1);
  animation: drive-left 9s linear infinite;
  animation-delay: -4s;
}

@keyframes drive-right {
  from { left: -30%; }
  to { left: 108%; }
}

@keyframes drive-left {
  from { right: -30%; }
  to { right: 108%; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-road .vehicle {
    animation: none;
  }
}

.foerder-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: #fff;
  border: 12px solid var(--brand);
  color: var(--asphalt-900);
  box-shadow: var(--shadow);
}

.foerder-top {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.foerder-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 4.2rem;
  line-height: 1;
  color: var(--brand);
}

.foerder-label {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

.team-group-title {
  margin-top: 2.8rem;
  margin-bottom: 0.2rem;
  font-size: 1.3rem;
  letter-spacing: 1.5px;
  color: var(--brand-light);
}

.team-card .team-role {
  margin-bottom: 0;
}

.team-note {
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.8rem;
}

.foerder-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.4rem;
  margin-top: 2rem;
}

.foerder-logos-label {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.foerder-logos img {
  height: 36px;
  width: auto;
}

.foerder-logos-label {
  flex-basis: 100%;
}

.foerder-logos img.logo-tall {
  height: 48px;
}
