:root {
  --bg: #eef4ff;
  --surface: #ffffff;
  --surface-soft: #f8fbff;
  --primary: #0c4a8a;
  --primary-dark: #083563;
  --primary-soft: #2f7ed6;
  --accent: #ffb100;
  --accent-dark: #d89100;
  --text: #13283d;
  --muted: #566b84;
  --border: rgba(12, 74, 138, 0.1);
  --shadow: 0 12px 28px rgba(15, 40, 76, 0.06);
  --radius: 22px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 177, 0, 0.08), transparent 34%),
    linear-gradient(180deg, #f4f8ff 0%, #eaf2ff 100%);
  color: var(--text);
  line-height: 1.7;
}

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

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

main a:not(.cta-btn):not(.local-link-card):not(.contact-primary-link):not(.main-nav a) {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

main a:not(.cta-btn):not(.local-link-card):not(.contact-primary-link):not(.main-nav a):hover,
main a:not(.cta-btn):not(.local-link-card):not(.contact-primary-link):not(.main-nav a):focus {
  color: var(--primary-dark);
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(1140px, calc(100% - 2rem));
  margin: 0 auto;
}

header {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.08) 18%, transparent 42%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent 26%),
    linear-gradient(145deg, #2a7ede 0%, #0b4a8b 48%, #083563 100%);
}

header::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 88px;
  background: linear-gradient(180deg, rgba(8, 53, 99, 0) 0%, rgba(8, 53, 99, 0.22) 100%);
  pointer-events: none;
}

header::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.35) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 78%);
  pointer-events: none;
}

.header-visual {
  position: relative;
  z-index: 1;
  padding: 1.1rem 0 2.9rem;
  min-height: 62vh;
}

.header-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.35rem;
  margin-bottom: 1.85rem;
  padding: 0.9rem 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 13.4rem;
  height: 3.7rem;
  overflow: hidden;
  border-radius: 12px;
}

.header-logo-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transform: scale(1);
  transform-origin: center;
}


.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  cursor: pointer;
}

.nav-toggle:hover,
.nav-toggle:focus {
  background: rgba(255, 255, 255, 0.18);
}

.nav-toggle-bar {
  position: relative;
  display: block;
  width: 1.3rem;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 1.3rem;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.nav-toggle-bar::before {
  top: -0.38rem;
}

.nav-toggle-bar::after {
  top: 0.38rem;
}

.main-nav a {
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.22);
}

.main-nav a[aria-current="page"] {
  background: #ffffff;
  color: var(--primary-dark);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-left: 0.35rem;
}

.lang-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, transform 0.2s ease;
}

.lang-switch a:hover,
.lang-switch a:focus {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.lang-switch a[aria-current="true"] {
  background: #ffffff;
  color: var(--primary-dark);
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.35rem;
  align-items: start;
}

.hero-copy {
  display: grid;
  gap: 1rem;
  max-width: 44rem;
  padding: 0.55rem 0 0.35rem;
}

.hero-badges,
.header-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
}

.main-title {
  margin: 0;
  font-size: clamp(2.55rem, 5.2vw, 4.3rem);
  line-height: 1;
  letter-spacing: -0.03em;
  max-width: 11ch;
}

.subtitle {
  margin: 0;
  max-width: 35rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.04rem;
  line-height: 1.62;
}

.hero-visual {
  display: grid;
  gap: 1rem;
}

.hero-img-wrap {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.14);
  background: rgba(255, 255, 255, 0.12);
  max-width: 29rem;
  margin-left: auto;
}

.hero-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.9rem;
  font-weight: 600;
}

.home-page .hero-copy {
  padding-top: 0.1rem;
  max-width: 44rem;
  position: relative;
  z-index: 1;
}

.home-page .hero-content {
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 360px);
  gap: 2rem;
  align-items: center;
}

.hero-side-panel {
  display: flex;
  justify-content: flex-end;
}

.hero-side-card {
  width: min(100%, 21rem);
  padding: 1.35rem;
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.22), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.08) 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.hero-side-kicker {
  display: inline-flex;
  margin-bottom: 0.75rem;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-side-title {
  margin: 0 0 0.6rem;
  color: #ffffff;
  font-size: 1.55rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero-side-text {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  line-height: 1.6;
}

.hero-side-list {
  display: grid;
  gap: 0.75rem;
}

.hero-side-item {
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: rgba(8, 53, 99, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-side-item strong {
  display: block;
  margin-bottom: 0.15rem;
  color: #ffffff;
  font-size: 1rem;
}

.hero-side-item span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.84rem;
}

.hero-microcopy {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  width: fit-content;
  max-width: 100%;
  min-height: 3.45rem;
  margin-top: 0.5rem;
  padding: 1rem 1.45rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(90deg, var(--accent) 0%, #ffd566 100%);
  color: #102a4d;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cta-btn:hover,
.cta-btn:focus {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}

.cta-main {
  background: linear-gradient(90deg, var(--accent) 0%, #ffd566 100%);
}

.cta-mail {
  background: linear-gradient(90deg, #1d6fd0 0%, #0c4a8a 100%);
  color: #ffffff;
}

.cta-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.cta-secondary:hover,
.cta-secondary:focus {
  background: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 0.25rem;
}

.home-page .cta-row .cta-main {
  padding: 1.1rem 1.6rem;
  font-size: 1.06rem;
}

.home-page .cta-row .cta-main:hover,
.home-page .cta-row .cta-main:focus {
  transform: scale(1.02);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

main {
  padding: 2.3rem 0 3.25rem;
}

section {
  margin-bottom: 1.8rem;
  padding: 2rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

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

.home-intro-strip {
  margin-top: -0.75rem;
}

.home-intro-strip div {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-intro-strip div:hover,
.home-intro-strip div:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(15, 40, 76, 0.08);
}

.info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.4rem;
  margin-right: 0.45rem;
  color: var(--accent-dark);
  font-size: 0.95rem;
}

.info-strip div,
.mini-card,
.process-card,
.local-link-card,
.diensten-grid > div,
.team-grid > div,
.usp-bullets li,
.seo-bullets li,
.regio-list li {
  padding: 1.1rem;
  border-radius: 16px;
  background: linear-gradient(180deg, #fbfdff 0%, #f5f9ff 100%);
  border: 1px solid rgba(12, 74, 138, 0.1);
}

.info-strip strong,
.mini-card h3,
.process-card h3,
.local-link-card h3 {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--primary-dark);
}

.info-strip span,
.mini-card p,
.process-card p,
.local-link-card p {
  color: var(--muted);
  font-size: 0.96rem;
}

.section-title {
  margin: 0 0 0.8rem;
  color: var(--primary);
  font-size: 1.9rem;
  line-height: 1.16;
  letter-spacing: -0.02em;
}

.section-title::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin-top: 0.75rem;
  border-radius: 999px;
  background: var(--accent);
}

.section-heading {
  display: grid;
  gap: 0.2rem;
  margin-bottom: 1.35rem;
}

.section-note,
.faq-intro,
.usp-text,
.contact-lead,
.contact-note {
  margin: 0 0 1rem;
  color: var(--muted);
}

.lead-text {
  font-size: 1.05rem;
}

.section-divider {
  border: none;
  border-top: 2px solid rgba(12, 74, 138, 0.08);
  margin: 2rem 0;
}

.usp,
.seo-content,
.regio,
.contact,
.faq,
.diensten,
.team {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.usp-grid,
.regio-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.6rem;
  align-items: start;
}

.usp-copy,
.regio-copy {
  display: grid;
  gap: 1.05rem;
}

.usp-bullets,
.seo-bullets,
.regio-list,
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.usp-bullets,
.seo-bullets,
.regio-list {
  display: grid;
  gap: 0.8rem;
}

.bullet-icon {
  color: var(--accent-dark);
  font-weight: 700;
  margin-right: 0.55rem;
}

.usp-side {
  padding: 1.6rem;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #edf4ff 100%);
  border: 1px solid rgba(12, 74, 138, 0.12);
}

.usp-side-content {
  display: grid;
  gap: 1rem;
}

.usp-side-content h3 {
  margin: 0;
  color: var(--primary-dark);
  font-size: 1.3rem;
}

.usp-side-content p {
  margin: 0;
  color: var(--muted);
}

.usp-side-list {
  display: grid;
  gap: 0.8rem;
}

.usp-side-list div {
  padding: 0.95rem 1rem;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(12, 74, 138, 0.1);
}

.usp-side-list strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--primary-dark);
}

.usp-side-list span {
  color: var(--muted);
  font-size: 0.95rem;
}

.mini-card-grid,
.process-grid,
.local-links,
.services-link-grid,
.diensten-grid,
.team-grid {
  display: grid;
  gap: 1rem;
}

.mini-card-grid,
.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.local-links {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.services-link-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.25rem;
}

.local-link-card {
  display: block;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-link-card {
  min-height: 100%;
}

.local-link-card:hover,
.local-link-card:focus {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15, 40, 76, 0.08);
  border-color: rgba(12, 74, 138, 0.18);
}

.quick-route .local-link-card {
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
  box-shadow: 0 10px 24px rgba(15, 40, 76, 0.05);
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.92);
}

.footer-nav a:hover,
.footer-nav a:focus {
  color: #ffffff;
  text-decoration: underline;
}

.diensten-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.diensten-grid h3,
.team-grid h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
}

.diensten-grid p,
.team-grid p {
  margin: 0;
  color: var(--muted);
}

.team-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.team-img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  margin-bottom: 0.8rem;
  object-fit: cover;
  border: 3px solid rgba(12, 74, 138, 0.18);
}

.breadcrumbs {
  margin-bottom: 1rem;
  padding: 0.95rem 1.1rem;
  border-radius: 14px;
  background: #f8fbff;
  border: 1px solid rgba(12, 74, 138, 0.1);
  color: var(--muted);
  font-size: 0.95rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.breadcrumbs li + li::before {
  content: ">";
  color: #7b8ba0;
}

.breadcrumbs a {
  color: var(--primary-dark);
}

.regio-pill,
.kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  background: rgba(12, 74, 138, 0.08);
  color: var(--primary-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.regio-image {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 14px 28px rgba(15, 40, 76, 0.08);
}

.regio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-card {
  padding: 1.75rem;
  border-radius: 18px;
  background: linear-gradient(180deg, #fbfdff 0%, #f4f9ff 100%);
  border: 1px solid rgba(12, 74, 138, 0.12);
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-primary {
  display: grid;
  gap: 0.75rem;
  margin: 0 0 1.1rem;
}

.contact-primary-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(12, 74, 138, 0.1);
  color: var(--primary-dark);
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  box-shadow: 0 8px 20px rgba(15, 40, 76, 0.05);
}

.contact-primary-link:hover,
.contact-primary-link:focus {
  background: #f3f8ff;
}

.contact-label {
  margin: 0 0 0.25rem;
  color: var(--primary-dark);
  font-size: 0.92rem;
  font-weight: 700;
}

.faq details {
  margin-bottom: 0.8rem;
  padding: 0.45rem;
  border-radius: 14px;
  background: #f7faff;
  border: 1px solid rgba(12, 74, 138, 0.08);
}

.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  background: #ffffff;
  color: var(--primary-dark);
  font-weight: 700;
}

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

.faq summary::after {
  content: "+";
  flex: 0 0 auto;
  font-size: 1.2rem;
}

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

.faq summary h3 {
  margin: 0;
  font-size: 1rem;
}

.faq details p {
  margin: 0;
  padding: 0.8rem 1rem 1rem;
  color: var(--muted);
}

.cta-panel {
  display: grid;
  gap: 1rem;
  padding: 1.8rem;
  border-radius: 20px;
  background: linear-gradient(145deg, #0c4a8a 0%, #083563 100%);
  color: #ffffff;
}

.cta-panel .section-title {
  color: #ffffff;
}

.cta-panel .section-title::after {
  background: #ffd566;
}

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

main .cta-panel a:not(.cta-btn),
main .cta-panel a:not(.cta-btn):visited {
  color: #ffe08a !important;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

main .cta-panel a:not(.cta-btn):hover,
main .cta-panel a:not(.cta-btn):focus {
  color: #ffffff !important;
}

.cta-panel .contact-card {
  color: var(--text);
}

.cta-panel .contact-card p,
.cta-panel .contact-card a,
.cta-panel .contact-card .contact-lead,
.cta-panel .contact-card .contact-note {
  color: var(--text);
}

.cta-panel .contact-card .contact-label {
  color: var(--primary-dark);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.1rem;
  margin-top: 0.9rem;
}

footer {
  padding: 1.6rem 0 2rem;
  background: var(--primary-dark);
  color: #ffffff;
  text-align: center;
}

.footer-note {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

.footer-nav {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}



@media (max-width: 980px) {
  .hero-content,
  .usp-grid,
  .regio-grid,
  .mini-card-grid,
  .process-grid,
  .local-links,
  .services-link-grid {
    grid-template-columns: 1fr;
  }

  .header-topbar {
    flex-direction: column;
    align-items: stretch;
  }

  .main-title {
    max-width: 100%;
  }

  .home-page .hero-content {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .home-page .hero-copy {
    padding-top: 0;
  }

  .hero-side-panel {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 1rem, 1140px);
  }

  .header-topbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.85rem;
    position: relative;
    padding: 0.8rem;
    margin-bottom: 1.2rem;
  }

  .header-logo {
    justify-content: flex-start;
    text-align: left;
    width: 11.2rem;
    height: 3.2rem;
  }

  .header-logo-image {
    transform: scale(1);
    object-position: center center;
  }

  .nav-toggle {
    display: inline-flex;
    align-self: center;
    justify-self: end;
    margin: 0;
  }

  .main-nav {
    display: none;
    grid-template-columns: 1fr;
    grid-column: 1 / -1;
    gap: 0.55rem;
    width: 100%;
    padding: 0.85rem;
    border-radius: 18px;
    background: rgba(8, 53, 99, 0.26);
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  .main-nav a {
    width: 100%;
    text-align: center;
    padding: 0.75rem 0.7rem;
    font-size: 0.92rem;
  }

  .main-nav.is-open {
    display: grid;
  }

  .lang-switch {
    justify-self: start;
    margin-left: 0;
  }

  .header-visual {
    padding-top: 1rem;
    padding-bottom: 1.35rem;
  }

  .hero-content {
    gap: 1.25rem;
  }

  .hero-copy {
    gap: 0.75rem;
  }

  .hero-badges {
    gap: 0.5rem;
  }

  .badge {
    padding: 0.45rem 0.7rem;
    font-size: 0.82rem;
  }

  .main-title {
    font-size: clamp(1.95rem, 9vw, 2.55rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
  }

  .subtitle {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .cta-btn {
    width: 100%;
    min-height: 3.35rem;
    padding: 0.95rem 1.15rem;
    font-size: 0.98rem;
  }

  .cta-row {
    width: 100%;
  }

  .hero-microcopy {
    font-size: 0.8rem;
  }

  .hero-side-card {
    width: 100%;
    padding: 1rem;
    border-radius: 18px;
  }

  .hero-side-title {
    font-size: 1.28rem;
  }

  .hero-side-text {
    font-size: 0.9rem;
  }

  section {
    padding: 1.15rem;
    margin-bottom: 1.1rem;
  }

  .info-strip,
  .contact-details {
    grid-template-columns: 1fr;
  }

  .info-strip {
    gap: 0.75rem;
  }

  .home-intro-strip {
    margin-top: 0;
  }

  .usp-side,
  .contact-card,
  .mini-card,
  .local-link-card,
  .diensten-grid > div,
  .team-grid > div {
    padding: 1rem;
  }

  .usp-bullets,
  .seo-bullets,
  .regio-list,
  .usp-side-list,
  .diensten-grid,
  .mini-card-grid,
  .local-links,
  .services-link-grid {
    gap: 0.75rem;
  }

  .section-note,
  .faq-intro,
  .usp-text,
  .contact-lead,
  .contact-note,
  .usp-side-content p,
  .usp-side-list span,
  .mini-card p,
  .diensten-grid p,
  .local-link-card p {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .section-title::after {
    margin-top: 0.6rem;
  }

  .section-heading {
    margin-bottom: 1rem;
  }

  .breadcrumbs {
    padding: 0.8rem 0.9rem;
    font-size: 0.88rem;
  }

  .breadcrumbs ol {
    gap: 0.4rem;
  }

  .regio-image {
    order: -1;
  }

  .contact-card {
    padding: 1rem;
  }

  .contact-details > div {
    padding: 0.9rem;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid rgba(12, 74, 138, 0.08);
  }

  .contact-primary-link {
    min-height: 3rem;
    font-size: 0.95rem;
  }

  .faq summary {
    padding: 0.8rem 0.9rem;
  }

  .faq details p {
    padding: 0.7rem 0.9rem 0.9rem;
  }

  .footer-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    text-align: center;
  }

  body {
    padding-bottom: 0;
  }
}

@media (max-width: 420px) {
  .header-topbar {
    gap: 0.65rem;
  }

  .header-logo {
    width: 10rem;
    height: 3rem;
  }

  .header-logo-image {
    transform: scale(1);
  }

  .main-title {
    font-size: 1.9rem;
  }

  .section-title {
    font-size: 1.45rem;
  }

  .main-nav a {
    font-size: 0.88rem;
    padding: 0.72rem 0.6rem;
  }

  .badge {
    font-size: 0.78rem;
  }

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