:root {
  --navy-950: #03132f;
  --navy-900: #061d4a;
  --navy-800: #0a2b64;
  --blue-700: #0b4ec2;
  --blue-600: #1265e8;
  --blue-500: #2684ff;
  --blue-100: #ddebff;
  --blue-50: #eff6ff;
  --ice: #f6f9fd;
  --white: #ffffff;
  --ink: #071833;
  --muted: #60708a;
  --line: #dce5f0;
  --shadow: 0 30px 80px rgba(5, 32, 79, 0.14);
  --shell: min(1220px, calc(100vw - 64px));
  --radius-lg: 32px;
  --radius-md: 22px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--white);
  background: var(--blue-600);
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img,
svg {
  display: block;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding: 140px 0;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 999px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
  transition: color 0.45s var(--ease), background 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.site-header.scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 40px rgba(4, 22, 50, 0.08);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.nav-wrap {
  width: var(--shell);
  height: 92px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: height 0.4s var(--ease);
}

.scrolled .nav-wrap {
  height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font: 800 22px/1 "Manrope", sans-serif;
  letter-spacing: 0.12em;
}

.brand-copy small {
  margin-top: 5px;
  font: 700 7.5px/1 "Manrope", sans-serif;
  letter-spacing: 0.26em;
  opacity: 0.7;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
  opacity: 0.8;
  transition: opacity 0.25s ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--blue-500);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a.active {
  opacity: 1;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  opacity: 0.9;
}

.phone-link svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button {
  min-height: 56px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  border-radius: 999px;
  font: 700 14px/1 "Manrope", sans-serif;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s ease, color 0.35s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.35s var(--ease);
}

.button:hover svg {
  transform: translateX(4px);
}

.button-small {
  min-height: 44px;
  padding-inline: 20px;
  font-size: 12px;
}

.button-solid {
  color: var(--white);
  background: var(--blue-600);
  box-shadow: 0 10px 28px rgba(18, 101, 232, 0.28);
}

.button-solid:hover {
  background: var(--blue-700);
  box-shadow: 0 16px 32px rgba(18, 101, 232, 0.38);
}

.site-header:not(.scrolled) .button-solid {
  color: var(--navy-900);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 800px;
  height: 100svh;
  max-height: 980px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 42%, rgba(24, 109, 235, 0.18), transparent 30%),
    linear-gradient(135deg, #020f27 0%, var(--navy-950) 48%, #07245a 100%);
}

.hero-media,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-grid {
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at 18% 48%, black, transparent 70%);
}

.hero-glow {
  position: absolute;
  top: 14%;
  right: 4%;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  box-shadow:
    inset 0 0 120px rgba(38, 132, 255, 0.08),
    0 0 0 70px rgba(255, 255, 255, 0.018),
    0 0 0 140px rgba(255, 255, 255, 0.012);
  animation: orbFloat 9s ease-in-out infinite;
  pointer-events: none;
}

.hero-wordmark {
  position: absolute;
  bottom: -0.13em;
  left: -0.035em;
  color: rgba(255, 255, 255, 0.023);
  font: 800 clamp(180px, 25vw, 430px)/0.8 "Manrope", sans-serif;
  letter-spacing: -0.09em;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(400px, 0.94fr);
  align-items: center;
  gap: 7%;
  padding: 104px 0 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  text-transform: uppercase;
  font: 700 11px/1 "Manrope", sans-serif;
  letter-spacing: 0.18em;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.72);
}

.hero-location-pin {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: none;
  stroke: #58a0ff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 6px rgba(38, 132, 255, 0.45));
}

.eyebrow.dark {
  color: var(--blue-600);
}

.hero h1,
.section h2,
.intro-copy p {
  margin: 0;
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.055em;
}

.hero h1 {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  font-size: clamp(58px, 6.5vw, 96px);
  line-height: 0.91;
  font-weight: 650;
}

.hero h1 .hero-title-solid {
  display: block;
  color: var(--white);
}

.hero h1 .hero-title-outline {
  display: inline-block;
  margin-top: 0.08em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.74);
  font-weight: 500;
}

.hero-lead {
  max-width: 590px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.65;
}

.hero-buttons {
  margin-top: 42px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.button-white {
  color: var(--navy-900);
  background: var(--white);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.button-white:hover {
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.3);
}

.button-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.13);
}

.hero-services {
  margin-top: 38px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
}

.hero-services span {
  padding: 9px 13px;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.hero-visual {
  position: relative;
  width: 100%;
  height: min(68vh, 680px);
  min-height: 570px;
}

.hero-photo-frame {
  position: relative;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 34px;
  background: var(--navy-800);
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.34);
  transform-style: preserve-3d;
  transition: transform 0.45s var(--ease);
}

.hero-photo-frame::before,
.hero-photo-frame::after {
  position: absolute;
  z-index: 4;
  width: 68px;
  height: 68px;
  content: "";
  pointer-events: none;
}

.hero-photo-frame::before {
  top: 22px;
  left: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-left: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-photo-frame::after {
  right: 22px;
  bottom: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-slide {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-position, center);
  opacity: 0;
  pointer-events: none;
  filter: saturate(0.9) contrast(1.04);
  transform: scale(1.045);
  transition:
    opacity 1.05s ease,
    transform 6.5s var(--ease);
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

.hero-photo-frame:hover .hero-slide.is-active {
  transform: scale(1.018);
}

.hero-photo-overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 19, 47, 0.05) 44%, rgba(3, 19, 47, 0.48) 100%),
    linear-gradient(90deg, rgba(4, 28, 67, 0.16), transparent 58%);
}

.hero-photo-label {
  position: absolute;
  z-index: 3;
  top: 34px;
  left: 34px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-photo-label > span {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font: 700 9px/1 "Manrope", sans-serif;
  letter-spacing: 0.14em;
}

.hero-photo-label small {
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
}

.hero-slide-indicators {
  position: absolute;
  z-index: 3;
  bottom: 38px;
  left: 34px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-slide-indicators span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  transition: width 0.45s var(--ease), background 0.45s ease;
}

.hero-slide-indicators span.is-active {
  width: 34px;
  background: var(--white);
}

.hero-trust-band {
  position: relative;
  z-index: 5;
  padding: 22px 0;
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #041532;
}

.hero-trust {
  position: relative;
  z-index: 5;
  min-height: 96px;
  display: grid;
  grid-template-columns: 0.72fr 0.62fr 1fr;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  background: rgba(4, 24, 59, 0.64);
  box-shadow: 0 22px 65px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-trust-item {
  min-width: 0;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-trust-item + .hero-trust-item {
  border-left: 1px solid rgba(255, 255, 255, 0.11);
}

.hero-trust-item > strong {
  flex: 0 0 auto;
  font: 700 34px/1 "Manrope", sans-serif;
  letter-spacing: -0.06em;
}

.hero-trust-item > strong b {
  color: var(--blue-500);
  font-weight: inherit;
}

.hero-trust-item > small,
.hero-trust-family span > small {
  color: rgba(255, 255, 255, 0.54);
  text-transform: uppercase;
  font: 700 9px/1.45 "Manrope", sans-serif;
  letter-spacing: 0.1em;
}

.hero-trust-family img {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  object-fit: contain;
}

.hero-trust-family span {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.hero-trust-family span > strong {
  font: 650 15px/1.15 "Manrope", sans-serif;
  letter-spacing: -0.025em;
}

.intro {
  padding: 100px 0 110px;
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.6fr 2fr 0.8fr;
  align-items: start;
  gap: 60px;
}

.section-kicker {
  padding-top: 15px;
  color: var(--blue-600);
  text-transform: uppercase;
  font: 700 10px/1.5 "Manrope", sans-serif;
  letter-spacing: 0.17em;
}

.intro-copy p {
  font-size: clamp(40px, 5.2vw, 74px);
  line-height: 1.06;
  font-weight: 500;
}

.intro-copy em {
  color: var(--blue-600);
  font-style: normal;
}

.intro-copy strong {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--navy-800);
  font-weight: 500;
}

.intro-note {
  padding-top: 14px;
}

.intro-note p {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 14px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-900);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
  padding-bottom: 7px;
}

.text-link span {
  color: var(--blue-600);
}

.text-link svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-stats {
  position: relative;
  isolation: isolate;
  margin-top: 78px;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: var(--white);
  border-radius: 26px;
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
  box-shadow: 0 24px 70px rgba(3, 26, 68, 0.18);
}

.trust-stats::before {
  position: absolute;
  z-index: -1;
  top: -180px;
  right: -80px;
  width: 380px;
  height: 380px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: inset 0 0 80px rgba(38, 132, 255, 0.17), 0 0 0 65px rgba(255, 255, 255, 0.02);
}

.trust-stats article {
  min-height: 182px;
  padding: 38px 44px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.trust-stats article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-stats strong {
  flex: 0 0 auto;
  font: 700 clamp(42px, 4.2vw, 62px)/1 "Manrope", sans-serif;
  letter-spacing: -0.07em;
}

.trust-stats strong .count-suffix {
  color: var(--blue-500);
}

.trust-stats strong .count-up {
  color: inherit;
}

.trust-stats p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  line-height: 1.5;
}

.trust-stats .trust-family {
  display: grid;
  grid-template-columns: 52px 1fr;
  column-gap: 16px;
  align-content: center;
}

.trust-family svg {
  grid-row: span 2;
  width: 52px;
  height: 52px;
  padding: 14px;
  fill: none;
  stroke: var(--white);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  border-radius: 16px;
  background: var(--blue-600);
  box-shadow: 0 12px 30px rgba(0, 60, 160, 0.35);
}

.trust-stats .trust-family strong {
  font-size: clamp(18px, 2vw, 25px);
  letter-spacing: -0.035em;
}

.services {
  overflow: hidden;
  background: var(--ice);
}

.section-head {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 68px;
}

.section-head h2,
.why h2,
.about h2,
.contact h2,
.process h2 {
  font-size: clamp(48px, 6vw, 84px);
  line-height: 0.98;
  font-weight: 650;
}

.section-head p {
  max-width: 450px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 17px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 390px;
  gap: 18px;
}

.service-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
  border-radius: var(--radius-md);
  background: var(--navy-900);
  box-shadow: 0 12px 30px rgba(4, 24, 57, 0.08);
}

.service-card::before,
.service-card::after {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
}

.service-card::before {
  background-image: var(--image);
  background-position: var(--image-position, center);
  background-size: cover;
  transition: transform 0.8s var(--ease), filter 0.8s var(--ease);
}

.service-card::after {
  z-index: -1;
  background: linear-gradient(180deg, rgba(3, 19, 47, 0.2), rgba(3, 19, 47, 0.92));
}

.service-card:hover::before {
  transform: scale(1.08);
  filter: saturate(0.75);
}

.service-card-wide {
  grid-column: span 2;
}

.service-card-primary {
  box-shadow: 0 24px 60px rgba(4, 34, 83, 0.18);
}

.service-card-primary::after {
  background: linear-gradient(180deg, rgba(3, 19, 47, 0.12), rgba(3, 19, 47, 0.95));
}

.service-card-special::after {
  background:
    linear-gradient(90deg, rgba(3, 19, 47, 0.26), transparent 62%),
    linear-gradient(180deg, rgba(3, 19, 47, 0.12), rgba(3, 19, 47, 0.94));
}

.service-focus {
  display: inline-block;
  margin-bottom: 8px;
  color: #8fc4ff;
  text-transform: uppercase;
  font: 700 9px/1 "Manrope", sans-serif;
  letter-spacing: 0.16em;
}

.service-number {
  align-self: flex-end;
  padding: 7px 12px;
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(3, 19, 47, 0.18);
  backdrop-filter: blur(8px);
  font: 600 10px/1 "Manrope", sans-serif;
}

.service-content {
  display: flex;
  align-items: flex-end;
  gap: 18px;
}

.service-icon {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 15px;
  background: var(--blue-600);
  box-shadow: 0 12px 28px rgba(0, 50, 150, 0.35);
}

.service-icon svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 0;
  font: 700 25px/1.1 "Manrope", sans-serif;
  letter-spacing: -0.035em;
}

.service-card p {
  max-width: 440px;
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.5;
}

.service-card > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-card > a b {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  font-size: 14px;
  transition: background 0.3s ease, transform 0.3s var(--ease);
}

.service-card > a b svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card > a:hover b {
  color: var(--blue-700);
  background: var(--white);
  transform: rotate(45deg);
}

.service-card-blue {
  background: linear-gradient(145deg, var(--blue-700), var(--navy-900));
}

.service-card-blue::before,
.service-card-blue::after {
  display: none;
}

.service-card-blue .blue-card-orb {
  position: absolute;
  z-index: -1;
  top: -100px;
  right: -80px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow: inset 0 0 80px rgba(255, 255, 255, 0.06);
}

.why {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(38, 132, 255, 0.09), transparent 26%),
    linear-gradient(180deg, var(--white), #f5f9ff);
}

.why-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 6%;
}

.why-visual {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--navy-900);
  box-shadow: var(--shadow);
}

.why-photo-stack,
.why-photo-stack img,
.why-overlay {
  position: absolute;
  inset: 0;
}

.why-photo-stack {
  z-index: 1;
  overflow: hidden;
}

.why-photo-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  visibility: hidden;
  opacity: 0;
  filter: saturate(0.86) contrast(1.03);
  transform: scale(1.055);
  transition: opacity 0.65s ease, transform 1.05s var(--ease), visibility 0.65s ease;
}

.why-photo-stack img:nth-child(1) {
  object-position: 49% center;
}

.why-photo-stack img:nth-child(2) {
  object-position: 56% center;
}

.why-photo-stack img:nth-child(3) {
  object-position: 52% center;
}

.why-photo-stack img:nth-child(4) {
  object-position: 60% center;
}

.why-photo-stack img.is-active {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

.why-overlay {
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 45%, rgba(3, 19, 47, 0.94) 100%), linear-gradient(90deg, rgba(14, 93, 214, 0.2), transparent);
}

.why-image-index {
  position: absolute;
  z-index: 4;
  top: 28px;
  right: 29px;
  display: flex;
  align-items: baseline;
  gap: 5px;
  color: var(--white);
  font-family: "Manrope", sans-serif;
}

.why-image-index span {
  font-size: 27px;
  font-weight: 700;
  letter-spacing: -0.06em;
}

.why-image-index small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
}

.why-label {
  position: absolute;
  z-index: 4;
  right: 28px;
  bottom: 28px;
  left: 28px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.why-label svg {
  width: 42px;
  height: 42px;
  padding: 11px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  border-radius: 50%;
  background: var(--blue-600);
}

.why-label span {
  display: flex;
  flex-direction: column;
  font: 700 20px/1.2 "Manrope", sans-serif;
}

.why-label small {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.55);
  font: 600 9px/1 "DM Sans", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.corner {
  position: absolute;
  z-index: 4;
  width: 62px;
  height: 62px;
  border-color: rgba(255, 255, 255, 0.56);
}

.corner-tl {
  top: 28px;
  left: 28px;
  border-top: 1px solid;
  border-left: 1px solid;
}

.corner-br {
  right: 28px;
  bottom: 130px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.why h2 span,
.about h2 span {
  color: var(--blue-600);
}

.why-intro {
  max-width: 600px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.why-mobile-visual {
  display: none;
}

.feature-list {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.feature {
  position: relative;
  min-height: 164px;
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: start;
  gap: 18px;
  padding: 24px;
  overflow: hidden;
  outline: 0;
  cursor: default;
  border: 1px solid rgba(18, 101, 232, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 40px rgba(5, 35, 80, 0.07);
  transition: color 0.4s ease, transform 0.4s var(--ease), border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}

.feature::after {
  position: absolute;
  right: -54px;
  bottom: -64px;
  width: 150px;
  height: 150px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 0 32px rgba(255, 255, 255, 0.035);
  transform: scale(0.72);
  transition: opacity 0.4s ease, transform 0.55s var(--ease);
}

.feature:hover,
.feature.is-active {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 100% 0%, rgba(51, 138, 255, 0.36), transparent 42%),
    linear-gradient(145deg, var(--navy-900), var(--blue-700));
  box-shadow: 0 22px 54px rgba(5, 35, 80, 0.18);
  transform: translateY(-5px);
}

.feature:hover::after,
.feature.is-active::after {
  opacity: 1;
  transform: scale(1);
}

.feature:hover p,
.feature.is-active p {
  color: rgba(255, 255, 255, 0.67);
}

.feature:hover .feature-icon,
.feature.is-active .feature-icon {
  color: var(--blue-700);
  background: var(--white);
  box-shadow: none;
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 15px;
  background: linear-gradient(145deg, var(--blue-500), var(--blue-700));
  box-shadow: 0 12px 24px rgba(18, 101, 232, 0.25);
  font: 800 10px/1 "Manrope", sans-serif;
}

.feature h3 {
  margin: 0;
  font: 750 18px/1.25 "Manrope", sans-serif;
  letter-spacing: -0.02em;
}

.feature p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.process {
  --process-progress: 0;
  position: relative;
  overflow: visible;
  padding: 120px 0 80px;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 26%, rgba(38, 132, 255, 0.2), transparent 24%),
    radial-gradient(circle at 88% 70%, rgba(38, 132, 255, 0.18), transparent 28%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.process::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: radial-gradient(circle at 50% 50%, black, transparent 82%);
}

.process-scroll {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.72fr);
  align-items: start;
  gap: 8%;
}

.process-sticky {
  position: sticky;
  top: 105px;
  height: calc(100svh - 135px);
  min-height: 670px;
  max-height: 850px;
  display: flex;
  flex-direction: column;
}

.process-head {
  position: relative;
  z-index: 1;
}

.process-head .eyebrow {
  margin-bottom: 22px;
}

.process-head h2 {
  margin: 0;
  font-size: clamp(48px, 5.5vw, 78px);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.process-head h2 span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.56);
  font-weight: 500;
}

.process-visual {
  position: relative;
  min-height: 360px;
  margin-top: 38px;
  flex: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  background: var(--navy-900);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.3);
}

.process-visual::after {
  position: absolute;
  z-index: 3;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(2, 15, 37, 0.08) 38%, rgba(2, 15, 37, 0.78) 100%),
    linear-gradient(90deg, rgba(3, 24, 57, 0.2), transparent 55%);
}

.process-figure {
  position: absolute;
  z-index: 1;
  inset: 0;
  margin: 0;
  visibility: hidden;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 0.75s ease, transform 1.15s var(--ease), visibility 0.75s ease;
}

.process-figure.is-active {
  z-index: 2;
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

.process-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.process-figure:nth-child(1) img {
  object-position: 61% center;
}

.process-figure:nth-child(2) img {
  object-position: 48% center;
}

.process-figure:nth-child(3) img {
  object-position: center 14%;
}

.process-figure figcaption {
  position: absolute;
  z-index: 5;
  right: 28px;
  bottom: 28px;
  color: rgba(255, 255, 255, 0.74);
  text-transform: uppercase;
  font: 700 9px/1 "Manrope", sans-serif;
  letter-spacing: 0.14em;
}

.process-visual-top {
  position: absolute;
  z-index: 5;
  top: 26px;
  left: 27px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.process-visual-top span {
  color: #9acaff;
  text-transform: uppercase;
  font: 700 8px/1 "Manrope", sans-serif;
  letter-spacing: 0.16em;
}

.process-visual-top strong {
  font: 650 14px/1.2 "Manrope", sans-serif;
}

.process-counter {
  position: absolute;
  z-index: 5;
  right: 25px;
  top: 24px;
  display: flex;
  align-items: baseline;
  gap: 5px;
  font-family: "Manrope", sans-serif;
}

.process-counter span {
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.process-counter small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
}

.process-meter {
  position: absolute;
  z-index: 5;
  right: 28px;
  bottom: 20px;
  left: 28px;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
}

.process-meter span {
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(90deg, var(--blue-500), #8fc4ff);
  box-shadow: 0 0 18px rgba(38, 132, 255, 0.7);
  transform: scaleX(var(--process-progress));
  transform-origin: left center;
}

.process-story {
  position: relative;
  padding-bottom: 220px;
}

.process-step {
  position: relative;
  min-height: 72svh;
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0.28;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06), 0 24px 60px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(14px);
  transform: translateX(24px) scale(0.97);
  transition: opacity 0.55s ease, transform 0.65s var(--ease), background 0.55s ease, border-color 0.55s ease;
}

.process-step + .process-step {
  margin-top: 20svh;
}

.process-step.is-active {
  opacity: 1;
  border-color: rgba(89, 158, 255, 0.4);
  background:
    radial-gradient(circle at 100% 0%, rgba(38, 132, 255, 0.18), transparent 38%),
    rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08), 0 28px 70px rgba(0, 0, 0, 0.22);
  transform: translateX(0) scale(1);
}

.process-index {
  position: absolute;
  top: 30px;
  right: 32px;
  color: rgba(255, 255, 255, 0.16);
  font: 700 54px/1 "Manrope", sans-serif;
  letter-spacing: -0.08em;
}

.process-icon {
  width: 66px;
  height: 66px;
  margin-bottom: 54px;
  display: grid;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: linear-gradient(145deg, var(--blue-500), var(--blue-700));
  box-shadow: 0 18px 42px rgba(12, 91, 213, 0.34);
}

.process-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-step > small {
  color: #8fc4ff;
  text-transform: uppercase;
  font: 700 9px/1 "Manrope", sans-serif;
  letter-spacing: 0.15em;
}

.process-step h3 {
  margin: 16px 0 0;
  font: 700 clamp(32px, 3.2vw, 45px)/1.08 "Manrope", sans-serif;
  letter-spacing: -0.045em;
}

.process-step p {
  max-width: 390px;
  margin: 19px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 15px;
  line-height: 1.65;
}

.process-step > strong {
  margin-top: 30px;
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.82);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font: 650 11px/1.3 "Manrope", sans-serif;
}

.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: center;
  gap: 11%;
}

.about-text {
  max-width: 640px;
  margin-top: 40px;
}

.about-text p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
}

.about-text .about-lead {
  color: var(--ink);
  font: 600 22px/1.45 "Manrope", sans-serif;
  letter-spacing: -0.025em;
}

.about-text strong {
  color: var(--navy-900);
}

.button-dark {
  margin-top: 22px;
  color: var(--white);
  background: var(--navy-900);
  box-shadow: 0 16px 34px rgba(3, 19, 47, 0.2);
}

.button-dark:hover {
  background: var(--blue-700);
  box-shadow: 0 20px 40px rgba(11, 78, 194, 0.28);
}

.founder-card {
  position: relative;
  min-height: 630px;
  overflow: hidden;
  color: var(--white);
  border-radius: var(--radius-lg);
  background: var(--navy-900);
  box-shadow: var(--shadow);
}

.founder-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 58% 30%, rgba(58, 145, 255, 0.56), transparent 20%),
    radial-gradient(circle at 15% 90%, rgba(18, 101, 232, 0.4), transparent 34%),
    linear-gradient(140deg, var(--blue-700), var(--navy-950) 72%);
}

.founder-backdrop::before,
.founder-backdrop::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.founder-backdrop::before {
  top: 60px;
  left: 50%;
  width: 380px;
  height: 380px;
  transform: translateX(-50%);
  box-shadow: 0 0 0 55px rgba(255, 255, 255, 0.025), 0 0 0 110px rgba(255, 255, 255, 0.02);
}

.founder-backdrop::after {
  right: -70px;
  bottom: -50px;
  width: 240px;
  height: 240px;
}

.founder-photo {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: saturate(0.92) contrast(1.03);
}

.founder-photo-overlay {
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 19, 47, 0.02) 35%, rgba(3, 19, 47, 0.92) 100%),
    linear-gradient(90deg, rgba(11, 78, 194, 0.1), transparent 48%);
}

.founder-lines {
  position: absolute;
  z-index: 3;
  top: 30px;
  right: 30px;
  display: flex;
  gap: 7px;
}

.founder-lines span {
  display: block;
  width: 22px;
  height: 1px;
  background: rgba(255, 255, 255, 0.36);
}

.founder-info {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 28px;
  left: 28px;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(20px);
}

.founder-info div {
  display: flex;
  flex-direction: column;
}

.founder-info strong {
  font: 700 18px/1.3 "Manrope", sans-serif;
}

.founder-info span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
}

.founder-info svg {
  width: 40px;
  height: 40px;
  padding: 10px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  border-radius: 50%;
  background: var(--blue-600);
}

.comparison-section {
  overflow: hidden;
  background: var(--white);
}

.comparison-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: 8%;
}

.comparison-copy h2 {
  margin: 0;
  font: 650 clamp(48px, 5.6vw, 80px)/0.98 "Manrope", sans-serif;
  letter-spacing: -0.055em;
}

.comparison-copy h2 span {
  color: var(--blue-600);
}

.comparison-copy > p {
  max-width: 520px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.comparison-copy .button {
  margin-top: 34px;
}

.comparison-slider {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(9, 51, 113, 0.12);
  border-radius: 30px;
  background: var(--navy-900);
  box-shadow: 0 28px 75px rgba(4, 35, 82, 0.18);
  user-select: none;
  -webkit-user-select: none;
}

.comparison-image {
  position: absolute;
  inset: 0;
  background-position: center 62%;
  background-repeat: no-repeat;
  background-size: cover;
}

.comparison-after {
  background-image:
    linear-gradient(180deg, transparent 58%, rgba(3, 19, 47, 0.45)),
    var(--comparison-after);
}

.comparison-before {
  clip-path: inset(0 calc(100% - var(--position)) 0 0);
  background-image:
    linear-gradient(180deg, rgba(3, 19, 47, 0.04) 48%, rgba(3, 19, 47, 0.42)),
    var(--comparison-before);
}

.comparison-range {
  position: absolute;
  z-index: 7;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  touch-action: none;
}

.comparison-divider {
  position: absolute;
  z-index: 6;
  top: 0;
  bottom: 0;
  left: var(--position);
  width: 3px;
  pointer-events: none;
  background: var(--white);
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.22);
  transform: translateX(-50%);
}

.comparison-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  color: var(--white);
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--blue-600);
  box-shadow: 0 10px 30px rgba(0, 44, 110, 0.35);
  transform: translate(-50%, -50%);
  transition: box-shadow 0.25s ease, transform 0.25s var(--ease);
}

.comparison-slider:hover .comparison-handle {
  box-shadow: 0 14px 36px rgba(0, 44, 110, 0.48);
  transform: translate(-50%, -50%) scale(1.06);
}

.comparison-range:focus-visible ~ .comparison-divider .comparison-handle {
  outline: 4px solid rgba(38, 132, 255, 0.32);
  outline-offset: 5px;
}

.comparison-handle svg {
  width: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.comparison-label {
  position: absolute;
  z-index: 5;
  bottom: 24px;
  padding: 10px 17px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  background: rgba(3, 29, 68, 0.78);
  backdrop-filter: blur(12px);
  font: 700 12px/1 "Manrope", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-label-before {
  left: 24px;
}

.comparison-label-after {
  right: 24px;
}

.comparison-preview-note {
  position: absolute;
  z-index: 5;
  top: 20px;
  left: 50%;
  padding: 7px 12px;
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(3, 19, 47, 0.52);
  backdrop-filter: blur(12px);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.references {
  overflow: hidden;
  background: var(--ice);
}

.references-head {
  margin-bottom: 54px;
}

.reference-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 18px;
}

.review-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 480px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(5, 34, 80, 0.12);
}

.review-card::before {
  position: absolute;
  z-index: -1;
  top: -120px;
  right: -100px;
  width: 260px;
  height: 260px;
  content: "";
  border: 1px solid rgba(18, 101, 232, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 40px rgba(18, 101, 232, 0.025);
}

.review-card-featured {
  color: var(--white);
  border-color: transparent;
  background:
    radial-gradient(circle at 85% 8%, rgba(38, 132, 255, 0.34), transparent 30%),
    linear-gradient(145deg, var(--navy-800), var(--navy-950));
}

.review-card-featured::before {
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 40px rgba(255, 255, 255, 0.025);
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-avatar {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  font: 500 25px/1 "Manrope", sans-serif;
}

.avatar-purple {
  background: #8e24aa;
}

.avatar-blue {
  background: #0873c6;
}

.avatar-green {
  background: #3e7e24;
}

.avatar-brown {
  background: #7d6259;
}

/* Kennzeichnung KI-generierter Bilder (Art. 50 KI-VO) */
.ai-note {
  position: absolute;
  z-index: 5;
  margin: 0;
  padding: 6px 12px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(3, 19, 47, 0.46);
  backdrop-filter: blur(10px);
  font: 600 11px/1 "Manrope", sans-serif;
  white-space: nowrap;
  pointer-events: none;
}

.ai-note[hidden],
.hero-photo-label[hidden] {
  display: none;
}

.ai-note-hero {
  right: 34px;
  bottom: 38px;
}

.ai-note-why,
.ai-note-card {
  top: 28px;
  left: 28px;
}

@media (max-width: 580px) {
  .ai-note {
    padding: 5px 10px;
    font-size: 10px;
  }

  .ai-note-hero {
    right: 25px;
    bottom: 30px;
  }

  .ai-note-why,
  .ai-note-card {
    top: 18px;
    left: 18px;
  }
}

.review-author > span:last-child {
  display: flex;
  flex-direction: column;
}

.review-author strong {
  font: 700 17px/1.25 "Manrope", sans-serif;
  letter-spacing: -0.02em;
}

.review-author small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.review-card-featured .review-author small {
  color: rgba(255, 255, 255, 0.46);
}

.review-rating {
  margin-top: 28px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.review-rating > span {
  color: #fbbc04;
  font-size: 19px;
  line-height: 1;
  letter-spacing: 0.04em;
}

.review-rating small {
  color: var(--muted);
  font-size: 11px;
}

.review-card-featured .review-rating small {
  color: rgba(255, 255, 255, 0.52);
}

.review-card blockquote {
  margin: 30px 0 34px;
  color: #40506a;
  font-size: 15px;
  line-height: 1.7;
}

.review-card-featured blockquote {
  color: rgba(255, 255, 255, 0.76);
}

.review-source {
  margin-top: auto;
  padding-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.review-card-featured .review-source {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.13);
}

.google-mark {
  font: 800 18px/1 Arial, sans-serif;
  background: conic-gradient(from -45deg, #4285f4 0 25%, #34a853 0 42%, #fbbc05 0 66%, #ea4335 0 82%, #4285f4 0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.reviews-cta {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 32px;
}

.review-button {
  color: var(--white);
  background: var(--blue-600);
  box-shadow: 0 16px 32px rgba(18, 101, 232, 0.26);
}

.review-button:hover {
  background: var(--blue-700);
}

.service-area {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.service-area::before {
  position: absolute;
  top: -220px;
  left: -180px;
  width: 520px;
  height: 520px;
  content: "";
  border-radius: 50%;
  background: rgba(18, 101, 232, 0.055);
  filter: blur(4px);
}

.area-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: 8%;
}

.area-copy h2 {
  margin: 0;
  font: 650 clamp(48px, 5.6vw, 80px)/0.98 "Manrope", sans-serif;
  letter-spacing: -0.055em;
}

.area-copy h2 span {
  color: var(--blue-600);
}

.area-copy > p {
  max-width: 520px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.area-details {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.area-details > div {
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--ice);
}

.area-details svg {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  padding: 8px;
  fill: none;
  stroke: var(--blue-600);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  border-radius: 11px;
  background: var(--blue-50);
}

.area-details span {
  display: flex;
  flex-direction: column;
}

.area-details small {
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.area-details strong {
  margin-top: 3px;
  font: 700 13px/1.25 "Manrope", sans-serif;
}

.area-copy .button {
  margin-top: 30px;
}

.location-map {
  --map-rx: 0deg;
  --map-ry: 0deg;
  position: relative;
  outline: 0;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  transform: perspective(1200px) rotateX(var(--map-rx)) rotateY(var(--map-ry));
  transform-style: preserve-3d;
  transition: transform 0.42s var(--ease), filter 0.42s ease;
}

.location-map:hover,
.location-map:focus-visible,
.location-map.expanded {
  filter: drop-shadow(0 24px 44px rgba(4, 38, 92, 0.18));
}

.location-map:focus-visible .map-canvas {
  outline: 3px solid rgba(38, 132, 255, 0.3);
  outline-offset: 6px;
}

.map-heading {
  margin-bottom: 22px;
  color: var(--blue-700);
  text-align: center;
  text-transform: uppercase;
  font: 800 11px/1 "Manrope", sans-serif;
  letter-spacing: 0.24em;
}

.map-canvas {
  position: relative;
  height: 560px;
  overflow: hidden;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  background:
    radial-gradient(circle at 52% 46%, rgba(38, 132, 255, 0.18), transparent 24%),
    linear-gradient(145deg, #09275d, var(--navy-950));
  box-shadow: 0 28px 70px rgba(4, 35, 82, 0.18);
  transform: translateZ(0);
}

.map-canvas::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(1, 13, 33, 0.06) 48%, rgba(1, 13, 33, 0.86) 100%),
    radial-gradient(circle at center, transparent 38%, rgba(1, 13, 33, 0.28));
}

.map-live {
  position: absolute;
  z-index: 6;
  top: 28px;
  right: 28px;
  padding: 10px 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(15px);
  font: 700 9px/1 "Manrope", sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.map-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #66efb2;
  box-shadow: 0 0 0 5px rgba(102, 239, 178, 0.12);
}

.map-roads {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
}

.map-road {
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 1300;
  stroke-dashoffset: 1300;
}

.map-road-main {
  stroke: rgba(151, 192, 255, 0.3);
  stroke-width: 6;
}

.map-road-side {
  stroke: rgba(151, 192, 255, 0.13);
  stroke-width: 2;
}

.map-road-link {
  stroke: rgba(57, 140, 255, 0.26);
  stroke-width: 3;
}

.location-map.visible .map-road {
  animation: mapRoadDraw 1.6s var(--ease) forwards;
}

.location-map.visible .map-road-side {
  animation-delay: 0.18s;
}

.location-map.visible .map-road-link {
  animation-delay: 0.34s;
}

.map-building {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  opacity: 0;
  background: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(2px);
  transform: scale(0.75);
  transition: opacity 0.5s ease, transform 0.65s var(--ease), background 0.35s ease;
}

.location-map.visible .map-building {
  opacity: 1;
  transform: scale(1);
}

.location-map.expanded .map-building {
  background: rgba(38, 132, 255, 0.13);
}

.building-one { top: 36%; left: 9%; width: 15%; height: 20%; transition-delay: 0.35s; }
.building-two { top: 14%; left: 36%; width: 12%; height: 15%; transition-delay: 0.45s; }
.building-three { right: 8%; bottom: 15%; width: 18%; height: 18%; transition-delay: 0.55s; }
.building-four { top: 19%; right: 12%; width: 11%; height: 24%; transition-delay: 0.42s; }
.building-five { top: 55%; left: 5%; width: 8%; height: 12%; transition-delay: 0.5s; }
.building-six { top: 8%; right: 25%; width: 14%; height: 10%; transition-delay: 0.6s; }

.map-town {
  position: absolute;
  z-index: 4;
  padding: 5px 8px;
  color: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  opacity: 0;
  background: rgba(3, 24, 57, 0.72);
  backdrop-filter: blur(10px);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.45s var(--ease);
}

.location-map.expanded .map-town {
  opacity: 1;
  transform: translateY(0);
}

.town-one { top: 24%; left: 16%; }
.town-two { top: 38%; right: 19%; transition-delay: 0.08s; }
.town-three { top: 63%; right: 31%; transition-delay: 0.16s; }

.map-pin {
  position: absolute;
  z-index: 5;
  top: 43%;
  left: 51%;
  width: 58px;
  height: 58px;
  transform: translate(-50%, -50%);
}

.map-pin > span {
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: rgba(38, 132, 255, 0.2);
  animation: mapPulse 2.2s ease-out infinite;
}

.map-pin svg {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  overflow: visible;
  fill: var(--blue-500);
  stroke: var(--white);
  stroke-width: 1.3;
  filter: drop-shadow(0 10px 14px rgba(0, 36, 100, 0.5));
}

.map-pin circle {
  fill: var(--navy-950);
  stroke: none;
}

.map-info {
  position: absolute;
  z-index: 6;
  right: 30px;
  bottom: 30px;
  left: 30px;
  display: flex;
  flex-direction: column;
}

.map-info small {
  color: var(--blue-100);
  text-transform: uppercase;
  font: 700 8px/1 "Manrope", sans-serif;
  letter-spacing: 0.15em;
}

.map-info strong {
  margin-top: 8px;
  font: 650 clamp(20px, 2vw, 28px)/1.2 "Manrope", sans-serif;
  letter-spacing: -0.035em;
}

.map-info > span {
  width: fit-content;
  margin-top: 8px;
  padding-bottom: 10px;
  color: rgba(255, 255, 255, 0.48);
  border-bottom: 1px solid rgba(38, 132, 255, 0.5);
  font: 500 10px/1 "Manrope", sans-serif;
  letter-spacing: 0.08em;
}

.map-expand-hint {
  position: absolute;
  z-index: 7;
  right: 30px;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.map-expand-hint svg {
  width: 28px;
  height: 28px;
  padding: 7px;
  fill: none;
  stroke: var(--blue-500);
  stroke-width: 1.6;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9px;
}

.location-map.expanded .map-expand-hint {
  color: rgba(255, 255, 255, 0.72);
}

.real-map {
  cursor: default;
  user-select: auto;
  transform: none;
}

.real-map:hover {
  filter: drop-shadow(0 24px 44px rgba(4, 38, 92, 0.18));
  transform: none;
}

.real-map .map-canvas {
  isolation: isolate;
  background: #dce7f2;
}

.real-map .map-canvas::before {
  display: none;
}

.real-map iframe {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.72) contrast(1.02);
}

.map-load-button {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 32px;
  color: var(--white);
  text-align: center;
  cursor: pointer;
  background: none;
  border: 0;
  font: inherit;
}

.map-load-button svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.85;
}

.map-load-button span {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 16px;
}

.map-load-button small {
  max-width: 30ch;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.map-load-button:hover span {
  text-decoration: underline;
}

.map-address-card {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 24px;
  left: 24px;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 7px 20px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background: rgba(3, 24, 57, 0.9);
  box-shadow: 0 18px 48px rgba(0, 25, 65, 0.24);
  backdrop-filter: blur(18px);
}

.map-address-card > span {
  color: #8fc4ff;
  text-transform: uppercase;
  font: 700 9px/1 "Manrope", sans-serif;
  letter-spacing: 0.14em;
}

.map-address-card > strong {
  grid-column: 1;
  font: 700 clamp(21px, 2.2vw, 29px)/1.1 "Manrope", sans-serif;
  letter-spacing: -0.04em;
}

.map-address-card > small {
  grid-column: 1;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
}

.faq {
  background: var(--ice);
}

.faq-head {
  margin-bottom: 54px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 880px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(4, 24, 57, 0.05);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 28px;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  font: 700 16px/1.4 "Manrope", sans-serif;
}

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

.faq-item summary::after {
  content: "+";
  flex: none;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--blue-600);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-weight: 400;
  font-size: 18px;
  transition: transform 0.3s var(--ease), background 0.3s ease, color 0.3s ease;
}

.faq-item[open] summary::after {
  content: "+";
  transform: rotate(45deg);
  color: var(--white);
  background: var(--blue-600);
  border-color: var(--blue-600);
}

.faq-item p {
  margin: 0;
  padding: 0 28px 24px;
  max-width: 68ch;
  color: var(--muted);
  line-height: 1.75;
}

.faq-item a {
  color: var(--blue-600);
  font-weight: 600;
}

.contact {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.contact::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  opacity: 0.1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: radial-gradient(circle at 20% 50%, black, transparent 68%);
}

.contact-glow {
  position: absolute;
  z-index: -1;
  top: 25%;
  left: 8%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(18, 101, 232, 0.28);
  filter: blur(120px);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 9%;
}

.contact h2 span {
  color: var(--blue-500);
}

.contact-copy > p {
  max-width: 520px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 17px;
}

.contact-options {
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-options > a {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-option-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
}

.contact-option-icon svg {
  width: 20px;
  fill: none;
  stroke: var(--blue-500);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-options a > span:last-child {
  display: flex;
  flex-direction: column;
}

.contact-options small {
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-options strong {
  margin-top: 3px;
  font: 600 15px/1.3 "Manrope", sans-serif;
}

.contact-form {
  padding: clamp(28px, 4vw, 52px);
  color: var(--ink);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.34);
}

.form-heading > span {
  color: var(--blue-600);
  text-transform: uppercase;
  font: 700 10px/1 "Manrope", sans-serif;
  letter-spacing: 0.16em;
}

.form-heading p {
  margin: 10px 0 30px;
  font: 700 26px/1.25 "Manrope", sans-serif;
  letter-spacing: -0.035em;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 16px;
}

.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-grid label > span {
  color: #34425a;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-grid .form-full {
  grid-column: 1 / -1;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: 0;
  background: #fbfcfe;
  transition: border 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.form-grid input,
.form-grid select {
  height: 50px;
  padding: 0 15px;
}

.form-grid textarea {
  min-height: 110px;
  padding: 13px 15px;
  resize: vertical;
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: #9aa7ba;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--blue-500);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(38, 132, 255, 0.1);
}

.form-hidden-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
  font-size: 12px;
  line-height: 1.5;
  color: #8793a7;
}

.form-consent input {
  margin-top: 3px;
  flex: none;
  width: 16px;
  height: 16px;
}

.form-consent a {
  color: var(--blue-600);
}

.form-submit {
  width: 100%;
  margin-top: 24px;
  color: var(--white);
  background: var(--blue-600);
  box-shadow: 0 16px 32px rgba(18, 101, 232, 0.26);
}

.form-submit:hover {
  background: var(--blue-700);
}

.form-note {
  margin: 13px 0 0;
  color: #8793a7;
  text-align: center;
  font-size: 10px;
}

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  min-height: 420px;
}

.form-success[hidden] {
  display: none;
}

.form-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue-600);
}

.form-success-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.form-success h3 {
  margin: 0 0 10px;
}

.form-success p {
  margin: 0 0 8px;
  color: rgba(7, 24, 51, 0.72);
}

.form-success-alt a {
  color: var(--blue-600);
  font-weight: 600;
  white-space: nowrap;
}

.footer {
  color: rgba(255, 255, 255, 0.6);
  background: #020d21;
}

.footer-main {
  padding: 70px 0 55px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-footer {
  color: var(--white);
}

.footer-main > p {
  max-width: 400px;
  margin: 0;
  font-size: 13px;
}

.footer-top {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
}

.footer-top span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.footer-details {
  padding: 54px 0;
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 0.6fr auto;
  gap: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-col {
  justify-content: center;
}

.footer-details > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-details small {
  margin-bottom: 14px;
  color: var(--blue-500);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-details address,
.footer-details a {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-style: normal;
}

.footer-details a + a {
  margin-top: 5px;
}

.footer-details a:hover {
  color: var(--white);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social a + a {
  margin-top: 0;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-top: 0;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.82);
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.footer-social a svg {
  width: 20px;
  height: 20px;
}

.footer-social a:hover {
  color: #fff;
  transform: translateY(-2px);
  border-color: transparent;
}

.footer-social .social-ig:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.footer-social .social-mail:hover {
  background: var(--blue-600);
}

.footer-bottom {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-size: 10px;
}

.footer-bottom div {
  display: flex;
  gap: 22px;
}

.footer-bottom .footer-meta {
  align-items: center;
  gap: 14px;
}

.footer-credit {
  padding-left: 14px;
  color: rgba(255, 255, 255, 0.48);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-credit strong {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.footer-bottom a:hover {
  color: var(--white);
}

.floating-call {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  width: 56px;
  height: 56px;
  display: none;
  place-items: center;
  color: var(--white);
  border-radius: 50%;
  background: var(--blue-600);
  box-shadow: 0 14px 34px rgba(18, 101, 232, 0.42);
}

.floating-call::before {
  position: absolute;
  inset: -6px;
  content: "";
  border: 1px solid rgba(38, 132, 255, 0.42);
  border-radius: 50%;
  animation: callPulse 2.2s ease-out infinite;
}

.floating-call svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal-delay {
  transition-delay: 0.18s;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroZoom {
  from { transform: scale(1.04); }
  to { transform: scale(1.11); }
}

@keyframes orbFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -20px, 0); }
}

@keyframes scrollLine {
  0% { transform: translateY(0); }
  100% { transform: translateY(200%); }
}

@keyframes callPulse {
  0% { opacity: 0.8; transform: scale(0.9); }
  100% { opacity: 0; transform: scale(1.35); }
}

@keyframes mapRoadDraw {
  to { stroke-dashoffset: 0; }
}

@keyframes mapPulse {
  0% { opacity: 0.72; transform: scale(0.45); }
  100% { opacity: 0; transform: scale(1.65); }
}

@keyframes processTravel {
  0%, 100% { left: 2%; opacity: 0.25; }
  14%, 86% { opacity: 1; }
  50% { left: calc(98% - 11px); opacity: 1; }
}

@media (max-width: 1120px) {
  :root {
    --shell: min(calc(100% - 44px), 1060px);
  }

  .phone-link {
    display: none;
  }

  .desktop-nav {
    gap: 24px;
  }

  .hero-content {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    gap: 6%;
  }

  .hero-visual {
    height: min(64vh, 620px);
    min-height: 540px;
  }

  .hero-trust-item {
    padding-inline: 22px;
  }

  .trust-stats article {
    padding: 32px 27px;
  }

  .why-grid,
  .about-grid,
  .contact-grid {
    gap: 6%;
  }

  .comparison-layout {
    gap: 5%;
  }

  .area-layout {
    gap: 5%;
  }

  .map-canvas {
    height: 520px;
  }

  .comparison-slider {
    min-height: 500px;
  }

  .why-visual {
    min-height: 680px;
  }

  .feature-list {
    gap: 22px;
  }
}

@media (max-width: 860px) {
  :root {
    --shell: calc(100vw - 40px);
  }

  .section {
    padding: 100px 0;
  }

  .desktop-nav,
  .nav-actions .button {
    display: none;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: inherit;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    background: transparent;
  }

  .scrolled .menu-toggle {
    border-color: var(--line);
  }

  .menu-toggle span {
    width: 18px;
    height: 1.5px;
    background: currentColor;
    transition: transform 0.3s var(--ease);
  }

  .menu-open .menu-toggle span:first-child {
    transform: translateY(4.25px) rotate(45deg);
  }

  .menu-open .menu-toggle span:last-child {
    transform: translateY(-4.25px) rotate(-45deg);
  }

  .mobile-menu {
    position: absolute;
    z-index: -1;
    inset: 0;
    width: 100vw;
    height: 100dvh;
    min-height: 100svh;
    padding: 120px 20px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 22px;
    color: var(--white);
    visibility: hidden;
    opacity: 0;
    background: var(--navy-950);
    transition: opacity 0.35s ease, visibility 0.35s ease;
  }

  .mobile-menu.open {
    z-index: 99;
    visibility: visible;
    opacity: 1;
  }

  .nav-wrap {
    position: relative;
    z-index: 100;
  }

  body.menu-open .site-header {
    height: 100dvh;
    color: var(--white);
    background: var(--navy-950);
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  body.menu-open {
    overflow: hidden;
  }

  .mobile-menu a {
    font: 700 clamp(34px, 8vw, 52px)/1.05 "Manrope", sans-serif;
    letter-spacing: -0.05em;
  }

  .mobile-menu .mobile-phone {
    margin-top: 20px;
    color: var(--blue-500);
    font-size: 16px;
    letter-spacing: 0;
  }

  .hero {
    min-height: 0;
    height: auto;
    max-height: none;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 64px;
    padding: 130px 0 90px;
  }

  .hero-copy {
    max-width: 720px;
    align-self: center;
  }

  .hero-visual {
    width: min(100%, 620px);
    height: 680px;
    min-height: 0;
    margin-inline: auto;
  }

  .hero-grid {
    background-size: 72px 72px;
  }

  .hero-glow {
    top: 45%;
    right: -160px;
  }

  .hero-wordmark {
    bottom: 0;
  }

  .hero-trust-band {
    padding-block: 20px;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-kicker,
  .intro-note {
    padding-top: 0;
  }

  .intro-note {
    max-width: 440px;
  }

  .trust-stats {
    margin-top: 58px;
  }

  .trust-stats article {
    min-height: 160px;
    padding: 28px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .trust-stats .trust-family {
    grid-template-columns: 44px 1fr;
  }

  .trust-family svg {
    width: 44px;
    height: 44px;
    padding: 12px;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-bottom: 48px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 370px;
  }

  .service-card-wide {
    grid-column: span 2;
  }

  .why-grid,
  .about-grid,
  .contact-grid,
  .comparison-layout,
  .area-layout {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .comparison-copy,
  .area-copy {
    max-width: 650px;
  }

  .location-map {
    width: min(100%, 760px);
    margin-inline: auto;
  }

  .comparison-slider {
    min-height: 540px;
  }

  .why-visual {
    min-height: 630px;
    order: 2;
  }

  .why-content {
    order: 1;
  }

  .process {
    padding: 95px 0 75px;
  }

  .process-scroll {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .process-story {
    padding-bottom: 0;
  }

  .process-sticky {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
    max-height: none;
  }

  .process-visual {
    height: 580px;
    flex: none;
  }

  .process-step {
    min-height: 64svh;
    transform: translateY(20px) scale(0.98);
  }

  .process-step p {
    max-width: 520px;
  }

  .founder-card {
    min-height: 560px;
  }

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

  .review-card {
    min-height: 400px;
  }

  .review-card:first-child {
    grid-column: span 2;
  }

  .contact-form {
    max-width: 700px;
  }

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

  .footer-main > p {
    grid-row: 2;
  }
}

@media (max-width: 580px) {
  :root {
    --shell: calc(100vw - 28px);
    --radius-lg: 24px;
  }

  .section {
    padding: 82px 0;
  }

  .nav-wrap {
    height: 76px;
  }

  .mobile-menu {
    padding-inline: 14px;
  }

  .brand-mark {
    width: 35px;
    height: 35px;
  }

  .brand-copy strong {
    font-size: 18px;
  }

  .brand-copy small {
    font-size: 6.5px;
  }

  .hero {
    min-height: 0;
    height: auto;
  }

  .hero-content {
    gap: 46px;
    padding: 112px 0 64px;
  }

  .hero h1 {
    font-size: clamp(49px, 15vw, 68px);
    line-height: 0.92;
  }

  .hero h1 .hero-title-outline {
    -webkit-text-stroke-width: 1px;
  }

  .hero-lead {
    max-width: 390px;
    margin-top: 24px;
    font-size: 16px;
  }

  .hero-buttons {
    margin-top: 30px;
    align-items: stretch;
    flex-direction: column;
  }

  .hero-buttons .button {
    width: 100%;
  }

  .hero-services {
    margin-top: 28px;
  }

  .hero-services span {
    padding: 8px 11px;
    font-size: 9px;
  }

  .hero-visual {
    width: 100%;
    height: 510px;
  }

  .hero-photo-frame {
    border-radius: 25px;
  }

  .hero-photo-label {
    top: 27px;
    left: 25px;
  }

  .hero-slide-indicators {
    bottom: 30px;
    left: 25px;
  }

  .hero-trust {
    grid-template-columns: 1fr 1fr;
    border-radius: 18px;
  }

  .hero-trust-item {
    min-height: 88px;
    padding: 17px 18px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
  }

  .hero-trust-item > strong {
    font-size: 30px;
  }

  .hero-trust-item + .hero-trust-item {
    border-left: 1px solid rgba(255, 255, 255, 0.11);
  }

  .hero-trust-family {
    grid-column: 1 / -1;
    align-items: center;
    flex-direction: row;
    justify-content: flex-start;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    border-left: 0 !important;
  }

  .hero-trust-family img {
    width: 42px;
    height: 42px;
  }

  .intro {
    padding: 70px 0 78px;
  }

  .intro-copy p {
    font-size: 43px;
  }

  .intro .trust-stats {
    display: none;
  }

  .trust-stats {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .trust-stats article {
    min-height: 136px;
    padding: 26px;
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }

  .trust-stats article + article {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  .trust-stats .trust-family {
    grid-template-columns: 48px 1fr;
  }

  .section-head h2,
  .why h2,
  .about h2,
  .contact h2,
  .process h2,
  .comparison-copy h2,
  .area-copy h2 {
    font-size: 46px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 360px;
  }

  .service-card-wide {
    grid-column: auto;
  }

  .service-card {
    padding: 22px;
  }

  .service-card::after,
  .service-card-primary::after,
  .service-card-special::after {
    background:
      linear-gradient(180deg, rgba(3, 19, 47, 0.08) 20%, rgba(3, 19, 47, 0.35) 48%, rgba(3, 19, 47, 0.96) 100%);
  }

  .service-content {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }

  .service-icon {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
    border-radius: 14px;
  }

  .service-card h3 {
    font-size: 24px;
  }

  .service-card p {
    max-width: 292px;
    font-size: 13px;
  }

  .service-card:active::before {
    transform: scale(1.045);
  }

  .why-grid,
  .about-grid,
  .contact-grid {
    gap: 48px;
  }

  .why {
    overflow: hidden;
    padding-top: 74px;
    padding-bottom: 66px;
  }

  .why-visual {
    display: none;
  }

  .why-content .eyebrow {
    margin-bottom: 15px;
  }

  .why h2 {
    max-width: 360px;
    font-size: clamp(39px, 11.2vw, 47px);
    line-height: 1.02;
    letter-spacing: -0.055em;
  }

  .why-intro {
    max-width: 340px;
    margin-top: 19px;
    font-size: 15px;
    line-height: 1.68;
  }

  .why-mobile-visual {
    position: relative;
    z-index: 2;
    top: auto;
    height: 238px;
    margin: 28px 0 20px;
    display: block;
    overflow: hidden;
    border: 1px solid rgba(18, 101, 232, 0.13);
    border-radius: 26px;
    background: var(--navy-900);
    box-shadow: 0 22px 50px rgba(4, 31, 73, 0.17);
  }

  .why-mobile-visual .why-photo-stack img:nth-child(1) {
    object-position: center 22%;
  }

  .why-mobile-visual .why-photo-stack img:nth-child(2) {
    object-position: 54% center;
  }

  .why-mobile-visual .why-photo-stack img:nth-child(3) {
    object-position: 50% 38%;
  }

  .why-mobile-visual .why-photo-stack img:nth-child(4) {
    object-position: 60% center;
  }

  .why-mobile-visual .why-photo-stack img:not(:first-child) {
    display: none;
  }

  .why-mobile-visual .why-photo-stack img:first-child {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
  }

  .why-mobile-status {
    position: absolute;
    z-index: 4;
    right: 18px;
    bottom: 16px;
    left: 18px;
    display: flex;
    align-items: baseline;
    color: var(--white);
  }

  .why-mobile-status > span {
    margin-right: auto;
    text-transform: uppercase;
    font: 700 9px/1 "Manrope", sans-serif;
    letter-spacing: 0.16em;
  }

  .why-mobile-status strong {
    font: 750 25px/1 "Manrope", sans-serif;
  }

  .why-mobile-status small {
    margin-left: 5px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 9px;
  }

  .corner-tl {
    top: 18px;
    left: 18px;
  }

  .feature-list {
    margin-top: 0;
    padding-top: 0;
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .feature {
    min-height: auto;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    padding: 18px;
    border-radius: 20px;
  }

  .feature:hover,
  .feature.is-active {
    color: var(--navy-950);
    border-color: rgba(18, 101, 232, 0.24);
    background:
      radial-gradient(circle at 100% 0%, rgba(38, 132, 255, 0.12), transparent 42%),
      rgba(255, 255, 255, 0.95);
    box-shadow: 0 16px 36px rgba(5, 35, 80, 0.09);
    transform: none;
  }

  .feature:hover::after,
  .feature.is-active::after {
    opacity: 0;
  }

  .feature:hover p,
  .feature.is-active p {
    color: var(--muted);
  }

  .feature:hover .feature-icon,
  .feature.is-active .feature-icon {
    color: var(--white);
    background: linear-gradient(145deg, var(--blue-500), var(--blue-700));
    box-shadow: 0 12px 24px rgba(18, 101, 232, 0.2);
  }

  .feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    font-size: 9px;
  }

  .feature h3 {
    font-size: 17px;
  }

  .feature p {
    margin-top: 7px;
    font-size: 12.5px;
    line-height: 1.52;
  }

  .process {
    overflow: hidden;
    padding: 70px 0 80px;
  }

  .process-scroll {
    display: block;
  }

  .process-head .eyebrow {
    margin-bottom: 15px;
  }

  .process-head h2 {
    max-width: 360px;
    font-size: clamp(39px, 11.2vw, 48px);
    line-height: 1.02;
    letter-spacing: -0.055em;
  }

  .process-head h2 span {
    color: #9acaff;
    -webkit-text-stroke: 0;
    font-weight: 700;
  }

  .process-sticky {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
    max-height: none;
    display: block;
  }

  .process-visual {
    position: relative;
    z-index: 2;
    top: auto;
    height: 248px;
    min-height: 0;
    margin-top: 26px;
    border-radius: 24px;
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28);
    transform: translateY(calc(var(--process-progress) * -10px));
    transition: transform 0.18s linear;
  }

  .process-story {
    z-index: 1;
    position: relative;
    padding-top: 24px;
    padding-bottom: 0;
    padding-left: 0;
    display: grid;
    gap: 20px;
    perspective: 900px;
  }

  .process-story::before {
    display: none;
  }

  .process-step {
    position: relative;
    isolation: isolate;
    top: auto;
    z-index: 1;
    height: auto;
    min-height: 304px;
    max-height: none;
    padding: 28px 23px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    border-radius: 24px;
    opacity: 0.34;
    border-color: rgba(255, 255, 255, 0.1);
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.06);
    transform: translateY(44px) rotateX(5deg) scale(0.93);
    transform-origin: center top;
    will-change: transform, opacity;
    transition: opacity 0.55s ease, transform 0.62s var(--ease), border-color 0.45s ease, background 0.45s ease, box-shadow 0.45s ease;
  }

  .process-step::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    border-radius: inherit;
    opacity: 0;
    background:
      radial-gradient(circle at 16% 18%, rgba(143, 196, 255, 0.32), transparent 35%),
      radial-gradient(circle at 100% 0%, rgba(38, 132, 255, 0.28), transparent 42%),
      linear-gradient(145deg, rgba(20, 64, 130, 0.98), rgba(6, 29, 69, 0.98));
    transition: opacity 0.45s ease;
  }

  .process-step + .process-step {
    margin-top: 0;
  }

  .process-step.is-active {
    opacity: 1;
    border-color: rgba(143, 196, 255, 0.38);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.28), inset 0 1px rgba(255, 255, 255, 0.08);
    transform: translateY(0) rotateX(0) scale(1);
  }

  .process-step.is-active::before {
    opacity: 1;
  }

  .process-step h3 {
    margin-top: 12px;
    font-size: 29px;
    line-height: 1.06;
  }

  .process-step p {
    max-width: none;
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.62;
  }

  .process-step > strong {
    margin-top: auto;
    padding-top: 15px;
  }

  .process-icon {
    width: 56px;
    height: 56px;
    margin: 0 0 28px;
    border-radius: 18px;
    transform: translateY(8px) scale(0.9);
    opacity: 0.65;
    transition: transform 0.45s var(--ease), box-shadow 0.45s ease;
  }

  .process-index {
    display: block;
    top: 24px;
    right: 23px;
    font-size: 43px;
  }

  .process-step > small {
    padding-right: 52px;
    font-size: 8px;
    letter-spacing: 0.14em;
  }

  .process-step.is-active .process-icon {
    opacity: 1;
    transform: translateY(0) scale(1);
    box-shadow: 0 16px 36px rgba(12, 91, 213, 0.4);
  }

  .process-figure figcaption {
    right: 18px;
    bottom: 20px;
  }

  .process-visual-top {
    top: 19px;
    left: 19px;
  }

  .process-counter {
    top: 18px;
    right: 18px;
  }

  .process-meter {
    right: 19px;
    bottom: 18px;
    left: 19px;
  }

  .founder-card {
    min-height: 470px;
  }

  .founder-info {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .comparison-slider {
    min-height: 390px;
    border-radius: 22px;
  }

  .comparison-handle {
    width: 56px;
    height: 56px;
    border-width: 3px;
  }

  .comparison-handle svg {
    width: 28px;
  }

  .comparison-label {
    bottom: 16px;
    padding: 9px 13px;
    font-size: 10px;
  }

  .comparison-label-before {
    left: 16px;
  }

  .comparison-label-after {
    right: 16px;
  }

  .comparison-preview-note {
    top: 14px;
    font-size: 8px;
  }

  .area-details {
    grid-template-columns: 1fr;
  }

  .map-heading {
    margin-bottom: 16px;
  }

  .map-canvas {
    height: 440px;
    border-radius: 23px;
  }

  .map-address-card {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 18px;
    grid-template-columns: 1fr;
  }

  .map-address-card > a {
    grid-column: 1;
    grid-row: auto;
    width: fit-content;
    margin-top: 7px;
  }

  .map-live {
    top: 16px;
    right: 16px;
    padding: 9px 11px;
    font-size: 8px;
  }

  .map-pin {
    width: 50px;
    height: 50px;
  }

  .map-pin svg {
    width: 50px;
    height: 50px;
  }

  .map-info {
    right: 18px;
    bottom: 20px;
    left: 18px;
  }

  .map-info strong {
    font-size: 19px;
  }

  .map-expand-hint {
    display: none;
  }

  .map-town {
    font-size: 7px;
  }

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

  .review-card,
  .review-card:first-child {
    grid-column: auto;
    min-height: auto;
  }

  .review-card {
    padding: 26px 22px;
  }

  .contact-copy > p {
    font-size: 15px;
  }

  .contact-options strong {
    font-size: 12px;
  }

  .phone-link {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: inherit;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    opacity: 1;
  }

  .scrolled .phone-link {
    border-color: var(--line);
  }

  .phone-link span {
    display: none;
  }

  .phone-link svg {
    width: 18px;
  }

  body.menu-open .phone-link {
    visibility: hidden;
    opacity: 0;
  }

  .contact-form {
    padding: 26px 20px;
  }

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

  .form-grid .form-full {
    grid-column: auto;
  }

  .footer-main,
  .footer-details {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-main {
    padding-top: 54px;
  }

  .footer-main > p {
    grid-row: auto;
  }

  .footer-top {
    justify-self: start;
  }

  .footer-details {
    gap: 28px;
  }

  .footer-bottom {
    padding: 24px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom .footer-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .footer-credit {
    padding-left: 0;
    border-left: 0;
  }

  .floating-call {
    display: grid;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
