/* Basis-Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #f9fafb; /* bg-gray-25 */
  color: #0f172a; /* slate-900 */
}

h1,
h2,
h3 {
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #0f172a;
}

p {
  margin: 0;
}

section {
  position: relative;
}

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

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

button,
input,
textarea {
  font: inherit;
}

/* Layout-Helfer */
.container-page {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.section-padding {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

@media (min-width: 640px) {
  .section-padding {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

@media (min-width: 1024px) {
  .section-padding {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

/* Utility-Klassen (Tailwind-ähnlich, lokal nachgebaut) */
.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.justify-between {
  justify-content: space-between;
}

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

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-10 {
  gap: 2.5rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-5 {
  margin-top: 1.25rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-16 {
  margin-top: 4rem;
}

.space-y-1 > * + * {
  margin-top: 0.25rem;
}

.space-y-2 > * + * {
  margin-top: 0.5rem;
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

.space-y-6 > * + * {
  margin-top: 1.5rem;
}

.space-y-1\.5 > * + * {
  margin-top: 0.375rem;
}

.space-x-4 > * + * {
  margin-left: 1rem;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-2xl {
  border-radius: 1rem;
}

.rounded-3xl {
  border-radius: 1.5rem;
}

.rounded-hero {
  border-radius: 2rem;
}

.border {
  border-width: 1px;
  border-style: solid;
  border-color: #e2e8f0;
}

.border-b {
  border-bottom-width: 1px;
  border-style: solid;
  border-color: #e2e8f0;
}

.border-t {
  border-top-width: 1px;
  border-style: solid;
  border-color: #e2e8f0;
}

.border-slate-200 {
  border-color: #e2e8f0;
}

.border-slate-200\/70 {
  border-color: rgba(226, 232, 240, 0.7);
}

.border-slate-500\/60 {
  border-color: rgba(100, 116, 139, 0.6);
}

.border-emerald-200 {
  border-color: #a7f3d0;
}

.border-white\/20 {
  border-color: rgba(255, 255, 255, 0.2);
}

.border-white\/60 {
  border-color: rgba(255, 255, 255, 0.6);
}

.bg-white {
  background-color: #ffffff;
}

.bg-white\/60 {
  background-color: rgba(255, 255, 255, 0.6);
}

.bg-white\/80 {
  background-color: rgba(255, 255, 255, 0.8);
}

.bg-white\/10 {
  background-color: rgba(255, 255, 255, 0.1);
}

.bg-slate-50 {
  background-color: #f8fafc;
}

.bg-slate-200 {
  background-color: #e2e8f0;
}

.bg-slate-900 {
  background-color: #0f172a;
}

.bg-slate-900\/50 {
  background-color: rgba(15, 23, 42, 0.5);
}

.bg-slate-900\/95 {
  background-color: rgba(15, 23, 42, 0.95);
}

.bg-brand-dark {
  background-color: #0b1f3b;
}

.bg-brand-light {
  background-color: #e5ecf8;
}

.bg-brand-dark\/5 {
  background-color: rgba(11, 31, 59, 0.05);
}

.bg-brand-light\/40 {
  background-color: rgba(229, 236, 248, 0.4);
}

.bg-emerald-50 {
  background-color: #ecfdf5;
}

.bg-emerald-100 {
  background-color: #d1fae5;
}

.bg-emerald-500 {
  background-color: #10b981;
}

.text-white {
  color: #ffffff;
}

.text-slate-100 {
  color: #f1f5f9;
}

.text-slate-200 {
  color: #e2e8f0;
}

.text-slate-500 {
  color: #64748b;
}

.text-slate-600 {
  color: #475569;
}

.text-slate-700 {
  color: #334155;
}

.text-slate-900 {
  color: #0f172a;
}

.text-brand-dark {
  color: #0b1f3b;
}

.text-emerald-300 {
  color: #6ee7b7;
}

.text-emerald-600 {
  color: #059669;
}

.text-emerald-700 {
  color: #047857;
}

.text-slate-100\/90 {
  color: rgba(241, 245, 249, 0.9);
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

@media (min-width: 640px) {
  .sm\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .lg\:text-5xl {
    font-size: 3rem;
    line-height: 1.1;
  }
}

.font-semibold {
  font-weight: 600;
}

.font-medium {
  font-weight: 500;
}

.uppercase {
  text-transform: uppercase;
}

.tracking-wide {
  letter-spacing: 0.05em;
}

.tracking-\[0\.18em\] {
  letter-spacing: 0.18em;
}

.tracking-\[0\.16em\] {
  letter-spacing: 0.16em;
}

.tracking-\[0\.2em\] {
  letter-spacing: 0.2em;
}

.shadow-sm {
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.1);
}

.shadow-card {
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.14);
}

.shadow-premium {
  box-shadow: 0 40px 120px rgba(15, 23, 42, 0.65);
}

.shadow-[0_18px_45px_rgba\(15,23,42,0\.08\)] {
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.shadow-\[0_30px_80px_rgba\(15,23,42,0\.45\)\] {
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.45);
}

.shadow-\[0_24px_60px_rgba\(15,23,42,0\.25\)\] {
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.25);
}

.shadow-\[0_24px_80px_rgba\(0,0,0,0\.7\)\] {
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7);
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.h-64 {
  height: 16rem;
}

.h-72 {
  height: 18rem;
}

.h-80 {
  height: 20rem;
}

.h-12 {
  height: 3rem;
}

.w-12 {
  width: 3rem;
}

.h-5 {
  height: 1.25rem;
}

.w-5 {
  width: 1.25rem;
}

.h-4 {
  height: 1rem;
}

.w-4 {
  width: 1rem;
}

.h-3 {
  height: 0.75rem;
}

.w-3 {
  width: 0.75rem;
}

.h-9 {
  height: 2.25rem;
}

.w-9 {
  width: 2.25rem;
}

.h-8 {
  height: 2rem;
}

.w-8 {
  width: 2rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-2\.5 {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.pl-5 {
  padding-left: 1.25rem;
}

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

.list-disc {
  list-style-type: disc;
}

.overflow-hidden {
  overflow: hidden;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.inset-x-0 {
  left: 0;
  right: 0;
}

.top-0 {
  top: 0;
}

.bottom-0 {
  bottom: 0;
}

.bottom-20 {
  bottom: 5rem;
}

.right-4 {
  right: 1rem;
}

.z-30 {
  z-index: 30;
}

.z-40 {
  z-index: 40;
}

.shadow-lg {
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.3);
}

.backdrop-blur {
  backdrop-filter: blur(12px);
}

.backdrop-blur-sm {
  backdrop-filter: blur(6px);
}

.border-brand-dark {
  border-color: #0b1f3b;
}

.bg-brand {
  background-color: #123a7a;
}

.hover\:bg-brand-dark:hover {
  background-color: #0b1f3b;
}

.hover\:bg-brand:hover {
  background-color: #123a7a;
}

.hover\:text-brand:hover {
  color: #123a7a;
}

.hover\:bg-white:hover {
  background-color: #ffffff;
}

.hover\:-translate-y-0\.5:hover {
  transform: translateY(-2px);
}

.hover\:scale-105:hover {
  transform: scale(1.05);
}

.transition,
.transition-transform {
  transition: all 150ms ease-out;
}

.duration-150 {
  transition-duration: 150ms;
}

.cursor-not-allowed {
  cursor: not-allowed;
}

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Spezifische Layout-Anpassungen */
.header-sticky {
  position: sticky;
  top: 0;
  z-index: 30;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
}

/* Mobiles Menü */
.mobile-nav {
  display: none;
  border-top: 1px solid #e2e8f0;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
}

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

.mobile-nav a {
  display: block;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #0f172a;
  text-decoration: none;
}

.mobile-nav a + a {
  border-top: 1px solid #e2e8f0;
}

.mobile-nav a:hover {
  background-color: #0b1f3b0d;
  color: #123a7a;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
    align-items: center;
  }
}

.leistungen-grid {
  display: grid;
  gap: 1.5rem;
}

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

.ablauf-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .ablauf-grid {
    grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
    align-items: flex-start;
  }
}

.unfall-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .unfall-grid {
    grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
    align-items: flex-start;
  }
}

.closing-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .closing-grid {
    grid-template-columns: minmax(0, 2.2fr) minmax(0, 2.2fr);
    align-items: center;
  }
}

.testimonials-grid {
  display: grid;
  gap: 1.5rem;
}

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

/* Animation auf Scroll */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Schwerpunkt Oldtimer / Wohnmobile (unter Hero, vor Leistungen) */
.hero-specialty-bridge {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(148, 163, 184, 0.4);
}

@media (min-width: 640px) {
  .hero-specialty-bridge {
    margin-top: 3rem;
    padding-top: 3rem;
  }
}

.hero-specialty-bridge .hero-specialty {
  margin-left: auto;
  margin-right: auto;
}

.hero-specialty {
  max-width: 36rem;
  padding: 1rem 1.125rem;
  border-radius: 1rem;
  border: 1px solid rgba(18, 58, 122, 0.22);
  background: linear-gradient(
    135deg,
    rgba(229, 236, 248, 0.95) 0%,
    rgba(255, 255, 255, 0.92) 55%,
    rgba(18, 58, 122, 0.06) 100%
  );
  box-shadow: 0 12px 40px rgba(11, 31, 59, 0.08);
}

@media (min-width: 640px) {
  .hero-specialty {
    padding: 1.125rem 1.25rem;
  }
}

.hero-specialty-kicker {
  margin: 0;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #123a7a;
}

.hero-specialty-headline {
  margin: 0.35rem 0 0;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: #0b1f3b;
}

@media (min-width: 640px) {
  .hero-specialty-headline {
    font-size: 1.25rem;
  }
}

.hero-specialty-sub {
  margin: 0.5rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #475569;
}

@media (min-width: 640px) {
  .hero-specialty-sub {
    font-size: 0.875rem;
  }
}

.hero-specialty-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.hero-specialty-tags span {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  padding: 0.3rem 0.65rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #0b1f3b;
  background-color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(18, 58, 122, 0.18);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

/* Trust-Badges (Hero): feste Icon-Spalte, gleiche Kreis- und Strichstärke */
.trust-badge-row {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
  padding: 0.75rem 1rem;
  box-sizing: border-box;
}

.trust-badge-icon-wrap {
  width: 2.5rem;
  height: 2.5rem;
  min-width: 2.5rem;
  min-height: 2.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-sizing: border-box;
}

.trust-badge-icon {
  width: 1.125rem;
  height: 1.125rem;
  display: block;
  flex-shrink: 0;
  stroke-width: 1.85;
  stroke: currentColor;
}

/* Hero-Karte rechts */
.hero-card {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 2rem;
  background: radial-gradient(circle at top, rgba(18, 58, 122, 0.8), #020617);
  box-shadow: 0 40px 120px rgba(15, 23, 42, 0.75);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.hero-card-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 1.5rem;
  color: #ffffff;
}

@media (min-width: 640px) {
  .hero-card-inner {
    padding: 2rem;
  }
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background-color: rgba(255, 255, 255, 0.1);
}

.hero-card-list {
  font-size: 0.75rem;
  color: rgba(241, 245, 249, 0.9);
}

.faq-icon.rotate-180 {
  transform: rotate(180deg);
}

/* Formulare */
input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid #cbd5e1;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
}

/* Buttons generisch */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: #0b1f3b;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #123a7a;
}

.btn-outline {
  border: 1px solid #0b1f3b;
  color: #0b1f3b;
  background-color: transparent;
}

.btn-outline:hover {
  background-color: #0b1f3b;
  color: #ffffff;
}

/* Mobile Call-Bar Maskierung */
.mobile-callbar {
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.95),
    rgba(15, 23, 42, 0.9),
    rgba(15, 23, 42, 0.6)
  );
  box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(16px);
}

/* Responsive Helfer für Navigation / Layout */
@media (min-width: 640px) {
  .sm\:py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .sm\:inline-flex {
    display: inline-flex;
  }

  .sm\:grid-cols-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .md\:flex {
    display: flex;
  }

  .md\:inline-flex {
    display: inline-flex;
  }

  .md\:hidden {
    display: none;
  }

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:items-start {
    align-items: flex-start;
  }

  .md\:justify-between {
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .lg\:inline {
    display: inline;
  }
}

/* Weitere Hilfsklassen für max-width und Typografie */
.max-w-md {
  max-width: 28rem;
}

.max-w-sm {
  max-width: 24rem;
}

.max-w-xl {
  max-width: 36rem;
}

.leading-tight {
  line-height: 1.25;
}

.leading-relaxed {
  line-height: 1.625;
}

.text-brand {
  color: #123a7a;
}

.text-emerald-800 {
  color: #065f46;
}

.text-emerald-900 {
  color: #064e3b;
}

.text-amber-400 {
  color: #fbbf24;
}

.object-cover {
  object-fit: cover;
}

/* Impressum / Datenschutz */
.legal-section {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #475569;
}

.legal-section h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.25rem;
  font-size: 1rem;
  font-weight: 600;
}

.legal-section p + p {
  margin-top: 0.25rem;
}

.legal-section ul {
  padding-left: 1.25rem;
  margin: 0.25rem 0 0;
}

.legal-section li {
  margin-top: 0.15rem;
}

/* Leistungs-Kacheln */
.service-card {
  position: relative;
  border-radius: 1rem;
  padding: 1.25rem;
  background: radial-gradient(circle at top left, #e5ecf8, #ffffff);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.4);
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out,
    border-color 0.18s ease-out;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 65px rgba(15, 23, 42, 0.16);
  border-color: rgba(18, 58, 122, 0.45);
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.125rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #0b1f3b, #123a7a);
  color: #e5ecf8;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.service-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
}

.service-text {
  margin-top: 0.35rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #475569;
}

/* Allgemeine Karten / Info-Boxen */
.info-card {
  border-radius: 1rem;
  padding: 1.25rem;
  background-color: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.info-card-soft {
  border-radius: 1rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, #ecfdf5, #ffffff);
  border: 1px solid rgba(16, 185, 129, 0.35);
  box-shadow: 0 18px 45px rgba(16, 185, 129, 0.12);
}

/* Ablauf-Step-List (So läuft die Gutachtenerstellung ab) */
.ablauf-steps {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ablauf-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1.25rem 1.25rem 1.25rem 1.25rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.ablauf-step-num {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #0b1f3b, #123a7a);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.ablauf-step-content {
  flex: 1;
  min-width: 0;
}

.ablauf-step-content h3 {
  margin: 0;
}

.ablauf-step-content p {
  margin: 0.25rem 0 0;
}

.info-card-dark {
  border-radius: 1rem;
  padding: 1.25rem;
  background-color: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.5);
}

/* Testimonials */
.testimonial-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 1rem;
  padding: 1.25rem;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(10px);
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out,
    border-color 0.18s ease-out;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.2);
  border-color: rgba(18, 58, 122, 0.5);
}

/* FAQ (Grid-Akkordeon: echte Inhaltshöhe, kein max-height) */
.faq-shell {
  margin-top: 1.5rem;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  background-color: #ffffff;
  overflow: hidden;
}

.faq-item {
  border: 0;
  background-color: transparent;
}

.faq-item + .faq-item {
  border-top: 1px solid #e2e8f0;
}

.faq-trigger {
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  transition: background-color 0.15s ease-out;
}

.faq-trigger:hover {
  background-color: rgba(11, 31, 59, 0.04);
}

.faq-trigger[aria-expanded="true"] {
  background-color: rgba(11, 31, 59, 0.06);
}

.faq-trigger:focus-visible {
  outline: 2px solid #0b1f3b;
  outline-offset: -2px;
}

.faq-trigger[aria-expanded="true"] .faq-icon-wrap {
  background: rgba(18, 58, 122, 0.14);
  color: #123a7a;
}

.faq-icon-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  margin-top: 0.05rem;
  border-radius: 0.4rem;
  background: rgba(15, 23, 42, 0.06);
  color: #64748b;
}

.faq-icon {
  width: 1rem;
  height: 1rem;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-question {
  flex: 1;
  min-width: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.45;
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-panel.open {
  grid-template-rows: 1fr;
}

.faq-panel-inner {
  overflow: hidden;
  min-height: 0;
}

.faq-answer {
  margin: 0;
  padding: 0 1.25rem 1.15rem 1.25rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #475569;
  text-align: left;
}

/* Kontakt-Formulare */
.form-card {
  border-radius: 1.25rem;
  padding: 1.25rem;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

@media (min-width: 640px) {
  .form-card {
    padding: 1.5rem;
  }
}

.form-card-dark {
  border-radius: 1.25rem;
  padding: 1.25rem;
  background: radial-gradient(circle at top left, #0b1f3b, #020617);
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7);
}

/* Partnerhinweis (TÜV Nord) */
.partner-card {
  border-radius: 1rem;
  padding: 1.25rem 1.35rem;
  background: linear-gradient(
    135deg,
    rgba(18, 58, 122, 0.12),
    rgba(229, 236, 248, 0.95)
  );
  border: 1px solid rgba(18, 58, 122, 0.22);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}

.partner-card-kicker {
  margin: 0;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #123a7a;
}

.partner-card-title {
  margin: 0.35rem 0 0;
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
}

.partner-card-text {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #475569;
}

/* E-Mail CTA (Closing-Section) */
.email-cta-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  padding: 1.35rem 1.35rem 1.25rem;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.04) 50%,
    rgba(16, 185, 129, 0.08) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(14px);
}

.email-cta-card__head {
  position: relative;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.email-cta-card__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.9rem;
  background: rgba(16, 185, 129, 0.2);
  color: #6ee7b7;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.email-cta-card__icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.email-cta-card__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.email-cta-card__lead {
  margin: 0.4rem 0 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(241, 245, 249, 0.92);
}

.email-cta-card__link {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.75rem;
  margin-top: 1.1rem;
  padding: 0.85rem 1rem;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  text-decoration: none;
  transition: background 0.15s ease-out, border-color 0.15s ease-out,
    transform 0.15s ease-out;
}

.email-cta-card__link:hover {
  background: rgba(16, 185, 129, 0.22);
  border-color: rgba(110, 231, 183, 0.45);
  transform: translateY(-1px);
}

.email-cta-card__link-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(110, 231, 183, 0.95);
  width: 100%;
}

@media (min-width: 480px) {
  .email-cta-card__link-label {
    width: auto;
  }
}

.email-cta-card__link-addr {
  flex: 1;
  min-width: 0;
  font-size: 0.95rem;
  font-weight: 600;
  word-break: break-all;
  color: #ffffff;
}

.email-cta-card__chev {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  color: #6ee7b7;
  opacity: 0.9;
}

.email-cta-card__hint {
  position: relative;
  margin: 0.85rem 0 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: rgba(226, 232, 240, 0.75);
}


