:root {
  --font-logo: "Rajdhani", sans-serif;
  --font-hero: "Bebas Neue", sans-serif;
  --font-heading: "Oswald", sans-serif;
  --font-text: "Roboto Condensed", sans-serif;

  --color-dark: #071016;
  --color-cyan: #00bff3;
  --color-white: #ffffff;

  --cw-cyan: var(--color-cyan);
  --cw-cyan-dark: #0095cc;
  --cw-dark: var(--color-dark);
  --cw-dark-2: #101826;
  --cw-charcoal: #101826;
  --cw-header: #000000;
  --cw-white: var(--color-white);
  --cw-off: #f4f6f8;
  --cw-text: #161616;
  --cw-muted: #5c6570;
  --cw-muted-light: #c5cdd6;
  --cw-line: rgba(0, 191, 243, 0.45);
  --cw-max: 1180px;
  --cw-header-h: 90px;
}

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

html {
  scroll-behavior: smooth;
}

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

body.page-coatingwerk,
body.page-coatingwerk p {
  font-family: var(--font-text);
  font-weight: 400;
}

body.page-coatingwerk {
  color: var(--cw-text);
  background: var(--cw-white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.page-coatingwerk h2,
body.page-coatingwerk h3,
.section-title,
.cw-title,
.cw-step h3,
.cw-why__item h3,
.cw-cta h2,
.cw-footer h3,
.cw-page h1,
.cw-aside h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

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

a {
  color: inherit;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--cw-cyan);
  color: #fff;
  padding: 10px 16px;
  z-index: 200;
}

.skip:focus {
  left: 12px;
  top: 12px;
}

.cw-container {
  width: min(var(--cw-max), calc(100% - 40px));
  margin-inline: auto;
}

.cw-container--wide {
  width: min(1280px, calc(100% - 32px));
}

/* ——— Header ——— */
.cw-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: var(--cw-header);
  height: var(--cw-header-h);
  border-bottom: 1px solid var(--cw-cyan);
}

.cw-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cw-logo,
.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 3px;
  text-decoration: none;
  line-height: 1;
  color: var(--color-white);
  flex-shrink: 0;
}

.cw-logo__word {
  font-family: var(--font-logo);
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.cw-logo__word span {
  color: var(--cw-cyan);
}

.cw-logo__domain {
  font-family: var(--font-text);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.35px;
  text-transform: none;
  color: rgba(255, 255, 255, 0.72);
}

.cw-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 22px;
}

.cw-nav a,
nav a {
  text-decoration: none;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.cw-nav a:hover {
  color: var(--cw-cyan);
}

.cw-nav a[aria-current="page"] {
  color: var(--cw-cyan);
  border-bottom-color: var(--cw-cyan);
}

.cw-menu-toggle {
  display: none;
  width: 44px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.cw-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
}

/* ——— Buttons ——— */
.cw-btn,
.button,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  padding: 14px 24px;
  border-radius: 0;
  border: 2px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.cw-btn--primary {
  background: var(--cw-cyan);
  color: #000;
  border-color: var(--cw-cyan);
}

.cw-btn--primary:hover {
  background: #33c8f5;
  border-color: #33c8f5;
  color: #000;
}

.cw-btn--ghost {
  background: transparent;
  color: #fff;
  border-color: var(--cw-cyan);
}

.cw-btn--ghost:hover {
  background: rgba(0, 191, 243, 0.12);
  color: #fff;
}

.cw-btn--ghost svg {
  color: var(--cw-cyan);
}

.cw-btn svg {
  flex-shrink: 0;
}

.cw-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ——— Hero ——— */
.cw-hero {
  position: relative;
  height: 560px;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: #0b0b0b center / cover no-repeat;
  color: #fff;
  text-align: left;
}

.cw-hero__img,
.cw-cta__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.cw-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.22) 42%, rgba(0, 0, 0, 0.06) 78%, rgba(0, 0, 0, 0.16) 100%);
}

.cw-hero > .cw-container {
  position: relative;
  z-index: 2;
  z-index: 1;
}

.cw-hero__inner {
  position: relative;
  z-index: 1;
  padding: 8px 0 12px;
  max-width: 760px;
}

.cw-eyebrow,
.eyebrow {
  margin: 0 0 18px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-cyan);
}

.cw-hero h1,
.hero-title {
  margin: 0 0 34px;
  font-family: var(--font-hero);
  font-size: clamp(44px, 5.4vw, 66px);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--color-white);
}

.cw-hero h1 span,
.hero-title span {
  display: block;
  white-space: nowrap;
}

.cw-hero__lead {
  margin: 0 0 38px;
  font-size: 1.12rem;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.15px;
  color: #fff;
  max-width: 540px;
}

/* ——— Section titles ——— */
.cw-section {
  padding: 30px 0;
}

#top,
#fahrzeuge,
#versiegelung,
#leistungen,
#regionen,
#ratgeber,
#ratgeber-text,
#kontakt {
  scroll-margin-top: calc(var(--cw-header-h) + 8px);
}

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

.cw-section--light {
  background: var(--cw-white);
}

#fahrzeuge.cw-section--light {
  background: #eef1f4;
}

.cw-section--off {
  background: var(--cw-off);
}

.cw-title {
  margin: 0 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  font-size: clamp(1.25rem, 2.6vw, 2rem);
  overflow-wrap: anywhere;
}

.cw-title::before,
.cw-title::after {
  content: "";
  flex: 1;
  max-width: 160px;
  height: 2px;
  background: var(--cw-cyan);
}

.cw-title--light {
  color: #fff;
}

.cw-title--dark {
  color: var(--cw-text);
}

.cw-title--left {
  justify-content: flex-start;
  text-align: left;
}

.cw-title--left::before {
  display: none;
}

.cw-title--left::after {
  width: 56px;
}

/* ——— Service cards ——— */
.cw-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.cw-card {
  position: relative;
  display: block;
  height: 228px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
}

.cw-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.45s ease;
}

.cw-card:hover img {
  transform: scale(1.06);
}

.cw-card__bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 74px;
  padding: 12px 16px;
  background: rgba(8, 10, 14, 0.78);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.55px;
  text-transform: uppercase;
  line-height: 1.2;
}

.cw-card__bar svg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--cw-cyan);
}

.cw-card__label {
  display: block;
}

/* ——— Benefits ——— */
.cw-benefits {
  position: relative;
  background:
    radial-gradient(circle at 6% 28%, rgba(255, 255, 255, 0.16) 0 3px, transparent 4px),
    radial-gradient(circle at 14% 72%, rgba(255, 255, 255, 0.12) 0 5px, transparent 6px),
    radial-gradient(circle at 23% 22%, rgba(0, 191, 243, 0.18) 0 4px, transparent 5px),
    radial-gradient(circle at 31% 64%, rgba(255, 255, 255, 0.14) 0 2px, transparent 3px),
    radial-gradient(circle at 39% 36%, rgba(255, 255, 255, 0.1) 0 6px, transparent 7px),
    radial-gradient(circle at 48% 78%, rgba(0, 191, 243, 0.14) 0 3px, transparent 4px),
    radial-gradient(circle at 57% 18%, rgba(255, 255, 255, 0.13) 0 4px, transparent 5px),
    radial-gradient(circle at 66% 58%, rgba(255, 255, 255, 0.16) 0 2px, transparent 3px),
    radial-gradient(circle at 74% 34%, rgba(0, 191, 243, 0.16) 0 5px, transparent 6px),
    radial-gradient(circle at 83% 70%, rgba(255, 255, 255, 0.12) 0 3px, transparent 4px),
    radial-gradient(circle at 91% 26%, rgba(255, 255, 255, 0.15) 0 4px, transparent 5px),
    radial-gradient(circle at 97% 62%, rgba(0, 191, 243, 0.12) 0 2px, transparent 3px),
    linear-gradient(#0a1016, #070b10);
  color: #fff;
  padding: 36px 0;
}

.cw-benefits__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
}

.cw-benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  padding: 8px 18px;
  min-height: 112px;
  border-right: 1px solid rgba(0, 191, 243, 0.45);
}

.cw-benefit:last-child {
  border-right: none;
}

.cw-benefit svg {
  width: 48px;
  height: 48px;
  color: var(--cw-cyan);
  flex-shrink: 0;
}

.cw-benefit span {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.25;
  text-transform: uppercase;
  max-width: 11.5em;
}

/* ——— Process ——— */
.cw-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0 10px;
  align-items: stretch;
}

.cw-step {
  background: #fff;
  border: 1px solid #e4e8ed;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(7, 16, 22, 0.05);
  padding: 26px 22px 28px;
}

.cw-step__chevron {
  display: flex;
  align-items: center;
  color: var(--cw-cyan);
  width: 22px;
}

.cw-step__chevron svg {
  width: 22px;
  height: 36px;
}

.cw-step > svg {
  width: 56px;
  height: 56px;
  color: var(--cw-cyan);
  margin-bottom: 14px;
  display: block;
}

.cw-step__num {
  color: var(--cw-cyan);
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1;
  margin-bottom: 10px;
}

.cw-step h3 {
  margin: 0 0 10px;
  font-size: 1.02rem;
  text-transform: uppercase;
}

.cw-step p {
  margin: 0;
  color: var(--cw-muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

/* ——— Why ——— */
.cw-why-section {
  background: #0a1016;
}

.cw-why {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}

.cw-why__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px 26px;
  border-right: 1px solid rgba(0, 191, 243, 0.45);
}

.cw-why__item:first-child {
  padding-left: 0;
}

.cw-why__item:last-child {
  padding-right: 0;
  border-right: none;
}

.cw-why__item svg {
  width: 56px;
  height: 56px;
  color: var(--cw-cyan);
  margin-bottom: 18px;
}

.cw-why__item h3 {
  margin: 0 0 12px;
  font-size: 0.98rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #fff;
}

.cw-why__item p {
  margin: 0;
  color: #fff;
  font-size: 0.98rem;
  line-height: 1.5;
  max-width: 16.5em;
}

/* ——— Regions ——— */
.cw-regions {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.cw-region {
  position: relative;
  display: block;
  height: 280px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
}

.cw-region img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cw-region::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 40%, rgba(0, 0, 0, 0.78) 100%);
}

.cw-region__bar {
  position: absolute;
  left: 12px;
  right: 10px;
  bottom: 14px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.cw-region__bar svg {
  width: 16px;
  height: 16px;
  color: var(--cw-cyan);
  flex-shrink: 0;
}

/* ——— FAQ ——— */
.cw-faq {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  background: #05080c;
}

.cw-faq__intro {
  display: flex;
  align-items: center;
  padding: 30px 40px;
  background: #05080c;
}

.cw-faq__intro-inner {
  width: 100%;
}

.cw-faq__panel {
  padding: 30px 48px;
  background: #0a1016;
}

.cw-faq-list {
  width: 100%;
}

.cw-faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.cw-faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.cw-faq-item summary::after {
  content: "+";
  color: #fff;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}

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

.cw-faq-item p {
  margin: 0 0 20px;
  color: var(--cw-muted-light);
  max-width: 62ch;
}

/* ——— CTA ——— */
.cw-cta {
  position: relative;
  min-height: 0;
  display: flex;
  align-items: center;
  background: #0b0b0b center / cover no-repeat;
  color: #fff;
}

.cw-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.35) 60%, rgba(0, 0, 0, 0.2) 100%);
}

.cw-cta__inner {
  position: relative;
  z-index: 1;
  padding: 30px 0;
  max-width: 720px;
}

.cw-cta h2 {
  margin: 0 0 14px;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
}

.cw-cta p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.9);
}

/* ——— Footer ——— */
.cw-footer {
  background: #070b12;
  color: #cfcfcf;
  padding: 30px 0 0;
}

.cw-footer a {
  text-decoration: none;
}

.cw-footer a:hover {
  color: var(--cw-cyan);
}

.cw-footer__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 0.85fr 0.85fr 0.85fr 1.1fr;
  gap: 28px 20px;
  padding-bottom: 40px;
}

.cw-footer__brand p {
  margin: 16px 0 18px;
  max-width: 280px;
  color: #9aa3ad;
  font-size: 0.95rem;
}

.cw-footer h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 0.92rem;
}

.cw-footer__col,
.cw-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.95rem;
}

.cw-footer__contact span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.cw-footer__contact svg {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  color: var(--cw-cyan);
  flex-shrink: 0;
}

.cw-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
}

.cw-footer__legal {
  display: flex;
  gap: 18px;
}

/* ——— Inner pages ——— */
.cw-page {
  padding: 30px 0 56px;
  background: var(--cw-off);
}

.cw-page h1 {
  margin: 0 0 10px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.cw-page__lead {
  margin: 0 0 36px;
  color: var(--cw-muted);
  max-width: 640px;
}

.cw-contact {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.cw-form,
.cw-aside {
  background: #fff;
  padding: 28px;
  border: 1px solid #e6e8eb;
}

.cw-form label {
  display: block;
  margin: 0 0 6px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.cw-form input,
.cw-form select,
.cw-form textarea {
  width: 100%;
  margin: 0 0 16px;
  padding: 12px 12px;
  border: 1px solid #d5dbe1;
  font-family: var(--font-text);
  font-size: 1rem;
  background: #fff;
}

.cw-form textarea {
  min-height: 140px;
  resize: vertical;
}

.cw-aside h2 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.cw-aside p,
.cw-aside a {
  color: var(--cw-muted);
}

.cw-aside a {
  color: var(--cw-text);
  text-decoration: none;
}

.cw-aside a:hover {
  color: var(--cw-cyan);
}

.cw-legal {
  max-width: none;
  width: calc(100% - 120px);
  margin-left: 60px;
  margin-right: 60px;
}

.cw-legal .cw-page__lead {
  max-width: none;
}

.cw-legal h2 {
  margin: 28px 0 10px;
  font-size: 1.05rem;
}

.cw-legal p,
.cw-legal address {
  color: var(--cw-muted);
  font-style: normal;
}

.cw-legal a {
  color: var(--cw-text);
}

.cw-thanks {
  padding: 80px 0;
}

/* ——— SEO ——— */
.cw-section-lead {
  max-width: 720px;
  margin: -22px auto 36px;
  text-align: center;
  color: var(--cw-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.cw-section--dark .cw-section-lead {
  color: var(--cw-muted-light);
}

.cw-seo {
  padding: 30px 0;
  background: var(--cw-white);
}

.cw-seo h2 {
  margin: 0 0 18px;
}

.cw-seo h3 {
  margin: 28px 0 10px;
  font-size: 1.15rem;
}

.cw-seo p,
.cw-seo li {
  color: var(--cw-muted);
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 76ch;
}

.cw-seo ul {
  margin: 0 0 8px;
  padding-left: 1.2em;
}

.cw-seo a {
  color: var(--cw-text);
}

@media (max-width: 1100px) {
  .cw-faq {
    grid-template-columns: 1fr;
  }

  .cw-faq__intro {
    padding: 30px 20px 12px;
    justify-content: flex-start;
  }

  .cw-faq__intro-inner {
    margin: 0 auto;
    padding: 0;
    width: min(var(--cw-max), calc(100% - 40px));
  }

  .cw-faq__panel {
    padding: 30px 20px;
  }

  .cw-footer__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 920px) {
  .cw-menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .cw-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: var(--cw-header-h);
    background: #0e0e0e;
    display: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .cw-nav.is-open {
    display: block;
  }

  .cw-nav ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 20px 22px;
    gap: 14px;
  }

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

  .cw-why__item {
    padding: 18px 20px;
  }

  .cw-why__item:first-child,
  .cw-why__item:nth-child(3) {
    padding-left: 0;
  }

  .cw-why__item:nth-child(2n) {
    padding-right: 0;
    border-right: none;
  }

  .cw-why__item:nth-child(-n+2) {
    padding-bottom: 22px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(0, 191, 243, 0.28);
  }

  .cw-benefits__grid {
    grid-template-columns: 1fr 1fr;
    gap: 22px 0;
  }

  .cw-benefit {
    border-right: none;
    padding: 12px 10px;
  }

  .cw-benefit:nth-child(-n+4) {
    border-bottom: 1px solid rgba(0, 191, 243, 0.28);
  }

  .cw-steps {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .cw-step__chevron {
    display: none;
  }

  .cw-regions {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 640px) {
  .cw-legal {
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-right: 20px;
  }

  .cw-hero {
    height: auto;
    min-height: 480px;
  }

  .cw-hero h1 span,
  .hero-title span {
    white-space: normal;
  }

  .cw-hero__inner,
  .cw-cta__inner {
    padding: 30px 0;
  }

  .cw-section {
    padding: 30px 0;
  }

  .cw-cards,
  .cw-why,
  .cw-steps,
  .cw-benefits__grid,
  .cw-footer__grid {
    grid-template-columns: 1fr;
  }

  .cw-benefit:nth-child(-n+4) {
    border-bottom: none;
  }

  .cw-benefit:not(:last-child) {
    border-bottom: 1px solid rgba(0, 191, 243, 0.28);
  }

  .cw-why__item,
  .cw-why__item:first-child,
  .cw-why__item:nth-child(2n),
  .cw-why__item:nth-child(3),
  .cw-why__item:nth-child(-n+2) {
    padding: 18px 0;
    margin: 0;
    border-right: none;
    border-bottom: none;
  }

  .cw-why__item:not(:last-child) {
    border-bottom: 1px solid rgba(0, 191, 243, 0.28);
    padding-bottom: 22px;
    margin-bottom: 8px;
  }

  .cw-regions {
    grid-template-columns: 1fr 1fr;
  }

  .cw-card {
    height: 200px;
  }

  .cw-card__bar svg {
    width: 30px;
    height: 30px;
  }

  .cw-footer__bottom {
    flex-direction: column;
  }

  .cw-btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .cw-card img {
    transition: none;
  }
}

/* ——— SEO Ortsseiten ——— */
.breadcrumb {
  margin: 0 0 16px;
  font-size: 0.92rem;
  color: var(--cw-muted);
}

.breadcrumb a {
  color: var(--cw-muted);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--cw-cyan);
}

.seo-article,
.page {
  background: var(--cw-off);
}

.seo-article .narrow,
.seo-hub-hero .container,
.seo-hub-body {
  width: min(var(--cw-max), calc(100% - 40px));
  margin-inline: auto;
}

.seo-article {
  padding: 30px 0 48px;
}

.seo-article h1,
.seo-hub-hero__title {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  text-transform: uppercase;
}

.seo-article .sub,
.seo-hub-hero__lead,
.seo-hub-lead-secondary,
.seo-article p {
  color: var(--cw-muted);
  line-height: 1.6;
}

.seo-article h2,
.seo-hub-section-title {
  margin: 28px 0 10px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  text-transform: uppercase;
}

.seo-hub-hero {
  padding: 30px 0 10px;
  background: var(--cw-off);
}

.seo-hub-body {
  padding: 20px 0 48px;
}

.seo-hub-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin: 0 0 28px;
}

.seo-hub-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid #e6e8eb;
  text-decoration: none;
  color: inherit;
}

.seo-hub-item:hover {
  border-color: var(--cw-cyan);
}

.seo-hub-item strong {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 0.95rem;
}

.seo-hub-item span {
  font-size: 0.88rem;
  color: var(--cw-muted);
}

.seo-cta-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.seo-hub-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 20px 0;
}

.seo-hub-pagination__btn,
.seo-hub-pagination__num {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid #d5dbe1;
  text-decoration: none;
  color: var(--cw-text);
  background: #fff;
}

.seo-hub-pagination__num.is-current,
.seo-hub-pagination__btn:hover,
.seo-hub-pagination__num:hover {
  border-color: var(--cw-cyan);
  color: var(--cw-cyan);
}

.seo-hub-az {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
}

.seo-hub-az a {
  color: var(--cw-text);
  text-decoration: none;
}

.seo-hub-az a:hover {
  color: var(--cw-cyan);
}

.cw-seo-places {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin: 16px 0 8px;
  padding: 0;
  list-style: none;
}

.cw-seo-places a {
  color: var(--cw-text);
}
