@charset "UTF-8";

:root {
  --navy-950: #031027;
  --navy-900: #061a3a;
  --navy-800: #0a2853;
  --blue-700: #0759b8;
  --blue-600: #0876e2;
  --blue-500: #0798ff;
  --blue-100: #dff2ff;
  --pink-500: #f2247a;
  --pink-100: #ffe4ef;
  --slate-900: #142033;
  --slate-700: #46566b;
  --slate-600: #607086;
  --slate-400: #98a7b9;
  --slate-200: #dce4ee;
  --slate-100: #edf2f7;
  --cloud: #f6f9fc;
  --white: #fff;
  --success: #0a8f67;
  --warning: #d77b08;
  --font: Inter, "SF Pro Display", "Segoe UI", Arial, sans-serif;
  --container: 1180px;
  --shadow-sm: 0 8px 24px rgba(3, 16, 39, .08);
  --shadow-md: 0 18px 55px rgba(3, 16, 39, .13);
  --shadow-lg: 0 30px 90px rgba(3, 16, 39, .2);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --ease: cubic-bezier(.2, .75, .25, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  margin: 0;
  color: var(--slate-900);
  background: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 {
  color: var(--navy-900);
  font-weight: 780;
  line-height: 1.08;
  letter-spacing: -.035em;
}
h1 { font-size: clamp(3rem, 6vw, 6.2rem); }
h2 { font-size: clamp(2.25rem, 4.2vw, 4.25rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.65rem); }
p { color: var(--slate-700); }
::selection { color: var(--white); background: var(--blue-600); }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--white);
  background: var(--navy-900);
}
.skip-link:focus { transform: translateY(0); }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: clamp(76px, 10vw, 136px) 0; }
.section-sm { padding: clamp(52px, 7vw, 84px) 0; }
.section-cloud { background: var(--cloud); }
.section-navy {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-900);
}
.section-navy h2, .section-navy h3, .section-navy p { color: var(--white); }
.section-navy p { opacity: .76; }
.section-navy::before {
  position: absolute;
  inset: -30% auto auto 55%;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(7, 152, 255, .22), transparent 67%);
  content: "";
}
.section-head { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr); align-items: end; gap: 40px; margin-bottom: 52px; }
.section-head h2 { max-width: 790px; margin-bottom: 0; }
.section-head p { max-width: 520px; margin: 0; font-size: 1.08rem; }
.section-head.center { display: block; max-width: 820px; margin-inline: auto; text-align: center; }
.section-head.center p { margin: 20px auto 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--blue-600);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.eyebrow::before { width: 28px; height: 2px; background: currentColor; content: ""; }
.eyebrow.pink { color: var(--pink-500); }
.eyebrow.light { color: #62bfff; }
.lead { max-width: 730px; font-size: clamp(1.08rem, 2vw, 1.32rem); line-height: 1.65; }
.muted { color: var(--slate-600); }
.accent { color: var(--blue-600); }
.accent-pink { color: var(--pink-500); }
.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; }

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .93rem;
  font-weight: 760;
  line-height: 1;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s ease, color .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { color: var(--white); background: linear-gradient(135deg, var(--blue-500), var(--blue-700)); box-shadow: 0 14px 32px rgba(7, 118, 226, .28); }
.btn-primary:hover { box-shadow: 0 18px 38px rgba(7, 118, 226, .38); }
.btn-secondary { color: var(--navy-900); background: var(--white); box-shadow: var(--shadow-sm); }
.btn-secondary:hover { color: var(--blue-700); }
.btn-ghost { color: var(--navy-900); border-color: var(--slate-200); background: transparent; }
.btn-ghost:hover { border-color: var(--blue-500); color: var(--blue-700); background: var(--blue-100); }
.btn-dark { color: var(--white); background: var(--navy-900); box-shadow: 0 14px 32px rgba(3, 16, 39, .18); }
.btn-icon { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.btn:hover .btn-icon { transform: translateX(3px); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--blue-700); font-weight: 760; }
.text-link svg { width: 17px; height: 17px; transition: transform .2s ease; }
.text-link:hover svg { transform: translateX(4px); }

.preview-note {
  position: relative;
  z-index: 110;
  padding: 7px 20px;
  color: var(--white);
  background: linear-gradient(90deg, var(--navy-900), var(--blue-700));
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .035em;
  text-align: center;
}
.preview-note span { opacity: .75; font-weight: 500; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(220, 228, 238, .72);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(18px) saturate(160%);
}
.nav-wrap { display: flex; min-height: 88px; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; width: 270px; flex: 0 0 auto; align-items: center; }
.brand img { width: 100%; }
.site-nav { display: flex; align-items: center; gap: 6px; }
.site-nav > a, .nav-dropdown > button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  border: 0;
  border-radius: 12px;
  color: var(--slate-700);
  background: transparent;
  font-size: .9rem;
  font-weight: 700;
  white-space: nowrap;
}
.site-nav > a:hover, .site-nav > a[aria-current="page"], .nav-dropdown > button:hover { color: var(--blue-700); background: var(--blue-100); }
.nav-dropdown { position: relative; }
.nav-dropdown > button svg { width: 14px; transition: transform .2s ease; }
.nav-dropdown:hover > button svg, .nav-dropdown:focus-within > button svg { transform: rotate(180deg); }
.nav-menu {
  position: absolute;
  visibility: hidden;
  top: calc(100% + 12px);
  left: -20px;
  width: 280px;
  padding: 12px;
  transform: translateY(8px);
  border: 1px solid var(--slate-200);
  border-radius: 18px;
  opacity: 0;
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: .2s ease;
}
.nav-dropdown:hover .nav-menu, .nav-dropdown:focus-within .nav-menu { visibility: visible; transform: translateY(0); opacity: 1; }
.nav-menu a { display: block; padding: 11px 12px; border-radius: 10px; color: var(--slate-700); font-size: .9rem; font-weight: 650; }
.nav-menu a:hover { color: var(--blue-700); background: var(--blue-100); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; color: var(--navy-900); font-size: .84rem; font-weight: 760; white-space: nowrap; }
.nav-phone svg { width: 17px; color: var(--blue-600); }
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  background: var(--white);
}
.nav-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; background: var(--navy-900); transition: .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}
.hero::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3,16,39,.98) 0%, rgba(3,16,39,.94) 43%, rgba(3,16,39,.46) 66%, rgba(3,16,39,.18) 100%);
  content: "";
  z-index: 1;
}
.hero::after {
  position: absolute;
  inset: auto auto -330px -250px;
  width: 700px;
  height: 700px;
  border: 110px solid rgba(7, 152, 255, .12);
  border-radius: 50%;
  content: "";
  z-index: 1;
}
.hero-media { position: absolute; inset: 0 0 0 43%; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 52% center; }
.hero-inner { position: relative; z-index: 2; display: flex; min-height: 720px; align-items: center; padding: 88px 0 120px; }
.hero-content { width: 100%; min-width: 0; max-width: 760px; }
.hero .eyebrow { color: #69c2ff; }
.hero h1 { margin-bottom: 25px; color: var(--white); font-size: clamp(3.4rem, 6.3vw, 6.4rem); }
.hero h1 em { color: #5ebdff; font-style: normal; }
.hero .lead { max-width: 650px; margin-bottom: 0; color: rgba(255,255,255,.78); }
.hero .button-row { margin-top: 36px; }
.hero-proof-panel {
  display: grid;
  width: min(100%, 640px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 26px;
  overflow: hidden;
  border: 1px solid rgba(189, 220, 244, .72);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .97), rgba(242, 249, 255, .91));
  box-shadow: 0 18px 46px rgba(0, 9, 27, .24), inset 0 1px 0 rgba(255, 255, 255, .95);
  -webkit-backdrop-filter: blur(16px) saturate(125%);
  backdrop-filter: blur(16px) saturate(125%);
}
.hero-proof-item {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 82px;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  padding: 13px 11px;
}
.hero-proof-item + .hero-proof-item { border-left: 1px solid rgba(24, 76, 126, .13); }
.hero-proof-icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(7, 113, 212, .14);
  border-radius: 10px;
  color: var(--blue-700);
  background: linear-gradient(145deg, #f2faff, #e0f2ff);
  box-shadow: 0 7px 17px rgba(4, 86, 163, .1);
}
.hero-proof-icon svg { width: 17px; height: 17px; }
.hero-proof-copy { display: block; min-width: 0; }
.hero-proof-copy strong,
.hero-proof-copy > span { display: block; }
.hero-proof-copy strong {
  color: var(--navy-900);
  font-size: .7rem;
  line-height: 1.22;
  letter-spacing: -.012em;
}
.hero-proof-copy > span {
  margin-top: 3px;
  color: var(--slate-600);
  font-size: .59rem;
  line-height: 1.28;
}
.hero-rail {
  position: absolute;
  z-index: 3;
  right: max(20px, calc((100vw - var(--container)) / 2));
  bottom: 38px;
  display: flex;
  gap: 12px;
}
.hero-chip {
  min-width: 176px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 17px;
  background: rgba(4,19,43,.68);
  box-shadow: 0 16px 36px rgba(3,16,39,.2);
  backdrop-filter: blur(15px);
}
.hero-chip strong { display: block; margin-bottom: 2px; color: var(--white); font-size: .92rem; }
.hero-chip span { color: rgba(255,255,255,.65); font-size: .76rem; }

.trust-bar { position: relative; z-index: 4; margin-top: -1px; background: var(--white); box-shadow: var(--shadow-sm); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { display: flex; align-items: center; gap: 14px; padding: 25px 22px; border-right: 1px solid var(--slate-200); }
.trust-item:last-child { border-right: 0; }
.trust-icon { display: grid; width: 42px; height: 42px; flex: 0 0 auto; place-items: center; border-radius: 13px; color: var(--blue-700); background: var(--blue-100); }
.trust-icon svg { width: 21px; }
.trust-item strong { display: block; color: var(--navy-900); font-size: .9rem; line-height: 1.3; }
.trust-item span { color: var(--slate-600); font-size: .75rem; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--navy-900);
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.service-card::after { position: absolute; inset: 22% 0 0; background: linear-gradient(180deg, transparent, rgba(3,16,39,.95)); content: ""; }
.service-card > img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.service-card:hover > img { transform: scale(1.045); }
.service-card-content { position: absolute; z-index: 2; inset: auto 28px 26px; }
.service-card .number { display: inline-flex; margin-bottom: 14px; color: #70c7ff; font-size: .72rem; font-weight: 800; letter-spacing: .16em; }
.service-card h3 { margin-bottom: 10px; color: var(--white); font-size: 1.55rem; }
.service-card p { margin-bottom: 16px; color: rgba(255,255,255,.7); font-size: .9rem; line-height: 1.55; }
.service-card .text-link { color: var(--white); font-size: .87rem; }
.service-card.featured { background: linear-gradient(145deg, var(--blue-600), var(--navy-900)); }
.service-card.featured::before { position: absolute; inset: -80px -100px auto auto; width: 260px; height: 260px; border: 45px solid rgba(255,255,255,.07); border-radius: 50%; content: ""; }
.service-card.featured .service-card-content { inset: 34px; }
.service-card.featured .service-icon { display: grid; width: 54px; height: 54px; margin-bottom: 70px; place-items: center; border-radius: 17px; color: var(--white); background: rgba(255,255,255,.12); }
.service-icon svg { width: 26px; }

.calculator-wrap { position: relative; }
.calculator-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(310px, .75fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}
.calculator-form { padding: clamp(28px, 5vw, 58px); }
.calc-kicker { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; color: var(--blue-700); font-size: .78rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.calc-kicker span { display: grid; width: 30px; height: 30px; place-items: center; border-radius: 50%; color: var(--white); background: var(--blue-600); letter-spacing: 0; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
.field { display: grid; gap: 8px; }
.field label, .field-label { color: var(--navy-900); font-size: .8rem; font-weight: 760; }
.field-hint { color: var(--slate-600); font-size: .75rem; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid var(--slate-200);
  border-radius: 13px;
  outline: none;
  color: var(--navy-900);
  background: var(--white);
  transition: border .2s ease, box-shadow .2s ease;
}
.field textarea { min-height: 145px; padding-top: 14px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue-500); box-shadow: 0 0 0 4px rgba(7,152,255,.12); }
.field input::placeholder, .field textarea::placeholder { color: var(--slate-400); }
.field input[readonly] { color: var(--blue-800); background: var(--blue-100); cursor: default; }
.address-autocomplete { position: relative; width: 100%; }
.google-address-host.address-suggestions {
  position: absolute;
  z-index: 90;
  top: calc(100% + 7px);
  right: 0;
  left: 0;
  max-height: min(330px, 44svh);
  overflow: auto;
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(3,15,35,.18);
  overscroll-behavior: contain;
}
.google-address-host.address-suggestions[hidden] { display: none; }
.address-suggestion {
  display: grid;
  width: 100%;
  gap: 3px;
  padding: 12px 15px;
  border: 0;
  border-bottom: 1px solid var(--slate-200);
  color: var(--navy-900);
  background: var(--white);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: color .16s ease, background .16s ease;
}
.address-suggestion:hover, .address-suggestion:focus-visible { outline: none; color: var(--blue-800); background: var(--blue-100); }
.address-suggestion-main { overflow: hidden; font-size: .8rem; font-weight: 780; text-overflow: ellipsis; white-space: nowrap; }
.address-suggestion-secondary { overflow: hidden; color: var(--slate-600); font-size: .69rem; text-overflow: ellipsis; white-space: nowrap; }
.address-google-attribution { display: flex; min-height: 32px; align-items: center; justify-content: flex-end; padding: 7px 12px; background: var(--white); }
.address-google-attribution img { display: block; width: 120px; height: 14px; object-fit: contain; }
.maps-consent {
  display: grid;
  grid-template-columns: minmax(210px, auto) 1fr;
  align-items: center;
  gap: 6px 16px;
  padding: 15px;
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  background: var(--slate-100);
}
.maps-enable {
  min-height: 44px;
  padding: 0 16px;
  border: 0;
  border-radius: 11px;
  color: var(--white);
  background: var(--navy-900);
  font: inherit;
  font-size: .76rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, opacity .2s ease;
}
.maps-enable:hover { transform: translateY(-1px); background: var(--blue-700); }
.maps-enable:focus-visible { outline: 3px solid rgba(7,152,255,.35); outline-offset: 2px; }
.maps-enable:disabled { opacity: .58; cursor: wait; transform: none; }
.maps-consent p { margin: 0; color: var(--slate-600); font-size: .69rem; line-height: 1.5; }
.route-status { grid-column: 1 / -1; min-height: 1.25em; color: var(--slate-600); font-size: .72rem; font-weight: 720; }
.route-status[data-state="success"] { color: #087a52; }
.route-status[data-state="error"] { color: #a63838; }
.route-status[data-state="loading"] { color: var(--blue-700); }
.range-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.range-value { min-width: 92px; padding: 8px 12px; border-radius: 11px; color: var(--blue-700); background: var(--blue-100); font-weight: 800; text-align: center; }
input[type="range"] { min-height: auto; padding: 0; border: 0; accent-color: var(--blue-600); box-shadow: none !important; }
.calc-divider { height: 1px; margin: 30px 0; background: var(--slate-200); }
.addon-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.addon { position: relative; }
.addon input { position: absolute; opacity: 0; pointer-events: none; }
.addon label {
  display: flex;
  min-height: 74px;
  align-items: center;
  gap: 12px;
  padding: 13px;
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  background: var(--white);
  cursor: pointer;
  transition: .2s ease;
}
.addon input:checked + label { border-color: var(--blue-500); background: var(--blue-100); box-shadow: 0 0 0 3px rgba(7,152,255,.1); }
.addon input:focus-visible + label { outline: 3px solid rgba(7,152,255,.3); outline-offset: 2px; }
.addon-icon { display: grid; width: 40px; height: 40px; flex: 0 0 auto; place-items: center; border-radius: 12px; color: var(--blue-700); background: var(--slate-100); }
.addon input:checked + label .addon-icon { color: var(--white); background: var(--blue-600); }
.addon-icon svg { width: 20px; }
.addon-copy strong { display: block; color: var(--navy-900); font-size: .8rem; line-height: 1.25; }
.addon-copy span { color: var(--slate-600); font-size: .7rem; }
.calculator-result {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(30px, 5vw, 56px);
  overflow: hidden;
  color: var(--white);
  background: var(--navy-900);
}
.calculator-result::before { position: absolute; right: -150px; bottom: -160px; width: 390px; height: 390px; border: 70px solid rgba(7,152,255,.13); border-radius: 50%; content: ""; }
.result-top, .result-bottom { position: relative; z-index: 1; }
.result-label { margin-bottom: 12px; color: #71c7ff; font-size: .73rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.result-price { margin-bottom: 6px; color: var(--white); font-size: clamp(2rem, 3.6vw, 3.35rem); font-weight: 820; letter-spacing: -.055em; line-height: 1.05; white-space: nowrap; }
.result-note { color: rgba(255,255,255,.6); font-size: .8rem; }
.result-list { display: grid; gap: 12px; margin: 36px 0; padding: 0; list-style: none; }
.result-list li { display: flex; justify-content: space-between; gap: 16px; padding-bottom: 11px; border-bottom: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.7); font-size: .8rem; }
.result-list strong { color: var(--white); }
.result-bottom p { color: rgba(255,255,255,.64); font-size: .75rem; line-height: 1.55; }
.calculator-result .btn { width: 100%; margin-top: 10px; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.process-step { position: relative; padding: 28px 24px; border: 1px solid var(--slate-200); border-radius: var(--radius-md); background: var(--white); }
.process-step::before { display: grid; width: 42px; height: 42px; margin-bottom: 26px; place-items: center; border-radius: 50%; color: var(--white); background: var(--navy-900); font-size: .85rem; font-weight: 800; counter-increment: step; content: "0" counter(step); }
.process-step:not(:last-child)::after { position: absolute; top: 49px; right: -24px; width: 25px; border-top: 1px dashed var(--slate-400); content: ""; }
.process-step h3 { margin-bottom: 9px; font-size: 1.1rem; letter-spacing: -.02em; }
.process-step p { margin: 0; font-size: .85rem; }

.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: center; gap: clamp(46px, 8vw, 104px); }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media-picture { display: block; width: 100%; }
.split-media img { width: 100%; min-height: 560px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.split-badge { position: absolute; right: -24px; bottom: 32px; max-width: 230px; padding: 20px; border-radius: 18px; color: var(--white); background: var(--blue-600); box-shadow: var(--shadow-md); }
.split-badge strong { display: block; margin-bottom: 4px; font-size: 1rem; }
.split-badge span { display: block; font-size: .76rem; opacity: .78; }
.check-list { display: grid; gap: 13px; margin: 30px 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--slate-700); }
.check-list .check { display: grid; width: 23px; height: 23px; flex: 0 0 auto; place-items: center; border-radius: 50%; color: var(--blue-700); background: var(--blue-100); }
.check svg { width: 13px; }

.audience-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.audience-card { position: relative; overflow: hidden; padding: clamp(30px, 5vw, 52px); border-radius: var(--radius-lg); background: var(--cloud); }
.audience-card.dark { color: var(--white); background: var(--navy-900); }
.audience-card.dark h3, .audience-card.dark p { color: var(--white); }
.audience-card.dark p { opacity: .7; }
.audience-card h3 { margin-bottom: 18px; font-size: clamp(1.8rem, 3vw, 2.7rem); }
.audience-card .check-list { margin-bottom: 28px; }
.audience-card.dark .check-list li { color: rgba(255,255,255,.76); }
.audience-card.dark .check { color: var(--white); background: rgba(7,152,255,.2); }
.audience-card::before { position: absolute; right: -90px; bottom: -90px; width: 230px; height: 230px; border: 42px solid rgba(7,152,255,.1); border-radius: 50%; content: ""; }

.area-strip { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.area-strip span { padding: 9px 14px; border: 1px solid var(--slate-200); border-radius: 999px; color: var(--slate-700); background: var(--white); font-size: .78rem; font-weight: 650; }

.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; }
.faq-list { display: grid; gap: 10px; }
.faq-list details { border: 1px solid var(--slate-200); border-radius: 15px; background: var(--white); }
.faq-list summary { position: relative; padding: 21px 55px 21px 21px; color: var(--navy-900); font-weight: 750; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; top: 18px; right: 20px; display: grid; width: 30px; height: 30px; place-items: center; border-radius: 50%; color: var(--blue-700); background: var(--blue-100); content: "+"; transition: transform .2s ease; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { padding: 0 21px 21px; margin: 0; font-size: .9rem; }

.cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  overflow: hidden;
  padding: clamp(38px, 6vw, 68px);
  border-radius: var(--radius-lg);
  color: var(--white);
  background: linear-gradient(125deg, var(--navy-900), var(--blue-700));
  box-shadow: var(--shadow-lg);
}
.cta-panel::after { position: absolute; right: 18%; bottom: -190px; width: 330px; height: 330px; border: 60px solid rgba(255,255,255,.08); border-radius: 50%; content: ""; }
.cta-panel h2 { max-width: 730px; margin-bottom: 12px; color: var(--white); font-size: clamp(2.1rem, 4vw, 3.8rem); }
.cta-panel p { max-width: 660px; margin: 0; color: rgba(255,255,255,.7); }
.cta-panel .button-row { position: relative; z-index: 2; margin: 0; }

.site-footer { padding-top: 76px; color: rgba(255,255,255,.74); background: var(--navy-950); }
.footer-grid { display: grid; grid-template-columns: 1.35fr .75fr .8fr 1fr; gap: 54px; }
.footer-brand img { width: 280px; padding: 12px; border-radius: 14px; background: var(--white); }
.footer-brand p { max-width: 390px; margin: 22px 0; color: rgba(255,255,255,.62); font-size: .86rem; }
.footer-title { margin-bottom: 18px; color: var(--white); font-size: .82rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.64); font-size: .84rem; }
.footer-links a:hover { color: #67c3ff; }
.footer-contact { display: grid; gap: 13px; }
.footer-contact a, .footer-contact span { display: flex; align-items: flex-start; gap: 10px; color: rgba(255,255,255,.68); font-size: .83rem; }
.footer-contact a[href^="mailto:"] {
  width: fit-content;
  max-width: 100%;
  padding: 9px 11px;
  border: 1px solid rgba(103, 195, 255, .24);
  border-radius: 10px;
  color: #e8f6ff;
  background: rgba(22, 143, 234, .11);
  font-weight: 750;
  overflow-wrap: anywhere;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.footer-contact a[href^="mailto:"]:hover {
  border-color: rgba(103, 195, 255, .5);
  color: #fff;
  background: rgba(22, 143, 234, .2);
  transform: translateY(-1px);
}
.footer-contact svg { width: 17px; flex: 0 0 auto; margin-top: 4px; color: #67c3ff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 60px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.1); font-size: .75rem; }
.footer-bottom-links { display: flex; gap: 18px; }
.legal-warning { color: #ffd389; }

.page-hero { position: relative; overflow: hidden; padding: clamp(88px, 11vw, 145px) 0 clamp(72px, 9vw, 112px); color: var(--white); background: var(--navy-900); }
.page-hero::before { position: absolute; inset: auto -160px -280px auto; width: 590px; height: 590px; border: 95px solid rgba(7,152,255,.12); border-radius: 50%; content: ""; }
.page-hero::after { position: absolute; inset: 0; opacity: .35; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 48px 48px; content: ""; mask-image: linear-gradient(to right, transparent 20%, #000); }
.page-hero .container { position: relative; z-index: 2; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; color: rgba(255,255,255,.5); font-size: .77rem; }
.breadcrumbs a:hover { color: var(--white); }
.page-hero h1 { max-width: 930px; margin-bottom: 24px; color: var(--white); font-size: clamp(3.2rem, 6.7vw, 6.6rem); }
.page-hero p { max-width: 720px; margin: 0; color: rgba(255,255,255,.7); font-size: clamp(1.05rem, 2vw, 1.3rem); }
.page-hero.compact { padding-block: 74px; }
.page-hero.compact h1 { font-size: clamp(2.8rem, 5vw, 4.8rem); }

.service-intro { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(45px, 8vw, 100px); }
.service-intro h2 { position: sticky; top: 130px; }
.service-copy p:first-child { color: var(--navy-900); font-size: 1.2rem; font-weight: 600; }
.service-copy h3 { margin-top: 38px; margin-bottom: 14px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { padding: 27px; border: 1px solid var(--slate-200); border-radius: var(--radius-md); background: var(--white); }
.feature-card .feature-icon { display: grid; width: 47px; height: 47px; margin-bottom: 24px; place-items: center; border-radius: 14px; color: var(--blue-700); background: var(--blue-100); }
.feature-icon svg { width: 23px; }
.feature-card h3 { margin-bottom: 10px; font-size: 1.12rem; }
.feature-card p { margin: 0; font-size: .85rem; }
.image-band { min-height: 520px; background-position: center; background-size: cover; }
.image-band .container { display: flex; min-height: 520px; align-items: flex-end; padding-bottom: 54px; }
.image-band-card { max-width: 560px; padding: 32px; border-radius: var(--radius-md); color: var(--white); background: rgba(3,16,39,.88); box-shadow: var(--shadow-lg); backdrop-filter: blur(14px); }
.image-band-card h2 { margin-bottom: 14px; color: var(--white); font-size: clamp(2rem, 4vw, 3.2rem); }
.image-band-card p { margin: 0; color: rgba(255,255,255,.72); }

.detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.detail-card { padding: clamp(28px, 4vw, 42px); border-radius: var(--radius-md); background: var(--cloud); }
.detail-card h3 { font-size: 1.4rem; }
.detail-card p:last-child { margin-bottom: 0; }
.detail-card .tag { display: inline-flex; margin-bottom: 24px; padding: 7px 11px; border-radius: 999px; color: var(--blue-700); background: var(--blue-100); font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }

.form-shell { display: grid; grid-template-columns: .7fr 1.3fr; overflow: hidden; border: 1px solid var(--slate-200); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-md); }
.form-aside { position: relative; padding: clamp(30px, 5vw, 56px); color: var(--white); background: var(--navy-900); }
.form-aside h2 { color: var(--white); font-size: clamp(2rem, 3.5vw, 3.3rem); }
.form-aside p { color: rgba(255,255,255,.66); }
.form-aside .contact-list { display: grid; gap: 15px; margin: 34px 0 0; padding: 0; list-style: none; }
.form-aside .contact-list li { display: flex; gap: 13px; color: rgba(255,255,255,.76); font-size: .85rem; }
.contact-list svg { width: 19px; color: #69c4ff; }
.form-aside .contact-list a[href^="mailto:"] {
  padding: 5px 9px;
  border: 1px solid rgba(105, 196, 255, .28);
  border-radius: 8px;
  color: #f1f9ff;
  background: rgba(22, 143, 234, .13);
  font-weight: 750;
  overflow-wrap: anywhere;
}
.project-form { padding: clamp(30px, 5vw, 58px); }
.form-section { margin-bottom: 38px; }
.form-section-title { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; color: var(--navy-900); font-size: 1rem; font-weight: 800; }
.form-section-title span { display: grid; width: 30px; height: 30px; place-items: center; border-radius: 50%; color: var(--white); background: var(--blue-600); font-size: .74rem; }
.consent { display: flex; align-items: flex-start; gap: 10px; margin: 20px 0; color: var(--slate-600); font-size: .76rem; }
.consent input { margin-top: 5px; accent-color: var(--blue-600); }
.form-status { display: none; margin-top: 18px; padding: 14px 16px; border-radius: 12px; color: #075d43; background: #dff8ef; font-size: .85rem; }
.form-status.show { display: block; }

.legal-card { padding: clamp(28px, 5vw, 52px); border: 1px solid #f0d7a8; border-radius: var(--radius-md); background: #fffaf0; }
.legal-card h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
.legal-card p, .legal-card li { color: #6b5432; }
.legal-card ul { display: grid; gap: 8px; padding-left: 20px; }
.legal-content { max-width: 850px; }
.legal-content h2 { margin-top: 50px; font-size: 1.7rem; }
.legal-content h3 { margin-top: 32px; font-size: 1.2rem; }
.legal-content p, .legal-content li { font-size: .92rem; }

.career-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.career-card { padding: 30px; border: 1px solid var(--slate-200); border-radius: var(--radius-md); background: var(--white); }
.career-card h3 { margin: 18px 0 10px; }
.career-card svg { width: 30px; color: var(--blue-600); }

.mobile-actions { display: none; }
.site-nav > .mobile-nav-only,
.mobile-nav-section { display: none; }

[data-reveal] { transform: translateY(22px); opacity: 0; transition: opacity .75s var(--ease), transform .75s var(--ease); }
[data-reveal].revealed { transform: translateY(0); opacity: 1; }
[data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal-delay="3"] { transition-delay: .24s; }

:focus-visible { outline: 3px solid rgba(7,152,255,.55); outline-offset: 3px; }

@media (max-width: 1120px) {
  .brand { width: 225px; }
  .nav-phone { display: none; }
  .site-nav > a, .nav-dropdown > button { padding-inline: 9px; font-size: .84rem; }
  .hero-media { left: 38%; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { min-height: 410px; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-grid > :nth-child(3) { display: none; }
}

@media (max-width: 1060px) {
  .nav-toggle { display: block; }
  .nav-actions .btn { display: none; }
  .site-nav {
    position: fixed;
    inset: 120px 20px auto;
    display: grid;
    visibility: hidden;
    max-height: calc(100vh - 150px);
    padding: 20px;
    overflow: auto;
    transform: translateY(-14px);
    border: 1px solid var(--slate-200);
    border-radius: 22px;
    opacity: 0;
    visibility: hidden;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transition: .2s ease;
  }
  body.nav-open .site-nav { visibility: visible; transform: translateY(0); opacity: 1; }
  .site-nav > a, .nav-dropdown > button { min-height: 48px; justify-content: space-between; padding: 0 14px; font-size: .95rem; }
  .nav-dropdown > button { width: 100%; }
  .nav-menu { position: static; visibility: inherit; display: grid; width: 100%; padding: 4px 0 8px 16px; transform: none; border: 0; opacity: 1; box-shadow: none; }
  .nav-menu a { padding-block: 9px; }
  .hero { min-height: 690px; }
  .hero-inner { min-height: 690px; }
  .hero-content { max-width: 670px; }
  .hero-rail { display: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--slate-200); }
  .section-head { display: block; }
  .section-head p { margin-top: 20px; }
  .calculator-shell { grid-template-columns: 1fr; }
  .calculator-result { min-height: 520px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2)::after { display: none; }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .split-media img { min-height: 440px; }
  .faq-grid { grid-template-columns: 1fr; gap: 34px; }
  .cta-panel { grid-template-columns: 1fr; }
  .cta-panel .button-row { margin-top: 12px; }
  .service-intro { grid-template-columns: 1fr; }
  .service-intro h2 { position: static; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .form-shell { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  body { padding-bottom: 68px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .preview-note { padding-inline: 12px; font-size: .68rem; }
  .preview-note span { display: none; }
  .nav-wrap { min-height: 76px; }
  .brand { width: 205px; }
  .site-nav { inset: 100px 12px auto; }
  .hero { min-height: 760px; }
  .hero::before { background: linear-gradient(180deg, rgba(3,16,39,.92), rgba(3,16,39,.78)); }
  .hero-media { inset: 0; }
  .hero-media img { object-position: 60% center; }
  .hero-inner { min-height: 760px; align-items: flex-end; padding: 110px 0 72px; }
  .hero h1 { font-size: clamp(3.15rem, 15vw, 4.6rem); }
  .hero .lead { font-size: 1rem; }
  .hero .button-row .btn { width: 100%; }
  .section { padding-block: 76px; }
  .section-sm { padding-block: 52px; }
  .section-head { margin-bottom: 36px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--slate-200); }
  .trust-item:last-child { border-bottom: 0; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 400px; }
  .service-card.featured .service-icon { margin-bottom: 62px; }
  .calculator-shell { border-radius: 22px; }
  .calculator-form { padding: 26px 20px 34px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: auto; }
  .maps-consent { grid-template-columns: 1fr; }
  .route-status { grid-column: auto; }
  .addon-grid { grid-template-columns: 1fr; }
  .calculator-result { min-height: 490px; padding: 34px 22px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step::after { display: none; }
  .audience-grid, .detail-grid { grid-template-columns: 1fr; }
  .split-media img { min-height: 360px; }
  .split-badge { right: 14px; bottom: 14px; }
  .faq-list summary { padding-left: 18px; }
  .cta-panel { padding: 34px 24px; }
  .cta-panel .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-brand img { width: 240px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .page-hero { padding-block: 76px 68px; }
  .page-hero h1 { font-size: clamp(3rem, 14vw, 4.3rem); }
  .feature-grid, .career-grid { grid-template-columns: 1fr; }
  .image-band, .image-band .container { min-height: 450px; }
  .project-form { padding-inline: 20px; }
  .mobile-actions {
    position: fixed;
    z-index: 120;
    inset: auto 0 0;
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 8px;
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--slate-200);
    background: rgba(255,255,255,.94);
    box-shadow: 0 -10px 30px rgba(3,16,39,.1);
    backdrop-filter: blur(14px);
  }
  .mobile-actions .btn { min-height: 48px; padding-inline: 14px; font-size: .82rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  [data-reveal] { transform: none; opacity: 1; }
}

/* ========================================================================== 
   V2 Design refinement — compact, brand-led and mobile-aware
   ========================================================================== */

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-variable.woff2?v=20260905-1") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

:root {
  --navy-950: #030f23;
  --navy-900: #071c38;
  --navy-800: #102a43;
  --blue-700: #0759b8;
  --blue-600: #0878e3;
  --blue-500: #168fea;
  --pink-500: #c8175d;
  --font: "Manrope", "SF Pro Display", "Segoe UI", Arial, sans-serif;
  --container: 1220px;
  --shadow-sm: 0 8px 24px rgba(3, 15, 35, .06);
  --shadow-md: 0 18px 46px rgba(3, 15, 35, .1);
  --shadow-lg: 0 28px 72px rgba(3, 15, 35, .16);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 24px;
}

body { background: #fff; }
h1, h2, h3, h4 { letter-spacing: -.045em; text-wrap: balance; }
h2 { font-size: clamp(2.2rem, 3.8vw, 3.5rem); }
p { text-wrap: pretty; }
.section { padding: clamp(72px, 7vw, 104px) 0; }
.section-sm { padding: clamp(48px, 5vw, 72px) 0; }
.section-head { gap: 32px; margin-bottom: 40px; }
.section-head p { font-size: 1rem; }
.eyebrow { margin-bottom: 14px; color: var(--blue-700); font-size: .7rem; letter-spacing: .14em; }
.eyebrow.pink { color: var(--pink-500); }
.lead { font-size: clamp(1.03rem, 1.7vw, 1.2rem); }

.btn {
  min-height: 46px;
  padding: 0 20px;
  border-radius: 13px;
  font-size: .86rem;
  box-shadow: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--blue-700); box-shadow: 0 10px 24px rgba(7, 89, 184, .18); }
.btn-primary:hover { background: #064d9f; box-shadow: 0 12px 28px rgba(7, 89, 184, .24); }
.btn-primary:focus-visible { outline: 3px solid #fff; box-shadow: 0 0 0 5px var(--navy-800); }
.btn-dark { background: var(--navy-800); }
.btn-secondary { box-shadow: 0 8px 20px rgba(3,15,35,.08); }
.button-row { gap: 10px; margin-top: 26px; }

.preview-note {
  display: none;
}
.site-header { border-bottom-color: rgba(220,228,238,.68); box-shadow: 0 4px 18px rgba(3,15,35,.035); }
.nav-wrap { min-height: 76px; gap: 24px; }
.brand { width: 224px; }
.brand img { display: block; width: 100%; height: auto; }
.brand-mark { display: none !important; }
.site-nav { gap: 1px; }
.site-nav > a, .nav-dropdown > button { min-height: 40px; padding: 0 10px; border-radius: 10px; font-size: .82rem; }
.nav-menu { top: calc(100% + 8px); width: 258px; padding: 9px; border-radius: 14px; box-shadow: 0 18px 46px rgba(3,15,35,.12); }
.nav-actions .btn { min-height: 42px; padding-inline: 17px; }
.nav-phone { font-size: .8rem; }

.hero {
  min-height: clamp(560px, calc(100svh - 76px), 680px);
  background: var(--navy-950);
}
.hero::before { background: linear-gradient(90deg, rgba(3,15,35,.99) 0%, rgba(3,15,35,.96) 40%, rgba(3,15,35,.72) 52%, rgba(3,15,35,.24) 76%, rgba(3,15,35,.08) 100%); }
.hero::after {
  inset: auto auto 0 -40px;
  width: 720px;
  height: 190px;
  border: 0;
  border-radius: 0;
  opacity: .85;
  background: url("../brand/road-line.svg") left bottom / contain no-repeat;
}
.hero-media { left: 46%; }
.hero-media img { filter: saturate(.82) contrast(1.04); object-position: 54% center; }
.hero-inner { min-height: clamp(560px, calc(100svh - 76px), 680px); padding: 56px 0 72px; }
.hero-content { max-width: 640px; }
.hero h1 { max-width: 620px; margin-bottom: 20px; font-size: clamp(3.35rem, 5.55vw, 4.5rem); line-height: 1.01; letter-spacing: -.06em; }
.hero h1 em { color: #59b8f7; }
.hero .lead { max-width: 580px; color: rgba(255,255,255,.76); font-size: 1.05rem; }
.hero .button-row { margin-top: 28px; }
.hero-proof-panel { margin-top: 24px; }
.hero-rail { right: max(20px, calc((100vw - var(--container)) / 2)); bottom: 22px; gap: 8px; }
.hero-chip { min-width: 160px; padding: 12px 14px; border-radius: 13px; }
.hero-chip strong { font-size: .82rem; }
.hero-chip span { font-size: .69rem; }

.trust-bar { box-shadow: 0 8px 22px rgba(3,15,35,.055); }
.trust-item { gap: 12px; padding: 19px 20px; }
.trust-icon { width: 39px; height: 39px; border-radius: 11px; }
.trust-icon svg { width: 19px; }
.trust-item strong { font-size: .83rem; }
.trust-item span { font-size: .7rem; }

#leistungen { background: linear-gradient(180deg, #fff 0%, #f7faff 100%); }

.service-grid { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 16px; }
.service-card {
  grid-column: span 4;
  min-height: 340px;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(3,15,35,.08);
}
.service-card:nth-child(1) { grid-column: span 7; min-height: 390px; }
.service-card:nth-child(2) { grid-column: span 5; min-height: 390px; }
.service-card:nth-child(6) { grid-column: 1 / -1; min-height: 260px; }
.service-card:nth-child(5) { background: var(--navy-800); }
.service-card:nth-child(5) > img { display: block; }
.service-card:hover { transform: translateY(-3px); box-shadow: 0 18px 38px rgba(3,15,35,.13); }
.service-card > img { position: absolute; inset: 0; filter: saturate(.72) contrast(1.05); }
.service-card::after { inset: 16% 0 0; background: linear-gradient(180deg, transparent, rgba(3,15,35,.94)); }
.service-card-content { inset: auto 24px 22px; }
.service-card h3 { font-size: 1.4rem; }
.service-card p { margin-bottom: 13px; font-size: .82rem; }
.service-card.featured { background: linear-gradient(145deg, #051a35, #082c57 58%, #071a33); }
.service-card.featured::before { display: none; }
.service-card.featured::after { inset: 0; background: linear-gradient(90deg, rgba(3,15,35,.98) 0%, rgba(3,21,46,.9) 48%, rgba(3,20,43,.2) 100%); }
.service-card.featured .service-card-content { inset: 0; display: flex; max-width: 62%; flex-direction: column; justify-content: flex-end; padding: 32px; }
.service-card.featured .service-icon { width: 48px; height: 48px; margin: 0 0 auto; border-radius: 13px; }

.partner-visual {
  position: absolute;
  z-index: 1;
  top: 8px;
  right: 2.5%;
  width: min(46%, 560px);
  height: calc(100% - 16px);
  opacity: .92;
  filter: drop-shadow(0 0 24px rgba(43, 171, 255, .2));
  pointer-events: none;
}
.partner-visual svg { width: 100%; height: 100%; overflow: visible; }
.partner-route { fill: none; stroke-linecap: round; }
.partner-route--soft { stroke: rgba(82, 204, 255, .15); stroke-width: 15; filter: blur(9px); }
.partner-route--main {
  stroke: url(#partner-route-gradient);
  stroke-width: 3.2;
  stroke-dasharray: 11 12;
  animation: partner-route-flow 4.8s linear infinite;
}
.partner-route--branch {
  stroke: rgba(73, 214, 255, .35);
  stroke-width: 1.4;
  stroke-dasharray: 4 10;
  animation: partner-route-flow 7s linear infinite reverse;
}
.partner-node {
  fill: url(#partner-node-gradient);
  stroke: rgba(200, 246, 255, .55);
  stroke-width: 1.2;
  transform-box: fill-box;
  transform-origin: center;
  animation: partner-node-pulse 2.6s ease-in-out infinite;
}
.partner-node--2 { animation-delay: -.7s; }
.partner-node--3 { animation-delay: -1.3s; }
.partner-node--4 { animation-delay: -1.9s; }

@keyframes partner-route-flow { to { stroke-dashoffset: -92; } }
@keyframes partner-node-pulse {
  0%, 100% { opacity: .72; transform: scale(.86); }
  50% { opacity: 1; transform: scale(1.18); }
}

.calculator-shell { border-radius: 24px; box-shadow: 0 24px 64px rgba(3,15,35,.14); }
.calculator-form { padding: clamp(32px, 4vw, 48px); }
.calculator-result { padding: clamp(32px, 4vw, 48px); }
.calculator-result::before { display: none; }
.result-list { margin: 30px 0; }
.field input, .field select, .field textarea { min-height: 52px; border-radius: 11px; }
.addon label { min-height: 68px; border-radius: 12px; }

.process-grid { gap: 16px; }
.process-step { padding: 24px 21px; border-radius: 16px; }
.process-step::before { width: 38px; height: 38px; margin-bottom: 20px; }
.split { gap: clamp(40px, 6vw, 76px); }
.split-media img { min-height: 500px; border-radius: 22px; }
.split-badge { right: -14px; bottom: 24px; border-radius: 14px; }
.audience-grid { gap: 16px; }
.audience-card { padding: clamp(28px, 4vw, 44px); border-radius: 22px; }
.audience-card::before { display: none; }
.faq-grid { gap: 52px; }
.faq-list details { border-radius: 13px; }

.section-navy { background: var(--navy-800) url("../brand/road-line.svg") right bottom / 55% auto no-repeat; }
.section-navy::before { display: none; }
.cta-panel { padding: clamp(36px, 5vw, 52px); border-radius: 22px; background: var(--navy-800) url("../brand/road-line.svg") right bottom / 58% auto no-repeat; box-shadow: 0 22px 54px rgba(3,15,35,.15); }
.cta-panel::after { display: none; }
.cta-panel h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); }

.site-footer { padding-top: 60px; }
.footer-grid { gap: 40px; }
.footer-brand img { width: 244px; height: auto; padding: 0; background: transparent; }
.footer-brand p { margin: 18px 0; }
.footer-bottom { margin-top: 44px; }

.page-hero { padding: clamp(76px, 8vw, 100px) 0 clamp(64px, 7vw, 84px); }
.page-hero::before {
  inset: auto -40px -10px auto;
  width: 720px;
  height: 190px;
  border: 0;
  border-radius: 0;
  opacity: .8;
  background: url("../brand/road-line.svg") right bottom / contain no-repeat;
}
.page-hero .container::after {
  position: absolute;
  top: 50%;
  right: 30px;
  width: 230px;
  aspect-ratio: 320 / 118;
  transform: translateY(-46%);
  opacity: .065;
  background: url("../brand/msh-mark-white.svg") center / contain no-repeat;
  content: "";
  pointer-events: none;
}
.page-hero .container > * { position: relative; z-index: 1; }
.page-hero h1 { max-width: 860px; font-size: clamp(3.1rem, 5.8vw, 5rem); }
.page-hero.compact { padding-block: 62px; }
.page-hero.compact h1 { font-size: clamp(2.8rem, 4.8vw, 4.3rem); }
.feature-card, .detail-card, .career-card { border-radius: 16px; }
.form-shell { border-radius: 22px; box-shadow: 0 18px 48px rgba(3,15,35,.1); }
.image-band-card { border-radius: 17px; }

/* Final production polish */
.hero-rail { display: none; }
.hero-media img { object-position: 55% center; }

.page-hero.service-hero {
  min-height: 520px;
  padding: 0;
  overflow: hidden;
}
.page-hero.service-hero::before { display: none; }
.page-hero.service-hero .container::after { display: none; }
.service-hero-grid {
  display: grid;
  min-height: 520px;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  align-items: stretch;
  gap: clamp(38px, 5vw, 78px);
}
.service-hero-copy {
  display: flex;
  max-width: 650px;
  flex-direction: column;
  justify-content: center;
  padding: 72px 0 78px;
}
.service-hero-copy .breadcrumbs { margin-bottom: 44px; }
.service-hero-copy h1 { max-width: 660px; font-size: clamp(2.6rem, 4vw, 3.8rem); line-height: 1.04; hyphens: manual; overflow-wrap: normal; }
.service-hero-media {
  position: relative;
  min-width: 0;
  margin-right: calc((100vw - min(100vw - 40px, var(--container))) / -2);
  overflow: hidden;
}
.service-hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--navy-800) 0%, rgba(10,39,73,.45) 12%, transparent 42%);
  content: "";
}
.service-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

button:disabled { cursor: wait; opacity: .64; }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.consent a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.project-form .field-hint { line-height: 1.45; }
.footer-links a, .footer-bottom-links a { min-height: 32px; align-items: center; }

html.js [data-reveal] { transform: translateY(18px); opacity: 0; }
html.js [data-reveal].revealed { transform: translateY(0); opacity: 1; }
html:not(.js) [data-reveal] { transform: none; opacity: 1; }

@media (max-width: 1120px) and (min-width: 681px) {
  .brand { width: 198px; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-card, .service-card:nth-child(1), .service-card:nth-child(2), .service-card:nth-child(6) { grid-column: auto; min-height: 340px; }
  .service-card:nth-child(6) { grid-column: 1 / -1; min-height: 250px; }
  .service-hero-grid { grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr); gap: 32px; }
  .service-hero-copy h1 { font-size: clamp(2.55rem, 5vw, 3.5rem); }
}

@media (max-width: 1060px) {
  .site-nav {
    position: absolute;
    inset: calc(100% + 8px) 16px auto;
    width: auto;
    min-width: 0;
    max-height: calc(100dvh - 92px);
    padding: 12px;
    overflow-x: hidden;
    overflow-y: auto;
    border-radius: 16px;
    align-content: start;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
    -webkit-overflow-scrolling: touch;
  }
  .site-nav > a, .nav-dropdown > button { min-height: 46px; padding-inline: 13px; }
  .mobile-nav-section {
    display: block;
    margin: 7px 13px 2px;
    padding-top: 13px;
    border-top: 1px solid var(--slate-200);
    color: var(--slate-500);
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: .15em;
    line-height: 1.4;
    text-transform: uppercase;
  }
  .site-nav > .mobile-nav-only { display: flex; }
  .site-nav > .mobile-nav-cta {
    justify-content: space-between;
    margin-top: 4px;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
    box-shadow: 0 10px 24px rgba(7, 89, 184, .18);
  }
  .site-nav > .mobile-nav-cta:hover,
  .site-nav > .mobile-nav-cta[aria-current="page"] {
    color: var(--white);
    background: linear-gradient(135deg, var(--blue-600), var(--blue-800));
  }
  .mobile-nav-cta .btn-icon { width: 17px; height: 17px; }
  .nav-menu { visibility: visible; display: none; padding: 2px 0 8px 14px; opacity: 1; }
  .nav-dropdown.services-open .nav-menu { display: grid; }
  .nav-menu a { display: flex; min-height: 44px; align-items: center; }
  .hero-content { max-width: 610px; }
  .hero h1 { font-size: clamp(3.2rem, 7vw, 4.15rem); }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-card, .service-card:nth-child(1), .service-card:nth-child(2), .service-card:nth-child(6) { grid-column: auto; min-height: 330px; }
  .service-card:nth-child(6) { grid-column: 1 / -1; min-height: 250px; }
  .footer-grid > :nth-child(3) { display: block; }
}

@media (max-width: 680px) {
  body { padding-bottom: 0; }
  .container { width: min(calc(100% - 32px), var(--container)); }
  .preview-note { display: none; }
  .nav-wrap { min-height: 68px; gap: 12px; }
  .brand { width: 134px; }
  .brand-logo { display: none !important; }
  .brand-mark { display: block !important; }
  .nav-toggle { width: 44px; height: 44px; border-radius: 12px; }
  .site-nav { inset: calc(100% + 8px) 12px auto; max-height: calc(100dvh - 84px); }

  .hero { min-height: clamp(620px, calc(100svh - 68px), 720px); }
  .hero::before { background: linear-gradient(180deg, rgba(3,15,35,.35) 0%, rgba(3,15,35,.54) 38%, rgba(3,15,35,.94) 78%, var(--navy-950) 100%); }
  .hero::after { width: 470px; height: 125px; opacity: .6; }
  .hero-media { inset: 0; }
  .hero-media img { object-position: 60% center; }
  .hero-inner { min-height: clamp(620px, calc(100svh - 68px), 720px); align-items: flex-end; padding: 72px 0 42px; }
  .hero h1 { max-width: 355px; margin-bottom: 16px; font-size: clamp(2.72rem, 12.2vw, 3.45rem); line-height: 1.02; }
  .hero .eyebrow { margin-bottom: 11px; }
  .hero .lead { font-size: .94rem; line-height: 1.55; }
  .hero .button-row { display: flex; gap: 8px; margin-top: 22px; }
  .hero .button-row .btn { width: auto; min-height: 44px; padding-inline: 15px; font-size: .75rem; }
  .hero .button-row .btn-primary { flex: 1; }
  .hero .button-row .btn-secondary { color: var(--white); border: 1px solid rgba(255,255,255,.26); background: rgba(255,255,255,.08); box-shadow: none; }
  .hero-proof-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 17px;
    border-radius: 15px;
  }
  .hero-proof-item {
    min-height: 61px;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 8px;
    padding: 8px 9px;
  }
  .hero-proof-item:nth-child(3) { border-left: 0; }
  .hero-proof-item:nth-child(n+3) { border-top: 1px solid rgba(24, 76, 126, .13); }
  .hero-proof-icon { width: 28px; height: 28px; border-radius: 9px; }
  .hero-proof-icon svg { width: 15px; height: 15px; }
  .hero-proof-copy strong { font-size: .66rem; }
  .hero-proof-copy > span { margin-top: 2px; font-size: .57rem; }

  .section { padding-block: 64px; }
  .section-sm { padding-block: 48px; }
  .section-head { margin-bottom: 30px; }
  h2 { font-size: clamp(2rem, 9vw, 2.65rem); }

  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { gap: 9px; padding: 14px 10px; border-right: 1px solid var(--slate-200); border-bottom: 1px solid var(--slate-200); }
  .trust-item:nth-child(2n) { border-right: 0; }
  .trust-item:nth-child(n+3) { border-bottom: 0; }
  .trust-icon { width: 35px; height: 35px; border-radius: 10px; }
  .trust-icon svg { width: 17px; }
  .trust-item strong { font-size: .75rem; }
  .trust-item span span { display: none; }

  .service-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
  .service-card, .service-card:nth-child(1), .service-card:nth-child(2), .service-card:nth-child(6) { grid-column: auto; min-height: 270px; }
  .service-card:nth-child(1), .service-card:nth-child(2) { min-height: 330px; }
  .service-card:nth-child(3), .service-card:nth-child(4), .service-card:nth-child(5) { min-height: 240px; }
  .service-card:nth-child(n+3):nth-child(-n+5) p { display: none; }
  .service-card-content { inset: auto 21px 19px; }
  .service-card.featured { min-height: 260px; }
  .service-card.featured::after { background: linear-gradient(90deg, rgba(3,15,35,.97) 0%, rgba(3,21,46,.83) 62%, rgba(3,20,43,.28) 100%); }
  .service-card.featured .service-card-content { max-width: 100%; padding: 24px; }
  .service-card.featured .service-icon { margin-bottom: 30px; }
  .partner-visual { right: -22%; width: 95%; opacity: .48; }

  .calculator-form { padding: 26px 20px 30px; }
  .calculator-result { min-height: auto; padding: 28px 20px; }
  .result-price { font-size: clamp(1.9rem, 9.5vw, 2.8rem); }
  .result-list { margin: 22px 0; }
  input[type="range"] { min-height: 44px; }
  .split-media img { min-height: 350px; border-radius: 18px; }
  .audience-card { padding: 28px 22px; border-radius: 18px; }
  .cta-panel { padding: 28px 22px; border-radius: 18px; }
  .cta-panel h2 { font-size: 1.9rem; }
  .footer-grid { gap: 30px; }
  .site-footer { padding-top: 52px; }
  .footer-brand img { width: 218px; }
  .footer-contact small { display: none; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-brand,
  .footer-grid > :nth-child(4) { grid-column: 1 / -1; }
  .footer-brand {
    display: grid;
    justify-items: center;
    text-align: center;
  }
  .footer-brand p { max-width: 34rem; margin-inline: auto; }
  .footer-brand .btn { justify-self: center; }
  .footer-lockup { width: min(100%, 286px); margin-inline: auto; }
  .footer-lockup .footer-lockup-mark { margin-inline: auto; object-position: center; }
  .footer-lockup strong,
  .footer-lockup > span { text-align: center; }
  .footer-lockup > span { justify-content: center; }

  .page-hero { padding: 64px 0 56px; }
  .page-hero .container::after { display: none; }
  .page-hero h1 { font-size: clamp(2.75rem, 13vw, 3.8rem); }
  .page-hero.compact { padding-block: 54px; }
  .page-hero.compact h1 { font-size: clamp(2.55rem, 11vw, 3.4rem); }
  .page-hero.service-hero { min-height: 0; }
  .service-hero-grid { display: flex; min-height: 0; flex-direction: column; gap: 0; }
  .service-hero-copy { max-width: none; padding: 54px 0 36px; }
  .service-hero-copy .breadcrumbs { margin-bottom: 30px; }
  .service-hero-copy h1 { font-size: clamp(2.2rem, 9.4vw, 2.7rem); }
  .service-hero-media { height: 260px; margin: 0 -16px; }
  .service-hero-media--mobile-square { height: clamp(300px, 82vw, 340px); }
  .service-hero-media::after { background: linear-gradient(180deg, var(--navy-800) 0%, transparent 30%); }

  .mobile-actions {
    position: fixed;
    z-index: 120;
    inset: auto 12px calc(10px + env(safe-area-inset-bottom)) auto;
    display: flex;
    width: auto;
    grid-template-columns: none;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: 0;
    border-radius: 0;
    opacity: 0;
    background: transparent;
    box-shadow: none;
    pointer-events: none;
    transform: translateY(12px);
    backdrop-filter: none;
    transition: opacity .22s ease, transform .22s ease;
  }
  body.mobile-actions-visible .mobile-actions { visibility: visible; opacity: 1; pointer-events: auto; transform: translateY(0); }
  .mobile-actions .btn { min-height: 44px; padding-inline: 16px; border-radius: 999px; font-size: .78rem; }
  .mobile-actions .mobile-call { width: 44px; min-width: 44px; padding: 0; color: var(--navy-800); border-color: rgba(7,28,56,.1); background: rgba(255,255,255,.96); box-shadow: 0 9px 26px rgba(3,15,35,.15); }
  .mobile-actions .mobile-offer { background: var(--blue-700); box-shadow: 0 10px 26px rgba(7,89,184,.24); }
  .mobile-actions svg { width: 16px; height: 16px; flex: 0 0 auto; }
  body.nav-open .mobile-actions { opacity: 0; pointer-events: none; }
}

@media (max-width: 360px) {
  .brand { width: 126px; }
  .hero .button-row, .service-hero-copy .button-row { display: grid; grid-template-columns: 1fr; }
  .hero .button-row .btn, .service-hero-copy .button-row .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand,
  .footer-grid > :nth-child(4) { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html.js [data-reveal] { transform: none; opacity: 1; }
  .mobile-actions { transition: none; }
  .title-stage__rig { animation: none; }
}

/* Responsive production logo assets supplied for the final web refresh */
.brand {
  display: inline-flex;
  width: clamp(154px, 17vw, 188px);
  flex: 0 0 auto;
  align-items: center;
  line-height: 0;
}
.brand-logo-original {
  display: block;
  width: 100%;
  height: auto;
  max-height: 58px;
  object-fit: contain;
  object-position: left center;
  transform: none;
  filter: none;
}

.footer-brand img {
  width: 240px;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.footer-lockup {
  display: grid;
  width: min(100%, 286px);
  gap: 4px;
  color: var(--white);
}

.footer-lockup .footer-lockup-mark {
  display: block;
  width: clamp(230px, 24vw, 270px);
  height: auto;
  margin-bottom: 6px;
  object-fit: contain;
  object-position: left center;
  transform: none;
  filter: none;
}

.footer-lockup strong {
  font-size: clamp(1.08rem, 1.8vw, 1.36rem);
  font-weight: 780;
  line-height: 1.05;
  letter-spacing: .02em;
}

.footer-lockup > span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.72);
  font-size: .62rem;
  font-style: normal;
  font-weight: 750;
  letter-spacing: .14em;
  line-height: 1.4;
  text-transform: uppercase;
  white-space: nowrap;
}

.footer-lockup i {
  width: 3px;
  height: 13px;
  border-radius: 99px;
  background: linear-gradient(180deg, #39b8ff, #0879e8);
}

.footer-lockup i:last-of-type {
  background: linear-gradient(180deg, #ff5eae, #e80069);
}

.page-hero:not(.service-hero) {
  isolation: isolate;
  background:
    radial-gradient(circle at 79% 42%, rgba(22, 143, 234, .19), transparent 27%),
    radial-gradient(circle at 94% 88%, rgba(7, 89, 184, .13), transparent 30%),
    linear-gradient(116deg, #071a35 0%, #0a2a52 58%, #06152b 100%);
  box-shadow: inset 0 -1px rgba(255, 255, 255, .06);
}

.page-hero:not(.service-hero)::before {
  display: block;
  inset: 50% -118px auto auto;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(116, 199, 255, .1);
  border-radius: 50%;
  opacity: 1;
  background: radial-gradient(circle, rgba(22, 143, 234, .12) 0%, rgba(22, 143, 234, .025) 44%, transparent 69%);
  box-shadow:
    0 0 0 72px rgba(116, 199, 255, .018),
    0 0 0 144px rgba(116, 199, 255, .012);
  transform: translateY(-50%);
}

.page-hero:not(.service-hero)::after {
  display: block;
  inset: 0 0 0 48%;
  opacity: .27;
  background-image:
    linear-gradient(rgba(116, 199, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(116, 199, 255, .08) 1px, transparent 1px);
  background-size: 52px 52px;
  transform: perspective(900px) rotateY(-5deg) rotateX(3deg) scale(1.06);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 27%, #000 82%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 27%, #000 82%, transparent);
}

.page-hero:not(.service-hero) .container {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  justify-content: center;
  padding-right: 450px;
}

.page-hero:not(.service-hero) .container::before,
.page-hero:not(.service-hero) .container::after { display: none; }

.page-hero:not(.service-hero) .container > * {
  position: relative;
  z-index: 2;
}

.title-stage {
  position: absolute;
  z-index: 1 !important;
  top: 50%;
  right: 4px;
  display: block;
  width: 430px;
  aspect-ratio: 1.82;
  perspective: 1100px;
  pointer-events: none;
}

.page-hero:not(.service-hero) .container > .title-stage {
  position: absolute;
  z-index: 1;
}

.title-stage__ground {
  display: none;
}

.title-stage__rig {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transform: translateY(0);
  animation: brand-object-float 7s ease-in-out infinite;
}

.title-stage__back,
.title-stage__front {
  position: absolute;
  inset: 0;
  overflow: visible;
  backface-visibility: hidden;
}

.title-stage__back {
  inset: 7% 3% 5% 8%;
  border-radius: 50%;
  opacity: .92;
  background:
    radial-gradient(ellipse at center, rgba(22, 143, 234, .28), rgba(22, 143, 234, .08) 39%, transparent 70%);
  filter: blur(18px);
  transform: translate3d(16px, 20px, -32px) rotate(-7deg);
}

.title-stage__front {
  display: grid;
  place-items: center;
  border: 0;
  background: none;
  box-shadow: none;
  transform: translateZ(0);
}

.title-stage__front::before {
  display: none;
}

.title-stage__front::after {
  display: none;
}

.title-stage__front img {
  position: relative;
  z-index: 1;
  display: block;
  width: 126%;
  max-width: none;
  height: auto;
  opacity: .98;
  mix-blend-mode: screen;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, rgba(0, 0, 0, .25) 10%, #000 26%, #000 78%, rgba(0, 0, 0, .35) 91%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, .4) 14%, #000 30%, #000 72%, rgba(0, 0, 0, .35) 88%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0%, rgba(0, 0, 0, .25) 10%, #000 26%, #000 78%, rgba(0, 0, 0, .35) 91%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, .4) 14%, #000 30%, #000 72%, rgba(0, 0, 0, .35) 88%, transparent 100%);
  mask-composite: intersect;
  filter: saturate(1.08) drop-shadow(0 20px 34px rgba(0, 0, 0, .28));
}

@keyframes brand-object-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.page-hero:not(.service-hero) h1 {
  max-width: 760px;
  font-size: clamp(3rem, 4.8vw, 4rem);
  line-height: 1.02;
  letter-spacing: -.052em;
}
.page-hero:not(.service-hero) p { max-width: 650px; color: rgba(255, 255, 255, .8); }
.page-hero.compact:not(.service-hero) .container { min-height: 220px; padding-right: 370px; }
.page-hero.compact:not(.service-hero) h1 { font-size: clamp(2.65rem, 4.3vw, 3.6rem); }
.page-hero--utility .title-stage { right: 24px; width: 330px; opacity: .94; }
.page-hero--utility .title-stage__front,
.page-hero--utility .title-stage__back { border-radius: 13px; }
.page-hero--plain { background: linear-gradient(116deg, #071a35 0%, #092544 62%, #06152b 100%) !important; }
.page-hero--plain::after { opacity: .14 !important; }

/* Lightweight, self-hosted interpretation of the supplied starfield scene. */
.page-hero--motion {
  min-height: clamp(430px, 42vw, 590px);
  background:
    radial-gradient(circle at 76% 48%, rgba(8, 132, 255, .2), transparent 31%),
    linear-gradient(116deg, #041126 0%, #071e3c 58%, #031024 100%) !important;
}

.page-hero--motion.compact { min-height: clamp(350px, 31vw, 430px); }

.page-hero--motion::before {
  z-index: 1;
  inset: 0 !important;
  width: auto !important;
  height: auto !important;
  border: 0 !important;
  border-radius: 0 !important;
  opacity: 1 !important;
  background:
    linear-gradient(90deg, rgba(3, 16, 36, .97) 0%, rgba(4, 21, 45, .86) 37%, rgba(4, 24, 50, .32) 65%, rgba(3, 14, 31, .12) 100%),
    radial-gradient(ellipse at 74% 50%, transparent 0%, rgba(2, 12, 27, .1) 46%, rgba(2, 12, 27, .48) 100%) !important;
  box-shadow: none !important;
  transform: none !important;
  pointer-events: none;
}

.page-hero--motion::after {
  z-index: 1;
  inset: 0 !important;
  opacity: .19 !important;
  background-image:
    linear-gradient(rgba(111, 194, 255, .1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111, 194, 255, .1) 1px, transparent 1px) !important;
  background-size: 64px 64px !important;
  transform: none !important;
  -webkit-mask-image: linear-gradient(to right, transparent 32%, #000 62%, transparent 100%) !important;
  mask-image: linear-gradient(to right, transparent 32%, #000 62%, transparent 100%) !important;
  pointer-events: none;
}

.hero-motion-canvas {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  opacity: .97;
  pointer-events: none;
}

.hero-motion-toggle {
  position: absolute;
  z-index: 5;
  right: clamp(18px, 3vw, 46px);
  bottom: 18px;
  min-height: 36px;
  padding: 8px 13px;
  border: 1px solid rgba(170, 229, 255, .28);
  border-radius: 999px;
  color: #eaf8ff;
  background: rgba(3, 18, 40, .72);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .025em;
}
.hero-motion-toggle:hover { border-color: rgba(170, 229, 255, .52); background: rgba(5, 35, 71, .86); }
.hero-motion-toggle[hidden] { display: none; }

.page-hero--motion .container {
  z-index: 3;
  padding-right: clamp(300px, 31vw, 460px);
}

.page-hero--motion h1 { text-shadow: 0 10px 35px rgba(0, 0, 0, .28); }
.page-hero--motion p { color: rgba(235, 246, 255, .82); }

.breadcrumbs a { color: #e5f3ff; text-decoration-color: rgba(229, 243, 255, .45); }
.breadcrumbs span { color: #b8d7ef; }

.related-section {
  border-top: 1px solid var(--line);
  background: var(--cloud);
}
.related-services {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .9fr);
  align-items: end;
  gap: 32px;
}
.related-services h2 {
  max-width: 620px;
  margin-top: 10px;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}
.related-service-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}
.related-service-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 10px 16px;
  border: 1px solid rgba(7, 89, 184, .16);
  border-radius: 999px;
  color: var(--navy-800);
  background: #fff;
  box-shadow: 0 8px 22px rgba(7, 28, 56, .06);
  font-size: .86rem;
  font-weight: 750;
}
.related-service-links a::after { margin-left: 9px; color: var(--blue-700); content: "→"; }
.related-service-links a:hover { border-color: rgba(7, 89, 184, .35); transform: translateY(-1px); }

/* Contrast corrections for dark project areas */
.section-navy p,
.section-navy .lead { color: #dbe7f2; opacity: 1; }
.section-navy .check-list li { color: #edf5fc; }
.section-navy .check { color: #0759b8; background: #dff2ff; }
.audience-card.dark p { color: #dbe7f2; opacity: 1; }
.audience-card.dark .check-list li { color: #edf5fc; }
.audience-card.dark .text-link { color: #fff; }
.split-badge { background: #0759b8; }
.split-badge span { color: #fff; opacity: 1; }

.cta-panel .btn-ghost,
.page-hero .btn-ghost,
.section-navy .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, .34);
}
.cta-panel .btn-ghost:hover,
.page-hero .btn-ghost:hover,
.section-navy .btn-ghost:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, .58);
  background: rgba(255, 255, 255, .12);
}

@media (max-width: 1120px) and (min-width: 901px) {
  .brand { width: 174px; }
  .page-hero:not(.service-hero) .container { min-height: 310px; padding-right: 352px; }
  .title-stage { right: -4px; width: 335px; }
  .page-hero.compact:not(.service-hero) .container { min-height: 215px; padding-right: 300px; }
  .page-hero--utility .title-stage { right: 2px; width: 276px; }
  .page-hero--motion .container { padding-right: 300px; }
}

@media (max-width: 900px) {
  .title-stage { display: none; }
  .page-hero:not(.service-hero) .container,
  .page-hero.compact:not(.service-hero) .container { min-height: 0; padding-right: 0; }
  .related-services { grid-template-columns: 1fr; align-items: start; }
  .related-service-links { justify-content: flex-start; }
  .page-hero--motion .container,
  .page-hero--motion.compact .container { padding-right: 0; }
}

@media (max-width: 780px) {
  .brand { width: 154px; }
  .footer-brand img { width: 216px; padding: 9px 11px; }
  .footer-lockup .footer-lockup-mark { width: min(230px, 72vw); padding: 0; }
  .page-hero:not(.service-hero) .container,
  .page-hero.compact:not(.service-hero) .container {
    display: block;
    min-height: 0;
    padding-right: 0;
  }
  .page-hero:not(.service-hero)::before {
    right: -220px;
    width: 470px;
    height: 470px;
    opacity: .6;
  }
  .page-hero:not(.service-hero)::after { inset: 0 0 0 32%; opacity: .18; }
  .page-hero:not(.service-hero) h1,
  .page-hero:not(.service-hero) p { max-width: none; }
  .related-services { gap: 22px; }
  .related-service-links { gap: 8px; }
  .related-service-links a { min-height: 42px; padding: 9px 14px; font-size: .8rem; }
  .section-navy .check-list li,
  .audience-card.dark .check-list li { font-weight: 500; }
  .page-hero--motion,
  .page-hero--motion.compact { min-height: 0; }
  .page-hero--motion::before {
    background:
      linear-gradient(180deg, rgba(3, 16, 36, .56) 0%, rgba(3, 16, 36, .44) 62%, rgba(3, 16, 36, .58) 100%),
      linear-gradient(90deg, rgba(3, 16, 36, .78), rgba(4, 24, 50, .08)) !important;
  }
  .page-hero--motion::after {
    opacity: .12 !important;
    background-size: 48px 48px !important;
    -webkit-mask-image: linear-gradient(to bottom, transparent, #000 30%, transparent) !important;
    mask-image: linear-gradient(to bottom, transparent, #000 30%, transparent) !important;
  }
  .hero-motion-canvas { opacity: .88; }
}

@media (max-width: 360px) {
  .brand { width: 146px; }
}

/* Art-directed mobile service photography and optically centered footer lockup */
.service-card > .service-card-picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.service-card > .service-card-picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.72) contrast(1.05);
  transition: transform .7s var(--ease);
}

.service-card:hover > .service-card-picture img { transform: scale(1.045); }

.service-media-picture {
  display: block;
  width: 100%;
  height: 100%;
}

.service-hero-media .service-media-picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.footer-lockup {
  justify-items: center;
  text-align: center;
}

.footer-lockup .footer-lockup-mark {
  margin-inline: auto;
  object-position: center;
}

.footer-lockup strong,
.footer-lockup > span { width: 100%; }
.footer-lockup > span { justify-content: center; }

@media (max-width: 680px) {
  .footer-brand {
    width: 100%;
    justify-items: center;
    text-align: center;
  }
  .footer-lockup {
    width: min(100%, 286px);
    margin-right: auto;
    margin-left: auto;
  }
  .footer-lockup .footer-lockup-mark {
    display: block;
    margin-right: auto;
    margin-left: auto;
    object-position: center;
  }
  .service-card-picture--umzug img,
  .service-card-picture--entruempelung img { object-position: 50% 10%; }
  .service-hero-media .service-media-picture--umzug img,
  .service-hero-media .service-media-picture--entruempelung img {
    object-position: 50% 0 !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-motion-canvas { opacity: .62; }
  .partner-route--main,
  .partner-route--branch,
  .partner-node { animation-iteration-count: infinite !important; }
  .partner-route--main { animation-duration: 4.8s !important; }
  .partner-route--branch { animation-duration: 7s !important; }
  .partner-node { animation-duration: 2.6s !important; }
}

@media print {
  .preview-note, .site-header, .mobile-actions, .button-row, .site-footer { display: none !important; }
  body { padding: 0; }
  .page-hero { padding: 30px 0; color: #000; background: #fff; }
  .page-hero h1, .page-hero p { color: #000; }
  .page-hero::before, .page-hero::after,
  .page-hero .container::before, .page-hero .container::after,
  .title-stage, .hero-motion-canvas { display: none !important; }
  .page-hero:not(.service-hero) .container { min-height: 0; padding-right: 0; }
  .section { padding: 30px 0; }
}
