:root {
  --color-primary: #2d6a52;
  --color-primary-dark: #1e4638;
  --color-secondary: #c9a227;
  --color-secondary-dark: #a88620;
  --color-dark: #1c211f;
  --color-text: #2c3330;
  --color-text-light: #5c6560;
  --color-text-muted: #6f7874;
  --color-bg: #fdfdfb;
  --color-bg-alt: #f1f4f2;
  --color-border: #dfe6e2;
  --shadow-sm: 0 1px 3px rgba(28, 33, 31, 0.06), 0 4px 14px rgba(28, 33, 31, 0.04);
  --shadow-md: 0 4px 20px rgba(28, 33, 31, 0.08);
  --shadow-lg: 0 12px 40px rgba(28, 33, 31, 0.1);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.22s ease;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --font-sans: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: -0.011em;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
  text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.03em;
  color: var(--color-dark);
}

h1 { font-size: clamp(1.85rem, 4.8vw, 2.45rem); }
h2 { font-size: clamp(1.45rem, 3.8vw, 1.9rem); }
h3 { font-size: clamp(1.2rem, 2.8vw, 1.4rem); }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.65rem;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition:
    background-color var(--transition),
    color var(--transition),
    border-color var(--transition),
    transform 0.25s var(--ease-out),
    box-shadow 0.25s var(--ease-out);
  text-decoration: none;
  text-align: center;
}

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

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

.btn-primary:hover {
  background: var(--color-primary-dark);
  text-decoration: none;
}

@media (prefers-reduced-motion: no-preference) {
  .btn-primary:hover,
  .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }

  .btn-outline:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
  }

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

.btn-secondary {
  background: var(--color-secondary);
  color: var(--color-dark);
}

.btn-secondary:hover {
  background: var(--color-secondary-dark);
  text-decoration: none;
}

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

.btn-outline:hover {
  background: var(--color-primary);
  color: white;
  text-decoration: none;
}

.placeholder-img {
  background: linear-gradient(135deg, #2c5f4a 0%, #1a3d30 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.875rem;
  text-align: center;
  padding: 2rem;
  border-radius: var(--radius);
  min-height: 200px;
  position: relative;
}

.placeholder-img::before {
  content: "📷";
  font-size: 2rem;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}.site-header {
  background: rgba(253, 253, 251, 0.92);
  box-shadow: 0 1px 0 var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(
    155deg,
    var(--color-primary-dark),
    var(--color-primary)
  );
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out);
  box-shadow: 0 2px 12px rgba(30, 70, 56, 0.22);
}

.logo:hover .logo-icon {
  transform: scale(1.02);
  box-shadow: 0 4px 18px rgba(30, 70, 56, 0.28);
}

@media (prefers-reduced-motion: reduce) {
  .logo:hover .logo-icon {
    transform: none;
  }
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--color-dark);
  line-height: 1.2;
}

.logo-sub {
  font-size: 0.75rem;
  color: var(--color-text-light);
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-dark);
  transition: var(--transition);
}

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

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

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

.main-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-bg);
  box-shadow: var(--shadow-md);
  padding: 1rem;
}

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

.main-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.main-nav a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--color-text);
  font-weight: 500;
  border-radius: var(--radius);
  transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--color-bg-alt);
  color: var(--color-primary);
  text-decoration: none;
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .main-nav {
    display: block;
    position: static;
    box-shadow: none;
    padding: 0;
  }

  .main-nav ul {
    flex-direction: row;
    gap: 0.25rem;
  }

  .main-nav a {
    padding: 0.5rem 1rem;
  }

  .logo-icon {
    width: 56px;
    height: 56px;
  }

  .logo-name {
    font-size: 1.25rem;
  }
}.site-footer {
  position: relative;
  background: var(--color-dark);
  color: white;
  padding: 3rem 0 1.5rem;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-primary);
  opacity: 0.9;
}

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

.footer-brand {
  text-align: center;
}

.footer-brand .logo-name {
  color: white;
  font-size: 1.25rem;
}

.footer-brand p {
  color: #aaa;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.footer-contact h4,
.footer-services h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-contact p {
  color: #aaa;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.footer-contact a {
  color: var(--color-secondary);
}

.footer-services ul {
  list-style: none;
}

.footer-services a {
  color: #aaa;
  font-size: 0.875rem;
  transition: var(--transition);
}

.footer-services a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  color: #777;
  font-size: 0.75rem;
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.footer-legal a {
  color: #aaa;
  font-size: 0.875rem;
}

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

  .footer-brand {
    text-align: left;
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-legal {
    margin-top: 0;
  }
}.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Startseite: Aktions-Buttons unten, mittig */
.hero:not(.page-hero) {
  align-items: flex-end;
  justify-content: center;
}

.hero:not(.page-hero) .hero-content {
  padding-top: 2rem;
  padding-bottom: clamp(1.75rem, 5vw, 3.25rem);
}

.hero:not(.page-hero) .hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hero:not(.page-hero) .hero-buttons {
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media {
  width: 100%;
  height: 100%;
  position: relative;
  background: linear-gradient(
    145deg,
    var(--color-primary-dark) 0%,
    var(--color-primary) 42%,
    #234a3c 100%
  );
  overflow: hidden;
}

.hero-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.48;
  transform: scale(1.03);
}

.hero:not(.page-hero) .hero-media-img {
  opacity: 0.58;
}

@media (prefers-reduced-motion: no-preference) {
  .hero:not(.page-hero) .hero-media-img {
    animation: heroKenBurns 22s ease-in-out infinite alternate;
  }

  .page-hero .hero-media-img {
    animation: heroKenBurns 28s ease-in-out infinite alternate;
  }
}

@keyframes heroKenBurns {
  from {
    transform: scale(1.03) translate(0, 0);
  }
  to {
    transform: scale(1.09) translate(-1.2%, -0.6%);
  }
}

.hero-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 61, 48, 0.72) 0%,
    rgba(26, 61, 48, 0.4) 42%,
    rgba(26, 61, 48, 0.88) 100%
  );
  pointer-events: none;
}

.page-hero .hero-media-img {
  opacity: 0.38;
}

.page-hero .hero-media-overlay {
  background: linear-gradient(
    160deg,
    rgba(26, 61, 48, 0.82) 0%,
    rgba(44, 95, 74, 0.52) 52%,
    rgba(26, 61, 48, 0.9) 100%
  );
}

.hero-media-badge {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  z-index: 1;
  pointer-events: none;
}

.hero-badge-title {
  font-size: clamp(1.75rem, 5vw, 2.85rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.35);
  line-height: 1.15;
}

.hero-badge-sub {
  margin-top: 0.6rem;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.93);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem 0;
  width: 100%;
}

.hero-text h1 {
  color: white;
  margin-bottom: 1rem;
}

.hero-text p {
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  max-width: 600px;
}

.hero-text h1,
.hero-text p {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-text h1 {
    animation: heroFadeUp 0.78s var(--ease-out) backwards;
  }

  .hero-text p {
    animation: heroFadeUp 0.78s 0.09s var(--ease-out) backwards;
  }

  .hero-buttons {
    animation: heroFadeUp 0.78s 0.18s var(--ease-out) backwards;
  }
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media-img {
    animation: none !important;
  }
}

@media (min-width: 768px) {
  .hero {
    min-height: 70vh;
  }

  .hero-buttons {
    flex-direction: row;
  }

  .hero:not(.page-hero) .hero-buttons {
    flex-direction: row;
  }
}

@media (max-width: 767px) {
  .hero:not(.page-hero) .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
  }
}

.page-hero {
  min-height: 42vh;
}

.page-hero .hero-text h1 {
  font-size: clamp(2rem, 6vw, 3rem);
}
.section {
  padding: 3rem 0;
}

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

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

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

.section-header h2::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 2px;
  margin: 0.75rem auto 0;
  border-radius: 2px;
  background: var(--color-primary);
  opacity: 0.85;
}

.section-header p {
  color: var(--color-text-light);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

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

@media (min-width: 1024px) {
  .section {
    padding: 4rem 0;
  }
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 300px;
  border: 0;
}

.about-teaser {
  max-width: 38rem;
  margin: 0 auto;
  text-align: left;
}

.about-teaser h2 {
  margin-bottom: 0.65rem;
}

.about-teaser p {
  margin: 0 0 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--color-text-light);
}

.about-teaser p:last-of-type {
  margin-bottom: 1rem;
}

.about-teaser .btn {
  margin-top: 0.15rem;
}

.filter-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

/* Schräges Eckband oben links (Entwurf / Hinweis) */
.corner-ribbon {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 150;
  width: 118px;
  height: 118px;
  overflow: hidden;
  pointer-events: none;
}

.corner-ribbon__text {
  display: block;
  position: absolute;
  top: 26px;
  left: -44px;
  width: 192px;
  padding: 0.42rem 0;
  background: linear-gradient(
    145deg,
    #c9a227 0%,
    #e8c547 48%,
    #f2dc6e 100%
  );
  color: #142920;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  transform: rotate(-45deg);
  box-shadow:
    0 2px 10px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  border-bottom: 1px solid rgba(20, 41, 32, 0.12);
}

@media (max-width: 480px) {
  .corner-ribbon {
    width: 96px;
    height: 96px;
  }

  .corner-ribbon__text {
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    top: 20px;
    left: -48px;
    width: 168px;
    padding: 0.32rem 0;
  }
}.card {
  background: var(--color-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition:
    box-shadow 0.3s var(--ease-out),
    transform 0.3s var(--ease-out),
    border-color 0.3s var(--ease-out);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(45, 106, 82, 0.22);
}

@media (prefers-reduced-motion: reduce) {
  .card:hover {
    transform: none;
  }
}

.card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--color-bg-alt);
  min-height: 200px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s var(--ease-out);
}

@media (prefers-reduced-motion: no-preference) {
  .card:hover .card-image img {
    transform: scale(1.04);
  }
}

.card-content {
  padding: 1.5rem;
  flex: 1;
}

.card-content h3 {
  margin-bottom: 0.5rem;
}

.card-content p {
  color: var(--color-text-light);
  font-size: 0.9375rem;
}

.cta-block {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--color-bg);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  text-align: center;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow 0.3s var(--ease-out),
    transform 0.3s var(--ease-out),
    border-color 0.3s var(--ease-out);
}

.cta-block:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(45, 106, 82, 0.18);
}

@media (prefers-reduced-motion: no-preference) {
  .cta-block:hover {
    transform: translateY(-2px);
  }
}

.cta-block h3 {
  margin-bottom: 0.5rem;
}

.cta-block p {
  flex: 1 1 auto;
  margin-bottom: 0;
  color: var(--color-text-light);
}

.cta-block-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1.25rem;
}

@media (min-width: 768px) {
  .cta-block-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

.vehicle-card {
  transition: var(--transition);
}

.filter-btn {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  transition:
    transform 0.2s var(--ease-out),
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

@media (prefers-reduced-motion: no-preference) {
  .filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
  }
}

.filter-btn.active {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

.trust-bar {
  background: var(--color-bg-alt);
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
}

.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  background: var(--color-border);
  border-radius: 0;
  overflow: hidden;
}

@media (min-width: 640px) {
  .trust-bar-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .trust-bar-inner {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
    background: var(--color-border);
    gap: 1px;
  }
}

.trust-item {
  margin: 0;
  padding: 1rem 0.65rem;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--color-text);
  text-align: center;
  background: var(--color-bg);
  border: none;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 4.25rem;
}

.trust-item-label {
  display: block;
  max-width: 11rem;
}

.trust-item::before {
  display: none;
}.faq-details details {
  background: var(--color-bg);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-details summary {
  padding: 1.25rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.faq-details summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-primary);
  transition: var(--transition);
}

.faq-details details[open] summary::after {
  transform: rotate(45deg);
}

.faq-details details[open] summary {
  border-bottom: 1px solid var(--color-border);
}

.faq-details .answer {
  padding: 1.25rem;
  color: var(--color-text-light);
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

.contact-card {
  background: var(--color-bg);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(44, 95, 74, 0.08);
  transition:
    box-shadow 0.35s var(--ease-out),
    transform 0.35s var(--ease-out),
    border-color 0.35s var(--ease-out);
}

@media (prefers-reduced-motion: no-preference) {
  .contact-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(44, 95, 74, 0.14);
    transform: translateY(-3px);
  }
}

.contact-card h3 {
  color: var(--color-primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.contact-item-with-icon .contact-item-icon-wrap {
  flex-shrink: 0;
  color: var(--color-primary);
  opacity: 0.88;
  line-height: 0;
  margin-top: 0.12rem;
}

.contact-item-with-icon .contact-item-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.75rem;
}

.contact-item-with-icon .contact-item-main > span:first-child {
  min-width: 5.25rem;
  color: var(--color-text-light);
  font-size: 0.875rem;
}

.contact-item-with-icon .contact-item-main > span:last-child:not(:only-child) {
  color: var(--color-text);
  font-weight: 400;
  min-width: 0;
}

.contact-item-with-icon .contact-item-main a {
  color: var(--color-text);
  font-weight: 500;
}

.contact-item-with-icon .contact-item-main a:hover {
  color: var(--color-primary);
}

.contact-item > span {
  color: var(--color-text-light);
  font-size: 0.875rem;
  min-width: 60px;
}

.contact-item > a {
  color: var(--color-text);
  font-weight: 500;
}

.contact-item > a:hover {
  color: var(--color-primary);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(44, 95, 74, 0.1);
}/* Inline-SVG-Icons (partial icon.html) */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-primary);
}

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

.icon--trust svg {
  width: 1.4rem;
  height: 1.4rem;
}

.icon--cta svg {
  width: 2.65rem;
  height: 2.65rem;
}

.icon--card svg {
  width: 4.25rem;
  height: 4.25rem;
}

.icon--contact svg {
  width: 1.15rem;
  height: 1.15rem;
}

.icon--quote svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--color-primary);
  opacity: 0.35;
}

.cta-block-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.cta-block-icon .icon {
  padding: 0.85rem;
  border-radius: var(--radius-sm);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
}

.card-symbol {
  aspect-ratio: 16 / 10;
  min-height: 176px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    165deg,
    var(--color-bg-alt) 0%,
    #e4eae6 100%
  );
  border-bottom: 1px solid var(--color-border);
}

.card-symbol .icon {
  opacity: 0.92;
}

@media (prefers-reduced-motion: no-preference) {
  .card:hover .card-symbol .icon {
    transform: scale(1.05);
    transition: transform 0.35s var(--ease-out);
  }
}

.card--testimonial .card-content {
  position: relative;
  padding-top: 2.25rem;
}

.card--testimonial .card-content .icon--quote {
  position: absolute;
  top: 0.85rem;
  left: 1.35rem;
}/* Scroll-Reveal: Klasse wird per JS gesetzt; html.js erst nach Inline-Script im <head> */
html.js .scroll-reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(1.125rem);
}

html.js .scroll-reveal {
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

html.js .scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html.js .scroll-reveal:not(.is-visible) {
    opacity: 1;
    transform: none;
  }

  html.js .scroll-reveal {
    transition: none;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .trust-bar-inner.trust-bar-entrance {
    animation: trustBarIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.12s backwards;
  }
}

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

@media (prefers-reduced-motion: reduce) {
  .trust-bar-inner.trust-bar-entrance {
    animation: none;
  }
}
@media (min-width: 768px) {
  .hide-desktop { display: none !important; }
}

@media (max-width: 767px) {
  .hide-mobile { display: none !important; }
}

.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-primary);
  padding: 1rem;
  z-index: 99;
  text-align: center;
}

.mobile-cta a {
  display: block;
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
  text-decoration: none;
}

.mobile-cta a:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .mobile-cta {
    display: none;
  }
}

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