/* ============================================================
   A&B Almere — Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --color-dark:       #1a1a1a;
  --color-accent:     #8a98cf;
  --color-accent-bg:  #eef0f8;
  --color-red:        #f5290e;
  --color-red-hover:  #d42008;
  --color-body:       #2d2d2d;
  --color-muted:      #5a5a5a;
  --color-bg:         #f7f8fa;
  --color-white:      #ffffff;
  --color-border:     #e5e7eb;

  --font-main: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;

  --shadow-card:  0 2px 12px rgba(0,0,0,0.07);
  --shadow-hover: 0 6px 24px rgba(0,0,0,0.12);
  --radius-card:  8px;
  --radius-btn:   5px;

  --container:    1100px;
  --section-y:    80px;
  --section-y-sm: 48px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-body);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Utilities ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--section-y) 0; }
.section--white { background: var(--color-white); }
.section--bg { background: var(--color-bg); }
.section--tint { background: var(--color-accent-bg); }
.section--dark { background: var(--color-dark); }

.section__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 16px;
}

.section__title {
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--color-dark);
  line-height: 1.25;
  margin-bottom: 20px;
}

.section__intro {
  font-size: 1rem;
  color: var(--color-muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-main);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-btn);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
  min-height: 44px;
  text-decoration: none;
}

.btn--primary {
  background: var(--color-red);
  color: var(--color-white);
  border-color: var(--color-red);
}
.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--color-red-hover);
  border-color: var(--color-red-hover);
}

.btn--outline {
  background: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}
.btn--outline:hover,
.btn--outline:focus-visible {
  background: var(--color-accent);
  color: var(--color-white);
}

.btn--outline-white {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.8);
}
.btn--outline-white:hover,
.btn--outline-white:focus-visible {
  background: var(--color-white);
  color: var(--color-dark);
}

.btn--full { width: 100%; justify-content: center; }

/* Focus states */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 24px;
  max-width: var(--container);
  margin: 0 auto;
}

.header-logo img {
  height: 64px;
  width: auto;
  display: block;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.header-nav__links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-body);
  transition: color 0.2s ease;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}
.header-nav__links a:hover,
.header-nav__links a.active {
  color: var(--color-dark);
  border-bottom-color: var(--color-accent);
}

.header-cta { margin-left: 8px; }

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-btn);
  transition: background 0.2s;
}
.menu-toggle:hover { background: var(--color-accent-bg); }
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: all 0.25s ease;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: 16px 24px 24px;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-body);
  border-bottom: 1px solid var(--color-border);
  transition: color 0.2s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--color-dark); }
.mobile-nav .btn {
  margin-top: 12px;
  width: 100%;
  justify-content: center;
}

/* ============================================================
   HERO — Homepage
   ============================================================ */
.hero {
  background: var(--color-bg);
  padding: 52px 0 60px;
  position: relative;
  overflow: hidden;
}

/* Subtle top-right corner geometry */
.hero::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -20px;
  width: 320px;
  height: 320px;
  background: var(--color-accent-bg);
  clip-path: polygon(100% 0, 100% 100%, 20% 100%);
  opacity: 0.5;
  pointer-events: none;
}

/* Oversized brand mark — sits inside hero-inner grid, at the column boundary */
.hero-brand-mark {
  position: absolute;
  /* ~59% = center of the gap between the 1fr left col and 400px right col */
  left: 57%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0.11;
  z-index: 0;
}
.hero-brand-mark img {
  width: 576px;
  height: auto;
  max-width: none;
  display: block;
}

/* Keep text columns above the brand mark */
.hero-left {
  position: relative;
  z-index: 1;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 52px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.hero-left {}

.hero-left h1 {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-left .hero-sub {
  font-size: 1.05rem;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.hero-trust span {
  font-size: 0.8125rem;
  color: var(--color-muted);
  font-weight: 500;
}

.hero-trust-dot {
  width: 4px;
  height: 4px;
  background: var(--color-accent);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

/* SBB trust card */
.sbb-trust {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-accent);
  border-radius: 6px;
  padding: 12px 16px 12px 14px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.05);
  max-width: 340px;
}
.sbb-trust img {
  height: 84px;
  width: auto;
  flex-shrink: 0;
}
.sbb-trust__title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-dark);
  line-height: 1.4;
  margin-bottom: 4px;
}
.sbb-trust__sub {
  font-size: 0.8rem;
  color: var(--color-muted);
  line-height: 1.45;
}

/* Contact card */
.contact-card {
  background: var(--color-white);
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(138,152,207,0.16), 0 1px 4px rgba(0,0,0,0.06);
  padding: 32px;
  border-top: 5px solid var(--color-accent);
  position: relative;
  z-index: 1;
}

/* Small diagonal accent on card */
.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-left: 24px solid transparent;
  border-top: 24px solid var(--color-accent-bg);
  border-radius: 0 10px 0 0;
}

.contact-card__intro {
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  font-style: italic;
}

.contact-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 20px;
}

.contact-detail {
  margin-bottom: 16px;
}

.contact-detail__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  display: block;
  margin-bottom: 4px;
}

.contact-detail__value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-dark);
  transition: color 0.2s;
}
.contact-detail__value:hover { color: var(--color-accent); }

.contact-detail__value--phone {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.contact-detail__value--phone:hover { color: var(--color-red); }

.contact-detail__value--small {
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--color-body);
}

.contact-divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 20px 0;
}

/* ============================================================
   SERVICE STRIP
   ============================================================ */
.service-strip {
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 15px 0;
}
.service-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px 24px;
  flex-wrap: wrap;
}
.service-strip__item {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--color-muted);
}
.service-strip__sep {
  color: var(--color-accent);
  font-size: 1rem;
  line-height: 1;
  opacity: 0.7;
}

/* ============================================================
   INTRO SECTION
   ============================================================ */
.intro-section {
  padding: var(--section-y) 0;
  background: var(--color-white);
}

.intro-section .intro-body {
  max-width: 680px;
}

.intro-section p {
  font-size: 1.0625rem;
  color: var(--color-body);
  line-height: 1.8;
  margin-bottom: 20px;
}
.intro-section p:last-child { margin-bottom: 0; }

/* Decorative left bar */
.intro-bar {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
.intro-bar-accent {
  flex-shrink: 0;
  width: 4px;
  min-height: 100%;
  background: linear-gradient(180deg, var(--color-accent) 0%, transparent 100%);
  border-radius: 2px;
  align-self: stretch;
}

/* ============================================================
   OVER A&B SECTION
   ============================================================ */
.over-ab {
  background: var(--color-accent-bg);
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
}
.over-ab::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent) 0%, transparent 60%);
}

.over-ab-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.over-ab__text p {
  font-size: 1.0625rem;
  color: var(--color-body);
  line-height: 1.8;
  margin-bottom: 0;
}

.over-ab__points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.over-ab__points li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-dark);
}

.over-ab__points li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--color-accent);
  clip-path: polygon(0 50%, 30% 0, 100% 0, 100% 100%, 30% 100%);
  margin-top: 2px;
}

/* ============================================================
   SERVICES PREVIEW — Homepage
   ============================================================ */
.services-preview {
  padding: var(--section-y) 0;
  background: var(--color-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 28px;
  border-left: 4px solid var(--color-accent);
  transition: all 0.2s ease;
}
.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.service-card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
}

.service-card__title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.service-card__text {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.65;
}

.services-cta { text-align: left; }
.services-cta a {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}
.services-cta a:hover { gap: 10px; }

/* ============================================================
   WHY SECTION
   ============================================================ */
.why {
  padding: var(--section-y) 0;
  background: var(--color-white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.why-col {
  padding: 28px 24px;
  border-top: 3px solid var(--color-border);
  transition: border-color 0.2s;
}
.why-col:hover { border-color: var(--color-accent); }

.why-col__number {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-accent);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}

.why-col__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.why-col__text {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.65;
}

/* ============================================================
   CTA BLOCK (dark)
   ============================================================ */
.cta-block {
  padding: 80px 0;
  background: var(--color-dark);
  position: relative;
  overflow: hidden;
}

/* Angled accent in dark block */
.cta-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-right: 120px solid transparent;
  border-top: 100px solid rgba(138,152,207,0.12);
  pointer-events: none;
}
.cta-block::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-left: 160px solid transparent;
  border-bottom: 120px solid rgba(138,152,207,0.08);
  pointer-events: none;
}

.cta-block-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-block h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 16px;
}

.cta-block p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  align-items: start;
}

/* White logo panel */
.footer-logo-wrap {
  display: inline-block;
  background: var(--color-white);
  padding: 10px 14px;
  border-radius: 6px;
  margin-bottom: 14px;
}
.footer-logo-wrap img {
  height: 36px;
  width: auto;
}

.footer-tagline {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
  text-transform: lowercase;
}

.footer-nav-title,
.footer-contact-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-nav-links a:hover { color: var(--color-white); }

.footer-contact-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}
.footer-contact-item__label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}
.footer-contact-item__value {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
a.footer-contact-item__value:hover { color: var(--color-white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.3);
}

/* ============================================================
   DIENSTEN PAGE — Hero
   ============================================================ */
.page-hero {
  background: var(--color-bg);
  padding: 64px 0 72px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -20px;
  width: 300px;
  height: 300px;
  background: var(--color-accent-bg);
  clip-path: polygon(100% 0, 100% 100%, 20% 100%);
  opacity: 0.6;
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 120px;
  width: 0;
  height: 0;
  border-left: 24px solid transparent;
  border-right: 24px solid transparent;
  border-bottom: 20px solid var(--color-accent);
  opacity: 0.2;
  pointer-events: none;
}

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

.page-hero h1 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  max-width: 680px;
}

.page-hero__sub {
  font-size: 1.0625rem;
  color: var(--color-muted);
  line-height: 1.7;
  max-width: 580px;
}

/* ============================================================
   DIENSTEN — Service Category Sections
   ============================================================ */
.dienst-section {
  padding: var(--section-y) 0;
  position: relative;
  border-top: 1px solid var(--color-border);
}
.dienst-section:first-of-type { border-top: none; }

.dienst-section:nth-child(even) { background: var(--color-white); }
.dienst-section:nth-child(odd)  { background: var(--color-bg); }

.dienst-section__header { margin-bottom: 32px; }

.dienst-section h2 {
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.dienst-section h2::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 28px;
  background: var(--color-accent);
  border-radius: 3px;
  flex-shrink: 0;
}

.dienst-intro {
  font-size: 0.9375rem;
  color: var(--color-muted);
  margin-bottom: 0;
}

.dienst-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dienst-row {
  background: var(--color-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 22px 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
  border-left: 3px solid var(--color-accent);
  transition: all 0.2s ease;
}
.dienst-section:nth-child(even) .dienst-row { background: var(--color-bg); }
.dienst-row:hover {
  box-shadow: var(--shadow-hover);
  transform: translateX(3px);
}

.dienst-row__num {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-accent);
  background: var(--color-accent-bg);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
}

.dienst-row__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.dienst-row__text {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.65;
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process-section {
  background: var(--color-bg);
  padding: var(--section-y) 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  margin-top: 48px;
}

/* Connecting line */
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-accent) 100%);
  opacity: 0.3;
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.process-step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-white);
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-card);
}

.process-step__title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 10px;
}

.process-step__text {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.65;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .header-nav { display: none; }
  .menu-toggle { display: flex; }
  .header-cta { display: none; }

  .header-logo img { height: 50px; }

  .hero-brand-mark { opacity: 0.05; left: 50%; }
  .hero-brand-mark img { width: 300px; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .over-ab-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .why-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .why-col { border-top: none; border-left: 3px solid var(--color-border); padding: 20px 24px; }
  .why-col:hover { border-left-color: var(--color-accent); border-top: none; }

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

  .process-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .process-steps::before { display: none; }

  .page-hero h1 { font-size: 1.9rem; }
}

@media (max-width: 600px) {
  :root {
    --section-y: var(--section-y-sm);
  }

  .section { padding: 48px 0; }

  .header-logo img { height: 48px; }

  .hero { padding: 44px 0 52px; }
  .hero-left h1 { font-size: 1.875rem; }

  .hero-brand-mark { display: none; }

  .sbb-trust { max-width: 100%; }
  .sbb-trust img { height: 68px; }

  .section__title { font-size: 1.5rem; }

  .cta-block h2 { font-size: 1.5rem; }
  .cta-block { padding: 56px 0; }

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

  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; max-width: 320px; justify-content: center; }

  .page-hero { padding: 48px 0 56px; }
  .page-hero h1 { font-size: 1.75rem; }

  .dienst-row { grid-template-columns: 1fr; gap: 8px; }
  .dienst-row__num { display: none; }
}
