/* ==========================================================================
   SchadenzentrumNRW — Startseite
   Ergänzt site.css. Mobile-first; zweispaltige Layouts erst ab 720/1024px.
   ========================================================================== */

[hidden] { display: none !important; }

/* --- Gemeinsame Bausteine der Startseite --------------------------------- */

.home-h2 {
  font-weight: 800;
  font-size: clamp(28px, 5.2vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}

.home-lead {
  font-size: clamp(16px, 2.2vw, 17px);
  line-height: 1.65;
  color: #4A5563;
  max-width: 52ch;
}

.home-lead + .home-lead { margin-top: 18px; }

/* --- Hero ---------------------------------------------------------------- */

.home-hero {
  background: linear-gradient(160deg, #10161E 0%, var(--ink) 60%);
  color: var(--on-ink);
}

.home-hero__inner {
  padding-top: 64px;
  padding-bottom: 64px;
}

@media (min-width: 720px) {
  .home-hero__inner {
    padding-top: 96px;
    padding-bottom: 88px;
  }
}

.home-hero__eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9FB0C0;
  margin: 0 0 20px;
}

.home-hero__title { max-width: 16ch; }

.home-hero__lead { max-width: 46ch; }

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.home-hero__actions .btn { flex: 1 1 260px; }

@media (min-width: 720px) {
  .home-hero__actions .btn { flex: 0 0 auto; }
}

.home-hero__facts {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 36px;
  font-size: 14px;
  color: var(--on-ink-3);
}

/* --- Hinweisleiste ------------------------------------------------------- */

.home-trust {
  background: var(--blue);
  color: #fff;
}

.home-trust__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 24px;
  padding-top: 22px;
  padding-bottom: 22px;
}

.home-trust__text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(17px, 2.4vw, 19px);
  line-height: 1.35;
  max-width: 62ch;
}

.home-trust__link {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  padding: 10px 0 4px;
}

.home-trust__link:hover {
  color: #fff;
  border-bottom-color: #fff;
}

/* --- Warum wir ----------------------------------------------------------- */

.home-why__list {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.home-why__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.home-why__check {
  flex: none;
  width: 22px;
  height: 22px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-why__text {
  font-size: 16px;
  line-height: 1.55;
  color: #1D2733;
}

.home-why__text strong { font-weight: 600; }

/* --- Leistungen ---------------------------------------------------------- */

.home-services {
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
}

.home-services__title { max-width: 20ch; }

.home-services__grid {
  display: grid;
  gap: 1px;
  margin-top: 36px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

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

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

.home-service {
  background: var(--surface);
  padding: 28px 24px;
}

@media (min-width: 720px) {
  .home-service { padding: 36px 32px; }
}

.home-service:hover { background: #FBFCFD; }

.home-service__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--blue);
}

.home-service__title {
  font-weight: 700;
  font-size: clamp(19px, 2.6vw, 22px);
  margin: 12px 0;
}

.home-service__text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-3);
}

.home-vehicles {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
}

.home-vehicles__label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-3);
}

.home-vehicles__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-vehicle {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 9px 18px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* --- Ablauf -------------------------------------------------------------- */

.home-steps__title { max-width: 20ch; }

.home-steps__grid {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: grid;
  gap: 32px;
}

@media (min-width: 720px) {
  .home-steps__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
  }
}

.home-step {
  border-top: 3px solid var(--ink);
  padding-top: 22px;
}

.home-step--accent { border-top-color: var(--blue); }

.home-step__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 8vw, 52px);
  line-height: 1;
  color: var(--line-2);
  margin-bottom: 12px;
}

.home-step--accent .home-step__num { color: #BBD8F5; }

.home-step__title {
  font-weight: 700;
  font-size: clamp(20px, 3vw, 24px);
  margin: 0 0 12px;
}

.home-step__text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-3);
}

/* --- Fälle aus der Praxis ------------------------------------------------ */

.home-cases__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}

.home-cases__title {
  max-width: 20ch;
  margin-bottom: 0;
}

.home-cases__nav,
.home-team__nav {
  display: flex;
  gap: 10px;
}

.home-cases__btn {
  width: 52px;
  height: 52px;
  border: 1px solid #33404F;
  background: transparent;
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}

.home-cases__btn:hover {
  border-color: var(--blue-light);
  color: var(--blue-light);
}

.home-cases__list {
  display: grid;
  gap: 24px;
}

.home-case {
  display: grid;
  border: 1px solid #222C38;
  border-radius: var(--radius);
  background: #12181F;
  overflow: hidden;
}

.home-case__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #182029;
}

.home-case__body {
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

@media (min-width: 720px) {
  .home-case__body { padding: 40px 36px; }
}

@media (min-width: 1024px) {
  .home-case {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    align-items: stretch;
  }

  .home-case__img {
    height: 100%;
    min-height: 520px;
    aspect-ratio: auto;
  }

  .home-case__body { padding: 48px 44px; }
}

.home-case__kind {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 14px;
}

.home-case__name {
  font-weight: 800;
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.15;
  margin-bottom: 8px;
}

.home-case__meta {
  font-size: 15px;
  color: var(--on-ink-3);
  margin-bottom: 20px;
}

.home-case__desc {
  font-size: clamp(16px, 2.2vw, 17px);
  line-height: 1.6;
  color: var(--on-ink-link);
  margin-bottom: 26px;
}

.home-case__figure {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 14px;
  border-top: 1px solid #222C38;
  padding-top: 24px;
  margin-bottom: 22px;
}

.home-case__amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 6vw, 42px);
  letter-spacing: -0.02em;
  color: #fff;
}

.home-case__amount-note {
  font-size: 14px;
  color: var(--on-ink-3);
  flex: 1 0 100%;
}

.home-case__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
}

.home-case__fact {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}

.home-case__fact-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5E6A78;
  line-height: 1.4;
}

.home-case__fact-value {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: #E6EDF4;
}

.home-cases__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
  margin-top: 22px;
}

.home-cases__dots {
  display: flex;
  gap: 2px;
}

.home-cases__dot {
  width: 44px;
  height: 44px;
  padding: 20px 6px;
  border: 0;
  background-color: #2C3844;
  background-clip: content-box;
  border-radius: 2px;
  cursor: pointer;
}

.home-cases__dot[aria-current="true"] { background-color: var(--blue-light); }

.home-cases__hint { color: #5E6A78; }

/* --- Über uns / Team ----------------------------------------------------- */

.home-badges {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

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

.home-badge {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
}

a.home-badge:hover { border-color: var(--blue); }

.home-badge__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
}

.home-badge__text {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-4);
}

.home-team { margin-top: 44px; }

.home-team__heading {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 18px;
}

.home-team__list {
  display: grid;
  gap: 16px;
}

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

/* Karussell-Modus: von home.js gesetzt, wenn nur eine Person sichtbar ist. */
.home-team__list--single {
  grid-template-columns: minmax(0, 1fr);
  max-width: 520px;
}

.home-team__person {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-3);
  padding: 22px 24px;
  min-width: 0;
}

.home-team__role {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 6px;
}

.home-team__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(20px, 3.4vw, 26px);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  overflow-wrap: anywhere;
}

.home-team__text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-3);
  overflow-wrap: anywhere;
}

.home-team__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 520px;
  margin-top: 14px;
}

.home-team__dots {
  display: flex;
  gap: 2px;
}

.home-team__dot {
  width: 44px;
  height: 44px;
  padding: 20px 9px;
  border: 0;
  background-color: var(--line);
  background-clip: content-box;
  border-radius: 2px;
  cursor: pointer;
}

.home-team__dot[aria-current="true"] { background-color: var(--blue); }

.home-team__btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  border-radius: var(--radius-sm);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}

.home-team__btn:hover {
  border-color: var(--blue);
  color: var(--blue);
}

/* --- FAQ ----------------------------------------------------------------- */

.home-faq__grid {
  display: grid;
  gap: 36px;
}

@media (min-width: 1024px) {
  .home-faq__grid {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 64px;
    align-items: start;
  }
}

.home-faq__note {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-3);
  margin-bottom: 20px;
}

.home-faq__tel {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  border-bottom: 2px solid var(--blue);
  padding: 8px 0 4px;
}

.home-faq__tel:hover { color: var(--blue); }

.home-faq__list {
  display: grid;
  border-top: 1px solid var(--line);
}

.home-faq__item { border-bottom: 1px solid var(--line); }

.home-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  min-height: 44px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(17px, 2.4vw, 19px);
  line-height: 1.35;
}

.home-faq__q::-webkit-details-marker { display: none; }

.home-faq__q:hover { color: var(--blue); }

.home-faq__plus {
  flex: none;
  color: var(--blue);
  font-size: 22px;
  line-height: 1;
  transition: transform 0.2s;
}

.home-faq__item[open] .home-faq__plus { transform: rotate(45deg); }

.home-faq__a {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-3);
  max-width: 62ch;
  padding-bottom: 22px;
}

/* --- Abschluss-CTA ------------------------------------------------------- */

.home-cta {
  background: var(--blue);
  color: #fff;
}

.home-cta__grid {
  display: grid;
  gap: 32px;
  padding-top: 56px;
  padding-bottom: 56px;
}

@media (min-width: 1024px) {
  .home-cta__grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 56px;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.home-cta__title {
  font-size: clamp(28px, 5.4vw, 46px);
  line-height: 1.08;
  max-width: 18ch;
  margin-bottom: 16px;
}

.home-cta__lead {
  font-size: clamp(16px, 2.4vw, 18px);
  line-height: 1.6;
  color: #D3E6FB;
  max-width: 50ch;
}

.home-cta__actions {
  display: grid;
  gap: 12px;
}

.home-cta__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(16px, 2.2vw, 18px);
  padding: 18px 22px;
  border-radius: var(--radius-sm);
  transition: background-color 0.15s, border-color 0.15s, color 0.15s;
}

.home-cta__link:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.home-cta__link--solid {
  background: #fff;
  border-color: #fff;
  color: var(--ink);
}

.home-cta__link--solid:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

/* --- Kontaktdaten über dem Footer ---------------------------------------- */

.home-contact {
  background: var(--ink);
  color: var(--on-ink-3);
  font-size: 15px;
}

.home-contact__grid {
  display: grid;
  gap: 32px;
  padding-top: 56px;
  padding-bottom: 40px;
}

@media (min-width: 720px) {
  .home-contact__grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 40px;
  }
}

.home-contact__title {
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  margin-bottom: 12px;
}

.home-contact__text {
  line-height: 1.6;
  max-width: 36ch;
}

.home-contact__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.home-contact__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 4px;
}

.home-contact__list a {
  display: inline-block;
  color: var(--on-ink-link);
  padding: 5px 0;
}

.home-contact__list a:hover { color: #fff; }

.home-contact__address {
  font-style: normal;
  line-height: 1.7;
}
