:root {
  --navy-900: #0a1c3b;
  --navy-800: #0d2c5b;
  --navy-600: #1e3a6f;
  --gold-500: #f5a623;
  --gold-600: #e09913;
  --gold-100: #fff6e4;
  --off-white: #f8f5f0;
  --ink-muted: #5c6b85;
  --white: #ffffff;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--navy-900);
  background: var(--white);
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.16;
}

p {
  margin: 0;
}

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

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section-tight {
  padding: 72px 0;
}

.narrow {
  max-width: 760px;
}

.kicker,
.eyebrow {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.23em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--navy-600);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  border-radius: 999px;
  padding: 14px 28px;
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  min-height: 44px;
  background: var(--navy-900);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(10, 28, 59, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

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

.btn-primary {
  background: var(--gold-500);
  color: var(--navy-900);
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.35);
}

.btn-primary:hover {
  background: var(--gold-600);
}

.btn-secondary {
  border: 2px solid var(--navy-900);
  color: var(--navy-900);
  background: transparent;
}

.btn-secondary:hover {
  background: var(--navy-900);
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid rgba(10, 28, 59, 0.08);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 24px rgba(10, 28, 59, 0.12);
}

.header-inner {
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}

.header-logo {
  display: inline-flex;
  align-items: center;
}

.header-logo img {
  display: block;
  width: auto;
  max-width: 170px;
  height: 40px;
  object-fit: contain;
}

.header-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  justify-self: end;
}

.main-nav {
  display: flex;
  justify-self: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--navy-900);
  font-weight: 600;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.main-nav a:hover {
  color: var(--navy-800);
}

.main-nav a.is-active {
  color: var(--gold-500);
  font-weight: 700;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Runder Kontakt-Link (📞) – kein tel:, Ziel kontakt.html */
.header-actions .header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  background: var(--gold-500);
  color: #ffffff;
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(245, 166, 35, 0.35);
  text-decoration: none;
  position: relative;
}

.header-actions .header-phone:hover {
  background: var(--gold-600);
  color: #ffffff;
}

.header-actions .header-phone .header-phone__icon {
  pointer-events: none;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(10, 28, 59, 0.2);
  border-radius: 10px;
  padding: 10px;
  cursor: pointer;
}

.menu-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy-900);
  margin: 4px 0;
}

.mobile-menu {
  position: fixed;
  top: 72px;
  right: 0;
  width: min(88vw, 360px);
  height: calc(100dvh - 72px);
  background: var(--white);
  border-left: 1px solid rgba(10, 28, 59, 0.1);
  box-shadow: -16px 0 28px rgba(10, 28, 59, 0.12);
  transform: translateX(100%);
  transition: transform 220ms ease;
  z-index: 999;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
}

.mobile-menu__nav a {
  color: var(--navy-900);
  font-weight: 600;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.mobile-cta {
  margin-top: 6px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(245, 166, 35, 0.6);
  outline-offset: 2px;
}

.hero-v2 {
  padding: 120px 0 96px;
  background: var(--white);
}

.hero-v2__stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
  padding: 0;
}

.hero-v2__content {
  max-width: 760px;
}

.hero-v2__logo {
  max-width: 420px;
  width: 80%;
  height: auto;
  margin: 0 auto;
}

.hero-v2__claim {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(22px, 3.2vw, 32px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.hero-claim-block {
  margin: 0 auto 40px;
}

.hero-italic-claim {
  font-size: clamp(36px, 4.4vw, 56px);
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.02em;
  color: #0a1c3b;
  line-height: 1.1;
  text-align: center;
  margin: 0 auto 0;
}

.hero-gold-divider {
  width: 60px;
  height: 2px;
  background: #f5a623;
  border: none;
  margin: 28px auto;
}

.hero-brand-of {
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  color: #475569;
  text-align: center;
  margin: 0 auto 40px;
}

.hero-pillars {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin: 0 auto 44px;
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 500;
  color: var(--ink, #0a1c3b);
  max-width: 800px;
}

.pillar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.pillar-sep {
  color: #f5a623;
  font-weight: 700;
  opacity: 0.7;
}

.hero-v2__cta-row {
  margin-top: 12px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 17px;
  font-weight: 700;
  border-radius: 999px;
  background: #f5a623;
  color: #0a1c3b;
  margin: 0 auto;
  box-shadow: 0 4px 18px rgba(245, 166, 35, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(245, 166, 35, 0.38);
}

.hero-v2__media {
  margin-top: 28px;
  max-width: 520px;
  width: 90%;
  display: block;
}

.hero-v2__media img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(10, 28, 59, 0.15);
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

.page-hero {
  padding: 76px 0 56px;
}

.page-hero__inner {
  max-width: 860px;
}

.page-hero h1 {
  margin-top: 12px;
  color: var(--navy-900);
  font-size: clamp(36px, 4.8vw, 62px);
}

.page-hero__lead {
  margin-top: 16px;
  max-width: 64ch;
  color: var(--ink-muted);
  font-size: 18px;
}

.page-hero__cta {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.content-section--alt {
  background: var(--off-white);
}

.process-steps {
  margin: 18px 0 0;
  padding-left: 22px;
  color: var(--ink-muted);
  line-height: 1.65;
}

.process-steps li + li {
  margin-top: 10px;
}

.process-steps strong {
  color: var(--navy-900);
}

.form-card {
  margin-top: 20px;
  display: grid;
  gap: 14px;
  background: #ffffff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(10, 28, 59, 0.08);
}

.form-card label {
  display: grid;
  gap: 6px;
  color: var(--navy-900);
  font-weight: 600;
  font-size: 14px;
}

.form-card input,
.form-card select,
.form-card textarea {
  min-height: 46px;
  border: 1px solid rgba(10, 28, 59, 0.22);
  border-radius: 12px;
  padding: 10px 12px;
  color: var(--navy-900);
  font-size: 15px;
  font-family: inherit;
}

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

.form-card .checkbox {
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
}

.form-card .checkbox input {
  min-height: auto;
  margin-top: 2px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 32px 0;
}

.faq-item {
  border: 1px solid rgba(10, 28, 59, 0.1);
  border-radius: 14px;
  padding: 20px 24px;
  background: #fff;
  transition: box-shadow 0.2s;
}

.faq-item[open] {
  box-shadow: 0 8px 24px rgba(10, 28, 59, 0.08);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--navy-900);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
}

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

.faq-item summary::after {
  content: "+";
  font-size: 24px;
  font-weight: 300;
  color: var(--gold-500);
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 12px 0 0;
  color: var(--ink-muted);
  line-height: 1.6;
}

.faq-cta {
  margin-top: 40px;
  text-align: center;
  padding: 32px;
  background: var(--off-white);
  border-radius: 20px;
}

.faq-cta p {
  margin: 0 0 16px;
  font-weight: 500;
}

.sg-hero {
  padding: 88px 0 72px;
  background: var(--navy-900);
  color: #ffffff;
}

.sg-hero__inner {
  max-width: 860px;
}

.sg-hero__eyebrow {
  margin: 0;
  color: rgba(232, 238, 247, 0.88);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.sg-hero h1 {
  margin-top: 12px;
  font-size: clamp(40px, 5vw, 72px);
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1.04;
}

.sg-hero p {
  margin-top: 16px;
  max-width: 64ch;
  color: rgba(232, 238, 247, 0.92);
  font-size: 18px;
}

.sg-hero .btn {
  margin-top: 26px;
}

.sg-services-section {
  padding: 28px 0 96px;
}

.sg-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.sg-service-card {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid rgba(10, 28, 59, 0.08);
  box-shadow: 0 10px 30px rgba(10, 28, 59, 0.07);
  padding: 24px;
}

.sg-service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: rgba(10, 28, 59, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sg-service-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--navy-900);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.sg-service-card h3 {
  margin-top: 14px;
  color: var(--navy-900);
  font-size: 24px;
}

.sg-service-card p {
  margin-top: 10px;
  color: var(--ink-muted);
  font-size: 16px;
  line-height: 1.55;
  max-width: 34ch;
}

.sg-row-cta {
  margin: 20px 0 30px;
  display: flex;
  justify-content: center;
  padding: 22px 20px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(30, 58, 111, 0.1) 0%, rgba(30, 58, 111, 0.04) 100%);
  border: 1px solid rgba(30, 58, 111, 0.12);
}

.about-hero {
  padding: 96px 0 72px;
}

.about-hero__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
}

.about-hero__media img {
  width: 100%;
  display: block;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 16px 34px rgba(10, 28, 59, 0.15);
}

.about-hero__copy h1 {
  margin: 0;
  font-size: clamp(36px, 4.6vw, 64px);
  color: var(--navy-900);
}

.about-page-eyebrow {
  margin: 0 0 8px;
  color: var(--navy-600);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.about-leistungen-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.about-leistungen-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--navy-900);
  font-size: 16px;
  line-height: 1.5;
}

.about-leistungen-list li::before {
  content: "✓";
  flex: 0 0 auto;
  color: var(--gold-500);
  font-weight: 800;
}

.about-hero__copy p {
  margin-top: 18px;
  color: var(--ink-muted);
  font-size: 19px;
  max-width: 56ch;
}

.about-mission {
  padding: 76px 0;
  background: #fafaf7;
}

.about-mission__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.about-mission__inner h2 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(34px, 4vw, 50px);
}

.about-mission__inner p {
  margin-top: 16px;
  color: var(--ink-muted);
  font-size: 18px;
}

.about-stats {
  padding: 84px 0;
}

.about-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.about-stat-card {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid rgba(10, 28, 59, 0.08);
  box-shadow: 0 10px 28px rgba(10, 28, 59, 0.08);
  padding: 22px;
}

.about-stat-card__value {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(32px, 3.2vw, 48px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.about-stat-card__label {
  margin: 8px 0 0;
  color: var(--ink-muted);
  font-size: 17px;
  font-weight: 600;
}

.about-team {
  padding: 14px 0 96px;
}

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

.about-person-card {
  background: #fafaf7;
  border-radius: 22px;
  padding: 20px;
}

.about-person-card img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 16px;
}

.about-person-card h3 {
  margin-top: 0;
  color: var(--navy-900);
  font-size: 26px;
}

.about-person-card__phone {
  display: inline-block;
  margin-top: 8px;
  color: var(--navy-700);
  font-weight: 700;
  text-decoration: none;
}

.about-person-card__phone:hover {
  color: var(--gold-500);
}

.about-person-card__role {
  margin-top: 6px;
  color: var(--navy-600);
  font-size: 15px;
  font-weight: 600;
}

.about-person-card p {
  margin-top: 8px;
  color: var(--ink-muted);
}

.about-team__cta {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.marquee-bar {
  background: var(--ink, #0a1c3b);
  color: #fff;
  padding: 18px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.marquee-viewport {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  padding-left: 36px;
  white-space: nowrap;
  will-change: transform;
  animation: marqueeScroll 38s linear infinite;
}

@keyframes marqueeScroll {
  0% {
    transform: translate3d(-50%, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

.marquee-item {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #fff;
  flex-shrink: 0;
}

.marquee-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f5a623;
  flex-shrink: 0;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.6);
  animation: dotPulse 2.4s ease-in-out infinite;
}

@keyframes dotPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.5);
  }
  50% {
    transform: scale(1.2);
    box-shadow: 0 0 0 6px rgba(245, 166, 35, 0);
  }
}

@media (hover: hover) {
  .marquee-bar:hover .marquee-track {
    animation-play-state: paused;
  }
}

.marquee-bar.is-light {
  background: var(--off-white, #f8f5f0);
  color: var(--ink, #0a1c3b);
  border-color: rgba(10, 28, 59, 0.08);
}

.marquee-bar.is-light .marquee-item {
  color: var(--ink, #0a1c3b);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 112px 0 104px;
  background:
    radial-gradient(1200px 420px at 75% -10%, rgba(245, 166, 35, 0.18), transparent 62%),
    radial-gradient(860px 320px at -5% 5%, rgba(13, 44, 91, 0.07), transparent 70%),
    linear-gradient(180deg, #ffffff 0%, #fcfaf6 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent 38px,
    rgba(10, 28, 59, 0.015) 39px
  );
  opacity: 0.25;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-inner h1 {
  margin-top: 10px;
  font-size: clamp(38px, 5.3vw, 72px);
}

.lead {
  margin-top: 16px;
  max-width: 62ch;
  color: var(--ink-muted);
}

.hero .btn {
  margin-top: 24px;
}

.content-section {
  padding: 90px 0;
}

.content-section h2 {
  margin-bottom: 22px;
  font-size: clamp(30px, 3.4vw, 50px);
}

.benefits-section {
  background: #fafaf7;
  padding: 96px 0;
}

.benefits-eyebrow {
  margin: 0;
  color: var(--navy-600);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.benefits-title {
  margin-top: 14px;
  max-width: 760px;
  font-size: clamp(34px, 4vw, 52px);
  color: var(--navy-900);
}

.benefits-intro {
  margin-top: 18px;
  max-width: 860px;
  color: var(--ink-muted);
  font-size: 18px;
}

.benefits-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.benefits-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(10, 28, 59, 0.08);
  padding: 26px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.benefits-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(10, 28, 59, 0.14);
}

.benefits-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-100);
}

.benefits-card__icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--gold-500);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.benefits-card h3 {
  margin-top: 16px;
  font-size: 23px;
  color: var(--navy-900);
}

.benefits-card p {
  margin-top: 10px;
  color: var(--ink-muted);
  margin-bottom: 0;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(10, 28, 59, 0.08);
  padding: 28px;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 22px;
  color: var(--navy-900);
}

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

.steps-flow-section {
  padding: 96px 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
}

.steps-flow-eyebrow {
  margin: 0;
  color: var(--navy-600);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.steps-flow-title {
  margin-top: 14px;
  max-width: 760px;
  color: var(--navy-900);
  font-size: clamp(32px, 4vw, 50px);
}

.steps-flow-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.steps-flow-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 10px;
}

.steps-flow-item::after {
  display: none;
  content: "";
  position: absolute;
  top: 30px;
  left: calc(50% + 34px);
  width: calc(100% - 8px);
  border-top: 2px dashed rgba(10, 28, 59, 0.28);
}

.steps-flow-item:last-child::after {
  display: none;
}

.steps-flow-number {
  width: 60px;
  height: 60px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-900);
  color: var(--white);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.steps-flow-item h3 {
  margin-top: 16px;
  color: var(--navy-900);
  font-size: 22px;
  font-weight: 800;
}

.steps-flow-item p {
  margin-top: 10px;
  color: var(--ink-muted);
  font-size: 16px;
  max-width: 28ch;
}

.steps-flow-cta {
  margin-top: 38px;
  display: flex;
  justify-content: center;
}

.regional-section {
  padding: 96px 0;
  background: var(--white);
}

.regional-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(26px, 4vw, 54px);
  align-items: center;
}

.regional-media {
  position: relative;
}

.regional-media img {
  width: 100%;
  display: block;
  border-radius: 24px;
  box-shadow: 0 16px 36px rgba(10, 28, 59, 0.14);
  object-fit: cover;
}

.regional-badge {
  position: absolute;
  left: 22px;
  bottom: 20px;
  background: var(--white);
  color: var(--navy-900);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(10, 28, 59, 0.2);
}

.regional-eyebrow {
  margin: 0;
  color: var(--navy-600);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.regional-copy h2 {
  margin-top: 14px;
  color: var(--navy-900);
  font-size: clamp(32px, 4vw, 50px);
  max-width: 18ch;
}

.regional-text {
  margin-top: 16px;
  color: var(--ink-muted);
  max-width: 54ch;
  font-size: 18px;
}

.regional-facts {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.regional-facts li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy-900);
  font-weight: 500;
}

.regional-facts__icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-100);
  flex: 0 0 36px;
}

.regional-facts__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold-500);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.regional-btn {
  margin-top: 26px;
}

.trustproof-section {
  padding: 96px 0;
  background: var(--off-white);
}

.trustproof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.trustproof-item {
  background: linear-gradient(180deg, rgba(245, 166, 35, 0.18) 0%, rgba(245, 166, 35, 0.08) 100%);
  border: 1px solid rgba(245, 166, 35, 0.35);
  border-radius: 18px;
  padding: 20px 18px;
  display: grid;
  gap: 8px;
}

.trustproof-star {
  color: var(--gold-500);
  font-size: 20px;
  line-height: 1;
}

.trustproof-item h3 {
  margin: 0;
  color: var(--navy-900);
  font-size: 20px;
}

.testimonials-block {
  margin-top: 30px;
}

.google-reviews-card {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid rgba(10, 28, 59, 0.1);
  box-shadow: var(--shadow-soft);
  padding: 26px;
}

.google-reviews-eyebrow {
  margin: 0 0 8px;
  color: var(--ink-muted);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.google-reviews-card h3 {
  margin: 0;
  color: var(--navy-900);
}

.google-reviews-card p {
  margin-top: 12px;
  color: var(--ink-muted);
  line-height: 1.6;
}

.google-reviews-widget-wrap {
  margin-top: 16px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(10, 28, 59, 0.12);
  background: #fff;
}

.google-reviews-widget {
  display: block;
  width: 100%;
  min-height: 380px;
}

.google-reviews-hint {
  margin: 0;
  padding: 10px 14px;
  border-top: 1px solid rgba(10, 28, 59, 0.12);
  color: var(--ink-muted);
  font-size: 13px;
}

.google-reviews-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.testimonials-todo {
  margin: 0 0 10px;
  color: var(--ink-muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.testimonials-snap {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 1fr);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 4px;
}

.testimonial-card {
  scroll-snap-align: start;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 10px 26px rgba(10, 28, 59, 0.1);
  padding: 22px;
  min-height: 230px;
  display: flex;
  flex-direction: column;
}

.testimonial-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.testimonial-name {
  margin: 0;
  color: var(--navy-900);
  font-weight: 700;
}

.testimonial-loc {
  margin: 2px 0 0;
  color: var(--ink-muted);
  font-size: 14px;
}

.testimonial-rating {
  margin: 0;
  color: var(--gold-500);
  letter-spacing: 0.1em;
}

.testimonial-quote {
  margin-top: 14px;
  color: var(--ink-muted);
  line-height: 1.6;
  flex-grow: 1;
}

.testimonial-saving {
  margin-top: 16px;
  color: var(--navy-900);
  font-weight: 700;
}

.leadform-section {
  padding: 96px 0;
  background: var(--white);
  color: var(--navy-900);
}

.leadform-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(28px, 4vw, 54px);
  align-items: start;
}

.leadform-eyebrow {
  margin: 0;
  color: var(--navy-600);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.leadform-copy h2 {
  margin-top: 14px;
  color: var(--navy-900);
  font-size: clamp(38px, 4.6vw, 56px);
  line-height: 1.08;
  max-width: 14ch;
}

.leadform-teaser {
  margin-top: 16px;
  max-width: 48ch;
  color: var(--ink-muted);
  font-size: 19px;
}

.leadform-trust {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.leadform-trust li {
  color: var(--navy-900);
  font-size: 18px;
  font-weight: 500;
}

.leadform-card {
  background: var(--white);
  color: var(--navy-900);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(10, 28, 59, 0.08);
  box-shadow: 0 10px 30px rgba(10, 28, 59, 0.08);
}

.leadform-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.leadform-switch__btn {
  border: 1px solid rgba(10, 28, 59, 0.2);
  background: #f8f9fc;
  color: var(--navy-900);
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 600;
  cursor: pointer;
}

.leadform-switch__btn.is-active {
  border-color: rgba(245, 166, 35, 0.65);
  background: rgba(245, 166, 35, 0.15);
}

.leadform-switch-note {
  margin: 10px 0 0;
  color: var(--ink-muted);
  font-size: 13px;
}

.leadform-form {
  margin-top: 20px;
  display: grid;
  gap: 14px;
}

.leadform-form[hidden] {
  display: none !important;
}

.form-field {
  display: grid;
  gap: 6px;
}

.form-field label {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-900);
}

.form-field input {
  min-height: 46px;
  border: 1px solid rgba(10, 28, 59, 0.22);
  border-radius: 12px;
  padding: 10px 12px;
  color: var(--navy-900);
  font-size: 15px;
}

.form-field input[type="file"] {
  padding: 10px;
  min-height: auto;
  background: #fff;
}

.form-field input[aria-invalid="true"] {
  border-color: #c62828;
}

.form-checkbox {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
}

.form-checkbox input {
  min-height: auto;
  margin-top: 2px;
}

.form-checkbox label {
  font-size: 14px;
  line-height: 1.45;
}

.form-hint {
  margin: 0;
  font-size: 12px;
  color: var(--ink-muted);
}

.form-error {
  min-height: 16px;
  margin: 0;
  color: #c62828;
  font-size: 12px;
  line-height: 1.3;
}

.form-global-error {
  min-height: 18px;
  margin: 0;
  color: #c62828;
  font-size: 13px;
  font-weight: 500;
}

.form-submit {
  width: 100%;
  margin-top: 2px;
}

.leadform-success {
  margin-top: 20px;
  padding: 22px;
  border-radius: 16px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.35);
}

.leadform-success h3 {
  margin: 0;
  font-size: 28px;
  color: var(--navy-900);
}

.leadform-success p {
  margin-top: 10px;
  color: var(--navy-900);
}

.leadform-success__trust {
  font-weight: 600;
}

.contact-section {
  padding: 96px 0;
  background: var(--navy-900);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.contact-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 56px);
  color: var(--white);
  line-height: 1.08;
}

.contact-name {
  margin-top: 22px;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 700;
  color: var(--white);
}

.contact-link {
  display: block;
  margin-top: 12px;
  color: var(--white);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 600;
}

.contact-actions {
  margin-top: 24px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.contact-secondary {
  border-color: rgba(255, 255, 255, 0.9);
  color: var(--white);
}

.contact-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.contact-photo-wrap {
  display: flex;
  justify-content: center;
}

.contact-photo {
  width: min(360px, 100%);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 20px 44px rgba(2, 8, 23, 0.35);
}

.site-footer {
  padding: 48px 0 32px;
  background: linear-gradient(180deg, #2a4a7a 0%, #1e3a6f 100%);
  color: #e8eef7;
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
}

.footer-blocks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 36px;
  text-align: center;
}

.footer-block__title {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 700;
  color: #e8eef7;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-block__text {
  margin: 0;
  color: #e8eef7;
  line-height: 1.75;
  font-size: 15px;
}

.footer-nav-line {
  margin: 0;
  line-height: 1.75;
  font-size: 15px;
  color: #e8eef7;
}

.footer-nav-line a {
  color: var(--gold-500);
  font-weight: 600;
}

.footer-nav-line a:hover {
  color: var(--gold-600);
}

.footer-inline-btn {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  font-weight: 600;
  color: var(--gold-500);
  cursor: pointer;
  text-decoration: none;
}

.footer-inline-btn:hover {
  color: var(--gold-600);
}

.floating-cta-stack {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.floating-cta-save {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--gold-500);
  color: var(--navy-900);
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 12px 28px rgba(10, 28, 59, 0.24);
}

.floating-cta-save::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  animation: savePulseRing 2.2s infinite;
  pointer-events: none;
}

@keyframes savePulseRing {
  0% {
    transform: scale(0.96);
    opacity: 0.85;
  }
  70% {
    transform: scale(1.14);
    opacity: 0;
  }
  100% {
    transform: scale(1.14);
    opacity: 0;
  }
}

.floating-cta-wa {
  width: 52px;
  height: 52px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.floating-cta-wa svg {
  width: 28px;
  height: 28px;
  display: block;
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #e8eef7;
  font-size: 14px;
  text-align: center;
  opacity: 0.8;
}

@media (max-width: 980px) {
  .about-hero__grid {
    grid-template-columns: 1fr;
  }

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

  .about-team__grid {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

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

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

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

  .footer-blocks {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 1180px) {
  .header-inner {
    gap: 16px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(1180px, calc(100% - 28px));
  }

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

  .hero-v2__media {
    width: 100%;
    max-width: 420px;
  }

  .hero-v2 {
    padding: 72px 0 56px;
  }

  .hero-v2__stack {
    gap: 20px;
  }

  .hero-pillars {
    gap: 10px 14px;
    font-size: 14px;
  }

  .pillar-sep {
    display: none;
  }

  .about-stats__grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .testimonials-snap {
    grid-auto-columns: 100%;
  }

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

  .steps-flow-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .steps-flow-item {
    padding: 0;
    align-items: flex-start;
    text-align: left;
  }

  .steps-flow-item::after {
    top: calc(100% + 14px);
    left: 29px;
    width: 0;
    height: 18px;
    border-top: none;
    border-left: 2px dashed rgba(10, 28, 59, 0.28);
  }

  .steps-flow-item h3 {
    margin-top: 14px;
  }

  .leadform-card {
    padding: 24px;
  }

  .leadform-switch {
    grid-template-columns: 1fr;
  }

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

  .form-card {
    padding: 24px;
  }

  .floating-cta-save {
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .floating-cta-save.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-cta,
  .hero-cta:hover {
    transition: none;
    transform: none;
  }
}

@media (max-width: 480px) {
  .floating-cta-stack {
    right: 14px;
    bottom: 14px;
  }

  .btn {
    width: 100%;
  }

  .hero-v2__cta-row .btn,
  .contact-actions .btn,
  .sg-row-cta .btn,
  .about-team__cta .btn {
    width: auto;
  }
}

@media (min-width: 981px) {
  .steps-flow-item::after {
    display: block;
  }
}

@media (max-width: 899px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
    justify-content: stretch;
  }

  .main-nav {
    display: none;
  }

  .header-tools {
    justify-self: end;
    gap: 8px;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

@media (min-width: 960px) {
  .testimonials-snap {
    grid-auto-columns: calc((100% - 32px) / 3);
  }
}

@media (max-width: 980px) {
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.kontakt-page {
  background: var(--off-white);
}

.kontakt-page .contact-form-section {
  padding: 96px 0;
  background: var(--off-white);
}

.kontakt-page .contact-form-wrap {
  max-width: 840px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(10, 28, 59, 0.08);
  padding: 40px;
}

.kontakt-page .contact-form-wrap h1 {
  color: var(--navy-900);
  font-size: clamp(34px, 4vw, 54px);
}

.kontakt-page .contact-form-intro {
  margin-top: 12px;
  color: var(--ink-muted);
}

.kontakt-page .kontakt-form {
  margin-top: 24px;
  display: grid;
  gap: 14px;
}

.kontakt-page .kontakt-form textarea {
  min-height: 140px;
  border: 1px solid rgba(10, 28, 59, 0.22);
  border-radius: 12px;
  padding: 12px;
  color: var(--navy-900);
  font-size: 15px;
  font-family: inherit;
  resize: vertical;
}

@media (max-width: 760px) {
  .kontakt-page .contact-form-section {
    padding: 56px 0;
  }

  .kontakt-page .contact-form-wrap {
    padding: 24px;
  }
}

/* Klaro Cookie Banner Overrides */
.klaro .cookie-notice:not(.cookie-modal-notice) {
  left: 24px !important;
  right: auto !important;
  bottom: 24px !important;
  max-width: 440px !important;
  min-width: min(92vw, 320px);
  background: #fff !important;
  color: var(--navy-900) !important;
  border: 1px solid rgba(10, 28, 59, 0.1) !important;
  border-radius: 16px !important;
  box-shadow: 0 20px 42px rgba(2, 8, 23, 0.26) !important;
  z-index: 1200 !important;
}

.klaro .cookie-notice .cn-body {
  padding: 18px 18px 16px !important;
}

.klaro .cookie-notice .cn-title {
  color: var(--navy-900) !important;
  font-size: 20px !important;
}

.klaro .cookie-notice .cn-text,
.klaro .cookie-notice .cn-learn-more {
  color: var(--ink-muted) !important;
}

.klaro .cookie-notice .cn-learn-more {
  text-decoration: underline;
}

.klaro .cookie-notice .cn-buttons {
  display: flex !important;
  flex-wrap: wrap;
  gap: 8px !important;
}

.klaro .cookie-notice .cm-btn {
  margin: 0 !important;
  border-radius: 999px !important;
  border: 1px solid rgba(10, 28, 59, 0.18) !important;
  padding: 10px 14px !important;
  font-weight: 600 !important;
}

.klaro .cookie-notice .cm-btn.cm-btn-success,
.klaro .cookie-notice .cm-btn.cm-btn-accept-all {
  background: var(--gold-500) !important;
  color: var(--navy-900) !important;
  border-color: var(--gold-500) !important;
}

.klaro .cookie-notice .cm-btn.cm-btn-danger,
.klaro .cookie-notice .cm-btn.cm-btn-decline {
  background: #fff !important;
  color: var(--navy-900) !important;
}

.klaro .cookie-modal .cm-modal {
  border-radius: 16px !important;
  border: 1px solid rgba(10, 28, 59, 0.12) !important;
}

.klaro .cookie-modal .cm-list-label .slider {
  background-color: rgba(10, 28, 59, 0.25) !important;
}

.klaro .cookie-modal .cm-list-input:checked + .slider {
  background-color: var(--gold-500) !important;
}

@media (max-width: 760px) {
  .klaro .cookie-notice:not(.cookie-modal-notice) {
    left: 14px !important;
    right: 14px !important;
    max-width: none !important;
    min-width: 0 !important;
    bottom: 14px !important;
  }
}

/* Städte-System */
.breadcrumbs {
  padding: 16px 0;
  font-size: 14px;
  color: var(--ink-muted);
}

.breadcrumbs a {
  color: var(--navy-600);
}

.breadcrumbs a:hover {
  color: var(--gold-500);
}

.stadt-fakten {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.stadt-fakten > div {
  background: #fff;
  border: 1px solid rgba(10, 28, 59, 0.1);
  border-radius: 14px;
  padding: 16px 20px;
}

.stadt-fakten .label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 4px;
}

.stadt-fakten .wert {
  display: block;
  font-weight: 700;
  color: var(--navy-900);
}

@media (max-width: 760px) {
  .stadt-fakten {
    grid-template-columns: 1fr 1fr;
  }
}

.nachbar-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.nachbar-links li a {
  display: inline-block;
  padding: 10px 18px;
  background: #fff;
  border: 1px solid rgba(10, 28, 59, 0.12);
  border-radius: 999px;
  color: var(--navy-900);
  font-weight: 500;
}

.nachbar-links li a:hover {
  border-color: var(--gold-500);
  color: var(--gold-500);
}

.cta-band {
  background: var(--off-white);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

@media (max-width: 980px) {
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

.staedte-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 980px) {
  .staedte-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

.stadt-card {
  background: #ffffff;
  border: 1px solid rgba(10, 28, 59, 0.08);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(10, 28, 59, 0.07);
  padding: 22px;
  display: block;
}

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

.stadt-card h3 {
  color: var(--navy-900);
  font-size: 22px;
}

.stadt-card__meta {
  margin-top: 10px;
  color: var(--ink-muted);
  font-size: 14px;
}

.stadt-card__link {
  margin-top: 12px;
  color: var(--gold-500);
  font-weight: 700;
}

.reviews-widget {
  padding: 96px 0;
  background: linear-gradient(180deg, #f8f5f0 0%, #ffffff 100%);
}

.rw-header {
  text-align: center;
  margin-bottom: 48px;
}

.rw-header h2 {
  margin: 8px 0 20px;
}

.rw-summary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: 0 4px 18px rgba(10, 28, 59, 0.06);
  border: 1px solid rgba(10, 28, 59, 0.06);
}

.rw-google-logo {
  flex-shrink: 0;
}

.rw-summary-text {
  text-align: left;
}

.rw-stars-big {
  color: #f5a623;
  font-size: 20px;
  letter-spacing: 3px;
  line-height: 1;
}

.rw-summary-line {
  font-size: 14px;
  color: var(--ink, #0a1c3b);
  margin-top: 2px;
}

.rw-summary-line strong {
  font-size: 16px;
  font-weight: 700;
}

.rw-count {
  color: #6b7280;
}

.rw-carousel {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 56px;
}

.rw-track-wrap {
  overflow: hidden;
  border-radius: 20px;
}

.rw-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}

.rw-card {
  flex: 0 0 calc((100% - 40px) / 3);
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(10, 28, 59, 0.08);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 220px;
  opacity: 0;
  transform: translateY(10px);
  animation: rwFadeIn 0.8s ease forwards;
}

.rw-card:nth-child(1) {
  animation-delay: 0.05s;
}

.rw-card:nth-child(2) {
  animation-delay: 0.15s;
}

.rw-card:nth-child(3) {
  animation-delay: 0.25s;
}

.rw-card:nth-child(n + 4) {
  animation-delay: 0.35s;
}

@keyframes rwFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.rw-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rw-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0a1c3b 0%, #1e3a6f 100%);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.rw-author-block {
  flex: 1;
  min-width: 0;
}

.rw-author {
  font-weight: 600;
  color: var(--ink, #0a1c3b);
  font-size: 15px;
}

.rw-date {
  font-size: 12px;
  color: #6b7280;
  margin-top: 2px;
}

.rw-stars {
  color: #f5a623;
  letter-spacing: 1px;
  font-size: 15px;
  flex-shrink: 0;
}

.rw-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink, #0a1c3b);
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rw-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(10, 28, 59, 0.1);
  color: var(--ink, #0a1c3b);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 14px rgba(10, 28, 59, 0.08);
  transition:
    transform 0.2s ease,
    background 0.2s ease;
  z-index: 2;
}

.rw-arrow:hover {
  background: var(--ink, #0a1c3b);
  color: #fff;
  transform: translateY(-50%) scale(1.08);
}

.rw-arrow-prev {
  left: 0;
}

.rw-arrow-next {
  right: 0;
}

.rw-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.rw-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(10, 28, 59, 0.2);
  cursor: pointer;
  padding: 0;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.rw-dot.is-active {
  background: #f5a623;
  transform: scale(1.25);
}

.rw-dot:hover {
  background: rgba(10, 28, 59, 0.4);
}

.rw-footer {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.btn-outline {
  background: transparent;
  color: var(--ink, #0a1c3b);
  border: 2px solid var(--ink, #0a1c3b);
}

.btn-outline:hover {
  background: var(--ink, #0a1c3b);
  color: #fff;
}

@media (max-width: 980px) {
  .rw-card {
    flex: 0 0 calc((100% - 20px) / 2);
  }
}

@media (max-width: 700px) {
  .reviews-widget {
    padding: 64px 0;
  }

  .rw-carousel {
    padding: 0 16px;
  }

  .rw-card {
    flex: 0 0 100%;
    min-height: 200px;
  }

  .rw-arrow {
    display: none;
  }

  .rw-footer .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rw-track {
    transition: none;
  }

  .rw-card {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 760px) {
  .marquee-track {
    animation-duration: 28s;
    gap: 28px;
  }

  .marquee-item {
    font-size: 14px;
  }

  .marquee-bar {
    padding: 14px 0;
  }

  .marquee-viewport {
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
    transform: translate3d(0, 0, 0);
    justify-content: center;
    flex-wrap: wrap;
    padding: 4px 16px;
  }

  .marquee-dot {
    animation: none;
  }
}

h1,
h2,
h3 {
  color: #003366 !important;
}

/* Dunkle Bereiche behalten weiße/orange Überschriften */
.sg-hero h1,
.sg-hero h2,
.sg-hero h3,
.contact-section h1,
.contact-section h2,
.contact-section h3,
.site-footer h1,
.site-footer h2,
.site-footer h3 {
  color: #ffffff !important;
}

/* Hauptnavigation: Spartarif-Check CTA */
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--gold-500);
  color: var(--navy-900) !important;
  border: 2px solid transparent;
  box-shadow: 0 4px 14px rgba(245, 166, 35, 0.28);
  transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.nav-cta:hover {
  background: var(--gold-600);
}

.nav-cta.is-active {
  box-shadow: 0 0 0 2px rgba(10, 28, 59, 0.12);
}

.nav-cta-big {
  padding: 10px 16px;
  font-size: 12px;
  letter-spacing: 0.12em;
}

@media (max-width: 899px) {
  .main-nav .nav-cta {
    display: none;
  }

  .mobile-menu__nav .nav-cta {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
  }
}

/* Shared Utility */
.page-breadcrumb {
  font-size: 13px;
  color: #6b7280;
  margin: 24px 0 0;
}

.page-breadcrumb a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Spartarif-Check Landing */
.stc-hero {
  padding: 72px 0 88px;
  background: #fff;
}

.stc-hero h1 {
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 14px 0 20px;
  max-width: 22ch;
}

.stc-hero .lead {
  font-size: 18px;
  line-height: 1.6;
  max-width: 60ch;
  color: #334155;
  margin: 0 0 32px;
}

.stc-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.stc-hero-trust {
  font-size: 13px;
  color: #6b7280;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.stc-steps {
  padding: 96px 0;
  background: #f8f5f0;
}

.stc-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 32px;
}

.stc-step-num {
  font-size: 56px;
  font-weight: 300;
  color: #9aa7bd;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 16px;
}

.stc-step-title {
  font-size: 20px;
  font-weight: 600;
  color: #0a1c3b;
  margin-bottom: 8px;
}

.stc-step-text {
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
  max-width: 34ch;
}

.stc-deliver {
  padding: 96px 0;
}

.stc-deliver-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 24px;
}

.stc-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.stc-checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 16px;
  line-height: 1.5;
  color: #0a1c3b;
}

.stc-checklist li::before {
  content: "";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #f5a623;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
  margin-top: 2px;
}

/* Fallbeispiele Spartarif-Check: helle Sektion, nur .stc-cases (Markup: benefits-section + benefits-grid + benefits-card.stc-case) */
.stc-cases {
  --case-bg: #f8f5f0;
  --case-card-bg: #ffffff;
  --case-text-dark: #0a1c3b;
  --case-success: #16a34a;
  --case-muted: #475569;
}

.stc-cases.benefits-section {
  background: var(--case-bg, #f8f5f0);
  color: var(--case-text-dark, #0a1c3b);
}

.stc-cases .benefits-eyebrow {
  color: #f5a623;
}

.stc-cases h2,
.stc-cases .benefits-title {
  color: var(--case-text-dark, #0a1c3b) !important;
}

.stc-cases .benefits-intro {
  color: var(--case-muted, #475569);
  max-width: 52ch;
  margin-bottom: 40px;
}

.stc-cases .stc-cases-grid,
.stc-cases .benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.stc-cases .benefits-card.stc-case {
  text-align: left;
  background: var(--case-card-bg, #ffffff);
  border: 1px solid rgba(10, 28, 59, 0.08);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 2px 10px rgba(10, 28, 59, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stc-cases .benefits-card.stc-case:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(10, 28, 59, 0.08);
}

.stc-cases .stc-case-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #0a1c3b;
  background: rgba(245, 166, 35, 0.18);
  border: 1px solid rgba(245, 166, 35, 0.45);
  padding: 4px 10px;
  border-radius: 999px;
  margin: 0 0 16px;
  font-weight: 700;
}

.stc-cases .stc-case-city {
  font-size: 15px;
  color: var(--case-text-dark, #0a1c3b);
  font-weight: 700;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
  text-transform: none;
}

.stc-cases .stc-case-situation {
  font-size: 15px;
  color: var(--case-text-dark, #0a1c3b);
  margin: 0 0 20px;
  line-height: 1.55;
  font-weight: 500;
}

.stc-cases .stc-case-result {
  font-size: 26px;
  font-weight: 800;
  color: var(--case-success, #16a34a);
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}

.stc-cases .stc-case-quote {
  font-size: 14px;
  font-style: italic;
  color: var(--case-muted, #475569);
  border-left: 2px solid rgba(245, 166, 35, 0.5);
  padding-left: 14px;
  line-height: 1.5;
  margin: 0;
}

.stc-lead {
  padding: 96px 0;
  background: #fff;
}

.stc-lead-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.stc-lead-card {
  border: 1px solid rgba(10, 28, 59, 0.1);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stc-lead-card.is-featured {
  border-color: #f5a623;
  box-shadow: 0 4px 18px rgba(245, 166, 35, 0.12);
  position: relative;
}

.stc-lead-card.is-featured::before {
  content: "EMPFOHLEN";
  position: absolute;
  top: -10px;
  left: 24px;
  background: #f5a623;
  color: #0a1c3b;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 4px 10px;
  border-radius: 4px;
}

.stc-lead-title {
  font-size: 17px;
  font-weight: 600;
  color: #0a1c3b;
}

.stc-lead-desc {
  font-size: 14px;
  color: #475569;
  line-height: 1.55;
}

.stc-lead-form {
  display: grid;
  gap: 12px;
}

.stc-lead-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #475569;
  margin-bottom: 4px;
}

.stc-lead-form input,
.stc-lead-form select,
.stc-lead-form textarea {
  border: 1px solid rgba(10, 28, 59, 0.15);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  width: 100%;
  transition: border-color 0.2s ease;
}

.stc-lead-form input:focus,
.stc-lead-form select:focus,
.stc-lead-form textarea:focus {
  outline: none;
  border-color: #f5a623;
}

.stc-lead-checkbox {
  font-size: 13px;
  color: #475569;
  line-height: 1.5;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.stc-lead-checkbox input {
  margin-top: 3px;
  flex-shrink: 0;
}

.stc-lead-micro-trust {
  margin-top: 28px;
  font-size: 13px;
  color: #6b7280;
  text-align: center;
  max-width: 64ch;
  margin-left: auto;
  margin-right: auto;
}

.stc-faq {
  padding: 96px 0;
  background: #f8f5f0;
}

.stc-faq-list {
  max-width: 780px;
  margin: 32px auto 0;
}

.stc-faq-item {
  border-bottom: 1px solid rgba(10, 28, 59, 0.1);
  padding: 20px 0;
}

.stc-faq-item summary {
  list-style: none;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  color: #0a1c3b;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.stc-faq-item summary::after {
  content: "+";
  font-size: 24px;
  font-weight: 300;
  color: #f5a623;
  transition: transform 0.2s ease;
}

.stc-faq-item[open] summary::after {
  content: "−";
}

.stc-faq-answer {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.65;
  color: #475569;
  max-width: 68ch;
}

.stc-final-cta {
  padding: 72px 0;
  background: linear-gradient(135deg, #0a1c3b 0%, #1e3a6f 100%);
  color: #fff;
  text-align: center;
}

.stc-final-cta h2 {
  color: #fff !important;
  margin-bottom: 12px;
}

.stc-final-cta p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 28px;
}

.stc-final-cta .stc-hero-ctas {
  justify-content: center;
}

.stc-final-cta .btn-outline-light {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}

.stc-final-cta .btn-outline-light:hover {
  background: #fff;
  color: #0a1c3b;
}

.stc-hero h1,
.stc-steps h2,
.stc-steps h3,
.stc-deliver h2,
.stc-lead h2,
.stc-faq h2 {
  color: #0a1c3b !important;
}

@media (max-width: 900px) {
  .stc-steps-grid,
  .stc-deliver-grid,
  .stc-cases-grid,
  .stc-cases .benefits-grid,
  .stc-cases .stc-cases-grid,
  .stc-lead-options {
    grid-template-columns: 1fr;
  }

  .stc-hero {
    padding: 56px 0 64px;
  }

  .stc-steps,
  .stc-deliver,
  .stc-cases,
  .stc-lead,
  .stc-faq {
    padding: 64px 0;
  }
}

@media (max-width: 700px) {
  .stc-faq-item summary::after {
    margin-left: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .stc-faq-item summary::after {
    transition: none;
  }
}
