/*
Theme Name: HV Transport
Theme URI: https://hv-transport.de
Author: HV Transport
Author URI: https://hv-transport.de
Description: Custom WordPress theme for HV Transport – Umzugsservice in NRW.
Version: 2.8.59
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hv-transport
*/

/* ==========================================================================
   CSS Custom Properties
   ========================================================================== */
:root {
  --navy: #0a2d62;
  --blue: #1552a8;
  --navy-dark: #061d42;
  --whatsapp: #25d366;
  --text: #121714;
  --muted: #6e7880;
  --gray: #5a646c;
  --border: #c9ced8;
  --slate: #64748b;
  --cream-text: #f5f3ef;
  --white: #ffffff;
  --chip-bg: #e7effa;
  --chip-border: #6980d1;
  --section-num: #e9edf2;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;
  --font-display: 'Archivo', 'Inter', sans-serif;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 4px 24px rgba(6, 29, 66, 0.12);
  --shadow-lg: 0 8px 40px rgba(6, 29, 66, 0.18);
  --container: 1200px;
  --header-height: 112px;
  --transition: 0.2s ease;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

/*
  Desktop density ≈ 80% browser zoom for the whole site,
  EXCEPT the home hero (and its chrome) — that block stays at full design scale.
*/
@media (min-width: 1025px) {
  html {
    zoom: 0.8;
  }

  /* 1/0.8 → cancel html zoom; hero looks as before the site-wide density change */
  body.home .top-bar--home,
  body.home .site-header--home,
  body.home .hero {
    zoom: 1.25;
  }
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   Layout
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--gray {
  background: #f8f9fb;
}

.section__header {
  margin-bottom: 48px;
}

.section__number {
  font-family: var(--font-sans);
  font-size: clamp(64px, 8vw, 96px);
  font-weight: 500;
  color: var(--section-num);
  line-height: 0.85;
  letter-spacing: -0.04em;
  margin: 0;
}

.section__title {
  font-family: var(--font-sans);
  font-size: clamp(36px, 4.2vw, 56px);
  font-weight: 600;
  color: #0a2d62;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.section__subtitle {
  font-size: 18px;
  color: var(--muted);
  margin-top: 12px;
  max-width: 560px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--blue);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--navy);
  color: var(--white);
}

.btn--whatsapp {
  background: var(--whatsapp);
  color: #1c1e39;
}

.btn--whatsapp:hover {
  background: #1fb855;
  color: #1c1e39;
}

.btn--outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}

.btn--outline:hover {
  background: var(--blue);
  color: var(--white);
}

.btn--white {
  background: var(--white);
  color: var(--navy);
}

.btn--white:hover {
  background: var(--cream-text);
  color: var(--navy);
}

.btn--sm {
  padding: 8px 16px;
  font-size: 14px;
  white-space: nowrap;
}

.btn--lg {
  padding: 16px 32px;
  font-size: 16px;
}

.btn img,
.btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ==========================================================================
   Top Bar
   ========================================================================== */
.top-bar {
  background: var(--navy-dark);
  color: var(--cream-text);
  font-size: 13px;
  padding: 8px 0;
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.top-bar__tagline {
  color: var(--cream-text);
  opacity: 0.9;
}

.top-bar__langs {
  display: flex;
  align-items: center;
  gap: 4px;
}

.top-bar__lang {
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-mono);
  color: rgba(245, 243, 239, 0.6);
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
}

.top-bar__lang:hover,
.top-bar__lang.is-active {
  color: var(--cream-text);
  background: rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: relative;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.site-header--overlay {
  position: absolute;
  top: 37px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: none;
  border-radius: var(--radius);
  margin: 0 24px;
  box-shadow: var(--shadow);
}

.site-header--home {
  position: relative;
  z-index: 100;
  background: var(--white);
  border-bottom: none;
  box-shadow: none;
}

.site-header--home .container {
  max-width: 1760px;
}

.top-bar--home {
  background: #fff;
  border-bottom: none;
  color: #9aa3af;
}

.top-bar--home .container {
  max-width: 1760px;
}

.top-bar--home .top-bar__tagline {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 11px;
  color: #9aa3af;
  opacity: 1;
}

.top-bar--home .top-bar__lang {
  color: #9aa3af;
  background: transparent;
}

.top-bar--home .top-bar__lang:hover,
.top-bar--home .top-bar__lang.is-active {
  color: #111827;
  background: transparent;
}

.intro-block > .container {
  max-width: 1760px;
}

.lang-switch--header {
  display: flex;
  align-items: center;
  gap: 2px;
}

.lang-switch--header .lang-switch__item,
.lang-switch--header .top-bar__lang {
  padding: 4px 7px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-mono);
  color: var(--muted);
  border-radius: 4px;
}

.lang-switch--header .lang-switch__item:hover,
.lang-switch--header .lang-switch__item.is-active,
.lang-switch--header .top-bar__lang:hover,
.lang-switch--header .top-bar__lang.is-active {
  color: var(--navy);
  background: #eef2f7;
}

/* Compact language dropdown — mobile header only */
.lang-dropdown {
  display: none;
  position: relative;
  z-index: 120;
}

.lang-dropdown__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  padding: 0 10px 0 12px;
  border: 1px solid #d5dde8;
  border-radius: 10px;
  background: #f4f7fb;
  color: #0a2d62;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.lang-dropdown__btn:hover,
.lang-dropdown.is-open .lang-dropdown__btn {
  background: #fff;
  border-color: #b7c4d6;
  box-shadow: 0 4px 14px rgba(10, 45, 98, 0.08);
}

.lang-dropdown__current {
  min-width: 1.6em;
  text-align: center;
}

.lang-dropdown__chev {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.7;
  transition: transform 0.2s ease;
}

.lang-dropdown.is-open .lang-dropdown__chev {
  transform: rotate(225deg) translateY(-1px);
}

.lang-dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 168px;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: #fff;
  border: 1px solid #dce3ee;
  border-radius: 12px;
  box-shadow: 0 16px 36px rgba(6, 29, 66, 0.16);
}

.lang-dropdown__menu[hidden] {
  display: none !important;
}

.lang-dropdown__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 10px 12px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #0a2d62;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
}

.lang-dropdown__option span {
  font-size: 11px;
  font-weight: 500;
  color: #6b7788;
}

.lang-dropdown__option:hover,
.lang-dropdown__option:focus-visible {
  background: #eef3f9;
  outline: none;
}

.lang-dropdown__option.is-active {
  background: #e8f0fa;
  color: #0a2d62;
}

.lang-dropdown__option.is-active span {
  color: #1552a8;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header-height);
}

.site-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
}

.site-logo__img,
.site-logo__mark {
  display: block;
  width: auto;
  height: 77px;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: left center;
  flex: 0 0 auto;
}

.site-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.site-logo__name {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 1.26px;
  color: #121714;
  text-transform: uppercase;
}

.site-logo__tagline {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9ca3af;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex: 1 1 auto;
  min-width: 0;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.8vw, 28px);
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav li {
  flex: 0 0 auto;
}

.main-nav a {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  transition: color var(--transition);
}

.main-nav a:hover,
.main-nav .current-menu-item a {
  color: var(--blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.header-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.3;
  flex-shrink: 0;
}

.header-phone__number {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}

.header-phone__hours {
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
}

/* Inner pages: keep header tidy with longer RU/UA/EN labels */
@media (min-width: 769px) and (max-width: 1280px) {
  .site-header__inner {
    gap: 16px;
  }

  .site-logo {
    gap: 20px;
  }

  .site-logo__img,
  .site-logo__mark {
    height: 64px;
  }

  .site-logo__name {
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 0.06em;
  }

  .site-logo__tagline {
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .main-nav a {
    font-size: 13px;
  }

  .main-nav ul {
    gap: 12px;
  }

  .header-actions {
    gap: 10px;
  }

  .header-phone__number {
    font-size: 14px;
  }

  .header-actions .btn--sm {
    padding: 8px 12px;
    font-size: 13px;
  }
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   Hero — Figma Frame 112 (Desktop 1920 exact)
   ========================================================================== */
/* ===== HOME CHROME + HERO — fluid desktop (Figma 1:401 adapted) ===== */
body.home {
  --home-chrome: 172px;
  --home-gutter: 24px;
  --home-max: 1872px;
  --home-section-y: clamp(64px, 7vw, 100px);
  /* Figma Desktop: content + logo share x=24 on 1920 artboard */
  --home-stage-inset: 24px;
  --home-chrome-left: calc(var(--home-stage-inset) * 100vw / 1920px);
  --home-chrome-width: calc(var(--home-max) * 100vw / 1920px);
}


/*
  City SEO pages: taller header, WIDTH locked to .city__wrap
  (same max-width + horizontal padding — no home zoom cancel).
*/
body.hv-city-header,
body.hv-stadt-page {
  --header-height: 120px;
}

body.hv-city-header .top-bar,
body.hv-stadt-page .top-bar {
  padding: 12px 0;
}

body.hv-city-header .top-bar .container,
body.hv-city-header .site-header .container,
body.hv-stadt-page .top-bar .container,
body.hv-stadt-page .site-header .container {
  max-width: 1760px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 80px;
  padding-right: 80px;
  box-sizing: border-box;
}

body.hv-city-header .site-header,
body.hv-stadt-page .site-header {
  height: 120px;
  box-sizing: border-box;
}

body.hv-city-header .site-header .site-header__inner,
body.hv-stadt-page .site-header .site-header__inner {
  height: 100%;
  align-items: center;
}

body.hv-city-header .site-logo__img,
body.hv-city-header .site-logo__mark,
body.hv-city-header a.site-logo img,
body.hv-stadt-page .site-logo__img,
body.hv-stadt-page .site-logo__mark,
body.hv-stadt-page a.site-logo img {
  height: 77px !important;
  min-height: 77px !important;
  max-height: none !important;
  width: auto !important;
}

/* Desktop: taller than default inner pages (home look) without breaking city column align */
@media (min-width: 1025px) {
  body.hv-city-header,
  body.hv-stadt-page {
    --header-height: 150px;
  }

  body.hv-city-header .top-bar,
  body.hv-stadt-page .top-bar {
    padding: 14px 0;
  }

  body.hv-city-header .site-header,
  body.hv-stadt-page .site-header {
    height: 150px;
  }

  body.hv-city-header .site-logo__img,
  body.hv-city-header .site-logo__mark,
  body.hv-city-header a.site-logo img,
  body.hv-stadt-page .site-logo__img,
  body.hv-stadt-page .site-logo__mark,
  body.hv-stadt-page a.site-logo img {
    height: 96px !important;
    min-height: 96px !important;
  }

  body.hv-city-header .site-logo__name,
  body.hv-stadt-page .site-logo__name {
    font-size: 24px;
    line-height: 24px;
  }
}

/* Match .city__wrap responsive paddings */
@media (max-width: 1200px) {
  body.hv-city-header .top-bar .container,
  body.hv-city-header .site-header .container,
  body.hv-stadt-page .top-bar .container,
  body.hv-stadt-page .site-header .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  body.hv-city-header .site-logo__img,
  body.hv-city-header .site-logo__mark,
  body.hv-city-header a.site-logo img,
  body.hv-stadt-page .site-logo__img,
  body.hv-stadt-page .site-logo__mark,
  body.hv-stadt-page a.site-logo img {
    height: 70px !important;
    min-height: 70px !important;
  }
}

@media (max-width: 860px) {
  body.hv-city-header .top-bar .container,
  body.hv-city-header .site-header .container,
  body.hv-stadt-page .top-bar .container,
  body.hv-stadt-page .site-header .container {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 768px) {
  body.hv-city-header .site-header,
  body.hv-stadt-page .site-header {
    height: auto !important;
    min-height: 72px;
    padding: 12px 0;
  }

  body.hv-city-header .site-logo__img,
  body.hv-city-header .site-logo__mark,
  body.hv-city-header a.site-logo img,
  body.hv-stadt-page .site-logo__img,
  body.hv-stadt-page .site-logo__mark,
  body.hv-stadt-page a.site-logo img {
    height: 56px !important;
    min-height: 56px !important;
    max-height: 56px !important;
  }
}

@media (max-width: 560px) {
  body.hv-city-header .top-bar .container,
  body.hv-city-header .site-header .container,
  body.hv-stadt-page .top-bar .container,
  body.hv-stadt-page .site-header .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* Combined top bar + header */
body.home .top-bar--home {
  height: 52px;
  padding: 16px 0 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  background: #fff;
  border: 0;
}

body.home .top-bar--home .container {
  max-width: none;
  width: auto;
  padding: 0;
  margin-left: var(--home-chrome-left);
  margin-right: var(--home-chrome-left);
}

body.home .top-bar--home .top-bar__inner {
  width: 100%;
  max-width: none;
}

body.home .top-bar--home .top-bar__tagline {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #64748b;
  opacity: 1;
}

body.home .top-bar--home .top-bar__langs {
  gap: 14px;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
}

body.home .top-bar--home .top-bar__lang,
body.home .top-bar--home .lang-switch__item {
  padding: 0;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  color: #6b7280;
  background: transparent;
  border-radius: 0;
}

body.home .top-bar--home .top-bar__lang.is-active,
body.home .top-bar--home .lang-switch__item.is-active,
body.home .top-bar--home .top-bar__lang:hover,
body.home .top-bar--home .lang-switch__item:hover {
  color: #000;
  background: transparent;
}

body.home .site-header--home {
  height: 120px;
  box-sizing: border-box;
  background: #fff;
  border: 0;
  box-shadow: none;
}

body.home .site-header--home .container {
  max-width: none;
  width: auto;
  height: 100%;
  padding: 0;
  margin-left: var(--home-chrome-left);
  margin-right: var(--home-chrome-left);
}

body.home .site-header--home .site-header__inner {
  height: 100%;
  gap: 48px;
  align-items: center;
}

body.home .site-header--home .site-logo {
  gap: 24px;
  margin: 0;
  padding: 0;
  align-self: center;
  flex-shrink: 0;
}

body.home .site-header--home .site-logo__img,
body.home .site-header--home .site-logo__mark {
  display: block !important;
  width: auto !important;
  height: 77px !important;
  min-height: 77px !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: left center !important;
  flex: 0 0 auto !important;
}

body.home .site-header--home .site-logo__text {
  display: flex !important;
  flex-direction: column !important;
  line-height: 1.15;
}

body.home .site-header--home .site-logo__name {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 1.26px;
  color: #121714;
  text-transform: uppercase;
}

body.home .site-header--home .site-logo__tagline {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9ca3af;
  white-space: nowrap;
}

body.home .site-header--home .main-nav {
  flex: 1 1 auto;
  min-width: 0;
}

body.home .site-header--home .main-nav ul {
  gap: clamp(16px, 2vw, 34px);
}

body.home .site-header--home .main-nav a {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #121714;
  white-space: nowrap;
}

body.home .site-header--home .header-actions {
  gap: 40px;
  margin-left: auto;
  margin-right: 0;
  padding-right: 0;
  flex-shrink: 0;
}

/* Desktop: CTA is the rightmost chrome edge (langs live in top-bar) */
body.home .site-header--home .header-actions .lang-dropdown,
body.home .site-header--home .header-actions .menu-toggle {
  display: none !important;
}

body.home .site-header--home .header-phone {
  gap: 8px;
}

body.home .site-header--home .header-phone__number {
  font-family: var(--font-mono);
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.17px;
  color: #121714;
  white-space: nowrap;
}

body.home .site-header--home .header-phone__hours {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  line-height: 14px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: #374151;
}

body.home .site-header--home .header-actions .btn--primary {
  padding: 10px 24px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  border-radius: 0;
}

/* Desktop: full stacked logo (~20% under previous 96px mark) + wordmark */
@media (min-width: 1025px) {
  body.home .site-header--home .site-logo__img,
  body.home .site-header--home .site-logo__mark,
  body.home .site-header--home a.site-logo img {
    width: auto !important;
    height: 77px !important;
    min-height: 77px !important;
    max-width: none !important;
    max-height: none !important;
  }

  body.home .site-header--home .site-logo__text {
    display: flex !important;
    flex-direction: column !important;
  }
}

/* Hero — Figma Frame 112 / 1:401 as scaled 1920 stage (header lives outside) */
.hero {
  position: relative;
  background: #0a2d62;
  overflow: hidden;
  padding: 0;
  min-height: 0;
}

.hero__scaler {
  position: relative;
  width: 100%;
}

.hero__stage {
  position: relative;
  width: 100%;
}

.hero__white {
  position: absolute;
  z-index: 2;
  background: #ffffff;
  pointer-events: none;
}

.hero__white--lead {
  left: 0;
  top: 0;
  background: #ffffff;
}

.hero__white--header {
  display: none;
}

.hero__bg {
  position: absolute;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: transparent;
}

.hero__bg::before {
  display: none !important;
  content: none !important;
}

.hero__bg img {
  display: block;
  max-width: none;
  z-index: 1;
}

.hero__overlay {
  display: none !important;
}

.hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  color: var(--text);
}

.hero__lead {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero__copy {
  background: transparent;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero__title {
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: -1px;
  color: #000;
  margin: 0;
}

.hero__kicker {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #6b7280;
  margin: 0;
  line-height: 21px;
}

.hero__slogan {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-weight: 500;
  letter-spacing: -0.26px;
  line-height: 1.1;
  text-transform: uppercase;
  color: #fefefe;
  pointer-events: none;
  margin: 0;
  text-shadow: none;
}

.hero__panel {
  background: transparent;
  padding: 0;
  margin: 0;
}

.hero__panel .hero__subtitle {
  margin: 0 0 20px;
  color: #f5f3ef;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0;
  text-shadow: none;
}

.hero__panel .hero__tags {
  margin: 0;
  padding-top: 0;
  border-top: none;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 20px;
  text-shadow: none;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin: 0;
}

.hero__actions .btn--whatsapp {
  padding: 16px 24px;
  gap: 10px;
  border-radius: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #1c1e39;
}

.hero__actions .btn--whatsapp img {
  width: 24px;
  height: 24px;
}

.hero__phone-link {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
  color: #f8fafc;
  text-decoration: none;
  min-height: 56px;
}

.hero__phone-number {
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 1;
  color: #f8fafc;
  white-space: nowrap;
}

.hero__phone-hours {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: #f9fafb;
  line-height: 12px;
}

.stats-grid {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  margin: 0;
  align-items: stretch;
}

.hero .stat-card {
  position: relative;
  width: 240px;
  height: 110px;
  min-height: 110px;
  flex: 0 0 240px;
  max-width: 240px;
  aspect-ratio: auto;
  overflow: hidden;
  filter: drop-shadow(0 6px 18px rgba(6, 29, 66, 0.16));
}

.hero .stat-card::before {
  width: 114px;
  height: 32px;
  max-width: none;
}

.hero .stat-card::after {
  top: 32px;
  width: 240px;
  height: 78px;
}

.hero .stat-card__value {
  left: 7px;
  top: 6px;
  font-size: 20px;
  line-height: 20px;
  max-width: none;
  white-space: nowrap;
  overflow: visible;
  text-overflow: clip;
}

.hero .stat-card__desc {
  left: 114px;
  top: 38px;
  right: auto;
  width: 118px;
  max-width: 118px;
  font-size: 12px;
  line-height: 13px;
  overflow: visible;
  display: block;
  -webkit-line-clamp: unset;
  text-transform: none;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}

.hero .stat-card__foot {
  left: 7px;
  right: 7px;
  bottom: 6px;
}

.hero .stat-card__foot::before {
  top: -8px;
}

.hero .stat-card__label {
  font-size: 13px;
  line-height: 13px;
}

.hero .stat-card__index {
  font-size: 12px;
}

.calculator {
  position: relative;
  z-index: 4;
  background: #fff;
  border: 0;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(6, 29, 66, 0.18);
  margin: 0;
}

.calculator__header {
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid #dce1e7;
}

.calculator__eyebrow {
  font-size: 16px;
  font-weight: 400;
  color: #6e7880;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0 0 8px;
  line-height: 16px;
}

.calculator__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.25px;
  text-transform: uppercase;
  color: #0a2d62;
  margin: 0;
}

.calculator__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.calculator__field {
  margin: 0;
}

.calculator__chips--2 .calculator__chip {
  width: calc(50% - 4px);
  flex: 1 1 calc(50% - 4px);
}

.calculator__chips:not(.calculator__chips--2) .calculator__chip {
  flex: 1 1 0;
  min-width: 0;
  padding-left: 0;
  padding-right: 0;
}

.calculator__footer {
  background: #061d42;
  padding: 24px;
  border-top: 1px solid #c9ced8;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.calculator__price {
  margin: 0;
}

.calculator__price-range {
  font-size: 56px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -2.04px;
  margin: 0 0 8px;
}

.calculator__note--footer {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
}

.calculator__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
}

.calculator__actions .btn {
  border-radius: 0;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  min-height: 56px;
}

.calculator__actions .btn--white {
  color: #0a2d62;
}

.calculator__actions .btn--outline-light {
  border-width: 1px;
}


.hero__bridge {
  position: absolute;
  z-index: 6;
  left: 0;
  right: auto;
  bottom: 0;
  width: 1920px;
  height: 280px;
  margin: 0;
  padding: 0;
  background: transparent;
  overflow: visible;
  pointer-events: none;
}

.hero__bridge::before,
.hero__bridge::after {
  content: none !important;
  display: none !important;
}

/* Left ledge — rises into the photo (Figma 565×105, made taller so the step reads) */
.hero__bridge-step {
  position: absolute;
  left: 0;
  top: 0;
  width: 565px;
  height: 160px;
  background: #0a2d62;
  display: block;
}

/* Full-width bar under the ledge */
.hero__bridge-bar {
  position: absolute;
  left: 0;
  top: 160px;
  width: 1920px;
  height: 120px;
  background: #0a2d62;
  display: block;
}

.hero__bridge-num {
  position: absolute;
  left: 72px;
  top: 28px;
  z-index: 2;
  font-family: var(--font-sans);
  font-size: 120px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -4.8px;
  color: #2a5088;
  pointer-events: none;
  user-select: none;
}

/* Desktop: 1920 stage scaled to viewport
   IMPORTANT: never write calc(px * vw / px) without parens — (px*vw) is invalid → height 0 */
@media (min-width: 1025px) {
  .hero {
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 100%;
    /* number * vw = length (always valid) — match 1920 stage so no right gap */
    height: calc(1680 / 1920 * 100vw);
    min-height: 720px;
  }

  .hero__scaler {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .hero__bg {
    position: absolute;
    left: 0;
    top: 90px;
    width: 1920px;
    height: 1590px;
    z-index: 0;
    overflow: hidden;
  }

  .hero__bg img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 52% 58%;
  }

  .hero__stage {
    position: absolute;
    left: 0;
    top: 0;
    width: 1920px;
    height: 1680px;
    margin-left: 0;
    /* Fill viewport exactly — stage is 1920 wide */
    transform: scale(calc(100vw / 1920px));
    transform-origin: top left;
    overflow: hidden;
  }

  /* Navy only under copy/CTA — fade out so it never covers the building photo */
  .hero__stage::before {
    content: '';
    position: absolute;
    left: 0;
    top: 249px;
    width: 700px;
    height: 300px;
    background: linear-gradient(
      100deg,
      #0a2d62 0%,
      #0a2d62 62%,
      rgba(10, 45, 98, 0.35) 82%,
      transparent 100%
    );
    z-index: 1;
    pointer-events: none;
  }

  .hero__white--lead {
    width: 866px;
    height: 249px;
    z-index: 2;
  }

  .hero__slogan {
    left: 900px;
    top: 52px;
    width: 180px;
    font-size: 17px;
    z-index: 2;
  }

  .hero__content {
    position: absolute;
    left: var(--home-stage-inset);
    top: 24px;
    width: 653px;
    gap: 72px;
    z-index: 3;
  }

  .hero__title {
    font-size: 68px;
    line-height: 74px;
    max-width: 653px;
  }

  .hero__copy {
    margin: 0 0 40px;
  }

  .hero__panel .hero__subtitle {
    font-size: 20px;
    line-height: 32px;
    max-width: 653px;
  }

  .hero__panel {
    padding-top: 32px;
  }

  .hero__panel .hero__tags {
    white-space: nowrap;
  }

  .hero__phone-number {
    font-size: 32px;
  }

  /* Calculator: Figma Frame 104 (x:1381 w:498) — right edge with CTA / langs */
  .hero .calculator {
    position: absolute;
    left: 1381px;
    right: auto;
    top: 40px;
    width: 498px;
    max-width: none;
    z-index: 4;
    box-sizing: border-box;
  }

  .hero .calculator .calculator__header {
    padding: 20px 29px;
  }

  .hero .calculator .calculator__eyebrow {
    font-size: 18px;
    line-height: 18px;
  }

  .hero .calculator .calculator__title {
    font-size: 29px;
  }

  .hero .calculator .calculator__body {
    padding: 29px;
    gap: 20px;
  }

  .hero .calculator .calculator__footer {
    padding: 29px;
    gap: 20px;
  }

  .hero .calculator .calculator__price-range {
    font-size: 68px;
  }

  .hero .calculator .calculator__actions .btn {
    min-height: 52px;
    font-size: 17px;
  }

  /* Stats lower so a taller calculator never clips them */
  .hero .stats-grid {
    position: absolute;
    left: var(--home-stage-inset);
    top: 1080px;
    width: calc(1920px - (2 * var(--home-stage-inset)));
    max-width: 81%;
    height: auto;
    display: flex;
    flex-wrap: nowrap;
    grid-template-columns: none;
    gap: 20px;
    z-index: 3;
  }

  .hero .stat-card {
    width: 370px;
    height: 170px;
    min-height: 170px;
    flex: 0 0 370px;
    max-width: 370px;
    overflow: hidden;
  }

  .hero .stat-card::before {
    width: 178px;
    height: 50px;
  }

  .hero .stat-card::after {
    top: 50px;
    width: 370px;
    height: 120px;
  }

  .hero .stat-card__value {
    left: 12px;
    top: 12px;
    font-size: 28px;
    line-height: 1;
    max-width: 154px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
  }

  /* Compact language codes so EN fits in the stepped tab */
  .hero .stat-card--langs::before {
    width: 228px;
  }

  .hero .stat-card--langs .stat-card__value {
    font-size: 20px;
    letter-spacing: -0.04em;
    max-width: 208px;
  }

  /* Full-width body text under the value tab — wrap fully, never clip mid-word */
  .hero .stat-card__desc {
    left: 14px;
    top: 60px;
    right: 14px;
    width: auto;
    max-width: none;
    font-size: 15px;
    line-height: 1.3;
    overflow: visible;
    display: block;
    -webkit-line-clamp: unset;
    text-transform: none;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .hero .stat-card__label {
    font-size: 18px;
    line-height: 18px;
  }

  .hero .stat-card__index {
    font-size: 14px;
  }

  .hero .stat-card__foot {
    left: 14px;
    right: 14px;
    bottom: 12px;
  }

  .hero .stat-card__foot::before {
    top: -12px;
  }

  .hero__bridge {
    position: absolute;
    left: 0;
    bottom: 0;
    top: auto;
    width: 1920px;
    height: 280px;
    z-index: 6;
    background: transparent;
    clip-path: none;
  }

  .hero__bridge-step {
    width: 565px;
    height: 160px;
  }

  .hero__bridge-bar {
    top: 160px;
    height: 120px;
  }

  .hero__bridge-num {
    left: 72px;
    top: 32px;
    font-size: 120px;
    color: #2a5088;
  }

  .intro-block {
    position: relative;
    z-index: 2;
    margin-top: 0;
    clear: both;
  }
}

@media (max-width: 1024px) {
  body.home {
    --home-chrome: 0px;
  }

  /* Mobile/tablet: full logo + wordmark with ≥50px gap */
  .site-logo,
  body.home .site-header--home .site-logo,
  a.site-logo {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 50px !important;
  }

  .site-logo__text,
  body.home .site-header--home .site-logo__text,
  a.site-logo .site-logo__text {
    display: flex !important;
    flex-direction: column !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
  }

  .site-logo__img,
  .site-logo__mark,
  body.home .site-header--home .site-logo__img,
  body.home .site-header--home .site-logo__mark,
  a.site-logo img {
    width: auto !important;
    height: 56px !important;
    max-width: none !important;
    max-height: 56px !important;
    flex-shrink: 0 !important;
  }

  .site-logo__name,
  body.home .site-header--home .site-logo__name {
    font-size: 18px !important;
    line-height: 20px !important;
  }

  .site-logo__tagline,
  body.home .site-header--home .site-logo__tagline {
    font-size: 10px !important;
    line-height: 12px !important;
    letter-spacing: 2px !important;
  }

  .site-header,
  .site-header--home,
  body.home .site-header--home {
    height: auto !important;
    min-height: 72px;
    padding: 12px 0;
    box-sizing: border-box;
  }

  body.home .site-header--home .container {
    margin-left: 16px;
    margin-right: 16px;
    width: auto;
    padding: 0;
  }

  body.home .site-header--home .site-header__inner {
    gap: 12px;
    min-height: 48px;
  }

  .hero {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
  }

  .hero__scaler {
    height: auto;
    overflow: visible;
    width: 100%;
  }

  .hero__stage {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: auto;
    transform: none;
    padding: 0 0 24px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .hero__stage::before {
    content: none;
    display: none;
  }

  .hero__white--lead {
    display: none;
  }

  .hero__white--header {
    display: none !important;
  }

  .hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
  }

  .hero__bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: 62% 50%;
  }

  .hero__content,
  .hero .calculator,
  .hero .stats-grid {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    max-width: none;
    box-sizing: border-box;
  }

  .hero__content {
    padding: 20px 16px 0;
    gap: 20px;
    max-width: none;
  }

  .hero__copy {
    background: #fff;
    padding: 20px 16px 16px;
    margin: 0 -16px;
    width: calc(100% + 32px);
    max-width: none;
    box-sizing: border-box;
  }

  .hero__title {
    font-size: clamp(32px, 8vw, 48px);
    line-height: 1.08;
  }

  .hero__kicker {
    font-size: 13px;
  }

  .hero__panel {
    padding: 28px 0 0;
  }

  .hero__panel .hero__subtitle {
    font-size: 15px;
    line-height: 1.4;
    color: #f5f3ef;
    text-shadow: 0 1px 8px rgba(6, 29, 66, 0.55);
  }

  .hero__panel .hero__tags {
    white-space: normal;
    letter-spacing: 0.08em;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
  }

  .hero__actions .btn,
  .hero__phone-link {
    width: 100%;
    max-width: none;
    justify-content: center;
  }

  .hero__phone-number {
    font-size: 26px;
  }

  .hero .calculator {
    width: calc(100% - 32px);
    max-width: none;
    margin: 0 16px;
    box-sizing: border-box;
  }

  .hero .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: calc(100% - 32px);
    margin: 0 16px;
    height: auto;
    align-items: stretch;
  }

  /* Keep stepped card form on mobile — compact so all labels fit */
  .hero .stat-card {
    position: relative;
    width: 100%;
    max-width: none;
    flex: none;
    height: auto;
    min-height: 128px;
    aspect-ratio: auto;
    overflow: hidden;
    display: block;
    padding: 0;
    background: transparent;
    filter: drop-shadow(0 6px 16px rgba(6, 29, 66, 0.14));
    box-sizing: border-box;
  }

  .hero .stat-card::before {
    display: block !important;
    content: '' !important;
    width: 52%;
    height: 34px;
  }

  .hero .stat-card::after {
    display: block !important;
    content: '' !important;
    top: 34px;
    width: 100%;
    height: calc(100% - 34px);
    min-height: 94px;
  }

  .hero .stat-card--langs::before {
    width: 68%;
  }

  .hero .stat-card__value {
    position: absolute;
    left: 8px;
    top: 7px;
    max-width: 48%;
    margin: 0;
    padding: 0;
    font-size: clamp(15px, 4vw, 18px);
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
  }

  .hero .stat-card--langs .stat-card__value {
    max-width: 64%;
    font-size: clamp(11px, 2.9vw, 13px);
    letter-spacing: -0.05em;
  }

  .hero .stat-card__desc {
    position: absolute;
    left: 10px;
    top: 42px;
    right: 10px;
    width: auto;
    max-width: none;
    margin: 0;
    padding: 0;
    font-size: 11px;
    line-height: 1.3;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    text-transform: none;
  }

  .hero .stat-card__foot {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 8px;
    margin: 0;
    padding: 0;
    border-top: none;
  }

  .hero .stat-card__foot::before {
    display: block !important;
    content: '' !important;
    position: absolute;
    left: 0;
    right: 0;
    top: -8px;
    height: 1px;
    background: #e4e8ef;
  }

  .hero .stat-card__label {
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-transform: none;
  }

  .hero .stat-card__index {
    font-size: 12px;
    line-height: 1.2;
  }

  .hero__slogan {
    display: none;
  }

  .hero__bridge {
    position: relative;
    left: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    height: 120px;
    clip-path: polygon(
      0 0,
      42% 0,
      42% 48%,
      100% 48%,
      100% 100%,
      0 100%
    );
  }

  .hero__bridge-num {
    left: 16px;
    top: 8px;
    bottom: auto;
    font-size: 48px;
    line-height: 1;
  }
}

/* Homepage desktop: slightly tighter vertical rhythm */
@media (min-width: 1025px) {
  body.home .situations-section,
  body.home .home-etagen,
  body.home .home-insurance,
  body.home .home-day,
  body.home .home-steps,
  body.home .home-nrw,
  body.home .home-challenges,
  body.home .home-team,
  body.home .home-faq,
  body.home .home-final {
    padding-top: var(--home-section-y);
    padding-bottom: var(--home-section-y);
  }

  body.home .intro-block {
    min-height: 0;
    padding-bottom: clamp(64px, 8vw, 110px);
  }

  body.home .intro-block__stage {
    margin-top: clamp(72px, 8vw, 140px);
    margin-bottom: clamp(48px, 6vw, 100px);
    min-height: clamp(720px, 62vw, 980px);
    width: 100%;
    padding-left: var(--home-gutter);
    padding-right: var(--home-gutter);
    box-sizing: border-box;
  }

  body.home .intro-block__frame {
    width: 100%;
    max-width: var(--home-max);
    height: min(860px, 52vw);
  }

  body.home .container {
    max-width: var(--home-max);
    padding-left: var(--home-gutter);
    padding-right: var(--home-gutter);
  }

  body.home .situations-section__inner,
  body.home .home-etagen__inner,
  body.home .home-insurance__inner,
  body.home .home-steps__inner,
  body.home .home-nrw__inner,
  body.home .home-challenges__inner,
  body.home .home-team__inner {
    max-width: var(--home-max);
  }
}

.intro-block {
  position: relative;
  background: #0a2d62;
  color: #fff;
  padding: 48px 0 110px;
  overflow: hidden;
  min-height: 1293px;
}

.intro-block__number {
  display: none;
}

.intro-block__inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 24px;
  margin-bottom: 0;
}

.intro-block__text,
.intro-block__text.hv-reveal,
.intro-block__inner.hv-reveal {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

.intro-block__text {
  font-family: var(--font-sans);
  font-size: clamp(22px, 2.6vw, 50px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0;
  text-transform: uppercase;
  max-width: 1872px;
  width: 100%;
  margin: 0;
  text-align: right;
  color: #f8fafc;
}

.intro-block__stage {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 160px;
  min-height: 810px;
  padding-bottom: 0;
}

/* Max canvas for expand animation (Figma Component 1: strip → full) */
.intro-block__frame {
  --intro-widen: 0;
  --intro-strip-min: 140px;
  position: relative;
  width: min(1760px, calc(100vw - 48px));
  height: min(860px, 56vw);
  will-change: contents;
  transform: none;
  transform-origin: center center;
}

.intro-block__figure {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  /* Narrow strip → full frame width as --intro-widen goes 0 → 1 */
  width: calc(
    var(--intro-strip-min) + (100% - var(--intro-strip-min)) * var(--intro-widen, 0)
  );
  transform: translateX(-50%);
  z-index: 1;
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  box-shadow:
    0 0 36px 6px rgba(140, 175, 230, 0.18),
    0 0 80px 20px rgba(90, 130, 200, 0.1);
  will-change: width;
}

.intro-block__frame.is-scaling {
  transition: none;
}

.intro-block__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.intro-block__figure::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  pointer-events: none;
}

.intro-block__links {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
  background: none;
  width: max-content;
  max-width: none;
}

.intro-block__stage::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(520px, 70vw);
  height: min(820px, 100vw);
  background: radial-gradient(ellipse 55% 50% at 50% 45%, rgba(130, 170, 230, 0.28) 0%, rgba(80, 120, 190, 0.1) 42%, transparent 72%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}

.intro-block__links.hv-reveal,
.intro-block__links.hv-reveal.is-in,
.intro-block__stage.hv-reveal {
  opacity: 1 !important;
  visibility: visible !important;
}

.intro-block__links a {
  font-family: var(--font-sans);
  font-size: clamp(42px, 5.2vw, 100px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  border-bottom: none;
  padding: 0;
  text-align: center;
  white-space: nowrap;
  transition: opacity var(--transition);
  text-shadow: 0 2px 24px rgba(6, 29, 66, 0.35);
  opacity: 1 !important;
}

.intro-block__links a:hover {
  opacity: 0.82 !important;
}

.situation-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 80px;
}

.situation-card {
  position: relative;
  display: block;
  height: 492px;
  min-height: 492px;
  padding: 16px;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  isolation: isolate;
  box-sizing: border-box;
}

.situation-card__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.situation-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 29, 66, 0.28) 0%, rgba(6, 29, 66, 0.08) 38%, rgba(6, 29, 66, 0.55) 100%);
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.situation-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.situation-card__fill {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--blue);
  opacity: 0;
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.situation-card__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  pointer-events: none;
}

.situation-card__meta {
  flex-shrink: 0;
  display: block;
  padding: 0 0 24px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.2px;
  line-height: 16px;
  text-transform: uppercase;
  color: #f8fafc;
  border-bottom: 1px solid #f8fafc;
  box-sizing: border-box;
}

.situation-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0;
  padding: 0;
  transition:
    justify-content 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    gap 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    padding 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.situation-card__title {
  display: block;
  font-family: var(--font-sans);
  font-size: 32px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #fff;
}

.situation-card__text,
.situation-card__cta {
  display: block;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.situation-card__text {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.96);
}

.situation-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #fff;
}

.situation-card__cta svg {
  flex-shrink: 0;
}

.situation-card.is-active .situation-card__fill,
.situation-card:focus-visible .situation-card__fill,
.situation-card:hover .situation-card__fill {
  opacity: 1;
}

.situation-card.is-active .situation-card__media::after,
.situation-card:focus-visible .situation-card__media::after,
.situation-card:hover .situation-card__media::after {
  opacity: 0;
}

.situation-card.is-active img,
.situation-card:focus-visible img,
.situation-card:hover img {
  transform: scale(1.04);
}

.situation-card.is-active .situation-card__body,
.situation-card:focus-visible .situation-card__body,
.situation-card:hover .situation-card__body {
  justify-content: center;
  gap: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.situation-card.is-active .situation-card__text,
.situation-card.is-active .situation-card__cta,
.situation-card:focus-visible .situation-card__text,
.situation-card:focus-visible .situation-card__cta,
.situation-card:hover .situation-card__text,
.situation-card:hover .situation-card__cta {
  max-height: 160px;
  opacity: 1;
  transform: translateY(0);
}

.situation-card.is-active .situation-card__cta,
.situation-card:focus-visible .situation-card__cta,
.situation-card:hover .situation-card__cta {
  max-height: 32px;
  transition-delay: 0.06s;
}

@media (hover: none) {
  .situation-card:hover .situation-card__fill {
    opacity: 0;
  }

  .situation-card:hover .situation-card__media::after {
    opacity: 1;
  }

  .situation-card:hover img {
    transform: none;
  }

  .situation-card:hover .situation-card__body {
    justify-content: flex-end;
    gap: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .situation-card:hover .situation-card__text,
  .situation-card:hover .situation-card__cta {
    max-height: 0;
    opacity: 0;
    transform: translateY(10px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .situation-card__fill,
  .situation-card__media::after,
  .situation-card__body,
  .situation-card__text,
  .situation-card__cta,
  .situation-card img {
    transition: none;
  }
}

.haushalt-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.haushalt-block__eyebrow {
  margin: 0 0 24px;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: normal;
  text-transform: uppercase;
  color: #6e7880;
}

.haushalt-block__title {
  margin: 0;
  font-size: clamp(28px, 2.5vw, 40px);
  font-weight: 500;
  line-height: 1.2;
  color: #000;
}

.haushalt-block__right p {
  margin: 0 0 24px;
  font-size: 24px;
  line-height: 1.35;
  color: #717c92;
}

.haushalt-block__right p:last-of-type {
  margin-bottom: 24px;
}

.haushalt-block__link {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: #1552a8;
  text-decoration: none;
}

.haushalt-block__link:hover {
  text-decoration: underline;
}

.text-link {
  color: var(--navy);
  font-weight: 600;
  font-size: 16px;
}

/* Section — Versicherung und Team (Block 21 / Figma) */
.home-insurance {
  background: #fff;
  padding: 120px 0;
}

.home-insurance__inner {
  max-width: 1760px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 80px;
}

.home-insurance__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  flex: 0 1 auto;
  min-width: 0;
}

.home-insurance__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.home-insurance__eyebrow {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
  color: #6e7880;
  white-space: nowrap;
}

.home-insurance__title {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 64px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #0a2d62;
  max-width: none;
  white-space: nowrap;
}

.home-insurance__lead {
  margin: 0;
  width: 480px;
  max-width: 100%;
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.35;
  color: #717c92;
}

.home-insurance__link {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #1552a8;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  white-space: nowrap;
  transition: opacity var(--transition);
}

.home-insurance__link:hover {
  opacity: 0.8;
}

.home-insurance__list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 612px;
  max-width: 100%;
  flex: 0 0 612px;
  border-top: 1px solid #0a2d62;
  box-sizing: border-box;
}

.home-insurance__list li {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  column-gap: 12px;
  align-items: start;
  min-height: 72px;
  padding: 20px 0 0;
  box-sizing: border-box;
  border-bottom: 1px solid #dce1e7;
}

.home-insurance__list li:last-child {
  min-height: 98px;
}

.home-insurance__n {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0;
  color: #6e7880;
  line-height: 31px;
  padding-top: 0;
}

.home-insurance__list p {
  margin: 0;
  padding-top: 3px;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  color: #3c454a;
  max-width: none;
}

@media (max-width: 1100px) {
  .home-insurance__inner {
    flex-wrap: wrap;
    gap: 48px;
  }

  .home-insurance__list {
    flex: 1 1 100%;
    width: 100%;
  }

  .home-insurance__title {
    white-space: normal;
    font-size: clamp(40px, 6vw, 64px);
  }

  .home-insurance__eyebrow {
    font-size: clamp(16px, 2.2vw, 24px);
    white-space: normal;
  }
}

@media (max-width: 900px) {
  .home-insurance {
    padding: 72px 0 80px;
  }

  .home-insurance__inner {
    flex-direction: column;
    gap: 40px;
  }

  .home-insurance__lead {
    width: 100%;
    font-size: clamp(18px, 2.4vw, 24px);
  }
}

/* Section 03 — Preisrechner / Situationen */
.situations-section {
  background: #fff;
  padding: 96px 0 112px;
}

.situations-section__inner {
  max-width: 1760px;
}

.situations-section__top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 24px 80px;
  align-items: start;
  margin-bottom: 48px;
}

.situations-section__lead .section__number-row {
  margin-bottom: 14px;
}

.situations-section__title {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(36px, 4.2vw, 56px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #0a2d62;
  max-width: 28ch;
}

.situations-section__aside {
  margin: 0;
  justify-self: end;
  align-self: start;
  max-width: 36ch;
  font-size: 18px;
  line-height: 1.45;
  color: #8b93a1;
  text-align: left;
  padding-top: 10px;
}

.included-section {
  background: var(--navy-dark);
  color: #fff;
  padding: 96px 0;
}

.included-section__title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  margin: 16px 0 20px;
}

.included-section__lead {
  max-width: 720px;
  color: rgba(255,255,255,0.72);
  font-size: 20px;
  margin-bottom: 48px;
}

.section__number--on-dark {
  color: rgba(255, 255, 255, 0.16);
}

.section__eyebrow--on-dark {
  color: rgba(255, 255, 255, 0.88);
}

.included-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.included-list li {
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.18);
  font-size: 20px;
  line-height: 1.4;
}

.included-list li:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.18);
}

.calc-cta-section {
  background: #f3f5f8;
  padding: 80px 0;
}

.calc-cta-section__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}

.calc-cta-section__title {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--navy);
  margin: 12px 0 20px;
}

.calc-cta-section__aside {
  display: grid;
  gap: 16px;
}

.calc-cta-section__stat {
  background: #fff;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.calc-cta-section__stat strong {
  font-size: 28px;
  color: var(--navy);
}

.calc-cta-section__stat span {
  color: var(--muted);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.section-cta-row {
  margin-top: 32px;
}

@media (max-width: 980px) {
  .hero__slogan { display: none; }
  .situation-cards,
  .haushalt-block,
  .situations-section__top,
  .calc-cta-section__inner {
    grid-template-columns: 1fr;
  }

  .situations-section {
    padding: 72px 0 80px;
  }

  .situations-section__aside {
    justify-self: start;
    margin-top: 0;
    max-width: none;
  }

  .situation-cards {
    gap: 14px;
    margin-bottom: 48px;
  }

  .situation-card {
    height: auto;
    min-height: 280px;
  }

  .haushalt-block {
    gap: 28px;
  }

  .haushalt-block__title {
    max-width: none;
  }
}

@media (max-width: 700px) {
  .situation-cards {
    grid-template-columns: 1fr;
  }

  .situation-card {
    height: 360px;
    min-height: 360px;
    aspect-ratio: auto;
  }

  .haushalt-block {
    grid-template-columns: 1fr;
  }

  .haushalt-block__right p {
    font-size: 18px;
  }
}

/* Stats Cards — Figma 280×128 stepped */
.stat-card {
  position: relative;
  width: 280px;
  height: 128px;
  min-height: 128px;
  display: block;
  background: transparent;
  box-shadow: none;
  padding: 0;
  filter: drop-shadow(0 8px 24px rgba(6, 29, 66, 0.18));
  cursor: default;
  flex: 0 0 280px;
}

.stat-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 133px;
  height: 38px;
  background: #fff;
  z-index: 0;
  transition: background 0.35s ease;
}

.stat-card::after {
  content: '';
  position: absolute;
  left: 0;
  top: 38px;
  width: 280px;
  height: 90px;
  background: #fff;
  z-index: 0;
  transition: background 0.35s ease;
}

.stat-card__value,
.stat-card__desc,
.stat-card__foot,
.stat-card__label,
.stat-card__index {
  position: relative;
  z-index: 1;
  transition: color 0.35s ease;
}

.stat-card__value {
  position: absolute;
  left: 8px;
  top: 8px;
  margin: 0;
  padding: 0;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 500;
  color: #0a2d62;
  line-height: 24px;
  letter-spacing: 0;
  white-space: nowrap;
}

.stat-card__desc {
  position: absolute;
  left: 133px;
  top: 46px;
  width: 139px;
  margin: 0;
  padding: 0;
  background: transparent;
  min-height: 0;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
  color: #717c92;
  text-transform: capitalize;
  align-self: auto;
}

.stat-card__foot {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: transparent;
  border-top: none;
  padding: 0;
  height: auto;
}

.stat-card__label {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  color: #121714;
  text-transform: none;
  letter-spacing: 0;
  line-height: 16px;
}

.stat-card__index {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: #888b92;
  line-height: 14px;
  border: 0;
  padding: 0;
  width: auto;
  text-align: right;
  text-transform: capitalize;
}

.stat-card__foot::before {
  content: '';
  position: absolute;
  left: -8px;
  right: -8px;
  top: -10px;
  height: 1px;
  background: rgba(201, 206, 216, 0.9);
}

.stat-card:hover::before,
.stat-card:hover::after,
.stat-card:focus-within::before,
.stat-card:focus-within::after {
  background: #1552a8;
}

.stat-card:hover .stat-card__value,
.stat-card:hover .stat-card__label,
.stat-card:focus-within .stat-card__value,
.stat-card:focus-within .stat-card__label {
  color: #fff;
}

.stat-card:hover .stat-card__desc,
.stat-card:hover .stat-card__index,
.stat-card:focus-within .stat-card__desc,
.stat-card:focus-within .stat-card__index {
  color: rgba(255, 255, 255, 0.88);
}

.stat-card:hover .stat-card__foot::before,
.stat-card:focus-within .stat-card__foot::before {
  background: rgba(255, 255, 255, 0.22);
}

/* ==========================================================================
   Calculator Widget
   ========================================================================== */
.calculator__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid #dce1e7;
}

.calculator__eyebrow {
  font-size: 16px;
  color: #6e7880;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.calculator__title {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.25px;
  text-transform: uppercase;
  margin: 0;
}

.calculator__step {
  font-size: 13px;
  color: #6e7880;
  letter-spacing: 1.04px;
  white-space: nowrap;
  display: block;
}

.calculator__body {
  padding: 24px;
}

.calculator__field {
  margin-bottom: 16px;
}

.calculator__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #6e7880;
  letter-spacing: 1.04px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.calculator__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.calculator__chips--2 .calculator__chip {
  width: calc(50% - 4px);
}

.calculator__chip {
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 400;
  color: #5a646c;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: all var(--transition);
  text-align: center;
  flex: 1 1 auto;
  min-width: 0;
}

.calculator__chip:hover {
  border-color: var(--chip-border);
  color: #3e4f8a;
}

.calculator__chip.is-selected {
  background: var(--chip-bg);
  border-color: var(--chip-border);
  color: #3e4f8a;
}

.calculator__input-row {
  display: flex;
  align-items: stretch;
}

.calculator__input {
  flex: 1;
  padding: 12px;
  border: 1px solid var(--border);
  border-right: 0;
  border-radius: 2px 0 0 2px;
  font-size: 16px;
  color: var(--navy);
  outline: none;
}

.calculator__input:focus {
  border-color: var(--blue);
}

.calculator__unit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  border: 1px solid var(--border);
  border-radius: 0 2px 2px 0;
  font-size: 16px;
  color: #5a646c;
  background: #fff;
}

.calculator__hint {
  margin-top: 8px;
  font-size: 13px;
  color: #5a646c;
}

.calculator__footer {
  background: #061d42;
  padding: 24px;
  border-top: 1px solid #c9ced8;
}

.calculator__price {
  margin-bottom: 16px;
}

.calculator__price-label {
  font-size: 13px;
  font-weight: 600;
  color: #9aadc9;
  letter-spacing: 1.04px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.calculator__price-range {
  font-family: var(--font-sans);
  font-size: 56px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -2.04px;
  color: #fff;
  margin-bottom: 12px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.calculator__price-range span {
  font-size: inherit;
}

.calculator__price-range::after {
  content: '€';
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 20px;
}

.calculator__price-ab {
  font-size: 20px;
  font-weight: 400;
  color: #9aadc9;
  letter-spacing: 0;
  margin-right: 8px;
}

.calculator__volume {
  font-size: 48px;
  font-weight: 400;
  color: #fff;
  letter-spacing: -1.44px;
  border-top: 1px solid rgba(201, 206, 216, 0.35);
  padding-top: 12px;
  margin-bottom: 12px;
}

.calculator__breakdown {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  color: #fff;
  font-size: 14px;
}

.calculator__breakdown li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(201, 206, 216, 0.35);
}

.calculator__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn--block {
  width: 100%;
}

.btn--white {
  background: #fff;
  color: var(--navy);
}

.btn--white:hover {
  background: #f3f4f6;
  color: var(--navy);
}

.calculator__note {
  margin-top: 16px;
  font-size: 14px;
  color: #fff;
  line-height: 1.4;
}

.calculator__note--footer {
  margin-top: 0;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 400;
  max-width: 28em;
}

.section__number-row {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 14px;
  margin-bottom: 24px;
}

.section__eyebrow {
  margin: 0;
  padding: 0 0 0.06em;
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.06em;
  color: #6e7880;
  text-transform: uppercase;
}

.section__header-row {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 64px;
}

.section__header-row .section__title {
  margin: 0;
}

.section__header-row .section__subtitle {
  max-width: 572px;
  margin: 0;
  font-size: 24px;
  color: #717c92;
}

.quote-block {
  padding: 64px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.quote-block__text {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 500;
  line-height: 1.5;
  color: var(--navy);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.quote-block__text em {
  font-style: normal;
  color: var(--blue);
  font-weight: 700;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-section {
  padding: 80px 0;
}

.services-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.services-list {
  display: flex;
  flex-direction: column;
}

.services-list__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 0;
  margin: 0 0 64px;
  border: 0;
  cursor: pointer;
  transition: color var(--transition);
}

.services-list__item:last-child {
  margin-bottom: 0;
}

.services-list__item:first-child {
  border-top: 0;
}

.services-list__item:hover .services-list__name,
.services-list__item.is-active .services-list__name {
  color: var(--text);
}

.services-list__item .services-list__name {
  color: #c8c7c3;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 500;
  line-height: 56px;
}

.services-list__item.is-active .services-list__name {
  color: #121714;
  font-weight: 500;
}

.services-list__desc {
  font-size: 20px;
  color: #5a646c;
  line-height: 20px;
}

.services-list__link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
  color: inherit;
  text-decoration: none;
}

.services-section__more {
  margin: 40px 0 0;
  text-align: left;
}

.services-section__more a {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 500;
  color: #0a2d62;
  text-decoration: none;
}

.services-section__more a:hover {
  text-decoration: underline;
}

.services-list__arrow {
  display: none;
}

.services-image {
  position: sticky;
  top: 120px;
  width: 100%;
  max-width: 915px;
  aspect-ratio: 915 / 1130;
  overflow: hidden;
  isolation: isolate;
  -webkit-mask-image: url("assets/service-mask.svg");
  mask-image: url("assets/service-mask.svg");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.services-image img {
  position: absolute;
  left: -11.75%;
  top: 0;
  width: 123.5%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: none;
}

/* ==========================================================================
   How It Works
   ========================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step-card {
  padding: 32px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: box-shadow var(--transition), border-color var(--transition);
}

.step-card:hover {
  box-shadow: var(--shadow);
  border-color: transparent;
}

.step-card__num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 16px;
}

.step-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.step-card__text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* ==========================================================================
   Regions / Cities
   ========================================================================== */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.city-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.city-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
}

.city-card__icon {
  width: 32px;
  height: 32px;
  background: var(--chip-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.city-card__name {
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
}

/* ==========================================================================
   Price Examples
   ========================================================================== */
.price-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
}

.price-card__type {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.price-card__size {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.price-card__amount {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.price-card__note {
  font-size: 13px;
  color: var(--muted);
}

/* ==========================================================================
   FAQ Teaser / Home FAQ — Figma block 11
   ========================================================================== */
.faq-list {
  max-width: 800px;
}

.faq-item {
  border-bottom: 1px solid #d7dde6;
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 22px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: color var(--transition);
}

.faq-item__question:hover {
  color: var(--blue);
}

.faq-item__qtext {
  flex: 1;
  line-height: 1.35;
}

.faq-item__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--blue);
  transition: transform var(--transition);
}

.faq-item__plus {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.faq-item__plus::before,
.faq-item__plus::after {
  content: '';
  position: absolute;
  background: #a8b0bc;
  transition: transform var(--transition), background var(--transition);
}

.faq-item__plus::before {
  left: 0;
  top: 50%;
  width: 100%;
  height: 2px;
  margin-top: -1px;
}

.faq-item__plus::after {
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  margin-left: -1px;
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item.is-open .faq-item__plus::after {
  transform: rotate(90deg) scaleY(0);
}

.faq-item__answer {
  display: none;
  padding: 0 40px 22px 0;
  font-size: 15px;
  color: #7a8494;
  line-height: 1.65;
  max-width: 52ch;
}

.faq-item.is-open .faq-item__answer {
  display: block;
}

.home-faq {
  background: #f5f6f8;
  padding: 96px 0 104px;
}

.home-faq__inner {
  max-width: 1760px;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.35fr);
  gap: 48px 96px;
  align-items: start;
}

.home-faq__left {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.home-faq__meta {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 14px;
  margin-bottom: 22px;
}

.home-faq__number {
  font-size: clamp(72px, 9vw, 110px);
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: #d0d5dc;
}

.home-faq__eyebrow {
  margin: 0;
  padding: 0 0 0.06em;
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8b93a1;
}

.home-faq__title {
  margin: 0;
  font-size: clamp(32px, 3.6vw, 48px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--navy);
  max-width: none;
}

.home-faq__title span {
  display: block;
}

.home-faq__more {
  margin-top: auto;
  padding-top: 48px;
  font-size: 15px;
  font-weight: 600;
  color: #1552a8;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

.home-faq__more:hover {
  color: var(--navy);
}

.home-faq__list .faq-item:first-child {
  border-top: 1px solid #d7dde6;
}

.home-faq .faq-item__question {
  font-size: 20px;
  font-weight: 600;
  padding: 26px 0;
  color: var(--navy);
}

.home-faq .faq-item__question:hover {
  color: var(--navy);
  opacity: 0.82;
}

.home-faq .faq-item__answer {
  font-size: 15px;
  line-height: 1.55;
  color: #6b7380;
  padding: 0 48px 26px 0;
  max-width: 54ch;
}

.home-faq .faq-item__plus::before,
.home-faq .faq-item__plus::after {
  background: #c5ccd6;
}

@media (max-width: 980px) {
  .home-faq__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .home-faq__title {
    max-width: none;
  }

  .home-faq__more {
    padding-top: 28px;
    margin-top: 8px;
  }
}

@media (max-width: 640px) {
  .home-faq {
    padding: 72px 0 80px;
  }

  .faq-item__question {
    font-size: 16px;
    padding: 18px 0;
  }

  .home-faq .faq-item__question {
    font-size: 17px;
    padding: 20px 0;
  }
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 80px 0;
  text-align: center;
}

.cta-section__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section__text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ==========================================================================
   Footer — compact band + accordion columns
   ========================================================================== */
.site-footer {
  background: #f7f9fc;
  color: #6b7380;
  padding: 48px 0 28px;
  border-top: 1px solid #e6ebf1;
}

.site-footer__inner {
  max-width: 1760px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-band {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 20px 32px;
  align-items: center;
  padding: 22px 24px;
  background: #0a2d62;
  color: #fff;
}

.footer-band__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.footer-band__logo {
  display: block;
  width: auto;
  height: 88px;
  max-width: 140px;
  object-fit: contain;
  object-position: left center;
}

.footer-band__mark {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

.footer-band__name {
  display: block;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.footer-band__name .site-logo__hv {
  color: #6ea0ff;
}

.footer-band__name .site-logo__transport {
  color: #e5e7eb;
}

.footer-band__meta {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.footer-band__address {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
}

.footer-band__gbp {
  margin: 8px 0 0;
}

.footer-band__gbp a {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-band__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-band__phone {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  text-decoration: none;
  min-width: 0;
}

.footer-band__phone span {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  white-space: nowrap;
}

.footer-band__phone small {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.footer-band__wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  background: #25d366;
  color: #0a2d62;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.footer-band__wa:hover {
  background: #1ebe57;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px 36px;
}

.footer-acc {
  margin: 0;
  border: 0;
  background: transparent;
}

.footer-acc__summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  list-style: none;
  cursor: default;
  padding: 0 0 10px;
  margin: 0 0 12px;
  border-bottom: 1px solid #d5dae3;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8b93a1;
}

.footer-acc__summary::-webkit-details-marker {
  display: none;
}

.footer-acc__summary em {
  font-style: normal;
  font-variant-numeric: tabular-nums;
  color: #a0a8b4;
}

.footer-acc__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-acc__list a {
  font-size: 14px;
  font-weight: 400;
  color: #5a646c;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-acc__list a:hover,
.footer-acc__list a.is-strong {
  color: #0a2d62;
}

.footer-acc__list a.is-strong {
  font-weight: 600;
}

.footer-acc__list--chips {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-acc__list--chips a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid #d5dae3;
  background: #fff;
  font-size: 13px;
  font-weight: 500;
  color: #0a2d62;
}

.footer-acc__list--chips a:hover {
  border-color: #0a2d62;
}

.footer-acc__more {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: #1552a8;
  text-decoration: none;
}

.footer-aside {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.footer-aside__label {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8b93a1;
}

.footer-aside__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-aside__links a {
  font-size: 14px;
  color: #5a646c;
  text-decoration: none;
}

.footer-aside__links a:hover {
  color: #0a2d62;
}

.footer-aside__langs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.footer-aside__langs a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid #d5dae3;
  background: #fff;
  color: #6b7380;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}

.footer-aside__langs a.is-active,
.footer-aside__langs a:hover {
  border-color: #0a2d62;
  color: #0a2d62;
  background: #eef3f9;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  padding-top: 16px;
  border-top: 1px solid #d5dae3;
  font-size: 12px;
  color: #8b93a1;
}

.footer-bottom__copy,
.footer-bottom__note {
  margin: 0;
}

/* Legacy class hooks kept for safety (no styles needed). */

@media (max-width: 1024px) {
  .footer-band {
    grid-template-columns: 1fr 1fr;
  }

  .footer-band__actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 24px;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 28px 0 calc(88px + env(safe-area-inset-bottom, 0px));
  }

  .site-footer__inner {
    gap: 18px;
  }

  .footer-band {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
  }

  .footer-band__actions {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    width: 100%;
  }

  .footer-band__phone {
    width: 100%;
  }

  .footer-band__wa {
    min-width: 108px;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid #e1e6ee;
  }

  .footer-acc {
    border-bottom: 1px solid #e1e6ee;
  }

  .footer-acc__summary {
    cursor: pointer;
    margin: 0;
    padding: 14px 0;
    border-bottom: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    box-sizing: border-box;
  }

  .footer-acc__summary > span {
    flex: 1 1 auto;
    min-width: 0;
  }

  .footer-acc__summary::after {
    content: '+';
    font-size: 18px;
    font-weight: 400;
    color: #0a2d62;
    line-height: 1;
    flex: 0 0 auto;
    margin-left: 8px;
  }

  .footer-acc[open] .footer-acc__summary::after {
    content: '–';
  }

  .footer-acc__summary em {
    margin-left: auto;
    margin-right: 0;
    flex: 0 0 auto;
  }

  /* Closed by default on mobile via JS; CSS keeps first open fallback */
  .footer-acc__list,
  .footer-acc__more {
    padding-bottom: 14px;
  }

  .footer-aside {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding-top: 16px;
  }

  .footer-aside__links {
    gap: 6px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding-top: 12px;
  }
}


/* ==========================================================================
   Page Templates
   ========================================================================== */
.page-header,
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 120px 0 64px;
  color: var(--white);
}

.page-hero--dark {
  padding: 140px 0 72px;
}

.page-hero__top {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 24px;
}

.page-hero__number {
  font-family: var(--font-display);
  font-size: clamp(56px, 10vw, 120px);
  font-weight: 700;
  line-height: 0.85;
  color: rgba(255, 255, 255, 0.12);
  letter-spacing: -2px;
}

.page-hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  padding-bottom: 8px;
}

.page-hero__eyebrow--solo {
  padding-bottom: 0;
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
  max-width: 720px;
}

.page-hero__subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.75);
  max-width: 640px;
  line-height: 1.6;
}

.page-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.page-hero__chip {
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
}

.page-header__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 12px;
}

.page-header__subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
}

.page-content {
  padding: 64px 0;
}

.page-content .container {
  max-width: 800px;
}

.page-content--wide .container {
  max-width: var(--container);
}

.page-content h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  margin: 32px 0 16px;
  color: var(--navy);
}

.page-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 24px 0 12px;
  color: var(--text);
}

.page-content p {
  margin-bottom: 16px;
  color: var(--gray);
  line-height: 1.7;
}

.page-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.page-content ul li {
  margin-bottom: 8px;
  color: var(--gray);
}

/* Filter chips */
.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.filter-chips__chip {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: all var(--transition);
}

.filter-chips__chip:hover {
  border-color: var(--chip-border);
  color: var(--blue);
}

.filter-chips__chip.is-active {
  background: var(--chip-bg);
  border-color: var(--chip-border);
  color: var(--blue);
  font-weight: 600;
}

/* Service cards grid */
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), opacity var(--transition), transform var(--transition);
}

.service-card.is-hidden {
  display: none;
}

.service-card:hover {
  box-shadow: var(--shadow);
}

.service-card__image {
  aspect-ratio: 16 / 10;
  background: #eef2f7;
  overflow: hidden;
}

.service-card__image-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e7effa 0%, #dce6f5 100%);
}

.service-card__body {
  padding: 24px;
  flex: 1;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.service-card__desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* Legacy services page grid */
.services-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.service-box {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.service-box__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-box__text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* Page CTA band */
.page-cta-band {
  background: var(--navy-dark);
  padding: 64px 0;
}

.page-cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.page-cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.page-cta-band__subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.page-cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Angebot wizard */
.angebot-wizard {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.angebot-wizard__progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--navy-dark);
  padding: 0;
}

.angebot-wizard__step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 8px;
  text-align: center;
  border-bottom: 3px solid transparent;
  opacity: 0.5;
  transition: opacity var(--transition), border-color var(--transition);
}

.angebot-wizard__step-indicator.is-active,
.angebot-wizard__step-indicator.is-complete {
  opacity: 1;
  border-bottom-color: var(--blue);
}

.angebot-wizard__step-num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
}

.angebot-wizard__step-indicator.is-active .angebot-wizard__step-num {
  color: var(--white);
}

.angebot-wizard__step-label {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.3;
}

.angebot-wizard__step-indicator.is-active .angebot-wizard__step-label {
  color: var(--white);
}

.angebot-wizard__panel {
  padding: 32px;
}

.angebot-wizard__panel[hidden] {
  display: none;
}

.angebot-wizard__panel-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}

.angebot-wizard__nav {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  justify-content: flex-end;
}

.angebot-wizard__nav--submit {
  justify-content: space-between;
}

.angebot-wizard__checkboxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.angebot-wizard__checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 15px;
  color: var(--text);
  transition: border-color var(--transition), background var(--transition);
}

.angebot-wizard__checkbox:hover {
  border-color: var(--chip-border);
  background: var(--chip-bg);
}

.angebot-wizard__checkbox input {
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
  flex-shrink: 0;
}

.angebot-wizard__whatsapp {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}

.angebot-wizard__whatsapp a {
  color: var(--blue);
  font-weight: 600;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.form-hint {
  margin-top: 6px;
  font-size: 13px;
  color: var(--muted);
}

.form-hint--spaced {
  margin-bottom: 20px;
}

/* FAQ page layout */
.faq-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
}

.faq-layout__lead {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  position: sticky;
  top: 120px;
}

.faq-list--page {
  max-width: none;
}

.faq-list--page .faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-list--page .faq-item__question {
  gap: 16px;
  padding: 24px 0;
  font-size: 18px;
}

.faq-item__num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  flex-shrink: 0;
  min-width: 28px;
}

.faq-item__text {
  flex: 1;
}

.faq-list--page .faq-item__answer {
  padding: 0 0 24px 44px;
  font-size: 16px;
}

/* About page */
.about-section {
  padding: 80px 0;
}

.about-block {
  max-width: 720px;
  margin-bottom: 64px;
}

.about-block--right {
  margin-left: auto;
  text-align: right;
}

.about-block__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

.about-block__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-block__text {
  font-size: 18px;
  color: var(--gray);
  line-height: 1.7;
}

.about-values {
  padding: 0 0 80px;
  background: #f8f9fb;
}

.about-values__header {
  margin-bottom: 40px;
}

.about-values__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  color: var(--navy);
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.about-value-card {
  padding: 32px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: box-shadow var(--transition);
}

.about-value-card:hover {
  box-shadow: var(--shadow);
}

.about-value-card__num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 16px;
  display: block;
}

.about-value-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.about-value-card__desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* Angebot form (legacy) */
.angebot-form {
  max-width: 640px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* 404 — Figma 1:2179 */
.error404-page {
  background: #fff;
}

.error404-hero {
  padding: 80px;
  position: relative;
  overflow: hidden;
}

.error404-hero__inner {
  max-width: 1054px;
  gap: 16px;
}

.error404-hero__title {
  white-space: normal;
  max-width: 18ch;
}

.error404-hero__text {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  max-width: 52ch;
}

@media (max-width: 900px) {
  .error404-hero {
    padding: 48px 24px;
  }

  .error404-hero__title {
    font-size: clamp(36px, 8vw, 56px);
  }
}

/* Legal pages */
.legal-hero {
  padding: 88px 0 40px;
  background: #fff;
  border-bottom: 1px solid #e6ebf1;
}

.legal-hero__eyebrow {
  font-size: 14px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #9aa3af;
  margin: 0 0 12px;
}

.legal-hero__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  color: var(--navy);
  margin: 0;
  line-height: 1.15;
}

.legal-hero__lead {
  margin: 16px 0 0;
  font-size: 18px;
  color: var(--gray);
  max-width: 60ch;
}

.legal-content {
  padding: 48px 0 96px;
  background: #fff;
}

.legal-content__inner {
  max-width: 760px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
}

.legal-content__inner h2 {
  font-size: 22px;
  color: var(--navy);
  margin: 32px 0 12px;
}

.legal-content__inner h3 {
  font-size: 18px;
  color: var(--navy);
  margin: 24px 0 8px;
}

.legal-content__inner p,
.legal-content__inner ul {
  margin: 0 0 14px;
}

.legal-content__inner ul {
  padding-left: 1.2em;
}

/* Stadt page */
.stadt-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
}

.stadt-tabs__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 28px;
  border: 1px solid #d5dde7;
  border-radius: 999px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  background: #fff;
  transition: background 0.2s, border-color 0.2s;
}

.stadt-tabs__item:hover,
.stadt-tabs__item.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.stadt-body {
  padding: 64px 0 88px;
  background: #fff;
}

.stadt-body__intro {
  max-width: 640px;
  margin-bottom: 48px;
}

.stadt-body__title {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 16px;
}

.stadt-body__lead {
  margin: 0;
  font-size: 18px;
  color: var(--gray);
  line-height: 1.55;
}

.stadt-body__grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 64px;
  align-items: start;
}

.stadt-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.stadt-list__item {
  display: grid;
  gap: 6px;
  padding: 22px 0;
  border-top: 1px solid #e6ebf1;
}

.stadt-list__item:last-child {
  border-bottom: 1px solid #e6ebf1;
}

.stadt-list__item strong {
  font-size: 18px;
  color: var(--navy);
}

.stadt-list__item span {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.5;
}

.stadt-aside__media {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  background: #eaf1f8;
}

.stadt-aside__media img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.stadt-aside__tips {
  background: #f3f6fa;
  border-radius: 12px;
  padding: 24px;
}

.stadt-aside__label {
  margin: 0 0 14px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #9aa3af;
}

.stadt-aside__tips ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.stadt-aside__tips li {
  font-size: 15px;
  color: var(--navy);
  line-height: 1.45;
  padding-left: 16px;
  position: relative;
}

.stadt-aside__tips li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green, #2f9e44);
}

@media (max-width: 900px) {
  .stadt-body__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Blog / Index */
.posts-grid {
  display: grid;
  gap: 32px;
}

.post-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: box-shadow var(--transition);
}

.post-card:hover {
  box-shadow: var(--shadow);
}

.post-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.post-card__title a {
  color: var(--text);
  transition: color var(--transition);
}

.post-card__title a:hover {
  color: var(--blue);
}

.post-card__meta {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
}

.post-card__excerpt {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.6;
}

/* ==========================================================================
   Mobile Navigation Overlay
   ========================================================================== */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1600;
  background: #0a2d62;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 0;
  align-items: stretch;
  justify-content: stretch;
}

.mobile-nav-overlay.is-open {
  display: flex;
}

.mobile-nav-overlay__panel {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  max-height: 100%;
  background: #0a2d62;
  color: #fff;
  padding: 16px 20px calc(24px + env(safe-area-inset-bottom, 0px));
  box-sizing: border-box;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: none;
  animation: hvNavIn 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes hvNavIn {
  from {
    transform: translateX(18px);
    opacity: 0.6;
  }
  to {
    transform: none;
    opacity: 1;
  }
}

.mobile-nav-overlay__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.mobile-nav-overlay__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.mobile-nav-overlay__brand img {
  width: auto !important;
  height: 56px !important;
  max-width: none !important;
  max-height: 56px !important;
  object-fit: contain;
  object-position: left center;
  filter: none;
}

.mobile-nav-overlay__close {
  position: relative;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  cursor: pointer;
}

.mobile-nav-overlay__close span {
  position: absolute;
  left: 11px;
  right: 11px;
  top: 50%;
  height: 2px;
  background: #fff;
}

.mobile-nav-overlay__close span:first-child {
  transform: rotate(45deg);
}

.mobile-nav-overlay__close span:last-child {
  transform: rotate(-45deg);
}

.mobile-nav-overlay__nav ul {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-overlay__nav li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-overlay__nav a {
  display: block;
  padding: 14px 0;
  font-family: var(--font-sans);
  font-size: 34px;
  font-weight: 600;
  line-height: 1.05;
  color: #fff;
  text-decoration: none;
}

.mobile-nav-overlay__jump {
  display: none;
}

.mobile-nav-overlay__jump-label {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.mobile-nav-overlay__jump-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mobile-nav-overlay__jump-list a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}

.mobile-nav-overlay__foot {
  margin-top: auto;
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav-overlay__phone {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #fff;
  text-decoration: none;
}

.mobile-nav-overlay__phone-num {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.mobile-nav-overlay__phone-meta {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.mobile-nav-overlay__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-nav-overlay__actions .btn {
  margin: 0;
  justify-content: center;
  width: 100%;
}

body.nav-open .site-header {
  z-index: 100;
}

body.nav-open .menu-toggle span {
  background: var(--navy);
}

body.nav-open .top-bar,
body.nav-open .site-header {
  visibility: hidden;
  pointer-events: none;
}

body.nav-open .mobile-dock {
  display: none !important;
}

/* Legacy selectors still used in older markup hooks */
.mobile-nav-overlay > ul {
  display: none;
}

.mobile-nav-overlay > .btn {
  display: none;
}

@media (max-width: 768px) {
  .mobile-nav-overlay__panel {
    padding: 10px 16px calc(18px + env(safe-area-inset-bottom, 0px));
  }

  .mobile-nav-overlay__top {
    margin-bottom: 14px;
    padding-bottom: 12px;
  }

  .mobile-nav-overlay__brand {
    font-size: 13px;
    letter-spacing: 0.04em;
  }

  .mobile-nav-overlay__nav a {
    font-size: 32px;
  }

  .mobile-nav-overlay__phone-num {
    font-size: 38px;
  }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .service-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-values__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .calculator {
    max-width: 480px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-block__frame {
    --intro-strip-min: 100px;
    width: min(920px, 94vw);
    height: min(560px, 88vw);
  }

  .intro-block__figure {
    /* width driven by --intro-widen; keep absolute centering */
    height: auto;
    top: 0;
    bottom: 0;
  }

  .services-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-image {
    position: static;
    order: -1;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .cities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-cards {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-top__address,
  .footer-top__phone {
    justify-self: start;
    text-align: left;
    align-items: flex-start;
  }

  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 28px;
    padding: 36px 0 32px;
  }
}

@media (max-width: 768px) {
  /* Languages move into header dropdown — hide sparse top-bar strip */
  .top-bar,
  .top-bar--home,
  body.home .top-bar--home {
    display: none !important;
  }

  .top-bar__langs,
  .top-bar .lang-switch {
    display: none !important;
  }

  .top-bar__tagline {
    display: none;
  }

  .main-nav {
    display: none;
  }

  .header-phone {
    display: none;
  }

  .header-actions .btn--primary {
    display: none;
  }

  .header-actions {
    gap: 10px;
  }

  .lang-dropdown {
    display: block;
  }

  .site-header,
  .site-header--home {
    z-index: 200;
    overflow: visible;
  }

  .site-header__inner,
  .header-actions {
    overflow: visible;
  }

  .menu-toggle {
    display: flex;
  }

  .site-header--overlay {
    top: 0;
    margin: 0 16px;
  }

  .site-header--home {
    top: 0;
  }

  .lang-switch--header {
    display: none;
  }

  .hero {
    padding-top: 0;
    min-height: auto;
    padding-bottom: 24px;
  }

  .hero__bg {
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .hero__overlay {
    display: none !important;
  }

  .hero__content {
    max-width: none;
  }

  .hero__copy {
    padding-right: 16px;
  }

  .calculator,
  .hero .calculator {
    max-width: none;
    width: calc(100% - 32px);
  }

  .intro-block {
    padding: 28px 0 56px;
    min-height: 0;
  }

  .intro-block__inner {
    justify-content: center;
    margin-bottom: 18px;
  }

  .intro-block__text {
    text-align: center;
    max-width: 36em;
    font-size: 13px;
    letter-spacing: 0.04em;
  }

  .intro-block__stage {
    min-height: 340px;
  }

  .intro-block__frame {
    --intro-strip-min: 72px;
    width: min(100%, 94vw);
    height: min(420px, 120vw);
  }

  .intro-block__links a {
    font-size: clamp(48px, 6.2vw, 58px);
    white-space: nowrap;
  }

  .intro-block__number {
    font-size: 140px;
    left: 12px;
  }

  .calculator {
    max-width: 100%;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cities-grid {
    grid-template-columns: 1fr 1fr;
  }

  .services-page-grid {
    grid-template-columns: 1fr;
  }

  .service-cards {
    grid-template-columns: 1fr;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .faq-layout__lead {
    position: static;
  }

  .about-block--right {
    margin-left: 0;
    text-align: left;
  }

  .about-values__grid {
    grid-template-columns: 1fr 1fr;
  }

  .angebot-wizard__progress {
    grid-template-columns: repeat(2, 1fr);
  }

  .angebot-wizard__step-label {
    font-size: 10px;
  }

  .angebot-wizard__checkboxes {
    grid-template-columns: 1fr;
  }

  .page-cta-band__inner {
    flex-direction: column;
    text-align: center;
  }

  .page-cta-band__actions {
    justify-content: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
  }

  .section {
    padding: 56px 0;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .stat-card {
    min-height: 136px;
  }

  .stat-card__value {
    font-size: 22px;
    padding: 14px 12px 10px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn,
  .hero__phone-link {
    width: 100%;
    justify-content: center;
  }

  .hero__panel .hero__tags {
    white-space: normal;
    letter-spacing: 0.08em;
  }

  .hero__panel {
    margin: 0 -16px;
    width: calc(100% + 32px);
    padding: 28px 16px 18px;
    box-sizing: border-box;
    background: #0a2d62;
  }

  .hero__panel .hero__subtitle {
    margin-bottom: 12px;
    color: #fff;
    text-shadow: none;
  }

  .hero__panel .hero__tags {
    color: rgba(255, 255, 255, 0.88);
  }

  .hero__actions {
    margin: 0 -16px;
    width: calc(100% + 32px);
    padding: 18px 16px 22px;
    box-sizing: border-box;
    background: linear-gradient(
      180deg,
      rgba(6, 29, 66, 0.55) 0%,
      rgba(6, 29, 66, 0.88) 38%,
      rgba(6, 29, 66, 0.94) 100%
    );
  }

  .hero__phone-link {
    align-items: center;
    text-align: center;
  }

  .hero__phone-number,
  .hero__phone-hours {
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
  }

  .hero__phone-hours {
    opacity: 0.9;
  }
}

/* ==========================================================================
   Leistungen detail page (Figma)
   ========================================================================== */
.leistung-hero {
  padding: 140px 0 48px;
  background: #fff;
}

.leistung-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}

.leistung-hero__eyebrow {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 20px;
  color: #9aa3af;
  font-size: 14px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.leistung-hero__number {
  font-size: clamp(64px, 8vw, 96px);
  line-height: 0.85;
  font-weight: 500;
  color: #e6ebf1;
}

.leistung-hero__title {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  color: var(--navy);
  font-weight: 600;
  max-width: 640px;
}

.leistung-hero__intro {
  font-size: 18px;
  line-height: 1.6;
  color: var(--gray);
  margin-bottom: 28px;
}

.leistung-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.leistung-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid #e5e9ef;
  border-bottom: 1px solid #e5e9ef;
  margin-bottom: 32px;
}

.leistung-stats__item {
  padding: 24px 16px;
  border-right: 1px solid #e5e9ef;
}

.leistung-stats__item:last-child {
  border-right: 0;
}

.leistung-stats__item strong {
  display: block;
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 6px;
}

.leistung-stats__item span {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #8b95a5;
}

.leistung-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.leistung-tabs__btn {
  padding: 12px 18px;
  border: 1px solid #c9ced8;
  background: #fff;
  color: #5a646c;
  border-radius: 2px;
  font-size: 15px;
}

.leistung-tabs__btn.is-active,
.leistung-tabs__btn:hover {
  background: #e7effa;
  border-color: #6980d1;
  color: #3e4f8a;
}

.leistung-section-title {
  font-size: clamp(28px, 3vw, 40px);
  color: var(--navy);
  margin-bottom: 32px;
  font-weight: 600;
}

.leistung-included__grid,
.leistung-ablauf__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.leistung-included__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.leistung-included__list li {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid #e5e9ef;
}

.leistung-included__list li:last-child {
  border-bottom: 1px solid #e5e9ef;
}

.leistung-included__text {
  color: var(--navy);
  font-size: 18px;
  font-weight: 500;
}

.leistung-included__tag {
  color: #8b95a5;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: normal;
}

.leistung-included__media img {
  width: 100%;
  display: block;
  border-radius: 8px;
  margin-bottom: 20px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.leistung-excluded {
  background: #e7effa;
  padding: 24px;
}

.leistung-excluded__title {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 12px;
}

.leistung-excluded ul {
  margin: 0;
  padding-left: 18px;
  color: #5a646c;
  line-height: 1.7;
}

.leistung-ablauf__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.leistung-ablauf__list li {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 16px;
  align-items: start;
  padding: 22px 0;
  border-top: 1px solid #dce3ec;
}

.leistung-ablauf__list li:last-child {
  border-bottom: 1px solid #dce3ec;
}

.leistung-ablauf__num {
  font-size: 20px;
  color: #9aa3af;
  font-weight: 500;
}

.leistung-ablauf__list h3 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 22px;
}

.leistung-ablauf__list p {
  margin: 0;
  color: var(--gray);
}

.leistung-ablauf__time {
  font-size: 13px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #8b95a5;
  white-space: normal;
}

.leistung-ablauf__note {
  background: #e7effa;
  padding: 28px;
}

.leistung-ablauf__note-title {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 10px;
}

.leistung-estimate {
  background: #e7effa;
  padding: 80px 0;
}

.leistung-estimate__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: stretch;
}

.leistung-estimate__eyebrow {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #6e7880;
  margin-bottom: 12px;
}

.leistung-estimate__title {
  font-size: clamp(28px, 3vw, 40px);
  color: var(--navy);
  margin-bottom: 16px;
}

.leistung-estimate__text {
  color: var(--gray);
  margin-bottom: 28px;
  max-width: 520px;
}

.leistung-estimate__field {
  margin-bottom: 20px;
}

.leistung-estimate__label {
  display: block;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #6e7880;
  margin-bottom: 8px;
  font-weight: 600;
}

.leistung-estimate__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.leistung-estimate__chip {
  min-width: 52px;
  padding: 12px 16px;
  border: 1px solid #c9ced8;
  background: #fff;
  color: #5a646c;
  border-radius: 2px;
}

.leistung-estimate__chip.is-selected {
  background: #fff;
  border-color: #6980d1;
  color: #3e4f8a;
  box-shadow: inset 0 0 0 1px #6980d1;
}

.leistung-estimate__input-row {
  display: flex;
  align-items: stretch;
  max-width: 280px;
}

.leistung-estimate__input-row input {
  flex: 1;
  padding: 12px;
  border: 1px solid #c9ced8;
  border-right: 0;
  font-size: 16px;
  color: var(--navy);
}

.leistung-estimate__input-row span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  border: 1px solid #c9ced8;
  background: #fff;
  color: #5a646c;
}

.leistung-estimate__card {
  background: var(--navy-dark);
  color: #fff;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.leistung-estimate__card-label {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #9aadc9;
  margin-bottom: 10px;
}

.leistung-estimate__card-price {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 500;
  margin-bottom: 20px;
}

.leistung-estimate__bar {
  height: 1px;
  background: rgba(255,255,255,0.25);
  margin-bottom: 20px;
}

.leistung-estimate__card-note {
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

.leistung-cta {
  background: var(--navy-dark);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.leistung-cta__eyebrow {
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}

.leistung-cta__title {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 28px;
  font-weight: 600;
}

.leistung-cta__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.btn--outline-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.55);
}

.btn--outline-light:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

@media (max-width: 980px) {
  .leistung-hero__grid,
  .leistung-included__grid,
  .leistung-ablauf__grid,
  .leistung-estimate__grid,
  .leistung-stats {
    grid-template-columns: 1fr;
  }

  .leistung-stats__item {
    border-right: 0;
    border-bottom: 1px solid #e5e9ef;
  }

  .leistung-ablauf__list li {
    grid-template-columns: 48px 1fr;
  }

  .leistung-ablauf__time {
    grid-column: 2;
  }
}

/* ==========================================================================
   Einsatzgebiet page
   ========================================================================== */
.einsatz-hero {
  padding: 140px 0 40px;
  background: #fff;
}

.einsatz-hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}

.einsatz-hero__eyebrow {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 20px;
  color: #9aa3af;
  font-size: 14px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.einsatz-hero__number {
  font-size: clamp(64px, 8vw, 96px);
  line-height: 0.85;
  font-weight: 500;
  color: #e6ebf1;
}

.einsatz-hero__title {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  color: var(--navy);
  font-weight: 600;
  max-width: 680px;
}

.einsatz-hero__intro {
  font-size: 18px;
  line-height: 1.6;
  color: var(--gray);
  margin-bottom: 28px;
}

.einsatz-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.einsatz-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #e5e9ef;
  border-bottom: 1px solid #e5e9ef;
}

.einsatz-stats__item {
  padding: 24px 16px;
  border-right: 1px solid #e5e9ef;
}

.einsatz-stats__item:last-child {
  border-right: 0;
}

.einsatz-stats__item strong {
  display: block;
  font-size: 32px;
  color: var(--navy);
  margin-bottom: 6px;
}

.einsatz-stats__item span {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #8b95a5;
}

.einsatz-cities {
  padding: 24px 0 64px;
}

.einsatz-cities__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.einsatz-cities__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid #e5e9ef;
  color: inherit;
  text-decoration: none;
  transition: padding-left 0.2s ease;
}

.einsatz-cities__list li:last-child .einsatz-cities__row {
  border-bottom: 1px solid #e5e9ef;
}

.einsatz-cities__row:hover {
  padding-left: 8px;
}

.einsatz-cities__main {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.einsatz-cities__name {
  font-size: 24px;
  color: var(--navy);
  font-weight: 600;
}

.einsatz-cities__areas {
  font-size: 14px;
  color: #8b95a5;
}

.einsatz-cities__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.einsatz-cities__km {
  font-size: 14px;
  color: #8b95a5;
}

.einsatz-cities__km strong {
  font-size: 32px;
  color: var(--navy);
  font-weight: 500;
  margin-right: 4px;
}

.einsatz-cities__arrow {
  color: #a0a8b4;
  font-size: 20px;
}

@media (max-width: 980px) {
  .einsatz-hero__grid,
  .einsatz-stats {
    grid-template-columns: 1fr;
  }

  .einsatz-stats__item {
    border-right: 0;
    border-bottom: 1px solid #e5e9ef;
  }

  .einsatz-cities__row {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

/* ==========================================================================
   Angebot / Anfrage page
   ========================================================================== */
.anfrage-body {
  padding: 24px 0 96px;
  background: #fff;
}

.anfrage-body__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.7fr);
  gap: 48px;
  align-items: start;
}

.anfrage-form__group {
  margin-bottom: 40px;
}

.anfrage-form__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #9aa3af;
  margin-bottom: 20px;
}

.anfrage-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
}

.anfrage-form .form-group {
  margin-bottom: 0;
}

.anfrage-form .form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #6e7880;
  margin-bottom: 8px;
}

.anfrage-form .form-group input,
.anfrage-form .form-group select {
  width: 100%;
  height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: #fff;
  color: var(--navy);
}

.anfrage-form .form-group input:focus,
.anfrage-form .form-group select:focus {
  border-color: var(--blue);
  outline: none;
}

.anfrage-form__alt {
  margin-top: 20px;
  font-size: 14px;
  color: var(--muted);
}

.anfrage-form__alt a {
  color: var(--blue);
  font-weight: 600;
  margin-left: 6px;
}

.anfrage-aside {
  background: var(--navy-dark);
  color: #fff;
  padding: 32px 28px;
  position: sticky;
  top: 24px;
}

.anfrage-aside__eyebrow {
  font-size: 13px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 28px;
}

.anfrage-aside__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.anfrage-aside__item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.anfrage-aside__item:last-of-type {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.anfrage-aside__num {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  padding-top: 4px;
}

.anfrage-aside__title {
  display: block;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}

.anfrage-aside__text {
  font-size: 15px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.anfrage-aside__note {
  margin-top: 28px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 980px) {
  .anfrage-body__grid {
    grid-template-columns: 1fr;
  }

  .anfrage-aside {
    position: static;
  }
}

@media (max-width: 640px) {
  .anfrage-form__row {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Shared inner pages: split + prices + FAQ page
   ========================================================================== */
.page-split {
  padding: 24px 0 96px;
  background: #fff;
}

.page-split__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.75fr);
  gap: 48px;
  align-items: start;
}

.page-split__block {
  padding: 28px 0;
  border-top: 1px solid #e5e9ef;
}

.page-split__block:first-child {
  border-top: 0;
  padding-top: 0;
}

.page-split__block h2 {
  font-size: clamp(22px, 2.4vw, 28px);
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 12px;
}

.page-split__block p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--gray);
  margin: 0;
  max-width: 720px;
}

.page-split__aside {
  background: #eef3f9;
  padding: 28px 24px;
  position: sticky;
  top: 24px;
}

.page-split__aside-label {
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #6e7880;
  margin-bottom: 20px;
}

.page-split__aside-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.page-split__aside-list li {
  padding: 14px 0;
  border-top: 1px solid rgba(10, 45, 98, 0.12);
  font-size: 16px;
  color: var(--navy);
  line-height: 1.4;
}

.page-split__aside-list li:last-child {
  border-bottom: 1px solid rgba(10, 45, 98, 0.12);
}

.preise-list__items {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.preise-list__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid #c9ced8;
}

.preise-list__main {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.preise-list__title {
  display: block;
  margin: 0;
  font-family: var(--font-sans);
  font-size: 32px;
  font-weight: 600;
  line-height: 32px;
  color: #0a2d62;
}

.preise-list__meta {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.52px;
  color: #6e7880;
}

.preise-list__desc {
  flex: 1 1 0;
  min-width: 0;
  margin: 0;
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.52px;
  color: #6e7880;
}

.preise-list__end {
  display: flex;
  align-items: center;
  gap: 64px;
  flex-shrink: 0;
}

.preise-list__duration,
.preise-list__detail {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 228px;
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.52px;
  color: #6e7880;
  white-space: normal;
}

.preise-list__detail-line {
  display: block;
}

.preise-list__amount {
  display: block;
  width: 266px;
  font-family: var(--font-mono);
  font-size: 64px;
  font-weight: 400;
  line-height: 64px;
  letter-spacing: -0.48px;
  color: #0a2d62;
  text-align: right;
  white-space: nowrap;
}

.preise-list__note {
  margin: 48px 0 0;
  max-width: 947px;
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 500;
  line-height: normal;
  color: #717c92;
}

.preise-list__note-em {
  color: #0a2d62;
  font-weight: 500;
}

.preise-page-figma .about-page__inner {
  gap: 80px;
}

.faq-page {
  padding: 8px 0 64px;
}

.about-page__text,
.about-page__lead,
.about-page__intro,
.about-page__block-text,
.faq-page,
.faq-page .faq-item__answer,
.faq-page .about-page__intro,
.hvm-lead,
.hvm-body {
  overflow-wrap: break-word;
}

.faq-list--page .faq-item__question {
  align-items: center;
}

@media (max-width: 980px) {
  .page-split__grid {
    grid-template-columns: 1fr;
  }

  .page-split__aside {
    position: static;
  }

  .preise-list__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .preise-list__end {
    width: 100%;
    justify-content: space-between;
    gap: 24px;
  }

  .preise-list__amount {
    width: auto;
    font-size: clamp(36px, 8vw, 48px);
    line-height: 1;
    text-align: right;
  }

  .preise-list__title {
    font-size: 24px;
    line-height: 1.2;
  }

  .preise-list__meta,
  .preise-list__desc {
    font-size: 16px;
    line-height: 1.4;
  }

  .preise-list__note {
    font-size: 16px;
    line-height: 1.5;
  }
}

/* ==========================================================================
   Über uns — Figma 1:1790
   ========================================================================== */
.about-page {
  background: #fff;
}

.about-page__main {
  padding: 80px 80px 0;
  box-sizing: border-box;
}

.about-page__inner {
  max-width: 1760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding-bottom: 80px;
  border-top: 1px solid #c9ced8;
}

.about-page__top {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.about-page__hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  width: 100%;
}

.about-page__hero-left {
  width: 662px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-page__eyebrow {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  white-space: normal;
}

.about-page__number {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 120px;
  line-height: 120px;
  letter-spacing: -4.8px;
  color: #e9edf2;
}

.about-page__eyebrow-label {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 24px;
  line-height: normal;
  text-transform: uppercase;
  color: #6e7880;
}

.about-page__title {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 64px;
  line-height: normal;
  color: #0a2d62;
}

.about-page__hero-right {
  width: 572px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex-shrink: 0;
}

.about-page__intro {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 24px;
  line-height: normal;
  color: #717c92;
}

.about-page__actions,
.about-page__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-start;
}

.about-page__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 24px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  border-radius: 0;
  border: 1px solid transparent;
  box-sizing: border-box;
  white-space: normal;
  transition: opacity var(--transition), background var(--transition), color var(--transition);
}

.about-page__btn--primary {
  background: #1552a8;
  color: #fff;
  border-color: #1552a8;
}

.about-page__btn--primary:hover {
  opacity: 0.92;
}

.about-page__btn--outline {
  background: transparent;
  color: #1552a8;
  border-color: #1552a8;
}

.about-page__btn--outline:hover {
  background: rgba(21, 82, 168, 0.06);
}

.about-page__btn--white {
  background: #fff;
  color: #1a3b6c;
  border-color: #fff;
}

.about-page__btn--white:hover {
  opacity: 0.92;
}

.about-page__btn--ghost {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.about-page__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.about-page__stats {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  border-top: 1px solid #c9ced8;
  border-bottom: 1px solid #c9ced8;
}

.about-page__stat {
  flex: 1 1 0;
  min-width: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-sizing: border-box;
}

.about-page__stat-value {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 48px;
  line-height: 48px;
  color: #0a2d62;
  white-space: normal;
}

.about-page__stat-label {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 20px;
  line-height: 20px;
  text-transform: uppercase;
  color: #5a646c;
}

.about-page__split {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  width: 100%;
}

.about-page__blocks {
  width: 800px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
}

.about-page__block {
  padding: 28px;
  box-sizing: border-box;
}

.about-page__block-title {
  margin: 0 0 16px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 32px;
  line-height: 32px;
  letter-spacing: -1.28px;
  color: #0a2d62;
}

.about-page__block-text {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #717c92;
}

.about-page__facts {
  width: 848px;
  max-width: 100%;
  background: #e7effa;
  padding: 24px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
}

.about-page__facts-label {
  margin: 0;
  padding: 0 16px;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.25;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #6e7880;
}

.about-page__facts-list {
  width: 100%;
  border-top: 1px solid #020617;
}

.about-page__fact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 90px;
  padding: 12px;
  box-sizing: border-box;
  border-bottom: 1px solid #c9ced8;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 20px;
  white-space: normal;
}

.about-page__fact-label {
  color: #717c92;
  line-height: 30px;
}

.about-page__fact-value {
  color: #1552a8;
  letter-spacing: -0.8px;
  line-height: normal;
}

.about-page__cta {
  background: #0a2d62;
  padding: 64px 80px;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}

.about-page__cta-inner {
  max-width: 1760px;
  margin: 0 auto;
  width: min(653px, 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.about-page__cta-eyebrow {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 24px;
  line-height: normal;
  text-transform: uppercase;
  color: #9fb4d2;
  white-space: normal;
}

.about-page__cta-title {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 72px;
  line-height: normal;
  color: #fff;
}

/* FAQ page — Figma 1:1938 */
.about-page__top--faq {
  gap: 80px;
}

.faq-page-figma .about-page__inner {
  gap: 64px;
  padding-bottom: 80px;
}

.faq-figma-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  border-top: 1px solid #020617;
}

.faq-figma-item {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 24px;
  box-sizing: border-box;
  border-bottom: 1px solid #f5f5f5;
  width: 100%;
}

.faq-figma-item__num {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 2px;
  color: #717c92;
  flex-shrink: 0;
  padding-top: 2px;
}

.faq-figma-item__body {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-figma-item__q {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 28px;
  line-height: normal;
  letter-spacing: -1.12px;
  color: #1552a8;
}

.faq-figma-item__a {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #717c92;
}

.faq-estimate {
  background: #e7effa;
  padding: 64px 80px;
  box-sizing: border-box;
  overflow: hidden;
}

.faq-estimate__inner {
  max-width: 1760px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  width: 100%;
}

.faq-estimate__left {
  width: 653px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.faq-estimate__title {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 48px;
  line-height: normal;
  color: #0a2d62;
}

.faq-estimate__text {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 24px;
  line-height: normal;
  color: #717c92;
}

.faq-estimate__fields {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.faq-estimate__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-estimate__field--zimmer {
  width: 420px;
  max-width: 100%;
}

.faq-estimate__field--area {
  width: 210px;
  max-width: 100%;
}

.faq-estimate__label {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13px;
  line-height: 13px;
  letter-spacing: 1.04px;
  text-transform: uppercase;
  color: #6e7880;
}

.faq-estimate__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
}

.faq-estimate__chip {
  flex: 1 1 0;
  min-width: 0;
  padding: 12px 8px;
  background: #fff;
  border: 1px solid #c9ced8;
  border-radius: 2px;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #5a646c;
  cursor: pointer;
  text-align: center;
}

.faq-estimate__chip.is-selected,
.faq-estimate__chip:hover {
  background: #e7effa;
  border-color: #6980d1;
  color: #3e4f8a;
}

.faq-estimate__input-row {
  display: flex;
  width: 100%;
}

.faq-estimate__input {
  flex: 1 1 0;
  min-width: 0;
  padding: 12px;
  border: 1px solid #c9ced8;
  border-right: 0;
  border-radius: 2px 0 0 2px;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 24px;
  color: #0a2d62;
  background: #fff;
  box-sizing: border-box;
}

.faq-estimate__unit {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #c9ced8;
  border-radius: 0 2px 2px 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 24px;
  color: #5a646c;
  box-sizing: border-box;
  flex-shrink: 0;
}

.faq-estimate__card {
  width: 498px;
  max-width: 100%;
  background: #061d42;
  padding: 24px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
}

.faq-estimate__card-label {
  margin: 0 0 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13px;
  line-height: 13px;
  letter-spacing: 1.04px;
  text-transform: uppercase;
  color: #9aadc9;
}

.faq-estimate__card-price {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 56px;
  line-height: 56px;
  letter-spacing: -2.04px;
  color: #fff;
}

.faq-estimate__card-ab {
  font-weight: 400;
  font-size: 20px;
  line-height: 20px;
  letter-spacing: 0;
  color: #9aadc9;
}

.faq-estimate__bar {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.faq-estimate__card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 24px;
  background: #fff;
  color: #0a2d62;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  box-sizing: border-box;
}

.faq-estimate__card-btn:hover {
  opacity: 0.92;
}

.faq-estimate__card-note {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
}

@media (max-width: 1400px) {
  .faq-estimate {
    padding-left: 40px;
    padding-right: 40px;
  }

  .faq-estimate__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .faq-estimate__left,
  .faq-estimate__card {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .faq-figma-item {
    gap: 20px;
    padding: 20px 0;
  }

  .faq-figma-item__q {
    font-size: 22px;
    letter-spacing: -0.8px;
  }

  .faq-figma-item__a {
    font-size: 17px;
    line-height: 26px;
  }

  .faq-estimate__title {
    font-size: 36px;
  }

  .faq-estimate__text {
    font-size: 18px;
  }

  .faq-estimate__card-price {
    font-size: 44px;
    line-height: 44px;
  }
}

@media (max-width: 640px) {
  .faq-estimate {
    padding: 40px 20px;
  }

  .faq-estimate__field--zimmer,
  .faq-estimate__field--area {
    width: 100%;
  }

  .faq-estimate__fields {
    flex-direction: column;
    gap: 20px;
  }

  .faq-estimate__title {
    font-size: 28px;
  }

  .faq-estimate__text {
    font-size: 16px;
    line-height: 1.45;
  }

  .faq-estimate__card-price {
    font-size: 40px;
    line-height: 1;
  }

  .faq-estimate__chip,
  .faq-estimate__chip.leistung-estimate__chip {
    min-height: 44px;
  }

  .faq-figma-item {
    flex-direction: column;
    gap: 8px;
    padding: 18px 0;
  }

  .faq-figma-item__q {
    font-size: 20px;
  }

  .faq-figma-item__a {
    font-size: 16px;
    line-height: 1.5;
  }
}

@media (max-width: 1400px) {
  .about-page__main,
  .about-page__cta {
    padding-left: 40px;
    padding-right: 40px;
  }

  .about-page__split {
    flex-direction: column;
  }

  .about-page__blocks,
  .about-page__facts {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .about-page__hero {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-page__hero-left,
  .about-page__hero-right {
    width: 100%;
  }

  .about-page__number {
    font-size: 80px;
    line-height: 80px;
    letter-spacing: -3.2px;
  }

  .about-page__title {
    font-size: 44px;
  }

  .about-page__intro {
    font-size: 20px;
  }

  .about-page__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .about-page__stat {
    flex: none;
    border-right: 1px solid #c9ced8;
  }

  .about-page__stat:nth-child(2n) {
    border-right: 0;
  }

  .about-page__stat:nth-child(n + 3) {
    border-top: 1px solid #c9ced8;
  }

  .about-page__cta-title {
    font-size: 44px;
  }
}

@media (max-width: 640px) {
  .about-page__main,
  .about-page__cta {
    padding: 40px 20px;
  }

  .about-page__inner {
    gap: 40px;
    padding-bottom: 48px;
  }

  .about-page__top {
    gap: 40px;
  }

  .about-page__hero {
    gap: 28px;
  }

  .about-page__number {
    font-size: 56px;
    line-height: 56px;
    letter-spacing: -2px;
  }

  .about-page__eyebrow-label {
    font-size: 14px;
  }

  .about-page__title {
    font-size: clamp(28px, 8vw, 34px);
    line-height: 1.12;
  }

  .about-page__intro {
    font-size: 17px;
    line-height: 1.45;
  }

  .about-page__actions,
  .about-page__cta-actions {
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }

  .about-page__btn {
    width: 100%;
    min-height: 48px;
    padding: 12px 20px;
  }

  .about-page__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .about-page__stat {
    flex: none;
    padding: 16px;
    border-right: 1px solid #c9ced8;
  }

  .about-page__stat:nth-child(2n) {
    border-right: 0;
  }

  .about-page__stat:nth-child(n + 3) {
    border-top: 1px solid #c9ced8;
  }

  .about-page__stat-value {
    font-size: 28px;
    line-height: 32px;
    white-space: normal;
  }

  .about-page__stat-label {
    font-size: 13px;
    line-height: 1.3;
  }

  .about-page__block {
    padding: 20px 0;
  }

  .about-page__block-title {
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -0.6px;
  }

  .about-page__block-text {
    font-size: 16px;
    line-height: 1.5;
  }

  .about-page__facts {
    padding: 20px;
  }

  .about-page__fact {
    white-space: normal;
    min-height: 64px;
    font-size: 16px;
  }

  .about-page__cta {
    padding: 48px 20px;
  }

  .about-page__cta-eyebrow {
    font-size: 14px;
    white-space: normal;
  }

  .about-page__cta-title {
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.12;
  }

  .error404-hero__title {
    font-size: clamp(28px, 8vw, 36px);
  }

  .error404-hero__text {
    font-size: 16px;
    line-height: 1.5;
    max-width: none;
  }
}

/* ==========================================================================
   Mobile dock — sticky call / quote (mover-site pattern)
   ========================================================================== */
.mobile-dock {
  display: none;
}

@media (max-width: 768px) {
  .mobile-dock {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2147483646;
    gap: 0;
    padding: 0;
    padding-bottom: env(safe-area-inset-bottom, 0);
    background: #fff;
    border-top: 1px solid #dce1e7;
    box-shadow: 0 -8px 24px rgba(6, 29, 66, 0.12);
    pointer-events: auto !important;
    isolation: isolate;
  }

  .mobile-dock__btn {
    position: relative;
    z-index: 2;
    flex: 1 1 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 14px 12px;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    text-align: center;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(10, 45, 98, 0.12);
    cursor: pointer;
    pointer-events: auto !important;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(10, 45, 98, 0.18);
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
  }

  /* Decorative only — never steal taps from the <a> */
  .mobile-dock__btn::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none !important;
  }

  .mobile-dock__btn--call {
    background: #fff;
    color: #0a2d62;
    border-right: 1px solid #dce1e7;
  }

  .mobile-dock__btn--cta {
    background: #1552a8;
    color: #fff;
  }

  body {
    padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px));
  }

  .mobile-nav-overlay.is-open ~ .mobile-dock,
  body:has(.mobile-nav-overlay.is-open) .mobile-dock,
  body.intro-active .mobile-dock {
    display: none;
  }
}

/* ==========================================================================
   SEO Landing (Dortmund)
   ========================================================================== */
.seo-hero {
  background: linear-gradient(135deg, #061d42 0%, #0a2d62 55%, #12407f 100%);
  color: #fff;
  padding: 140px 0 72px;
}

.seo-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 460px;
  gap: 48px;
  align-items: start;
  max-width: 1760px;
  margin: 0 auto;
  padding: 0 24px;
}

.seo-hero > .container.seo-hero__grid,
.seo-hero .container.seo-hero__grid {
  max-width: 1760px;
}

.seo-hero__eyebrow {
  font-size: 13px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}

.seo-hero__title {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.08;
  margin-bottom: 20px;
  max-width: 720px;
}

.seo-hero__lead {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  max-width: 640px;
  margin-bottom: 36px;
}

.seo-hero__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  max-width: 640px;
  margin-bottom: 28px;
  border: 1px solid rgba(255,255,255,0.18);
}

.seo-hero__stats > div {
  padding: 20px 22px;
  border-right: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.seo-hero__stats > div:nth-child(2n) {
  border-right: 0;
}

.seo-hero__stats > div:nth-child(n+3) {
  border-bottom: 0;
}

.seo-hero__stats strong {
  display: block;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 4px;
}

.seo-hero__stats span {
  font-size: 13px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.seo-hero__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.seo-hero__tabs a {
  display: inline-flex;
  align-items: center;
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  transition: background var(--transition), border-color var(--transition);
}

.seo-hero__tabs a:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

.seo-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.seo-calc {
  background: #fff;
  color: var(--text);
  border: 1px solid #dce1e7;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.seo-calc__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid #e5e9ef;
}

.seo-calc__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin: 0;
}

.seo-calc__step {
  font-size: 12px;
  color: #6e7880;
  letter-spacing: 0.8px;
}

.seo-calc__body {
  padding: 20px;
}

.seo-calc__body .form-group {
  margin-bottom: 14px;
}

.seo-calc__body .form-group label,
.seo-calc__body .form-label {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #6e7880;
  margin-bottom: 8px;
  display: block;
}

.seo-calc__body input[type="text"],
.seo-calc__body input[type="number"] {
  width: 100%;
  height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 2px;
}

.seo-calc__footer {
  background: var(--navy-dark);
  color: #fff;
  padding: 20px;
}

.seo-calc__label {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #9aadc9;
  margin-bottom: 8px;
}

.seo-calc__price {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 8px;
}

.seo-calc__volume {
  font-size: 28px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 10px;
  margin-bottom: 16px;
}

.seo-calc__footer .btn {
  margin-bottom: 10px;
}

.seo-section {
  padding: 88px 0;
  background: #fff;
}

.seo-section--gray {
  background: #f3f6fa;
}

.seo-section--insure {
  background: #eaf1f8;
}

.seo-section__title {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--navy);
  font-weight: 600;
  line-height: 1.15;
  max-width: 900px;
  margin: 0 0 32px;
}

.seo-section__head--row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 40px;
}

.seo-section__head--row .seo-section__title {
  margin-bottom: 0;
}

.seo-section__aside {
  font-size: 18px;
  color: var(--gray);
  line-height: 1.5;
  margin: 0;
}

.seo-know__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.seo-know__text {
  font-size: 17px;
  line-height: 1.65;
  color: var(--gray);
  margin-bottom: 18px;
}

.seo-know__chips-label {
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #9aa3af;
  margin: 28px 0 12px;
}

.seo-know__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.seo-know__chips span {
  padding: 10px 14px;
  background: #eef3f9;
  color: var(--navy);
  font-size: 14px;
  font-weight: 500;
}

.seo-routes {
  background: #eef3f9;
  padding: 24px;
}

.seo-routes__label {
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #6e7880;
  margin-bottom: 16px;
}

.seo-routes ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.seo-routes li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid rgba(10,45,98,0.12);
  color: var(--navy);
  font-size: 16px;
}

.seo-routes li:last-child {
  border-bottom: 1px solid rgba(10,45,98,0.12);
}

.seo-midcalc {
  background: var(--navy-dark);
  color: #fff;
  padding: 64px 0;
}

.seo-midcalc__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: stretch;
}

.seo-midcalc__form,
.seo-midcalc__result {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 28px;
}

.seo-midcalc__step,
.seo-midcalc__label {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}

.seo-midcalc__form .form-label,
.seo-midcalc__form label {
  color: rgba(255,255,255,0.7);
}

.seo-midcalc__form .calculator__chip {
  background: transparent;
  border-color: rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.85);
}

.seo-midcalc__form .calculator__chip.is-selected {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  color: #fff;
}

.seo-midcalc__form .calculator__input-row input {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.25);
}

.seo-midcalc__form .calculator__unit {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.25);
}

.seo-midcalc__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.seo-midcalc__price {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 600;
  margin-bottom: 12px;
}

.seo-midcalc__volume {
  font-size: 32px;
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 12px;
  margin-bottom: 20px;
}

.seo-midcalc__breakdown {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}

.seo-midcalc__breakdown li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}

.seo-midcalc__note {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.45;
  margin: 0;
}

.seo-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.seo-card {
  background: #fff;
  padding: 28px 24px;
  border: 1px solid #e5e9ef;
}

.seo-section--gray .seo-card {
  border: 0;
  box-shadow: 0 8px 28px rgba(6,29,66,0.08);
}

.seo-card__price {
  font-size: 40px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.seo-card__title {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--navy);
  margin-bottom: 16px;
}

.seo-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.seo-card li {
  padding: 10px 0;
  border-top: 1px solid #e5e9ef;
  font-size: 15px;
  color: var(--gray);
}

.seo-insure {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: end;
}

.seo-insure__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.seo-insure__list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 18px;
  background: #eef3f9;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 16px;
}

.seo-steps {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
}

.seo-steps__item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid #e5e9ef;
}

.seo-steps__item:last-child {
  border-bottom: 1px solid #e5e9ef;
}

.seo-steps__num {
  font-size: 28px;
  font-weight: 600;
  color: #c5ced8;
}

.seo-steps__body h3 {
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 8px;
}

.seo-steps__body p {
  color: var(--gray);
  margin-bottom: 12px;
  max-width: 720px;
}

.seo-steps__body a {
  color: var(--blue);
  font-weight: 600;
}

.seo-reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.seo-review {
  background: #f3f6fa;
  padding: 28px 24px;
}

.seo-review__top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.seo-review__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 20px;
}

.seo-review__top strong {
  display: block;
  color: var(--navy);
}

.seo-review__top span {
  font-size: 13px;
  color: #6e7880;
}

.seo-review__stars {
  color: #c9a227;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.seo-review__text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--gray);
  margin: 0;
}

@media (max-width: 1024px) {
  .seo-hero__grid,
  .seo-know__grid,
  .seo-midcalc__grid,
  .seo-insure,
  .seo-section__head--row,
  .seo-cards,
  .seo-reviews {
    grid-template-columns: 1fr;
  }

  .seo-hero {
    padding-top: 112px;
  }

  .seo-hero__grid {
    gap: 32px;
    padding: 0 20px;
  }

  .seo-section {
    padding: 64px 0;
  }

  .seo-section__title {
    font-size: clamp(28px, 5vw, 40px);
  }

  .seo-midcalc__actions {
    flex-direction: column;
  }

  .seo-midcalc__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .seo-hero {
    padding: 96px 0 48px;
  }

  .seo-hero__grid {
    gap: 24px;
    padding: 0 16px;
  }

  .seo-hero__title {
    font-size: 32px;
    line-height: 1.12;
    margin-bottom: 14px;
  }

  .seo-hero__lead {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 24px;
  }

  .seo-hero__stats > div {
    padding: 14px 14px;
  }

  .seo-hero__stats strong {
    font-size: 22px;
  }

  .seo-hero__stats span {
    font-size: 11px;
    letter-spacing: 0.4px;
  }

  .seo-hero__tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 -16px;
    padding: 0 16px;
  }

  .seo-hero__tabs::-webkit-scrollbar {
    display: none;
  }

  .seo-hero__tabs a {
    flex: 0 0 auto;
    white-space: nowrap;
    min-height: 44px;
  }

  .seo-calc__header,
  .seo-calc__body,
  .seo-calc__footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .seo-calc__body input[type="text"],
  .seo-calc__body input[type="number"] {
    min-height: 48px;
    font-size: 16px;
  }

  .seo-calc__price {
    font-size: 28px;
  }

  .seo-section {
    padding: 48px 0;
  }

  .seo-section__title {
    font-size: 26px;
    line-height: 1.15;
  }

  .seo-section__aside,
  .seo-know__text {
    font-size: 15px;
    line-height: 1.55;
  }

  .seo-know__chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 -16px;
    padding: 0 16px;
  }

  .seo-know__chips::-webkit-scrollbar {
    display: none;
  }

  .seo-know__chips span {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .seo-midcalc {
    padding: 48px 0;
  }

  .seo-midcalc__form,
  .seo-midcalc__result {
    padding: 20px 16px;
  }

  .seo-midcalc__price {
    font-size: 32px;
  }

  .seo-midcalc__form .calculator__chip {
    min-height: 44px;
  }

  .seo-card {
    padding: 20px 16px;
  }

  .seo-card__price {
    font-size: 36px;
  }

  .seo-insure__list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 16px 0;
  }

  .seo-steps__item {
    flex-direction: column;
    gap: 12px;
    padding: 20px 0;
  }

  .seo-steps__num {
    font-size: 28px;
  }

  .seo-steps__body h3 {
    font-size: 18px;
  }

  .seo-steps__body p {
    font-size: 15px;
  }

  .seo-review {
    padding: 20px 16px;
  }

  .seo-review__text {
    font-size: 14px;
  }

  /* Legal pages */
  .legal-hero {
    padding: 96px 0 28px;
  }

  .legal-hero__eyebrow {
    font-size: 12px;
    letter-spacing: 1px;
  }

  .legal-hero__title {
    font-size: 28px;
    line-height: 1.15;
  }

  .legal-hero__lead {
    font-size: 16px;
    line-height: 1.5;
    margin-top: 12px;
  }

  .legal-content {
    padding: 32px 0 96px;
  }

  .legal-content__inner {
    font-size: 15px;
    line-height: 1.65;
    overflow-wrap: anywhere;
  }

  .legal-content__inner h2 {
    font-size: 20px;
    margin: 28px 0 10px;
  }

  .legal-content__inner h3 {
    font-size: 17px;
    margin: 20px 0 8px;
  }

  .legal-content__inner table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* ==========================================================================
   Homepage — Figma Desktop extra sections
   ========================================================================== */
.section__number-row--on-dark .section__eyebrow,
.section__eyebrow--on-dark {
  color: rgba(255, 255, 255, 0.88);
}

.home-etagen {
  background: #0a2d62;
  color: #fff;
  padding: 120px 0;
}

.home-etagen__inner {
  max-width: 1760px;
}

.home-etagen__head {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 72px;
}

.home-etagen__intro {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.home-etagen__meta {
  display: flex;
  align-items: flex-end;
  gap: 16px;
}

.home-etagen__number {
  font-size: 120px;
  font-weight: 400;
  line-height: 120px;
  letter-spacing: -0.04em;
  color: #16336b;
}

.home-etagen__eyebrow {
  margin: 0;
  padding-bottom: 0.15em;
  font-size: 24px;
  font-weight: 400;
  line-height: 24px;
  text-transform: uppercase;
  color: #f8fafc;
}

.home-etagen__title {
  margin: 0;
  font-size: 64px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
  max-width: 16ch;
}

.home-etagen__aside {
  margin: 0;
  flex: 0 1 457px;
  width: auto;
  max-width: 457px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.35;
  color: #9fb4d2;
  white-space: normal;
  overflow-wrap: break-word;
  word-wrap: break-word;
  box-sizing: border-box;
  min-width: 0;
}

.home-etagen__grid {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 72px;
}

.home-etagen__form {
  background: #f8fafc;
  color: #12161e;
  border-radius: 6px;
  width: 820px;
  max-width: 100%;
  flex: 1 1 820px;
  overflow: hidden;
}

.home-etagen__tabs {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 24px;
  border-bottom: 1px solid #dce1e7;
}

.home-etagen__tab {
  font-family: inherit;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #c3cbd3;
  white-space: nowrap;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: color 0.15s ease;
}

.home-etagen__tab:hover {
  color: #1552a8;
}

.home-etagen__tab.is-active {
  color: #1552a8;
}

.home-etagen__tab-rule {
  width: 40px;
  height: 1px;
  background: #dce1e7;
  flex: 0 0 auto;
}

.home-etagen__panel {
  display: none;
}

.home-etagen__panel.is-active {
  display: block;
  animation: home-etagen-panel-in 0.28s ease;
}

@keyframes home-etagen-panel-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-etagen__panel.is-active {
    animation: none;
  }
}

.home-etagen__form-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
}

.home-etagen__form-body--step2 {
  gap: 24px;
}

.home-etagen__rule {
  display: block;
  width: 100%;
  height: 0;
  margin: 0;
  border: 0;
  border-top: 1px solid #dce1e7;
}

.home-etagen__row--top {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.home-etagen__field--wohnform {
  width: 448px;
  max-width: 100%;
  flex: 0 0 448px;
}

.home-etagen__chips--wohnform .home-etagen__chip {
  flex: 0 0 calc(50% - 4px);
  width: calc(50% - 4px);
}

.home-etagen__field--zimmer-s2 {
  flex: 1 1 auto;
  min-width: 0;
}

.home-etagen__row--area {
  display: flex;
  gap: 64px;
  align-items: center;
}

.home-etagen__field--area-wide {
  width: 448px;
  max-width: 100%;
  flex: 0 0 448px;
}

.home-etagen__volume-hint {
  margin: 0;
  flex: 1 1 auto;
  font-size: 13px;
  line-height: 19.5px;
  color: #5a646c;
}

.home-etagen__row--etage {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.home-etagen__field--etage {
  width: 440px;
  max-width: 100%;
  flex: 0 0 440px;
}

.home-etagen__field--aufzug {
  flex: 1 1 auto;
  min-width: 0;
}

.home-etagen__field--park-s2 {
  width: 314px;
  max-width: 100%;
}

.home-etagen__row--extras {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.home-etagen__row--extras > .home-etagen__field {
  flex: 1 1 0;
  min-width: 0;
}

.home-etagen__checks {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.home-etagen__check {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
  cursor: pointer;
}

.home-etagen__check-left {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.3;
  color: rgba(0, 0, 0, 0.85);
}

.home-etagen__check-left input {
  width: 24px;
  height: 24px;
  margin: 0;
  accent-color: #1552a8;
  cursor: pointer;
}

.home-etagen__check-price {
  font-size: 14px;
  line-height: 1.3;
  color: #9fb4d2;
  white-space: nowrap;
}

.home-etagen__section-label {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  text-transform: uppercase;
  color: #5a646c;
}

.home-etagen__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.home-etagen__label {
  font-size: 13px;
  font-weight: 600;
  line-height: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6e7880;
}

.home-etagen__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.home-etagen__chip {
  flex: 1 1 0;
  min-width: 0;
  padding: 12px 16px;
  border: 1px solid #c9ced8;
  border-radius: 2px;
  background: #fff;
  color: #5a646c;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.home-etagen__chip.is-selected {
  background: #e7effa;
  border-color: #1552a8;
  color: #1552a8;
}

.home-etagen__chips--2 .home-etagen__chip {
  flex: 1 1 calc(50% - 4px);
}

.home-etagen__row--zimmer {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.home-etagen__row--zimmer .home-etagen__field:first-child {
  flex: 1 1 auto;
  min-width: 0;
}

.home-etagen__field--area {
  width: 160px;
  flex: 0 0 160px;
}

.home-etagen__area {
  display: flex;
  align-items: stretch;
}

.home-etagen__area input {
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  padding: 12px;
  border: 1px solid #c9ced8;
  border-right: 0;
  border-radius: 2px 0 0 2px;
  background: #fff;
  color: #0a2d62;
  font-size: 16px;
  line-height: 24px;
}

.home-etagen__area span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  border: 1px solid #c9ced8;
  border-radius: 0 2px 2px 0;
  background: #fff;
  color: #5a646c;
  font-size: 16px;
}

.home-etagen__field--park {
  max-width: 381px;
}

.home-etagen__hint {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #5a646c;
}

.home-etagen__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 24px;
  border: 0;
  border-radius: 0;
  background: #1552a8;
  color: #fff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease;
}

.home-etagen__cta:hover {
  background: #0d3f86;
  color: #fff;
}

.home-etagen__foot {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 8px;
  border-top: 1px solid #dce1e7;
}

.home-etagen__note-left {
  margin: 0;
  max-width: 413px;
  font-size: 16px;
  line-height: 1.5;
  color: #5a646c;
}

.home-etagen__note-right {
  margin: 0;
  font-family: var(--font-mono, monospace);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6e7880;
  white-space: nowrap;
}

.home-etagen__preview {
  background: #061d42;
  border: 1px solid #24406e;
  border-radius: 6px;
  width: 720px;
  max-width: 100%;
  flex: 0 1 720px;
  overflow: hidden;
}

.home-etagen__preview-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid #24406e;
  font-size: 16px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #f1f5f9;
}

.home-etagen__preview-head span:last-child {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: #f8fafc;
  text-transform: none;
}

.home-etagen__preview-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
}

.home-etagen__price-label {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9fb4d2;
}

.home-etagen__price {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 68px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
}

.home-etagen__price-ab {
  font-size: 20px;
  font-weight: 400;
  color: #9fb4d2;
}

.home-etagen__price-eur {
  font-size: 24px;
  font-weight: 500;
}

.home-etagen__price-hint {
  margin: 0;
  font-size: 14px;
  color: #9fb4d2;
}

.home-etagen__volume-block {
  padding-top: 10px;
  border-top: 1px solid #24406e;
}

.home-etagen__volume-num {
  margin: 0 0 4px;
  font-family: var(--font-mono, monospace);
  font-size: 48px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
}

.home-etagen__volume {
  margin: 0;
  font-size: 13px;
  color: #9fb4d2;
}

.home-etagen__break {
  list-style: none;
  margin: 0;
  padding: 0;
}

.home-etagen__break li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-top: 1px solid #24406e;
  font-size: 14px;
  color: #9fb4d2;
}

.home-etagen__break li span:last-child {
  font-family: var(--font-mono, monospace);
  color: #fff;
  white-space: nowrap;
}

.home-etagen__break li .is-muted {
  color: #6e7880;
}

.home-etagen__request-label {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9fb4d2;
}

.home-etagen__request {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.home-etagen__request label {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.home-etagen__request label span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9fb4d2;
}

.home-etagen__request input {
  width: 100%;
  padding: 16px;
  border: 1px solid #24406e;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-size: 16px;
}

.home-etagen__request input::placeholder {
  color: #16336b;
}

.home-etagen__request-note {
  margin: 0;
  font-size: 17px;
  line-height: 1.5;
  color: #fff;
}

.home-etagen__submit {
  width: 100%;
  padding: 16px 24px;
  border: 0;
  background: #fff;
  color: #1552a8;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  cursor: pointer;
}

.home-etagen__submit:hover {
  background: #e7effa;
}

.home-etagen__legal {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #9fb4d2;
}

.home-etagen__examples-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 32px;
}

.home-etagen__examples-label {
  margin: 0;
  font-size: 24px;
  text-transform: uppercase;
  color: #f8fafc;
}

.home-etagen__examples-aside {
  margin: 0;
  font-size: 15px;
  color: #f8fafc;
}

.home-etagen__examples-aside a {
  color: #f8fafc;
  text-decoration: none;
  font-weight: 500;
}

.home-etagen__examples-aside a:hover {
  text-decoration: underline;
}

.home-examples {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.home-examples__card {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: inherit;
  text-decoration: none;
  transition: opacity var(--transition);
}

.home-examples__card:hover {
  opacity: 0.92;
}

.home-examples__top {
  width: 63.2%;
  min-width: 280px;
  background: #fff;
  color: #0a0e23;
  padding: 16px 16px 12px;
  box-sizing: border-box;
}

.home-examples__price {
  margin: 0 0 8px;
  font-size: clamp(48px, 4vw, 72px);
  font-weight: 500;
  line-height: 1;
  color: #0a0e23;
}

.home-examples__title {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0a0e23;
}

.home-examples__rows {
  list-style: none;
  margin: 0;
  padding: 16px;
  width: 100%;
  background: #fff;
  box-sizing: border-box;
}

.home-examples__rows li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-top: 1px solid #c9ced8;
}

.home-examples__rows span {
  font-size: 14px;
  text-transform: uppercase;
  color: #5a646c;
}

.home-examples__rows strong {
  font-size: 16px;
  font-weight: 400;
  color: #3c454a;
  text-align: right;
}

@media (max-width: 1200px) {
  .home-etagen__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .home-etagen__aside {
    width: 100%;
    max-width: none;
    flex: none;
    white-space: normal;
  }

  .home-etagen__title {
    font-size: clamp(36px, 5vw, 64px);
    max-width: none;
  }

  .home-etagen__number {
    font-size: clamp(72px, 10vw, 120px);
    line-height: 1;
  }

  .home-etagen__grid {
    flex-direction: column;
  }

  .home-etagen__form,
  .home-etagen__preview {
    width: 100%;
    flex: none;
  }

  .home-examples {
    flex-direction: column;
  }

  .home-examples__card {
    max-width: none;
  }
}

@media (max-width: 700px) {
  .home-etagen {
    padding: 72px 0;
  }

  .home-etagen__row--zimmer,
  .home-etagen__row--top,
  .home-etagen__row--area,
  .home-etagen__row--etage,
  .home-etagen__row--extras {
    flex-direction: column;
    gap: 24px;
  }

  .home-etagen__field--wohnform,
  .home-etagen__field--area-wide,
  .home-etagen__field--etage,
  .home-etagen__field--park-s2,
  .home-etagen__field--area {
    width: 100%;
    flex: none;
  }

  .home-etagen__tabs {
    gap: 12px;
    overflow-x: auto;
  }

  .home-etagen__foot {
    flex-direction: column;
  }

  .home-etagen__note-right {
    white-space: normal;
  }

  .home-etagen__price {
    font-size: clamp(36px, 10vw, 56px);
    flex-wrap: wrap;
  }

  .home-etagen__examples-head {
    flex-direction: column;
  }

  .home-examples__top {
    width: 100%;
  }
}


.home-day {
  background: #0a2253;
  color: #fff;
  padding: 96px 0 104px;
}

.home-day__inner {
  max-width: 1760px;
}

.home-day__head {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: 32px 48px;
  align-items: start;
  margin-bottom: 56px;
}

.home-day__intro {
  position: relative;
}

.home-day__meta {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 14px;
  margin-bottom: 14px;
}

.home-day__number {
  position: static;
  font-size: clamp(72px, 9vw, 110px);
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.14);
  pointer-events: none;
  user-select: none;
}

.home-day__eyebrow {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0 0 0.06em;
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245, 243, 239, 0.88);
}

.home-day__title {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 18ch;
  color: #fff;
}

.home-day__aside {
  margin: 28px 0 0;
  justify-self: end;
  text-align: right;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(220, 228, 240, 0.72);
  max-width: none;
  white-space: nowrap;
}

.home-day__timeline {
  list-style: none;
  margin: 0;
  padding: 0;
}

.home-day__timeline li {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 40px;
  align-items: baseline;
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.home-day__timeline li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.home-day__timeline strong {
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  color: #fff;
}

.home-day__timeline span {
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 980px) {
  .home-day__head {
    grid-template-columns: 1fr;
  }

  .home-day__aside {
    justify-self: start;
    text-align: left;
    margin-top: 0;
    max-width: none;
    white-space: normal;
  }

  .home-day__timeline li {
    grid-template-columns: 88px 1fr;
    gap: 20px;
    padding: 20px 0;
  }
}

@media (max-width: 640px) {
  .home-day {
    padding: 72px 0 80px;
  }

  .home-day__head {
    margin-bottom: 36px;
  }

  .home-day__timeline li {
    grid-template-columns: 72px 1fr;
    gap: 16px;
  }
}


.home-steps {
  background: #fff;
  padding: 120px 0 0;
}

.home-steps__inner {
  max-width: 1760px;
  padding-bottom: 60px;
}

.home-steps__head {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 80px;
  margin-bottom: 60px;
}

.home-steps__intro {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.home-steps__meta {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 8px;
  margin: 0;
}

.home-steps__number {
  position: static;
  font-family: var(--font-sans);
  font-size: 120px;
  font-weight: 400;
  line-height: 120px;
  letter-spacing: -0.04em;
  color: #e9edf2;
  pointer-events: none;
  user-select: none;
}

.home-steps__eyebrow {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0 0 0.2em;
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #6e7880;
  white-space: nowrap;
}

.home-steps__title {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--font-sans);
  font-size: 64px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #0a2d62;
  max-width: none;
  white-space: nowrap;
}

.home-steps__aside {
  margin: 0;
  padding-top: 0;
  flex: 0 1 680px;
  width: 680px;
  max-width: 680px;
  min-width: 0;
  align-self: center;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.35;
  color: #717c92;
  white-space: normal;
  overflow-wrap: break-word;
}

.home-steps__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.home-steps__item {
  display: grid;
  grid-template-columns: 28px minmax(280px, 374px) minmax(240px, 411px) minmax(180px, 268px);
  gap: 24px 40px;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-top: 1.3px solid rgba(201, 206, 216, 0.55);
  width: 100%;
}

.home-steps__item:last-child {
  border-bottom: 1.3px solid rgba(201, 206, 216, 0.55);
}

.home-steps__n {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.14em;
  color: #717c92;
}

.home-steps__name {
  font-family: var(--font-sans);
  font-size: 64px;
  font-weight: 500;
  line-height: 64px;
  letter-spacing: -0.0375em;
  color: #12161e;
  white-space: nowrap;
}

a.home-steps__name--link {
  text-decoration: none;
  color: #12161e;
  transition: color var(--transition);
}

a.home-steps__name--link:hover {
  color: #1552a8;
}

.home-steps__text {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  color: #717c92;
  max-width: none;
}

.home-steps__frist {
  justify-self: end;
  text-align: right;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  color: #1552a8;
  line-height: 20px;
  max-width: none;
}

.home-steps-cta {
  background: #e7effa;
  height: 239px;
  box-sizing: border-box;
  padding: 0;
  display: flex;
  align-items: center;
}

.home-steps-cta__inner {
  width: 100%;
  max-width: 1760px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 80px;
}

.home-steps-cta__copy {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.home-steps-cta__eyebrow {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #6e7880;
  white-space: nowrap;
}

.home-steps-cta__title {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #0a2d62;
  white-space: nowrap;
}

.home-steps-cta__hint {
  margin: 0;
  flex: 0 0 auto;
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.25;
  color: #717c92;
  text-align: right;
  white-space: nowrap;
}

.home-steps-cta__btns {
  display: flex;
  flex-wrap: nowrap;
  gap: 21px;
  flex: 0 0 auto;
  justify-content: flex-end;
}

.home-steps-cta__btn {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  min-width: 130px;
  min-height: 48px;
  padding: 16px 24px;
  box-sizing: border-box;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-decoration: none;
  pointer-events: auto;
  touch-action: manipulation;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.home-steps-cta__btn--outline {
  background: transparent;
  border: 1px solid #1552a8;
  border-radius: 8px;
  color: #1552a8;
}

.home-steps-cta__btn--outline:hover {
  background: rgba(21, 82, 168, 0.06);
}

.home-steps-cta__btn--solid {
  background: #1552a8;
  border: 1px solid #1552a8;
  border-radius: 0;
  color: #fff;
}

.home-steps-cta__btn--solid:hover {
  background: #0d3f86;
  border-color: #0d3f86;
  color: #fff;
}

@media (max-width: 1200px) {
  .home-steps__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .home-steps__title,
  .home-steps__aside {
    white-space: normal;
  }

  .home-steps__title {
    font-size: clamp(36px, 5vw, 64px);
  }

  .home-steps__number {
    font-size: clamp(72px, 10vw, 120px);
    line-height: 1;
  }

  .home-steps__aside {
    flex: 1 1 auto;
    width: 100%;
    max-width: none;
  }

  .home-steps__item {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 12px 24px;
  }

  .home-steps__name {
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.1;
    white-space: normal;
    grid-column: 2;
  }

  .home-steps__n {
    grid-row: 1;
  }

  .home-steps__text,
  .home-steps__frist {
    grid-column: 2;
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 980px) {
  .home-steps-cta {
    height: auto;
    min-height: 239px;
    padding: 48px 0;
  }

  .home-steps-cta__inner {
    flex-wrap: wrap;
    gap: 28px 40px;
  }

  .home-steps-cta__title,
  .home-steps-cta__eyebrow,
  .home-steps-cta__hint {
    white-space: normal;
  }

  .home-steps-cta__title {
    font-size: clamp(32px, 6vw, 48px);
  }

  .home-steps-cta__eyebrow,
  .home-steps-cta__hint {
    font-size: clamp(16px, 2.4vw, 24px);
  }

  .home-steps-cta__hint {
    text-align: left;
    flex: 1 1 100%;
  }

  .home-steps-cta__btns {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .home-steps {
    padding-top: 72px;
  }

  .home-steps__inner {
    padding-bottom: 56px;
  }

  .home-steps__head {
    margin-bottom: 36px;
  }

  .home-steps-cta {
    padding: 40px 0;
  }

  .home-steps-cta__btns {
    width: 100%;
  }

  .home-steps-cta__btn {
    flex: 1 1 auto;
    width: auto;
  }
}

.home-nrw {
  --nrw-navy: #0a2d62;
  --nrw-muted: #6e7880;
  --nrw-line: #c9ced8;
  background: #ffffff;
  padding: 120px 0;
}

.home-nrw__inner {
  max-width: 1760px;
}

.home-nrw__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 680px;
  gap: 24px 80px;
  align-items: center;
  margin-bottom: 60px;
}

.home-nrw__intro {
  position: relative;
  min-width: 0;
}

.home-nrw__meta {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 8px;
  margin-bottom: 24px;
}

.home-nrw__number {
  position: static;
  font-size: clamp(80px, 8vw, 120px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #e9edf2;
  pointer-events: none;
  user-select: none;
}

.home-nrw__eyebrow {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0 0 0.2em;
  font-size: clamp(16px, 1.4vw, 24px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--nrw-muted);
  white-space: nowrap;
}

.home-nrw__title {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(40px, 4.2vw, 64px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--nrw-navy);
  max-width: none;
  white-space: nowrap;
}

.home-nrw__title br {
  display: block;
  content: "";
}

.home-nrw__aside {
  margin: 0;
  padding-top: 0;
  justify-self: end;
  align-self: center;
  text-align: left;
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 500;
  line-height: 1.35;
  color: #717c92;
  max-width: 36ch;
  white-space: nowrap;
}

.home-nrw__aside br {
  display: block;
  content: "";
}

.home-nrw__body {
  display: grid;
  grid-template-columns: minmax(280px, 470px) minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 120px;
  row-gap: 32px;
  align-items: stretch;
}

.home-nrw__map {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  margin: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  background: #f4f6f8;
  border: 1.4px solid #dce1e7;
  overflow: hidden;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 28px 24px 20px;
  align-self: stretch;
}

.home-nrw__svg {
  display: block;
  width: 100%;
  height: 100%;
  flex: 1 1 auto;
  min-height: 0;
}

.home-nrw__map-caption {
  margin: 16px 0 0;
  padding: 0;
  flex: 0 0 auto;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9aa3af;
  line-height: 1.35;
}

.home-nrw__map img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.home-nrw__cities {
  grid-column: 2;
  grid-row: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  align-self: start;
}

.home-nrw__aside-foot {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-width: 0;
}

.home-nrw__aside-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-width: 0;
}

.home-nrw__cities > li {
  border-bottom: 1px solid var(--nrw-line);
}

.home-nrw__cities > li:first-child {
  border-top: 1px solid var(--nrw-line);
}

.home-nrw__city {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) minmax(120px, 0.8fr) 28px;
  gap: 16px 24px;
  align-items: center;
  padding: 24px 0;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.home-nrw__city:hover .home-nrw__city-main strong,
.home-nrw__city:hover .home-nrw__city-dist b,
.home-nrw__city.is-nrw-active .home-nrw__city-main strong,
.home-nrw__city.is-nrw-active .home-nrw__city-dist b {
  color: #1552a8;
}

.home-nrw__city:hover .home-nrw__city-arrow,
.home-nrw__city.is-nrw-active .home-nrw__city-arrow {
  color: var(--nrw-navy);
}

.home-nrw__also-list li[data-nrw-city] {
  cursor: pointer;
  transition: color 0.15s ease;
}

.home-nrw__also-list li[data-nrw-city] a {
  color: inherit;
  text-decoration: none;
}

.home-nrw__also-list li[data-nrw-city]:hover,
.home-nrw__also-list li[data-nrw-city].is-nrw-active {
  color: #1552a8;
}

.home-nrw__svg .home-nrw__route-line {
  opacity: 0;
  pointer-events: none;
}

.home-nrw__svg .home-nrw__route-line.is-on {
  opacity: 1;
}

.home-nrw__svg #cities-primary > g.is-nrw-hot > circle[r="5.5"],
.home-nrw__svg #cities-primary > g.is-nrw-hot > circle[r="7"],
.home-nrw__svg #cities-secondary > g.is-nrw-hot > circle {
  fill: #1552a8;
  stroke: #1552a8;
}

.home-nrw__svg .is-nrw-hot > text {
  fill: #1552a8;
}

.home-nrw__svg #Dortmund.is-nrw-hot > circle[r="11"] {
  fill: #1552a8;
  fill-opacity: 0.16;
}

.home-nrw__svg #Dortmund.is-nrw-hot > circle[r="5.5"] {
  fill: #1552a8;
  stroke: #1552a8;
}

@media (prefers-reduced-motion: reduce) {
  .home-nrw__svg .home-nrw__route-line {
    transition: none !important;
  }
}

.home-nrw__city-main {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.home-nrw__city-main strong {
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 600;
  line-height: 48px;
  letter-spacing: -0.02em;
  color: var(--nrw-navy);
  transition: color 0.2s ease;
  white-space: nowrap;
}

.home-nrw__city-sub {
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.026em;
  color: var(--nrw-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home-nrw__city-label {
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 400;
  line-height: 32px;
  color: #6b7280;
  white-space: nowrap;
  letter-spacing: -0.015em;
  text-align: right;
}

.home-nrw__city-dist {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  white-space: nowrap;
}

.home-nrw__city-dist b {
  font-family: var(--font-mono);
  font-size: clamp(40px, 4vw, 64px);
  font-weight: 400;
  line-height: 64px;
  letter-spacing: -0.0075em;
  color: var(--nrw-navy);
  transition: color 0.2s ease;
}

.home-nrw__city-dist small {
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  color: var(--nrw-muted);
  letter-spacing: -0.05em;
}

.home-nrw__city-arrow {
  display: inline-flex;
  justify-content: flex-end;
  font-family: var(--font-mono);
  font-size: 20px;
  line-height: 31px;
  color: #6e7880;
  transition: color 0.2s ease;
}

.home-nrw__also {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  margin-top: 0;
}

.home-nrw__also-label {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--nrw-muted);
  white-space: nowrap;
  width: 176px;
  flex: 0 0 auto;
}

.home-nrw__also-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 16px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 20px;
  font-weight: 400;
  color: var(--nrw-navy);
}

.home-nrw__also-list li {
  padding: 10px;
}

.home-nrw__all {
  margin: 0;
}

.home-nrw__all a {
  font-size: 16px;
  font-weight: 600;
  color: #1552a8;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

.home-nrw__all a:hover {
  color: var(--nrw-navy);
}

@media (max-width: 1200px) {
  .home-nrw__head {
    grid-template-columns: 1fr;
  }

  .home-nrw__aside {
    justify-self: start;
    max-width: none;
    white-space: normal;
  }

  .home-nrw__title {
    white-space: normal;
  }

  .home-nrw__body {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 40px;
  }

  .home-nrw__map {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    max-width: 470px;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .home-nrw__cities {
    grid-column: 1;
    grid-row: auto;
  }

  .home-nrw__aside-foot {
    grid-column: 1;
    grid-row: auto;
  }

  .home-nrw__svg {
    height: auto;
  }

  .home-nrw__city {
    grid-template-columns: minmax(0, 1.2fr) auto 24px;
    gap: 12px 16px;
  }

  .home-nrw__city-main strong,
  .home-nrw__city-sub {
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .home-nrw {
    padding: 72px 0;
  }

  .home-nrw__head {
    margin-bottom: 40px;
  }

  .home-nrw__city {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 18px 0;
  }

  .home-nrw__city-arrow {
    display: none;
  }

  .home-nrw__also {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-nrw__also-label {
    width: auto;
  }
}

.home-challenges {
  background: #0a2d62;
  color: #fff;
  padding: 120px 0;
}

.home-challenges__inner {
  max-width: 1760px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.home-challenges__head {
  display: flex;
  align-items: center;
  gap: 80px;
  margin: 0;
}

.home-challenges__intro {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.home-challenges__meta {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 16px;
  margin: 0;
}

.home-challenges__number {
  font-size: 120px;
  font-weight: 400;
  line-height: 120px;
  letter-spacing: -0.04em;
  color: #16336b;
  pointer-events: none;
  user-select: none;
}

.home-challenges__eyebrow {
  margin: 0;
  padding: 0 0 0.15em;
  font-size: 24px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #f8fafc;
}

.home-challenges__title {
  margin: 0;
  font-size: 64px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: none;
  color: #fff;
  white-space: nowrap;
}

.home-challenges__aside {
  margin: 0;
  flex: 0 0 680px;
  width: 680px;
  max-width: 680px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.35;
  color: #9fb4d2;
  white-space: nowrap;
}

.home-challenges__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  margin: 0;
}

.home-challenges__media {
  margin: 0;
  width: 747px;
  max-width: 48%;
  height: 498px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.18);
  flex: 0 0 auto;
}

.home-challenges__row--media-right .home-challenges__media {
  width: 750px;
}

.home-challenges__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.home-challenges__block {
  position: relative;
  padding: 56px 0 0;
  width: 726px;
  max-width: 46%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.home-challenges__row--media-right .home-challenges__block {
  width: 840px;
  max-width: 50%;
}

.home-challenges__heading-row {
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

.home-challenges__idx {
  flex: 0 0 auto;
  font-size: 64px;
  font-weight: 400;
  line-height: 64px;
  letter-spacing: -0.075em;
  color: #16336b;
}

.home-challenges__heading {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
  font-size: 64px;
  font-weight: 500;
  line-height: 64px;
  letter-spacing: -0.025em;
  color: #f5f3ef;
}

.home-challenges__text {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: -0.01em;
  color: #f5f3ef;
  max-width: none;
}

.home-challenges__link-wrap {
  margin: 0;
}

.home-challenges__link {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

.home-challenges__link:hover {
  color: #dbe7ff;
}

@media (max-width: 1200px) {
  .home-challenges__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .home-challenges__aside,
  .home-challenges__title {
    white-space: normal;
  }

  .home-challenges__aside {
    width: 100%;
    max-width: none;
    flex: none;
  }

  .home-challenges__title,
  .home-challenges__heading,
  .home-challenges__idx {
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.15;
  }

  .home-challenges__number {
    font-size: clamp(72px, 10vw, 120px);
    line-height: 1;
  }

  .home-challenges__row {
    flex-direction: column;
  }

  .home-challenges__media,
  .home-challenges__row--media-right .home-challenges__media {
    width: 100%;
    max-width: none;
    height: auto;
    aspect-ratio: 747 / 498;
  }

  .home-challenges__block,
  .home-challenges__row--media-right .home-challenges__block {
    width: 100%;
    max-width: none;
    padding-top: 8px;
  }

  .home-challenges__row--media-right .home-challenges__media {
    order: -1;
  }
}

@media (max-width: 640px) {
  .home-challenges {
    padding: 72px 0;
  }

  .home-challenges__inner {
    gap: 40px;
  }

  .home-challenges__heading-row {
    gap: 12px;
  }
}

.home-team {
  background: #fff;
  padding: 96px 0 72px;
}

.home-team__inner {
  max-width: 1760px;
}

.home-team__head {
  margin-bottom: 56px;
}

.home-team__meta {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 14px;
  margin-bottom: 18px;
}

.home-team__number {
  font-size: clamp(72px, 9vw, 110px);
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: #d0d5dc;
}

.home-team__eyebrow {
  margin: 0;
  padding: 0 0 0.06em;
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8b93a1;
}

.home-team__titles {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 32px 64px;
  align-items: start;
}

.home-team__title {
  margin: 0;
  font-size: clamp(32px, 3.6vw, 48px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--navy);
  max-width: none;
  white-space: nowrap;
}

.home-team__aside {
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.55;
  color: #7a8494;
  max-width: 34ch;
  justify-self: end;
  text-align: right;
}

.home-team__link {
  display: inline-block;
  margin-top: 16px;
  font-size: 16px;
  font-weight: 500;
  color: #0a2d62;
  text-decoration: none;
  justify-self: end;
}

.home-team__link:hover {
  text-decoration: underline;
}

.home-team__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 56px;
  margin-bottom: 0;
}

.home-team__card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  min-width: 0;
}

.home-team__photo {
  margin: 0 0 20px;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #e9edf2;
}

.home-team__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.home-team__name {
  display: block;
  font-size: clamp(26px, 2.4vw, 32px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0 0 10px;
}

.home-team__role {
  display: block;
  font-size: 15px;
  line-height: 1.45;
  color: #8a93a3;
  margin: 0 0 12px;
}

.home-team__phone {
  display: inline-block;
  margin: 0 0 18px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.home-team__phone:hover {
  color: #0a2d62;
}

.home-team__foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid #e5e8ee;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  color: #9aa3af;
  letter-spacing: 0.01em;
}

.home-team__foot span:last-child {
  text-align: right;
  white-space: nowrap;
}

.home-team__card--google {
  padding-left: 40px;
  border-left: 1px solid #e5e8ee;
}

.home-team__google-score {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
}

.home-team__google-star {
  width: 28px;
  height: 28px;
  color: #f5b400;
  flex-shrink: 0;
}

.home-team__google-score strong {
  font-size: clamp(36px, 3.2vw, 48px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.home-team__google-text {
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 1.5;
  color: #7a8494;
  max-width: 32ch;
}

.home-team__google-foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #e5e8ee;
}

.home-team__google-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.home-team__google-link:hover {
  opacity: 0.85;
}

.home-team__google-place {
  font-size: 13px;
  color: #9aa3af;
  white-space: nowrap;
}

.home-google {
  background: #fff;
  padding: 72px 0 40px;
}

.home-google__inner {
  max-width: 1760px;
}

.home-google__meta {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 14px;
  margin-bottom: 18px;
}

.home-google__number {
  font-size: clamp(72px, 9vw, 110px);
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: #d0d5dc;
}

.home-google__eyebrow {
  margin: 0;
  padding: 0 0 0.06em;
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8b93a1;
}

.home-google__titles {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 32px 64px;
  align-items: start;
}

.home-google__title {
  margin: 0;
  font-size: clamp(32px, 3.6vw, 48px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--navy);
  max-width: 14ch;
}

.home-google__aside {
  justify-self: end;
  text-align: right;
  max-width: 36ch;
}

.home-google__aside p {
  margin: 8px 0 14px;
  font-size: 15px;
  line-height: 1.55;
  color: #7a8494;
}

.home-google__link {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.home-google__link:hover {
  opacity: 0.85;
}

.home-reviews__head {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 28px;
}

.home-reviews__rating {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: right;
  font-size: 14px;
  line-height: 1.4;
  color: #7a8494;
}

.home-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 0;
}

.home-reviews__card {
  margin: 0;
  background: #fff;
  border: 1px solid #e5e8ee;
  border-radius: 0;
  padding: 28px 26px;
}

.home-reviews__who {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.home-reviews__avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #e8eef6;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.home-reviews__avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-reviews__who strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.home-reviews__who span {
  display: block;
  font-size: 13px;
  color: #9aa3af;
  line-height: 1.35;
}

.home-reviews__card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: #5a646c;
  overflow-wrap: break-word;
  hyphens: auto;
}

@media (max-width: 980px) {
  .home-team__titles,
  .home-google__titles {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .home-team__aside,
  .home-google__aside {
    justify-self: start;
    text-align: left;
    max-width: none;
  }

  .home-team__grid,
  .home-reviews__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .home-team__photo {
    margin-bottom: 16px;
    aspect-ratio: 5 / 4;
  }

  .home-team__card--google {
    padding-left: 0;
    border-left: 0;
    padding-top: 8px;
    border-top: 1px solid #e5e8ee;
  }

  .home-team__title,
  .home-google__title {
    max-width: none;
    white-space: normal;
  }

  .home-reviews__head {
    justify-content: flex-start;
  }

  .home-reviews__rating {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .home-team {
    padding: 72px 0 40px;
  }

  .home-google {
    padding: 40px 0 24px;
  }

  .home-team__grid {
    margin-bottom: 0;
  }
}

.home-reviews__who {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.home-reviews__avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #eaf1f8;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.home-reviews__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-reviews__who strong {
  display: block;
  color: var(--navy);
}

.home-reviews__who span {
  font-size: 13px;
  color: var(--gray);
}

.home-reviews__card p {
  margin: 0;
  color: var(--gray);
  line-height: 1.55;
}

.home-final {
  background: #0a2e62;
  color: #fff;
  padding: 104px 0 112px;
  position: relative;
  overflow: hidden;
}

.home-final__inner {
  max-width: 1760px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px 80px;
  align-items: start;
}

.home-final__intro {
  margin-bottom: 18px;
}

.home-final__meta {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 14px;
}

.home-final__number {
  position: static;
  font-size: clamp(72px, 9vw, 110px);
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.14);
  pointer-events: none;
  user-select: none;
}

.home-final__eyebrow {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0 0 0.06em;
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245, 243, 239, 0.9);
}

.home-final__title {
  position: relative;
  z-index: 1;
  font-size: clamp(36px, 4.2vw, 52px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 40px;
  max-width: 18ch;
  color: #fff;
}

.home-final__stats {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
  display: grid;
  gap: 0;
}

.home-final__stats li {
  display: grid;
  gap: 8px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.home-final__stats li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.home-final__stats strong {
  font-size: clamp(32px, 3.2vw, 40px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #fff;
}

.home-final__stats span {
  font-size: 15px;
  line-height: 1.45;
  color: rgba(198, 210, 228, 0.78);
  max-width: 36ch;
}

.home-final__direct {
  margin-bottom: 32px;
}

.home-final__direct-label {
  margin: 0 0 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(180, 196, 220, 0.72);
}

.home-final__direct-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  text-decoration: none;
  color: #fff;
}

.home-final__direct-row:first-of-type {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.home-final__direct-main {
  font-family: var(--font-mono);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.home-final__direct-main--phone {
  font-weight: 300;
}

.home-final__direct-meta {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(180, 196, 220, 0.7);
  text-align: right;
}

.home-final__direct-row:hover .home-final__direct-main {
  color: #dbe7ff;
}

.home-final__box {
  background: transparent;
  border: 1px solid rgba(170, 190, 220, 0.28);
  padding: 24px 26px;
}

.home-final__box-title {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.home-final__box-text {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(198, 210, 228, 0.82);
}

.home-final__box-link {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  color: #c5d4ea;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.home-final__box-link:hover {
  color: #fff;
}

.home-final__lead {
  margin: 8px 0 24px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(198, 210, 228, 0.82);
  max-width: 44ch;
}

.home-final__form {
  background: #051d41;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 32px 32px 28px;
  display: grid;
  gap: 20px;
  color: #fff;
}

.home-final__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.home-final__field {
  display: grid;
  gap: 8px;
}

.home-final__field span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(220, 228, 240, 0.78);
}

.home-final__field input,
.home-final__field textarea {
  width: 100%;
  background: rgba(3, 18, 42, 0.55);
  border: 1px solid rgba(140, 165, 200, 0.32);
  border-radius: 0;
  color: #fff;
  font: inherit;
  padding: 13px 14px;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
}

.home-final__field input {
  height: 50px;
}

.home-final__field textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.45;
}

.home-final__field input::placeholder,
.home-final__field textarea::placeholder {
  color: rgba(160, 180, 210, 0.42);
  font-weight: 300;
}

.home-final__field input:focus,
.home-final__field textarea:focus {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.03);
}

.home-final__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(198, 210, 228, 0.78);
}

.home-final__consent input {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: #fff;
}

.home-final__consent a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.home-final__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  padding: 14px 20px;
  border: 0;
  border-radius: 0;
  background: #fff;
  color: #0a2e62;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.home-final__submit:hover {
  background: #eef3fb;
}

.home-final__footnote {
  margin: 0;
  text-align: center;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(170, 188, 214, 0.62);
}

@media (max-width: 980px) {
  .home-final__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .home-final__title {
    max-width: none;
  }

  .home-final__row {
    grid-template-columns: 1fr;
  }

  .home-final__direct-row {
    flex-wrap: wrap;
    gap: 8px;
  }

  .home-final__direct-meta {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .home-final {
    padding: 72px 0 80px;
  }

  .home-final__stats li {
    padding: 18px 0;
  }

  .home-final__form {
    padding: 22px 18px;
  }
}

.services-image[data-scroll-scale-soft] {
  will-change: transform;
  transform-origin: center center;
}

@media (max-width: 980px) {
  .home-etagen__grid,
  .home-final__inner,
  .home-examples,
  .home-team__grid,
  .home-reviews__grid,
  .home-challenges__row {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Scroll reveal (site-wide) — v2
   ========================================================================== */
.hv-reveal {
  opacity: 0;
  transform: translate3d(0, 56px, 0);
  transition:
    opacity 0.95s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.95s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--hv-delay, 0ms);
  will-change: opacity, transform;
  /* Invisible reveal layers must not steal taps from dock / CTAs */
  pointer-events: none;
}

.hv-reveal--left {
  transform: translate3d(-64px, 24px, 0);
}

.hv-reveal--right {
  transform: translate3d(64px, 24px, 0);
}

.hv-reveal--up {
  transform: translate3d(0, 72px, 0);
}

.hv-reveal--scale {
  transform: translate3d(0, 36px, 0) scale(0.94);
}

.hv-reveal--fade {
  transform: none;
}

.hv-reveal.is-in {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

/* Hero entrance on first paint */
.hv-reveal-hero {
  opacity: 0;
  transform: translate3d(0, 40px, 0);
  animation: hvHeroIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--hv-delay, 0ms);
}

.hv-reveal-hero.hv-reveal--left {
  transform: translate3d(-48px, 20px, 0);
}

.hv-reveal-hero.hv-reveal--right {
  transform: translate3d(48px, 20px, 0);
}

.hv-reveal-hero.hv-reveal--scale {
  transform: translate3d(0, 28px, 0) scale(0.96);
}

@keyframes hvHeroIn {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hv-reveal,
  .hv-reveal--left,
  .hv-reveal--right,
  .hv-reveal--up,
  .hv-reveal--scale,
  .hv-reveal--fade,
  .hv-reveal-hero {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }

  .intro-block__frame {
    --intro-widen: 1 !important;
  }
}

/* ==========================================================================
   Figma pages — Leistungen, Angebot, Einsatzgebiet, Stadt (v1.9.62)
   ========================================================================== */

.leistungen-page-figma .about-page__inner,
.angebot-page-figma .about-page__inner,
.einsatz-page-figma .about-page__inner,
.stadt-page-figma .about-page__inner {
  gap: 80px;
}

/* Tabs */
.figma-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
}

.figma-tabs__btn {
  flex: 0 0 auto;
  width: 200px;
  max-width: 100%;
  padding: 12px 24px;
  background: #fff;
  border: 1px solid #c9ced8;
  border-radius: 2px;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #5a646c;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.figma-tabs__btn.is-active,
.figma-tabs__btn:hover {
  background: #e7effa;
  border-color: #6980d1;
  color: #3e4f8a;
}

/* Leistungen — stats JS fallback */
.leistungen-page-figma [data-leistung-stats] .leistung-stats__item {
  flex: 1 1 0;
  min-width: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-sizing: border-box;
}

.leistungen-page-figma [data-leistung-stats] .leistung-stats__item strong {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 48px;
  line-height: 48px;
  color: #0a2d62;
  white-space: nowrap;
}

.leistungen-page-figma [data-leistung-stats] .leistung-stats__item span {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 20px;
  line-height: 20px;
  text-transform: uppercase;
  color: #5a646c;
}

/* Leistungen — sections */
.leistungen-figma-section__title {
  margin: 0 0 32px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 48px;
  line-height: normal;
  color: #0a2d62;
}

.leistungen-figma-section__grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  width: 100%;
}

.figma-include-list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1 1 0;
  min-width: 0;
  max-width: 800px;
  border-top: 1px solid #020617;
}

.figma-include-list > li,
.figma-include-list__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 90px;
  padding: 16px 0;
  border-bottom: 1px solid #f5f5f5;
  box-sizing: border-box;
}

.figma-include-list__text,
.figma-include-list .leistung-included__text {
  flex: 1 1 0;
  min-width: 0;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.25;
  letter-spacing: -1.12px;
  color: #1552a8;
}

.figma-include-list__text--muted {
  font-weight: 500;
  color: #94a3b8;
}

.figma-include-list__tag,
.figma-include-list .leistung-included__tag {
  flex-shrink: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 20px;
  line-height: 20px;
  letter-spacing: -0.8px;
  color: #94a3b8;
  text-transform: lowercase;
  white-space: normal;
}

.figma-include-list__tag--accent {
  color: #1552a8;
  text-transform: none;
}

.figma-media {
  width: 633px;
  max-width: 100%;
  flex-shrink: 0;
}

.figma-media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 750px;
  object-fit: cover;
}

/* Ablauf */
.figma-ablauf__grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  width: 100%;
}

.figma-ablauf__main {
  flex: 1 1 0;
  min-width: 0;
  max-width: 900px;
}

.figma-ablauf {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #020617;
}

.figma-ablauf__step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid #c9ced8;
}

.figma-ablauf__num {
  flex-shrink: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 20px;
  line-height: 20px;
  letter-spacing: 0.52px;
  color: #6e7880;
  min-width: 32px;
}

.figma-ablauf__body {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.figma-ablauf__title {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 32px;
  line-height: 32px;
  letter-spacing: -1.28px;
  color: #0a2d62;
}

.figma-ablauf__text {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #717c92;
}

.figma-ablauf__time {
  flex-shrink: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 20px;
  line-height: 20px;
  letter-spacing: 0.52px;
  color: #6e7880;
  white-space: normal;
}

/* Side box */
.figma-sidebox {
  width: 400px;
  max-width: 100%;
  flex-shrink: 0;
  background: #e7effa;
  padding: 24px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.figma-sidebox__label {
  margin: 0;
  padding: 0 16px;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.25;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #6e7880;
}

.figma-sidebox__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #020617;
}

.figma-sidebox__list > li {
  padding: 12px 16px;
  border-bottom: 1px solid #c9ced8;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #1552a8;
}

.figma-sidebox__list--tips > li {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.figma-sidebox__list--tips > li strong {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #0a2d62;
}

.figma-sidebox__list--tips > li span {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #717c92;
}

.figma-sidebox__note {
  margin: 0;
  padding: 0 16px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #717c92;
}

/* Angebot form */
.angebot-figma {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  width: 100%;
}

.angebot-figma__form {
  flex: 1 1 0;
  min-width: 0;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.angebot-figma__group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.angebot-figma__group-label {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13px;
  line-height: 13px;
  letter-spacing: 1.04px;
  text-transform: uppercase;
  color: #6e7880;
}

.angebot-figma__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.angebot-figma .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.angebot-figma .form-group label {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13px;
  line-height: 13px;
  letter-spacing: 1.04px;
  text-transform: uppercase;
  color: #6e7880;
}

.angebot-figma .form-group input,
.angebot-figma .form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid #c9ced8;
  border-radius: 2px;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 24px;
  color: #0a2d62;
  background: #fff;
  box-sizing: border-box;
}

.angebot-figma .form-group input:focus,
.angebot-figma .form-group select:focus {
  outline: none;
  border-color: #6980d1;
}

.angebot-figma__submit {
  align-self: flex-start;
  min-width: 200px;
  cursor: pointer;
  border: none;
}

.angebot-figma .anfrage-form__alt {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  color: #717c92;
}

.angebot-figma .anfrage-form__alt a {
  color: #1552a8;
}

.angebot-figma__sidebar {
  width: 400px;
  max-width: 100%;
  flex-shrink: 0;
  background: #061d42;
  padding: 24px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.angebot-figma__sidebar-label {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.25;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #9aadc9;
}

.angebot-figma__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.angebot-figma__step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.angebot-figma__step-num {
  flex-shrink: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 20px;
  line-height: 20px;
  color: #9aadc9;
  min-width: 28px;
}

.angebot-figma__step-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.angebot-figma__step-title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #fff;
}

.angebot-figma__step-text {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgba(198, 210, 228, 0.78);
}

.angebot-figma__privacy {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: rgba(170, 188, 214, 0.62);
}

/* Einsatzgebiet city list */
.einsatz-figma-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.einsatz-figma-list__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid #c9ced8;
  text-decoration: none;
  color: inherit;
  transition: opacity var(--transition);
}

.einsatz-figma-list__row:hover {
  opacity: 0.85;
}

.einsatz-figma-list__main {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.einsatz-figma-list__name {
  display: block;
  margin: 0;
  font-family: var(--font-sans);
  font-size: 32px;
  font-weight: 600;
  line-height: 32px;
  color: #0a2d62;
}

.einsatz-figma-list__areas {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.52px;
  color: #6e7880;
}

.einsatz-figma-list__end {
  display: flex;
  align-items: center;
  gap: 64px;
  flex-shrink: 0;
}

.einsatz-figma-list__km {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 64px;
  font-weight: 400;
  line-height: 64px;
  letter-spacing: -0.48px;
  color: #0a2d62;
  white-space: nowrap;
}

.einsatz-figma-list__km-unit {
  font-family: var(--font-sans);
  font-size: 20px;
  line-height: 20px;
  letter-spacing: 0.52px;
  color: #6e7880;
}

.einsatz-figma-list__arrow {
  font-size: 24px;
  line-height: 1;
  color: #1552a8;
}

/* Stadt page */
.stadt-page-figma__chips {
  margin-top: 0;
}

.stadt-page-figma__intro {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
}

.stadt-page-figma__headline {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 48px;
  line-height: normal;
  color: #0a2d62;
}

.stadt-page-figma__lead {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.4;
  color: #717c92;
}

.stadt-page-figma__grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  width: 100%;
}

.stadt-page-figma__facts {
  flex: 1 1 0;
  min-width: 0;
  max-width: 800px;
}

.stadt-page-figma__aside {
  width: 633px;
  max-width: 100%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.stadt-page-figma__media {
  width: 100%;
}

.stadt-page-figma__sidebox {
  width: 100%;
}

/* Responsive — Leistungen / Angebot / Einsatz / Stadt + shared */
@media (max-width: 1200px) {
  .leistungen-figma-section__grid,
  .figma-ablauf__grid,
  .angebot-figma,
  .stadt-page-figma__grid {
    flex-direction: column;
  }

  .figma-media,
  .figma-sidebox,
  .angebot-figma__sidebar,
  .stadt-page-figma__aside {
    width: 100%;
    max-width: none;
  }

  .figma-media img {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: cover;
  }
}

@media (max-width: 980px) {
  .figma-include-list__text,
  .figma-include-list .leistung-included__text {
    font-size: 20px;
    line-height: 1.35;
  }

  .figma-ablauf__title {
    font-size: 24px;
    line-height: 1.2;
  }

  .leistungen-figma-section__title {
    font-size: 36px;
    margin-bottom: 24px;
  }

  .einsatz-figma-list__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .einsatz-figma-list__end {
    width: 100%;
    justify-content: space-between;
    gap: 24px;
  }

  .einsatz-figma-list__km {
    font-size: clamp(36px, 8vw, 56px);
    line-height: 1;
  }

  .angebot-figma__row {
    grid-template-columns: 1fr;
  }

  .figma-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 8px;
    margin: 0 -4px;
    padding: 0 4px 4px;
  }

  .figma-tabs::-webkit-scrollbar {
    display: none;
  }

  .figma-tabs__btn {
    flex: 0 0 auto;
    width: auto;
    min-width: 148px;
    padding: 12px 16px;
  }
}

@media (max-width: 640px) {
  .faq-page-figma .about-page__inner,
  .preise-page-figma .about-page__inner,
  .leistungen-page-figma .about-page__inner {
    gap: 40px;
    padding-bottom: 48px;
  }

  .about-page__top--faq {
    gap: 40px;
  }

  .faq-figma-item {
    flex-direction: column;
    gap: 8px;
    padding: 18px 0;
  }

  .faq-figma-item__q {
    font-size: 20px;
    letter-spacing: -0.4px;
  }

  .faq-figma-item__a {
    font-size: 16px;
    line-height: 1.5;
  }

  .faq-figma-item__body {
    gap: 10px;
  }

  .preise-list__title {
    font-size: 20px;
    line-height: 1.25;
  }

  .preise-list__meta,
  .preise-list__desc,
  .preise-list__duration {
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: 0;
  }

  .preise-list__amount {
    width: auto;
    font-size: 32px;
    line-height: 1;
    text-align: right;
  }

  .preise-list__note {
    font-size: 15px;
    line-height: 1.5;
  }

  .leistungen-figma-section__title,
  .stadt-page-figma__headline {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .leistungen-page-figma .about-page__inner {
    gap: 48px;
  }

  .figma-tabs__btn {
    min-width: 132px;
    min-height: 44px;
    font-size: 15px;
  }

  .figma-include-list > li,
  .figma-include-list__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    min-height: 0;
    padding: 16px 0;
  }

  .figma-include-list__text,
  .figma-include-list .leistung-included__text {
    font-size: 17px;
    line-height: 1.4;
  }

  .figma-include-list__tag,
  .figma-include-list .leistung-included__tag {
    font-size: 12px;
  }

  .figma-ablauf__step {
    flex-wrap: wrap;
    gap: 10px;
    padding: 16px 0;
  }

  .figma-ablauf__body {
    flex: 1 1 calc(100% - 56px);
    min-width: 0;
  }

  .figma-ablauf__title {
    font-size: 20px;
  }

  .figma-ablauf__text {
    font-size: 15px;
    line-height: 1.45;
  }

  .figma-ablauf__time {
    width: 100%;
    padding-left: 40px;
    text-align: left;
  }

  .figma-sidebox {
    padding: 20px;
  }

  .figma-media img {
    max-height: 280px;
  }

  .leistungen-page-figma [data-leistung-stats] .leistung-stats__item strong,
  .leistungen-page-figma [data-leistung-stats] .about-page__stat-value {
    font-size: 28px;
    line-height: 32px;
    white-space: normal;
  }

  .leistungen-page-figma [data-leistung-stats] .leistung-stats__item span,
  .leistungen-page-figma [data-leistung-stats] .about-page__stat-label {
    font-size: 13px;
    line-height: 1.3;
  }
}

/* ==========================================================================
   Mobile — Angebot / Einsatzgebiet / Stadt
   ========================================================================== */
@media (max-width: 980px) {
  .angebot-page-figma .about-page__inner,
  .einsatz-page-figma .about-page__inner,
  .stadt-page-figma .about-page__inner {
    gap: 48px;
  }

  .angebot-figma {
    flex-direction: column;
    gap: 32px;
  }

  .angebot-figma__form {
    max-width: none;
    width: 100%;
  }

  .angebot-figma__sidebar {
    width: 100%;
    order: -1;
  }

  .angebot-figma__row {
    grid-template-columns: 1fr;
  }

  .angebot-figma__submit {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    justify-content: center;
  }

  .einsatz-figma-list__name {
    font-size: 24px;
    line-height: 1.2;
  }

  .einsatz-figma-list__areas {
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0;
  }

  .einsatz-figma-list__end {
    gap: 20px;
  }

  .stadt-page-figma__intro {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .stadt-page-figma__lead {
    font-size: 18px;
    line-height: 1.45;
  }
}

@media (max-width: 640px) {
  .angebot-page-figma .about-page__inner,
  .einsatz-page-figma .about-page__inner,
  .stadt-page-figma .about-page__inner {
    gap: 40px;
    padding-bottom: 48px;
  }

  .angebot-figma {
    gap: 24px;
  }

  .angebot-figma__form {
    gap: 28px;
  }

  .angebot-figma__group {
    gap: 12px;
  }

  .angebot-figma .form-group input,
  .angebot-figma .form-group select {
    min-height: 48px;
    font-size: 16px;
  }

  .angebot-figma__sidebar {
    padding: 20px;
  }

  .angebot-figma__step-title {
    font-size: 17px;
    line-height: 1.3;
  }

  .angebot-figma__step-text {
    font-size: 14px;
    line-height: 1.45;
  }

  .angebot-figma__privacy {
    font-size: 13px;
    line-height: 1.45;
  }

  .angebot-figma .anfrage-form__alt {
    font-size: 15px;
  }

  .einsatz-figma-list__row {
    padding: 18px 0;
    gap: 12px;
  }

  .einsatz-figma-list__name {
    font-size: 20px;
  }

  .einsatz-figma-list__areas {
    font-size: 14px;
    line-height: 1.4;
  }

  .einsatz-figma-list__km {
    font-size: 28px;
    line-height: 1;
  }

  .einsatz-figma-list__km strong {
    font-size: inherit;
  }

  .einsatz-figma-list__km-unit {
    font-size: 14px;
  }

  .einsatz-figma-list__arrow {
    font-size: 18px;
  }

  .stadt-page-figma__chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .stadt-page-figma__chips::-webkit-scrollbar {
    display: none;
  }

  .stadt-page-figma__headline {
    font-size: 26px;
    line-height: 1.15;
  }

  .stadt-page-figma__lead {
    font-size: 16px;
    line-height: 1.5;
  }

  .stadt-page-figma__aside {
    gap: 16px;
  }

  .stadt-page-figma__media img {
    max-height: 220px;
    width: 100%;
    object-fit: cover;
  }
}

/* ==========================================================================
   Homepage mobile polish — hero / intro / services / etagen / dock
   ========================================================================== */
@media (max-width: 768px) {
  .hvm-shell .hvm-hdr .hvm-brand img {
    width: auto !important;
    height: 56px !important;
    max-width: none !important;
    max-height: 56px !important;
  }

  .hvm-shell .hvm-ftr .hvm-brand img {
    width: auto !important;
    height: 64px !important;
    max-width: none !important;
    max-height: 64px !important;
  }

  .hvm-shell .hvm-hdr .hvm-brand__text,
  .hvm-shell .hvm-hdr .hvm-brand > span.hvm-brand__text {
    display: flex !important;
  }

  html,
  body {
    overflow-x: clip;
    max-width: 100%;
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
    max-width: 100%;
  }

  body.home .top-bar--home .container,
  body.home .site-header--home .container {
    padding-left: 16px;
    padding-right: 16px;
    max-width: 100%;
  }

  .hero__white--lead,
  .hero__white--header {
    display: none !important;
  }

  .hero__content,
  .hero .calculator,
  .hero .stats-grid {
    width: 100%;
    max-width: none !important;
  }

  .hero .calculator {
    width: calc(100% - 32px);
    margin-left: 16px;
    margin-right: 16px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero__actions .btn,
  .hero__phone-link {
    width: 100%;
    justify-content: center;
  }

  .calculator__header {
    flex-wrap: wrap;
    gap: 8px;
    padding: 14px 16px;
  }

  .calculator__body,
  .calculator__footer {
    padding: 16px;
  }

  .calculator__title {
    font-size: 18px;
  }

  .calculator__price-range {
    font-size: clamp(28px, 9vw, 40px);
    letter-spacing: -0.04em;
    white-space: normal;
    flex-wrap: wrap;
  }

  .calculator__chips {
    gap: 8px;
  }

  .calculator__chips:not(.calculator__chips--2) .calculator__chip {
    flex: 1 1 calc(20% - 7px);
    min-width: 0;
    font-size: 14px;
  }

  .intro-block__links {
    max-width: 100%;
    padding-inline: 12px;
    box-sizing: border-box;
  }

  .intro-block__links a {
    white-space: normal;
    font-size: clamp(28px, 8vw, 40px);
    line-height: 1.15;
    max-width: 100%;
  }

  .section__header-row {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
  }

  .section__header-row .section__subtitle {
    max-width: none;
    font-size: 16px;
    line-height: 1.45;
  }

  .section__number,
  .home-etagen__number,
  .home-day__number,
  .home-steps__number,
  .home-nrw__number,
  .home-challenges__number,
  .home-team__number,
  .home-faq__number,
  .home-final__number {
    font-size: clamp(40px, 12vw, 56px);
    line-height: 1;
  }

  .hero__bridge-num {
    font-size: 48px;
  }

  .services-list__item {
    margin-bottom: 28px;
  }

  .services-list__item .services-list__name {
    line-height: 1.15;
    font-size: clamp(28px, 7vw, 40px);
  }

  .services-list__desc {
    font-size: 16px;
    line-height: 1.45;
  }

  .home-etagen,
  .home-final,
  .site-footer {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }

  .home-etagen {
    scroll-padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }

  .home-etagen__inner,
  .home-day__inner,
  .home-steps__inner,
  .home-nrw__inner,
  .home-challenges__inner,
  .home-team__inner,
  .home-final__inner,
  .situations-section__inner {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 640px) {
  .hero__stage {
    padding: 0 0 16px;
    gap: 16px;
  }

  .hero__content {
    padding: 12px 12px 0;
    gap: 16px;
  }

  .hero__copy {
    margin: 0 -12px;
    width: calc(100% + 24px);
    padding: 16px 12px 14px;
  }

  .hero__title {
    font-size: 30px;
    line-height: 1.1;
  }

  .hero__phone-number {
    font-size: 24px;
  }

  .hero .calculator,
  .hero .stats-grid {
    width: calc(100% - 24px);
    margin-left: 12px;
    margin-right: 12px;
  }

  .hero .stats-grid {
    gap: 12px;
  }

  .hero .stat-card {
    min-height: 124px;
    aspect-ratio: auto;
    padding: 0;
  }

  .hero .stat-card__desc {
    font-size: 11px;
    line-height: 1.3;
  }

  .hero .stat-card--langs .stat-card__value {
    font-size: 11px;
    letter-spacing: -0.06em;
  }

  .hero__bridge {
    height: 100px;
  }

  .intro-block {
    padding: 24px 0 48px;
  }

  .intro-block__stage {
    min-height: 280px;
  }

  .intro-block__frame {
    height: min(360px, 110vw);
  }

  .intro-block__links a {
    font-size: clamp(24px, 7.5vw, 34px);
  }

  .situations-section {
    padding: 56px 0 64px;
  }

  .situation-card {
    height: auto;
    min-height: 300px;
  }

  .situation-card.is-active .situation-card__text {
    max-height: none;
  }

  .home-etagen {
    padding: 56px 0 calc(72px + env(safe-area-inset-bottom, 0px));
  }

  .home-etagen__title {
    font-size: 28px;
    line-height: 1.15;
  }

  .home-etagen__eyebrow {
    font-size: 14px;
  }

  .home-etagen__aside {
    font-size: 15px;
    line-height: 1.45;
  }

  .home-etagen__tabs {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: visible;
  }

  .home-etagen__tab {
    white-space: normal;
    text-align: left;
    min-height: 48px;
    padding: 12px 16px;
  }

  .home-etagen__tab-rule {
    display: none;
  }

  .home-etagen__form-body {
    padding: 20px 16px;
  }

  .home-etagen__chip {
    flex: 1 1 calc(50% - 4px);
    min-width: calc(50% - 4px);
    min-height: 44px;
    font-size: 14px;
  }

  .home-etagen__chips--2 .home-etagen__chip {
    flex: 1 1 calc(50% - 4px);
  }

  .home-etagen__area input {
    min-height: 48px;
    font-size: 16px;
  }

  .home-etagen__cta,
  .home-etagen__submit {
    width: 100%;
    min-height: 48px;
  }

  .home-etagen__price {
    font-size: clamp(28px, 8vw, 40px);
  }

  .home-etagen__preview-body {
    padding: 20px 16px;
  }

  .home-etagen__examples-label {
    font-size: 16px;
  }

  .home-examples__top {
    min-width: 0;
    width: 100%;
  }

  .home-examples__price {
    font-size: 40px;
  }

  .home-insurance__title {
    font-size: 28px;
  }

  .home-insurance__list li {
    gap: 12px;
    padding: 16px 0;
  }

  .home-day__title,
  .home-steps__title,
  .home-nrw__title,
  .home-challenges__title,
  .home-team__title,
  .home-faq__title,
  .home-final__title,
  .section__title,
  .situations-section__title {
    font-size: 28px;
    line-height: 1.15;
    white-space: normal;
  }

  .home-day__aside,
  .home-steps__aside,
  .home-nrw__aside,
  .home-challenges__aside,
  .home-team__aside {
    font-size: 15px;
    line-height: 1.45;
  }

  .home-day__timeline li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .home-steps__item {
    gap: 12px;
  }

  .home-steps-cta__btns {
    flex-direction: column;
  }

  .home-steps-cta__btn {
    width: 100%;
  }

  .home-nrw__map {
    max-width: 100%;
  }

  .home-challenges__media img {
    width: 100%;
    height: auto;
  }

  .home-final {
    padding: 56px 0 calc(88px + env(safe-area-inset-bottom, 0px));
  }

  .home-final__form input,
  .home-final__form textarea {
    font-size: 16px;
    min-height: 48px;
  }
}

/* ==========================================================================
   Mobile UX — jump chips + snap carousels (homepage)
   ========================================================================== */
.home-jump {
  display: none;
}

.hv-snap-dots {
  display: none;
}

@media (max-width: 768px) {
  :root {
    --mobile-side-gap: 14px;
  }

  .container {
    padding-left: var(--mobile-side-gap);
    padding-right: var(--mobile-side-gap);
  }

  .home-jump {
    display: block;
    position: sticky;
    top: 0;
    z-index: 90;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid #e6ebf1;
  }

  .home-jump__track {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 10px var(--mobile-side-gap);
  }

  .home-jump__track::-webkit-scrollbar {
    display: none;
  }

  .home-jump__chip {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border: 1px solid #d5dde7;
    background: #fff;
    color: #0a2d62;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  }

  .home-jump__chip.is-active {
    background: #0a2d62;
    border-color: #0a2d62;
    color: #fff;
  }

  /* Snap carousels — peek next card (team stacks full-width, not carousel) */
  .situation-cards,
  .home-examples,
  .home-reviews__grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    grid-template-columns: none !important;
    gap: 12px !important;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--mobile-side-gap);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-left: 0;
    margin-right: 0;
    padding: 4px 0 12px;
  }

  .situation-cards::-webkit-scrollbar,
  .home-examples::-webkit-scrollbar,
  .home-reviews__grid::-webkit-scrollbar {
    display: none;
  }

  .situation-cards > *,
  .home-examples > *,
  .home-reviews__grid > * {
    flex: 0 0 min(78vw, 300px) !important;
    width: min(78vw, 300px) !important;
    max-width: min(78vw, 300px) !important;
    scroll-snap-align: start;
  }

  .home-team__grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    overflow: visible !important;
    flex-wrap: unset !important;
  }

  .home-team__grid > * {
    flex: none !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .home-team__phone {
    white-space: nowrap;
  }

  .situation-card {
    height: 360px !important;
    min-height: 360px !important;
  }

  .home-examples__card {
    max-width: none !important;
  }

  .home-examples__top {
    width: 100% !important;
    min-width: 0 !important;
  }

  .hv-snap-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin: 0 0 8px;
  }

  .hv-snap-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #c9ced8;
    transition: background 0.2s ease, transform 0.2s ease;
  }

  .hv-snap-dots span.is-active {
    background: #0a2d62;
    transform: scale(1.25);
  }

  /* Tighter section rhythm — less “endless scroll” fatigue */
  body.home .intro-block,
  body.home .services-section,
  body.home .situations-section,
  body.home .home-etagen,
  body.home .home-insurance,
  body.home .home-day,
  body.home .home-steps,
  body.home .home-nrw,
  body.home .home-challenges,
  body.home .home-team,
  body.home .home-faq {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  body.home .home-etagen__examples-head,
  body.home .home-challenges__aside,
  body.home .section__number,
  body.home .home-etagen__number,
  body.home .home-day__number,
  body.home .home-steps__number,
  body.home .home-nrw__number,
  body.home .home-challenges__number,
  body.home .home-team__number {
    display: none;
  }

  body.home .home-etagen__meta,
  body.home .home-day__meta,
  body.home .home-steps__meta,
  body.home .home-nrw__meta,
  body.home .home-challenges__meta,
  body.home .home-team__meta,
  body.home .section__number-row {
    margin-bottom: 8px;
  }

  /* Day timeline as compact cards */
  .home-day__timeline {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0;
    padding: 0 0 8px;
    list-style: none;
  }

  .home-day__timeline::-webkit-scrollbar {
    display: none;
  }

  .home-day__timeline li {
    flex: 0 0 min(76vw, 280px);
    scroll-snap-align: start;
    display: flex !important;
    flex-direction: column;
    gap: 10px;
    padding: 18px 16px !important;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    grid-template-columns: none !important;
  }

  /* Steps as stacked compact rows */
  .home-steps__list {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .home-steps__item {
    padding: 18px 0;
    border-bottom: 1px solid #e6ebf1;
  }

  /* Challenges: media first — full text, natural wrap (no mid-sentence clamp) */
  .home-challenges__text {
    font-size: 15px;
    line-height: 1.5;
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
  }

  .home-nrw__cities {
    margin: 0;
    padding: 0;
  }

  .home-nrw__map {
    max-width: 280px;
    margin: 0 auto 24px;
  }
}

/* ==========================================================================
   Site Intro — auto launch (text → curtain → video → fade to site)
   ========================================================================== */
body.intro-active {
  overflow: hidden;
}

.site-intro {
  position: fixed;
  inset: 0;
  z-index: 2147483600;
  display: block;
  background: #061d42;
  color: #fff;
  opacity: 0;
  transition: opacity 0.65s ease;
}

.site-intro.is-ready {
  opacity: 1;
}

.site-intro.is-exiting {
  opacity: 0;
  pointer-events: none;
}

.site-intro.is-done,
.site-intro[hidden] {
  display: none !important;
}

.site-intro__stage {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #061d42;
}

.site-intro__media {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  opacity: 0;
  transform: translate3d(0, -14%, 0) scale(1.12);
  transition:
    opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-intro.is-media .site-intro__media {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.site-intro__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 29, 66, 0.4) 0%, transparent 30%, rgba(6, 29, 66, 0.62) 100%),
    linear-gradient(90deg, rgba(6, 29, 66, 0.4) 0%, transparent 55%);
  pointer-events: none;
}

.site-intro__video,
.site-intro__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.site-intro__curtain {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.site-intro__panel {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 52%;
  background: #0a2d62;
  transition: transform 1.15s cubic-bezier(0.65, 0, 0.35, 1);
}

.site-intro__panel--left {
  left: 0;
  box-shadow: inset -20px 0 40px rgba(0, 0, 0, 0.2);
}

.site-intro__panel--right {
  right: 0;
  box-shadow: inset 20px 0 40px rgba(0, 0, 0, 0.2);
}

.site-intro.is-curtain .site-intro__panel--left {
  transform: translate3d(-105%, 0, 0);
}

.site-intro.is-curtain .site-intro__panel--right {
  transform: translate3d(105%, 0, 0);
}

.site-intro__copy {
  position: absolute;
  left: 50%;
  top: 44%;
  z-index: 4;
  width: min(1000px, 90vw);
  transform: translate3d(-50%, -40%, 0);
  opacity: 0;
  text-align: center;
  pointer-events: none;
  transition:
    opacity 0.9s ease,
    transform 1s cubic-bezier(0.22, 1, 0.36, 1),
    top 1s cubic-bezier(0.22, 1, 0.36, 1),
    left 1s cubic-bezier(0.22, 1, 0.36, 1),
    text-align 0.3s ease;
}

.site-intro.is-text .site-intro__copy {
  opacity: 1;
  transform: translate3d(-50%, -50%, 0);
}

.site-intro.is-finale .site-intro__copy {
  left: clamp(20px, 5vw, 80px);
  top: auto;
  bottom: clamp(120px, 22vh, 220px);
  width: min(900px, 88vw);
  text-align: left;
  transform: none;
}

.site-intro__eyebrow {
  margin: 0 0 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.site-intro__title {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(36px, 7vw, 88px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow: 0 10px 40px rgba(6, 29, 66, 0.35);
}

.site-intro__title span {
  display: block;
}

.site-intro__finale {
  position: absolute;
  left: clamp(20px, 5vw, 80px);
  right: clamp(20px, 5vw, 80px);
  bottom: clamp(28px, 6vh, 72px);
  z-index: 5;
  max-width: 36em;
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 0.8s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.site-intro.is-finale .site-intro__finale {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.site-intro__lead {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(15px, 2.2vw, 24px);
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.92);
}

.site-intro__skip {
  position: absolute;
  top: max(16px, env(safe-area-inset-top));
  right: max(16px, env(safe-area-inset-right));
  z-index: 6;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(6, 29, 66, 0.35);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.site-intro__skip:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
  /* Frame the van in the center of the portrait crop */
  .site-intro__video,
  .site-intro__poster {
    object-position: 22% 42%;
  }

  .site-intro__title {
    font-size: clamp(30px, 9vw, 42px);
  }

  .site-intro.is-finale .site-intro__copy {
    bottom: clamp(150px, 28vh, 220px);
  }

  .site-intro__lead {
    font-size: 15px;
  }

  .site-intro__skip {
    top: max(12px, env(safe-area-inset-top));
    right: max(12px, env(safe-area-inset-right));
    font-size: 12px;
  }
}

/* ==== FINAL desktop logo — full artwork + wordmark ==== */
@media (min-width: 1025px) {
  body.home .site-header--home a.site-logo img,
  body.home .site-header--home a.site-logo img.site-logo__img,
  body.home .site-header--home a.site-logo img.site-logo__mark,
  body.home .site-header--home .site-logo__img,
  body.home .site-header--home .site-logo__mark {
    width: auto !important;
    height: 77px !important;
    min-width: 0 !important;
    min-height: 77px !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: contain !important;
  }

  body.home .site-header--home a.site-logo .site-logo__text,
  body.home .site-header--home .site-logo__text {
    display: flex !important;
    flex-direction: column !important;
  }
}

/* ==== FINAL mobile/tablet: logo + wordmark, 50px gap ==== */
@media (max-width: 1024px) {
  a.site-logo,
  .site-logo,
  body.home .site-header--home .site-logo {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 50px !important;
  }

  a.site-logo .site-logo__text,
  .site-logo__text,
  body.home .site-header--home .site-logo__text {
    display: flex !important;
    flex-direction: column !important;
    margin-left: 0 !important;
  }

  a.site-logo img,
  a.site-logo img.site-logo__img,
  a.site-logo img.site-logo__mark,
  .site-logo__img,
  .site-logo__mark,
  body.home .site-header--home .site-logo__img,
  body.home .site-header--home .site-logo__mark {
    height: 56px !important;
    min-height: 56px !important;
    max-height: none !important;
    width: auto !important;
  }
}


/* ==========================================================================
   SEO landings (CPT) + Blog
   ========================================================================== */
.seo-hero__card {
  background: #fff;
  color: #0b1f3a;
  padding: 28px 24px;
  border-radius: 4px;
}
.seo-hero__card-label {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(11,31,58,0.55);
  margin-bottom: 16px;
}
.seo-lead-form .home-final__field { margin-bottom: 12px; }
.seo-prose {
  max-width: 760px;
  font-size: 17px;
  line-height: 1.65;
  color: #1a2b3c;
}
.seo-prose h2 { font-size: 28px; margin: 32px 0 12px; }
.seo-prose ol { padding-left: 1.2em; }
.seo-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.seo-gallery__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.seo-reviews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.seo-review {
  margin: 0;
  padding: 22px;
  background: #f4f7fb;
  border-left: 3px solid #0a2d62;
}
.seo-review footer { margin-top: 14px; font-size: 14px; color: #5a6a7a; }
.seo-map iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}
.seo-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
}
.seo-links a {
  display: inline-flex;
  padding: 10px 16px;
  border: 1px solid #c9d4e2;
  color: #0a2d62;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}
.seo-links a:hover { background: #0a2d62; color: #fff; }
.seo-gbp { font-size: 14px; color: #0a2d62; }
.hvm-map iframe { width: 100%; height: 240px; border: 0; }
.hvm-linklist { list-style: none; padding: 0; margin: 0; }
.hvm-linklist a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}
.hvm-quote {
  margin: 0 0 16px;
  padding: 16px;
  background: #f4f7fb;
  font-size: 15px;
  line-height: 1.5;
}
.hvm-quote footer { margin-top: 10px; font-size: 13px; color: #5a6a7a; }

.blog-article__hero,
.blog-index__hero {
  background: linear-gradient(135deg, #061d42 0%, #0a2d62 100%);
  color: #fff;
  padding: 120px 0 56px;
}
.blog-article__eyebrow a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; }
.blog-article__title { font-size: clamp(32px, 4vw, 52px); font-weight: 600; margin: 12px 0; max-width: 820px; }
.blog-article__meta,
.blog-article__lead { color: rgba(255,255,255,0.7); font-size: 16px; }
.blog-article__body { padding: 48px 0 80px; max-width: 800px; }
.blog-article__thumb { width: 100%; height: auto; margin-bottom: 28px; }
.blog-article__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 36px; }
.blog-index { padding: 48px 0 80px; }
.blog-index__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.blog-card {
  border: 1px solid #e2e8f0;
  overflow: hidden;
  background: #fff;
}
.blog-card__media img { width: 100%; height: 200px; object-fit: cover; display: block; }
.blog-card__body { padding: 20px 22px 24px; }
.blog-card__title { font-size: 22px; margin: 0 0 10px; }
.blog-card__title a { color: inherit; text-decoration: none; }
.blog-card__excerpt { color: #5a6a7a; font-size: 15px; line-height: 1.5; margin: 0 0 14px; }
.blog-card__more { font-weight: 600; color: #0a2d62; text-decoration: none; }
.blog-index__empty { color: #5a6a7a; }
.hvm-listrow {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  color: inherit;
  text-decoration: none;
}
@media (max-width: 900px) {
  .seo-gallery,
  .seo-reviews,
  .blog-index__grid { grid-template-columns: 1fr; }
  .seo-hero__grid { grid-template-columns: 1fr; }
}


/* ==========================================================================
   Stadtseite — umzugsunternehmen-{city} (adaptive)
   ========================================================================== */
.city{background:#fff;color:var(--text,#121714)}
.city__wrap{max-width:1760px;margin:0 auto;padding:0 80px 96px;box-sizing:border-box}
.city-sec{padding:64px 0;border-top:1px solid #e5e8ee}
.city-sec--hero{border-top:0;padding-top:48px}
.city-sec--price{background:#f4f6f8;border-top:1px solid transparent;margin:0 -80px;padding:72px 80px 96px;border-radius:0}
.city-sec--sub{border-top:1px solid #e5e8ee}
.city-sec__head{margin:0 0 28px}
.city-sec__head--split{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(0,.9fr);gap:24px 40px;align-items:end;margin-bottom:48px;justify-content:space-between}
.city-sec__title-wrap{display:flex;flex-direction:column;align-items:flex-start;gap:24px;min-width:0}
.city-sec__num{flex:0 0 auto;font-family:var(--font-sans,inherit);font-size:clamp(72px,10vw,120px);font-weight:400;line-height:1;letter-spacing:-.04em;color:var(--section-num,#e9edf2);margin:0}
.city-sec__title{margin:0;font-size:clamp(32px,4.2vw,64px);font-weight:600;line-height:1.2;letter-spacing:0;color:var(--navy,#0a2d62)}
.city-sec__title--solo{margin:0 0 28px;font-size:clamp(32px,4.2vw,64px)}
.city-sec__aside{margin:0;font-size:clamp(18px,1.6vw,24px);line-height:1.35;color:#717c92;max-width:42ch}
.city-sec--price .city-sec__head--split{margin-bottom:80px;gap:24px 48px;align-items:end}
.city-sec--price .city-sec__title-wrap{gap:24px}
.city-sec--price .city-sec__num{font-size:clamp(72px,10vw,120px);line-height:1;letter-spacing:-.04em;color:#e9edf2}
.city-sec--price .city-sec__title{font-size:clamp(32px,4.2vw,64px);font-weight:600;line-height:1.2;color:#0a2d62}
.city-sec--price .city-sec__aside{font-size:clamp(18px,1.6vw,24px);line-height:1.35;color:#717c92;max-width:32ch}
.city__eyebrow{font-size:13px;font-weight:500;letter-spacing:.08em;text-transform:uppercase;color:#9aa3af;margin:0 0 12px}
.city h1{margin:0;font-size:clamp(34px,4.4vw,56px);font-weight:600;line-height:1.06;letter-spacing:-.03em;color:var(--navy,#0a2d62)}
.city h2{margin:0 0 20px;font-size:clamp(32px,4.2vw,64px);font-weight:600;line-height:1.2;letter-spacing:0;color:var(--navy,#0a2d62)}
.city .city-sec__title{margin:0}
.city .city-sec__title--solo{margin:0 0 28px}
.city h3{margin:0 0 6px;font-size:17px;font-weight:600;color:var(--navy,#0a2d62)}
.city p{margin:0;font-size:16px;line-height:1.62;color:#4d565e}
.city p+p{margin-top:11px}
.city-two--body{grid-template-columns:1fr;max-width:100%;width:100%}
.city-two--body p{font-size:16px;font-weight:400;line-height:1.62;color:#4d565e}
.city-two--body p+p{margin-top:11px}
.city-hero{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(0,.95fr);gap:40px 80px;align-items:end}
.city-hero__lead{font-size:18px;line-height:1.55;color:#6e7880}
.city-cta{display:flex;gap:12px;flex-wrap:wrap;margin-top:22px}
.city-btn{display:inline-flex;align-items:center;justify-content:center;gap:9px;min-height:50px;padding:0 22px;border-radius:10px;font-size:15px;font-weight:600;text-decoration:none;border:1.5px solid transparent;cursor:pointer;font-family:inherit}
.city-btn svg{width:18px;height:18px}
.city-btn--navy{background:var(--navy,#0a2d62);color:#fff}
.city-btn--navy:hover{background:#1552a8;color:#fff}
.city-btn--outline{background:#fff;color:var(--navy,#0a2d62);border-color:var(--navy,#0a2d62)}
.city-btn--outline:hover{background:#e7effa}
.city-kpi{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));border-top:1px solid #c9ced8;border-bottom:1px solid #c9ced8;margin-top:40px}
.city-kpi>div{padding:20px 24px 20px 0}
.city-kpi b{display:block;font-size:clamp(18px,2vw,26px);font-weight:600;line-height:1.15;color:var(--navy,#0a2d62);letter-spacing:-.02em}
.city-kpi span{display:block;margin-top:8px;font-size:14px;line-height:1.35;color:#4d565e}
.city-two{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:28px 56px}
.city-viertel{display:flex;flex-wrap:wrap;gap:8px;list-style:none;margin:0 0 14px;padding:0}
.city-viertel li{padding:7px 13px;border:1px solid #c9ced8;border-radius:99px;font-size:14px;color:var(--navy,#0a2d62)}
.city-route{display:grid;grid-template-columns:minmax(0,1.15fr) minmax(0,.85fr);gap:32px 48px;align-items:start}
.city-route__diagram{border:1px solid #c9ced8;border-radius:10px;padding:22px 20px;background:#f4f7fb}
.city-route__diagram svg{width:100%;height:auto;display:block}
.city-rt-line{stroke:#0a2d62;stroke-width:2}
.city-rt-node{fill:#fff;stroke:#0a2d62;stroke-width:2}
.city-rt-node--end{fill:#0a2d62}
.city-rt-city{font-size:15px;font-weight:600;fill:#0a2d62}
.city-rt-sub{font-size:11.5px;fill:#6e7880}
.city-rt-badge{fill:#fff;stroke:#c9ced8}
.city-rt-badge-t{font-size:11.5px;fill:#0a2d62}
.city-rt-metric{font-size:13px;fill:#0a2d62;font-weight:600}
.city-rt-metric-l{font-size:11px;fill:#6e7880}
.city-route__list{list-style:none;margin:0;padding:0}
.city-route__list li{display:flex;justify-content:space-between;gap:20px;padding:13px 0;border-bottom:1px solid #e5e8ee;font-size:15px;color:#4d565e}
.city-route__list strong{color:#0a2d62;font-weight:600;text-align:right}
.city-map{aspect-ratio:16/9;border:1px solid #c9ced8;border-radius:10px;background:#f4f7fb;overflow:hidden;position:relative}
.city-map iframe{width:100%;height:100%;border:0;display:block}
.city-map .hv-map-ph{position:absolute;inset:0;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:12px;padding:24px;text-align:center}
.city-flow{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:20px;list-style:none;margin:0;padding:0}
.city-flow__ic{width:44px;height:44px;border:1px solid #c9ced8;border-radius:10px;display:flex;align-items:center;justify-content:center;margin-bottom:12px;color:#1552a8}
.city-flow__ic svg{width:21px;height:21px}
.city-flow h3{font-size:15px;margin-bottom:5px}
.city-flow p{font-size:14px;line-height:1.5}
.city-price{border:0;border-radius:0;padding:0;max-width:none;background:transparent}
.city-price--figma{display:flex;flex-direction:column;align-items:stretch;gap:0}
.city .city-price__card,.city-price__card{display:flex;flex-direction:column;align-items:flex-start;justify-content:flex-start;gap:9px;background:#fff;padding:16px 20px;width:548px;max-width:100%;min-height:129px;box-sizing:border-box}
.city-price__tag{display:none}
.city .city-price__sum,.city-price__sum{margin:0;font-size:72px;line-height:72px;font-weight:500;color:#0a0e23;letter-spacing:0;font-family:var(--font-sans,inherit);white-space:nowrap;font-variant-numeric:tabular-nums}
.city .city-price__kind,.city-price__kind{margin:0;font-size:12px;line-height:16px;font-weight:500;letter-spacing:1.2px;text-transform:uppercase;color:#0a0e23;font-family:var(--font-sans,inherit)}
.city-price__rows{list-style:none;margin:0;padding:16px;width:100%;background:#fff;box-sizing:border-box}
.city-price__rows li{display:flex;justify-content:space-between;align-items:center;gap:24px;padding:10px 0;border:0;border-bottom:1px solid #c9ced8;font-size:16px;line-height:1.4;color:#3c454a}
.city-price__rows li:first-child{border-top:1px solid #c9ced8}
.city-price__rows li span{text-transform:uppercase;letter-spacing:0;font-size:14px;line-height:14px;font-weight:400;color:#5a646c;flex:0 0 auto}
.city-price__rows strong{font-weight:400;color:#3c454a;text-align:right;font-size:16px;line-height:1.4}
.city-price__note{display:none}
.city-faq{list-style:none;margin:0;padding:0;max-width:100%;width:100%}
.city-faq li{padding:16px 0;border-bottom:1px solid #c9ced8}
.city-faq li:first-child{border-top:1px solid #c9ced8}
.city-faq h3{margin:0;font-size:30px;font-weight:600;line-height:1.3;letter-spacing:0;color:var(--navy,#0a2d62)}
.city-faq p{margin:10px 0 0;font-size:18px;font-weight:400;line-height:1.5;color:#6e7880}
.city .city-faq p{font-size:18px;line-height:1.5;color:#6e7880}
.city-empty{background:#f4f7fb;border-radius:10px;padding:22px 24px;max-width:64ch}
.city-empty a{color:var(--navy,#0a2d62);font-weight:600}
.city-linklist{display:flex;flex-wrap:wrap;gap:10px;list-style:none;margin:0;padding:0}
.city-linklist a{display:inline-block;padding:9px 15px;border:1px solid #c9ced8;border-radius:10px;font-size:14px;font-weight:500;color:var(--navy,#0a2d62);text-decoration:none}
.city-linklist a:hover{background:#e7effa}
.city-form{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;max-width:620px}
.city-form label{display:block;font-size:13.5px;font-weight:500;color:var(--navy,#0a2d62);margin-bottom:6px}
.city-form input,.city-form textarea{width:100%;font:inherit;font-size:15px;color:#121714;background:#fff;border:1px solid #c9ced8;border-radius:10px;padding:12px 14px}
.city-form input:focus,.city-form textarea:focus{outline:2px solid #1552a8;outline-offset:1px;border-color:#1552a8}
.city-form__wide{grid-column:1/-1}
.city-form__consent{grid-column:1/-1;display:flex;gap:10px;align-items:flex-start;font-size:13.5px;line-height:1.5;color:#4d565e;margin:0}
.city-form__consent input{width:auto;margin-top:3px}
.city-form__consent a{color:var(--navy,#0a2d62)}
@media (max-width:1200px){.city__wrap{padding:0 40px 80px}.city-sec--price{margin:0 -40px;padding:64px 40px 80px}}
@media (max-width:1000px){.city-flow{grid-template-columns:repeat(2,minmax(0,1fr));gap:24px 20px}}
@media (max-width:860px){.city__wrap{padding:0 24px 64px}.city-sec{padding:40px 0}.city-sec--price{margin:0 -24px;padding:48px 24px 56px}.city-sec--price .city-sec__head--split{margin-bottom:40px;grid-template-columns:1fr;gap:16px;align-items:start}.city-sec__head--split{grid-template-columns:1fr;gap:14px;align-items:start}.city-sec__num{font-size:72px}.city-sec__title,.city-sec__title--solo,.city h2{font-size:clamp(28px,8vw,40px)}.city-hero,.city-two,.city-route{grid-template-columns:1fr;gap:20px;align-items:start}.city-kpi{grid-template-columns:1fr 1fr}.city-kpi>div{padding:16px 16px 16px 0}.city-form{grid-template-columns:1fr}.city .city-price__card,.city-price__card{width:100%;max-width:100%;min-height:0;padding:16px}.city .city-price__sum,.city-price__sum{font-size:clamp(40px,10vw,56px);line-height:1.05;white-space:normal}}
@media (max-width:560px){.city__wrap{padding:0 16px 56px}.city-sec--price{margin:0 -16px;padding:40px 16px 48px}.city-flow{grid-template-columns:1fr}.city-route__list li{flex-direction:column;gap:4px}.city-route__list strong{text-align:left}.city-sec__title-wrap{gap:16px}.city-price__rows{padding:12px 16px 16px}.city-price__rows li{gap:12px}.city-price__rows strong{text-align:right}}

