:root {
  --navy-950: #061522;
  --navy-900: #0b1f33;
  --navy-800: #102b46;
  --blue-700: #0d5678;
  --blue-600: #146c94;
  --blue-500: #2386b2;
  --blue-100: #e6f3f8;
  --orange-500: #f59e0b;
  --orange-400: #fbbf24;
  --orange-600: #d97706;
  --surface: #ffffff;
  --surface-soft: #f4f7fa;
  --surface-blue: #edf6fa;
  --text: #172033;
  --muted: #5b6879;
  --line: #dce5ec;
  --success: #117a65;
  --container: 1220px;
  --header-height: 78px;
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 11px;
  --shadow-sm: 0 10px 32px rgba(7, 28, 45, 0.07);
  --shadow-md: 0 20px 60px rgba(7, 28, 45, 0.13);
  --shadow-lg: 0 32px 90px rgba(7, 28, 45, 0.2);
}

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

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open { overscroll-behavior: none; }

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

img { height: auto; }

a {
  color: var(--blue-700);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover { color: var(--navy-900); }

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

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

:focus-visible {
  outline: 3px solid var(--orange-400);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  transform: translateY(-160%);
  border-radius: var(--radius-sm);
  color: var(--surface);
  background: var(--navy-900);
  font-weight: 800;
}

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

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.topbar {
  position: relative;
  z-index: 1120;
  color: #dcecf5;
  background: var(--navy-950);
  font-size: 0.79rem;
}

.topbar__inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar__group { display: flex; align-items: center; gap: 24px; }
.topbar__group span { display: inline-flex; align-items: center; gap: 7px; }
.topbar__group i { color: var(--orange-400); font-style: normal; font-weight: 900; }
.topbar a { color: var(--surface); text-decoration: none; }
.topbar__phone { display: inline-flex; min-height: 38px; align-items: center; gap: 7px; font-weight: 850; }

[data-shared-header] {
  display: contents;
  min-height: calc(38px + var(--header-height));
}

.site-header {
  position: -webkit-sticky;
  position: sticky;
  z-index: 1100;
  top: 0;
  border-bottom: 1px solid rgba(11, 31, 51, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  transition: box-shadow 220ms ease, background-color 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.985);
  box-shadow: 0 12px 35px rgba(7, 28, 45, 0.1);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  gap: 28px;
  transition: min-height 220ms ease;
}

.site-header.is-scrolled .header-inner { min-height: 66px; }

.brand {
  display: inline-flex;
  min-height: 48px;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  color: var(--navy-900);
  text-decoration: none;
}

.brand img {
  width: 48px;
  height: 48px;
  transition: width 220ms ease, height 220ms ease;
}

.site-header.is-scrolled .brand img { width: 42px; height: 42px; }

.brand__text { display: grid; line-height: 1.04; }
.brand__text strong { font-size: 1.02rem; letter-spacing: -0.025em; }
.brand__text small {
  margin-top: 5px;
  color: var(--blue-600);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.115em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  min-width: 0;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
}

.nav-panel-head { display: none; }

.site-nav > a,
.nav-dropdown > summary {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 9px 11px;
  border-radius: 10px;
  color: var(--text);
  font-size: 0.89rem;
  font-weight: 760;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease;
}

.site-nav > a:hover,
.site-nav > a[aria-current="page"],
.nav-dropdown > summary:hover {
  color: var(--blue-700);
  background: var(--surface-blue);
}

.nav-dropdown { position: relative; }
.nav-dropdown > summary { gap: 8px; list-style: none; cursor: pointer; }
.nav-dropdown > summary::-webkit-details-marker { display: none; }
.nav-dropdown > summary::after {
  width: 7px;
  height: 7px;
  margin-top: -4px;
  transform: rotate(45deg);
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transition: transform 180ms ease;
}
.nav-dropdown[open] > summary::after { transform: translateY(3px) rotate(225deg); }

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 270px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-md);
  animation: menu-drop 180ms ease both;
}

.nav-dropdown:not([open]) .nav-dropdown__menu { display: none; }
.nav-dropdown__menu a {
  display: flex;
  min-height: 44px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 9px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}
.nav-dropdown__menu a:hover,
.nav-dropdown__menu a[aria-current="page"] { color: var(--blue-700); background: var(--surface-blue); }

@keyframes menu-drop {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.site-nav .header-call {
  margin-left: 10px;
  padding-inline: 19px;
  color: var(--navy-900);
  background: var(--orange-500);
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.23);
}
.site-nav .header-call:hover { color: var(--navy-900); background: var(--orange-400); }

.header-mobile-actions { display: none; margin-left: auto; gap: 8px; }
.mobile-header-call,
.nav-toggle {
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--navy-900);
  background: var(--surface);
}
.mobile-header-call { display: none; color: var(--navy-900); background: #fff4d9; text-decoration: none; }
.nav-toggle { display: none; cursor: pointer; }

.nav-toggle__lines,
.nav-toggle__lines::before,
.nav-toggle__lines::after {
  width: 22px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}
.nav-toggle__lines { position: relative; }
.nav-toggle__lines::before,
.nav-toggle__lines::after { position: absolute; left: 0; }
.nav-toggle__lines::before { top: -7px; }
.nav-toggle__lines::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__lines { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__lines::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__lines::after { top: 0; transform: rotate(-45deg); }

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 2px solid transparent;
  border-radius: 13px;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  box-shadow: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { color: var(--navy-900); background: var(--orange-500); box-shadow: 0 12px 28px rgba(245, 158, 11, 0.22); }
.btn--primary:hover { color: var(--navy-900); background: var(--orange-400); box-shadow: 0 16px 34px rgba(245, 158, 11, 0.3); }
.btn--secondary { border-color: rgba(255, 255, 255, 0.48); color: var(--surface); background: rgba(255, 255, 255, 0.08); }
.btn--secondary:hover { color: var(--surface); background: rgba(255, 255, 255, 0.16); }
.btn--blue { color: var(--surface); background: var(--blue-600); box-shadow: 0 12px 28px rgba(20, 108, 148, 0.2); }
.btn--blue:hover { color: var(--surface); background: var(--blue-700); }
.btn--outline { border-color: #b6d5e3; color: var(--blue-700); background: var(--surface); }
.btn--outline:hover { color: var(--navy-900); border-color: var(--blue-600); background: var(--surface-blue); }
.btn--lg { min-height: 58px; padding-inline: 28px; font-size: 1.02rem; }

.phone-icon {
  display: inline-block;
  width: 17px;
  height: 17px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-right-color: transparent;
  border-radius: 4px 4px 4px 10px;
  transform: rotate(-45deg);
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--navy-900);
  font-weight: 880;
  line-height: 1.1;
  letter-spacing: -0.04em;
}
h1 { font-size: clamp(2.55rem, 5vw, 4.75rem); }
h2 { font-size: clamp(2rem, 3.6vw, 3.25rem); }
h3 { font-size: 1.28rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 17px;
  color: var(--blue-600);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.eyebrow::before {
  width: 25px;
  height: 3px;
  border-radius: 99px;
  background: var(--orange-500);
  content: "";
}

.hero-v2 {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--surface);
  background:
    radial-gradient(circle at 75% 28%, rgba(35, 134, 178, 0.22), transparent 30%),
    linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 48%, #0b3a55 100%);
}

.hero-v2::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 65%);
  content: "";
}

.hero-v2::after {
  position: absolute;
  z-index: -1;
  right: -180px;
  bottom: -280px;
  width: 620px;
  height: 620px;
  border: 90px solid rgba(255, 255, 255, 0.035);
  border-radius: 50%;
  content: "";
}

.hero-v2__grid {
  display: grid;
  min-height: 690px;
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr);
  align-items: center;
  gap: clamp(44px, 6vw, 86px);
  padding: 72px 0 78px;
}

.hero-v2__copy { position: relative; z-index: 2; max-width: 690px; }
.hero-v2 .eyebrow { color: #aee1f4; }
.hero-v2__brandline { margin: 0 0 13px; color: var(--surface); font-size: 0.98rem; font-weight: 850; }
.hero-v2 h1 { margin-bottom: 20px; color: var(--surface); font-size: clamp(2.55rem, 4.7vw, 4.65rem); }
.hero-v2__lead { max-width: 650px; margin: 0; color: #d7e6ef; font-size: clamp(1.05rem, 1.8vw, 1.25rem); }

.transparency-note {
  max-width: 690px;
  margin: 24px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 4px solid var(--orange-500);
  border-radius: var(--radius-sm);
  color: var(--surface);
  background: rgba(5, 21, 34, 0.52);
  font-size: 0.94rem;
  line-height: 1.58;
  backdrop-filter: blur(8px);
}

.hero-v2__actions,
.hero__actions,
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

.hero-contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 22px;
  color: #c6d9e6;
  font-size: 0.91rem;
  font-weight: 720;
}
.hero-contact-row span { display: inline-flex; align-items: center; gap: 8px; }
.hero-contact-row b { color: var(--orange-400); }

.hero-v2__visual {
  position: relative;
  min-height: 560px;
}
.hero-photo {
  position: absolute;
  inset: 0 0 0 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 34px 34px 90px 34px;
  background: var(--navy-800);
  box-shadow: var(--shadow-lg);
}
.hero-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(6, 21, 34, 0.38));
  content: "";
}
.hero-photo picture,
.hero-photo img { width: 100%; height: 100%; }
.hero-photo img { object-fit: cover; object-position: 54% center; }

.hero-float-card {
  position: absolute;
  z-index: 2;
  display: grid;
  min-width: 190px;
  gap: 2px;
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  color: var(--surface);
  background: rgba(7, 28, 45, 0.83);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
  animation: float-card 5s ease-in-out infinite;
}
.hero-float-card strong { font-size: 0.94rem; }
.hero-float-card span { color: #b9d6e6; font-size: 0.76rem; }
.hero-float-card--top { top: 34px; right: -18px; }
.hero-float-card--bottom { bottom: 40px; left: -12px; animation-delay: -2.5s; }
.hero-service-pills {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 24px;
  left: 52px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.hero-service-pills span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: var(--surface);
  background: rgba(7, 28, 45, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
}

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.service-marquee {
  overflow: hidden;
  color: #dcecf5;
  background: var(--navy-950);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.service-marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.service-marquee__list {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.service-marquee__list li {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 0 22px;
  white-space: nowrap;
  font-size: 0.88rem;
  font-weight: 820;
  letter-spacing: 0.025em;
}
.service-marquee__list li::after { color: var(--orange-400); content: "◆"; font-size: 0.55rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section { padding: 86px 0; }
.section--soft { background: var(--surface-soft); }
.section--blue { background: linear-gradient(135deg, #edf6fa, #f8fbfd); }
.section--navy {
  position: relative;
  overflow: hidden;
  color: #dbe8f1;
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
}
.section--navy::before {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
}
.section--navy > .container { position: relative; }
.section--navy h2,
.section--navy h3 { color: var(--surface); }
.section--compact { padding: 60px 0; }

.section-heading { max-width: 790px; margin-bottom: 40px; }
.section-heading--center { margin-inline: auto; text-align: center; }
.section-heading--center .eyebrow { justify-content: center; }
.section-heading h2 { margin-bottom: 15px; }
.section-heading p { margin: 0; color: var(--muted); font-size: 1.06rem; }
.section--navy .section-heading p { color: #c7d9e5; }

.trust-panel {
  position: relative;
  z-index: 3;
  margin-top: -1px;
  background: var(--surface);
  box-shadow: 0 18px 42px rgba(7, 28, 45, 0.06);
}
.trust-panel__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.trust-panel__item {
  display: grid;
  min-height: 118px;
  align-content: center;
  gap: 8px;
  padding: 22px 18px;
  border-right: 1px solid var(--line);
}
.trust-panel__item:first-child { border-left: 1px solid var(--line); }
.trust-panel__icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid #b9d8e6;
  border-radius: 12px;
  color: var(--blue-700);
  background: var(--surface-blue);
  font-size: 0.76rem;
  font-weight: 900;
}
.trust-panel__item strong { color: var(--navy-900); font-size: 0.9rem; line-height: 1.28; }
.trust-panel__item span:last-child { color: var(--muted); font-size: 0.75rem; line-height: 1.4; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 22px;
}
.service-card {
  position: relative;
  display: flex;
  min-width: 0;
  grid-column: span 4;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.service-card--wide { grid-column: span 6; }
.service-card:hover { transform: translateY(-7px); border-color: #b7d5e2; box-shadow: var(--shadow-md); }
.service-card__media { position: relative; height: 225px; overflow: hidden; background: var(--navy-800); }
.service-card--wide .service-card__media { height: 255px; }
.service-card__media::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(6, 21, 34, 0.54)); content: ""; }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.service-card:hover .service-card__media img { transform: scale(1.035); }
.service-card__label {
  position: absolute;
  z-index: 1;
  left: 18px;
  bottom: 16px;
  padding: 7px 11px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  color: var(--surface);
  background: rgba(6, 21, 34, 0.72);
  font-size: 0.72rem;
  font-weight: 850;
  backdrop-filter: blur(8px);
}
.service-card__body { display: flex; flex: 1; flex-direction: column; padding: 24px; }
.service-card h3 { margin-bottom: 10px; font-size: 1.42rem; }
.service-card p { margin: 0 0 17px; color: var(--muted); }
.service-card__features { display: flex; flex-wrap: wrap; gap: 7px; margin: 0 0 21px; padding: 0; list-style: none; }
.service-card__features li { padding: 5px 9px; border-radius: 999px; color: var(--blue-700); background: var(--surface-blue); font-size: 0.75rem; font-weight: 750; }
.service-card__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: auto; }
.service-card__link { display: inline-flex; min-height: 44px; align-items: center; gap: 8px; color: var(--navy-900); font-weight: 850; text-decoration: none; }
.service-card__link::after { color: var(--orange-600); content: "→"; transition: transform 180ms ease; }
.service-card__link:hover::after { transform: translateX(4px); }
.service-card__call { margin-left: auto; padding-inline: 15px; min-height: 44px; font-size: 0.82rem; }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  align-items: center;
  gap: clamp(42px, 6vw, 86px);
}
.split--top { align-items: start; }
.split h2 { margin-bottom: 18px; }
.split p { color: var(--muted); }

.feature-visual {
  position: relative;
  min-height: 520px;
}
.feature-visual__image {
  position: absolute;
  inset: 0 48px 44px 0;
  overflow: hidden;
  border-radius: 34px 34px 34px 90px;
  box-shadow: var(--shadow-md);
}
.feature-visual__image img { width: 100%; height: 100%; object-fit: cover; }
.feature-visual__card {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(300px, 80%);
  padding: 24px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  color: var(--surface);
  background: linear-gradient(145deg, var(--blue-700), var(--navy-900));
  box-shadow: var(--shadow-md);
}
.feature-visual__card strong { display: block; margin-bottom: 5px; font-size: 1.08rem; }
.feature-visual__card span { color: #cfe0ea; font-size: 0.88rem; }

.feature-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px; margin: 28px 0 0; padding: 0; list-style: none; }
.feature-list li {
  position: relative;
  min-height: 58px;
  padding: 12px 14px 12px 42px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--navy-900);
  background: var(--surface);
  font-size: 0.88rem;
  font-weight: 760;
}
.feature-list li::before {
  position: absolute;
  top: 13px;
  left: 13px;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  color: var(--surface);
  background: var(--success);
  content: "✓";
  font-size: 0.7rem;
}

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  counter-reset: process;
}
.process-timeline::before { position: absolute; top: 29px; right: 8%; left: 8%; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.35) 10% 90%, transparent); content: ""; }
.process-timeline__item { position: relative; z-index: 1; counter-increment: process; }
.process-timeline__number {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  place-items: center;
  border: 7px solid var(--navy-800);
  border-radius: 50%;
  color: var(--navy-900);
  background: var(--orange-500);
  box-shadow: 0 0 0 1px rgba(255,255,255,.18);
  font-weight: 900;
}
.process-timeline__item h3 { margin-bottom: 9px; font-size: 1.02rem; letter-spacing: -0.02em; }
.process-timeline__item p { margin: 0; color: #c7d8e3; font-size: 0.87rem; }

.mid-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--radius-xl);
  color: var(--surface);
  background: linear-gradient(120deg, var(--navy-950), var(--blue-700));
  box-shadow: var(--shadow-md);
}
.mid-cta::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.18;
  background-image: linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  animation: grid-shift 16s linear infinite;
}
.mid-cta::after { position: absolute; z-index: -1; top: -120px; right: -100px; width: 360px; height: 360px; border-radius: 50%; background: rgba(35,134,178,.28); filter: blur(4px); content: ""; }
@keyframes grid-shift { to { background-position: 44px 44px; } }
.mid-cta__inner { display: grid; grid-template-columns: 1.15fr 0.85fr; align-items: center; gap: 36px; padding: clamp(34px, 5vw, 60px); }
.mid-cta h2 { margin-bottom: 12px; color: var(--surface); }
.mid-cta p { margin: 0; color: #d4e4ed; }
.mid-cta__phone { display: inline-flex; min-height: 44px; align-items: center; margin-top: 14px; color: var(--orange-400); font-size: clamp(1.7rem, 3vw, 2.6rem); font-weight: 900; text-decoration: none; }
.mid-cta__action { display: flex; justify-content: flex-end; }

.pricing-layout { align-items: stretch; }
.pricing-copy { padding: 10px 0; }
.pricing-panel {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid #c6dde8;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--surface), #edf6fa);
  box-shadow: var(--shadow-sm);
}
.pricing-panel::after { position: absolute; top: -80px; right: -80px; width: 190px; height: 190px; border: 28px solid rgba(20,108,148,.08); border-radius: 50%; content: ""; }
.pricing-panel h3 { margin-bottom: 20px; }

.check-list,
.plain-list,
.contact-list,
.footer-links,
.district-list { margin: 0; padding: 0; list-style: none; }
.check-list { display: grid; gap: 13px; }
.check-list li { position: relative; padding-left: 32px; }
.check-list li::before {
  position: absolute;
  top: 0.2em;
  left: 0;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  color: var(--surface);
  background: var(--success);
  content: "✓";
  font-size: 0.72rem;
  font-weight: 900;
}

.areas-layout { display: grid; grid-template-columns: minmax(340px, 0.8fr) minmax(0, 1.2fr); align-items: center; gap: clamp(42px, 7vw, 95px); }
.area-visual {
  position: relative;
  display: grid;
  min-height: 470px;
  place-items: center;
  overflow: hidden;
  border-radius: 42px 42px 100px 42px;
  color: var(--surface);
  background: linear-gradient(145deg, var(--navy-900), var(--blue-700));
  box-shadow: var(--shadow-md);
}
.area-visual::before {
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: inherit;
  background-image: radial-gradient(circle, rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: 24px 24px;
  content: "";
}
.area-visual__rings { position: relative; display: grid; width: 270px; height: 270px; place-items: center; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; }
.area-visual__rings::before,
.area-visual__rings::after { position: absolute; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; content: ""; }
.area-visual__rings::before { inset: 36px; }
.area-visual__rings::after { inset: 76px; background: rgba(245,158,11,.12); }
.area-visual__center { position: relative; z-index: 1; text-align: center; }
.area-visual__center strong { display: block; font-size: 1.8rem; letter-spacing: 0.08em; }
.area-visual__center span { color: #bee1f0; font-size: 0.82rem; }
.area-dot { position: absolute; z-index: 2; width: 12px; height: 12px; border: 3px solid var(--navy-800); border-radius: 50%; background: var(--orange-400); box-shadow: 0 0 0 5px rgba(245,158,11,.18); }
.area-dot--1 { top: 92px; left: 84px; }
.area-dot--2 { top: 130px; right: 72px; }
.area-dot--3 { right: 110px; bottom: 84px; }
.area-dot--4 { bottom: 110px; left: 78px; }
.area-visual__caption { position: absolute; right: 26px; bottom: 24px; left: 26px; padding: 13px 15px; border: 1px solid rgba(255,255,255,.16); border-radius: 13px; color: #d6e8f1; background: rgba(6,21,34,.42); font-size: 0.8rem; text-align: center; }

.district-list { display: flex; flex-wrap: wrap; gap: 9px; }
.district-list li,
.district-list a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 8px 15px;
  border: 1px solid #cbd9e2;
  border-radius: 999px;
  color: var(--navy-900);
  background: var(--surface);
  font-weight: 760;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}
.district-list li:hover,
.district-list a:hover { transform: translateY(-2px); border-color: var(--blue-600); background: var(--surface-blue); }
.areas-copy .district-list { margin: 25px 0; }

.area-groups { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.area-group { padding: 26px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow-sm); }
.area-group h3 { margin-bottom: 15px; }
.area-group .district-list { gap: 7px; }
.area-group .district-list li { min-height: 38px; padding: 6px 11px; font-size: 0.86rem; }

.faq-layout { display: grid; grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr); align-items: start; gap: clamp(36px, 6vw, 76px); }
.faq-intro { position: sticky; top: 104px; }
.faq-intro p { color: var(--muted); }
.faq-contact { margin-top: 23px; padding: 18px; border: 1px solid #c5dce7; border-radius: var(--radius-md); background: var(--surface-blue); }
.faq-contact span { display: block; color: var(--muted); font-size: 0.8rem; }
.faq-contact a { display: inline-flex; min-height: 44px; align-items: center; color: var(--navy-900); font-size: 1.35rem; font-weight: 900; text-decoration: none; }
.faq-list { display: grid; max-width: 920px; gap: 11px; }
.faq-list details { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); box-shadow: 0 7px 24px rgba(7,28,45,.04); transition: border-color 180ms ease, box-shadow 180ms ease; }
.faq-list details[open] { border-color: #afd1e0; box-shadow: var(--shadow-sm); }
.faq-list summary { display: flex; min-height: 64px; align-items: center; justify-content: space-between; gap: 18px; padding: 17px 20px; color: var(--navy-900); font-weight: 820; list-style: none; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { display: grid; width: 30px; height: 30px; flex: 0 0 30px; place-items: center; border-radius: 50%; color: var(--blue-700); background: var(--surface-blue); content: "+"; font-size: 1.25rem; transition: transform 180ms ease; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { margin: 0; padding: 0 20px 20px; color: var(--muted); animation: faq-in 180ms ease both; }
@keyframes faq-in { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: translateY(0); } }

.info-panel {
  padding: 32px;
  border-radius: var(--radius-lg);
  color: var(--surface);
  background: linear-gradient(145deg, var(--blue-700), var(--navy-900));
  box-shadow: var(--shadow-md);
}
.info-panel h2,
.info-panel h3 { color: var(--surface); }
.info-panel p { color: #dce9f1; }
.info-panel > :last-child { margin-bottom: 0; }

.notice { padding: 22px 24px; border: 1px solid #f1d18d; border-left: 5px solid var(--orange-500); border-radius: var(--radius-md); color: #57350a; background: #fff8e8; }
.notice p { margin: 0; color: inherit; }

.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-xl); color: var(--surface); background: linear-gradient(120deg, var(--blue-700), var(--navy-900)); box-shadow: var(--shadow-md); }
.cta-band::after { position: absolute; right: -120px; bottom: -160px; width: 340px; height: 340px; border: 54px solid rgba(255,255,255,.05); border-radius: 50%; content: ""; }
.cta-band__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.3fr 0.7fr; align-items: center; gap: 28px; padding: clamp(32px, 5vw, 56px); }
.cta-band h2 { margin-bottom: 10px; color: var(--surface); }
.cta-band p { margin: 0; color: #dbe8f1; }
.cta-band .cta-actions { margin: 0; justify-content: flex-end; }

.breadcrumb-wrap { border-bottom: 1px solid var(--line); background: #f4f8fa; }
.breadcrumb { display: flex; min-height: 48px; align-items: center; flex-wrap: wrap; gap: 8px; margin: 0; padding: 8px 0; color: var(--muted); font-size: 0.84rem; list-style: none; }
.breadcrumb li { display: inline-flex; align-items: center; gap: 8px; }
.breadcrumb li:not(:last-child)::after { color: #98a7b4; content: "/"; }
.breadcrumb a { color: var(--blue-700); font-weight: 750; }

.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 82px 0;
  color: var(--surface);
  background:
    radial-gradient(circle at 82% 25%, rgba(35,134,178,.5), transparent 28%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
}
.page-hero::before { position: absolute; z-index: -1; inset: 0; opacity: 0.12; background-image: linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px); background-size: 52px 52px; content: ""; }
.page-hero::after { position: absolute; z-index: -1; right: -100px; bottom: -190px; width: 430px; height: 430px; border: 60px solid rgba(255,255,255,.045); border-radius: 50%; content: ""; }
.page-hero__inner { position: relative; z-index: 1; max-width: 860px; }
.page-hero h1 { margin-bottom: 18px; color: var(--surface); font-size: clamp(2.5rem, 5vw, 4.15rem); }
.page-hero p { max-width: 760px; margin: 0; color: #d9e7ef; font-size: 1.12rem; }

.page-hero--service { display: grid; min-height: 610px; align-items: center; padding: 70px 0; background: var(--navy-900); }
.page-hero__media,
.page-hero__media::after { position: absolute; inset: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.page-hero__media::after { background: linear-gradient(90deg, rgba(6,21,34,.98) 0%, rgba(6,21,34,.94) 40%, rgba(6,21,34,.48) 72%, rgba(6,21,34,.18) 100%); content: ""; }
.page-hero--service .page-hero__inner { max-width: 790px; }
.page-hero--service .transparency-note { margin-top: 22px; }

.hero-facts { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0 0; padding: 0; list-style: none; }
.hero-facts li { display: inline-flex; min-height: 38px; align-items: center; padding: 7px 12px; border: 1px solid rgba(255,255,255,.23); border-radius: 999px; color: var(--surface); background: rgba(6,21,34,.62); font-size: 0.84rem; font-weight: 760; }

.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; align-items: start; gap: 58px; }
.prose { min-width: 0; }
.prose h2 { margin: 43px 0 15px; padding-top: 2px; font-size: clamp(1.65rem, 3vw, 2.35rem); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 29px 0 10px; }
.prose p,
.prose li { color: #465466; }
.prose p { max-width: 78ch; }
.prose ul,
.prose ol { padding-left: 1.25rem; }
.prose li + li { margin-top: 8px; }
.prose .notice { margin: 28px 0; }
.prose a { font-weight: 720; }

.sidebar { position: sticky; top: 94px; display: grid; gap: 18px; }
.sidebar-card { padding: 25px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow-sm); }
.sidebar-card--dark { color: #dbe8f1; background: linear-gradient(145deg, var(--navy-900), var(--navy-800)); }
.sidebar-card h2,
.sidebar-card h3 { margin-bottom: 14px; font-size: 1.2rem; letter-spacing: -0.025em; }
.sidebar-card--dark h2,
.sidebar-card--dark h3 { color: var(--surface); }
.sidebar-card p { margin: 0 0 17px; color: inherit; }
.sidebar-card .btn { width: 100%; }
.sidebar-card .plain-list { display: grid; gap: 7px; }
.sidebar-card .plain-list a { display: block; min-height: 42px; padding: 8px 0; font-weight: 760; }

.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.card { position: relative; display: flex; min-width: 0; flex-direction: column; padding: 27px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow-sm); transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease; }
.card:hover { transform: translateY(-5px); border-color: #b9d4e0; box-shadow: var(--shadow-md); }
.card__icon { display: grid; width: 52px; height: 52px; margin-bottom: 20px; place-items: center; border: 1px solid #c5dde8; border-radius: 15px; color: var(--blue-700); background: var(--surface-blue); font-size: 1.1rem; font-weight: 900; }
.card h3 { margin-bottom: 11px; }
.card p { margin: 0 0 21px; color: var(--muted); }
.card__link { margin-top: auto; font-weight: 820; text-decoration: none; }
.card__link::after { content: " →"; }

.process-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; counter-reset: process; }
.process-step { position: relative; padding: 65px 22px 24px; border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius-lg); background: rgba(255,255,255,.06); counter-increment: process; }
.process-step::before { position: absolute; top: 18px; left: 20px; display: grid; width: 35px; height: 35px; place-items: center; border-radius: 50%; color: var(--navy-900); background: var(--orange-500); content: counter(process); font-weight: 900; }
.process-step h3 { margin-bottom: 9px; font-size: 1.04rem; }
.process-step p { margin: 0; color: #c9d7e1; font-size: 0.91rem; }

.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.contact-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow-sm); }
.contact-card span { display: block; margin-bottom: 7px; color: var(--blue-700); font-size: 0.76rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }
.contact-card strong,
.contact-card a { color: var(--navy-900); font-size: 1.05rem; font-weight: 820; }

.prefooter-cta {
  position: relative;
  overflow: hidden;
  padding: 58px 0 36px;
  color: var(--surface);
  background: linear-gradient(120deg, #0b334d, var(--navy-900));
}
.prefooter-cta::before { position: absolute; top: -120px; right: 4%; width: 340px; height: 340px; border: 54px solid rgba(255,255,255,.045); border-radius: 50%; content: ""; }
.prefooter-cta__inner { position: relative; display: grid; grid-template-columns: 1.2fr 0.8fr; align-items: center; gap: 36px; }
.prefooter-cta .eyebrow { color: #aee1f4; }
.prefooter-cta h2 { margin-bottom: 11px; color: var(--surface); }
.prefooter-cta__inner p { margin: 0; color: #c9dde8; }
.prefooter-cta__action { display: grid; justify-items: end; gap: 10px; }
.call-number { display: inline-flex; min-height: 44px; align-items: center; color: var(--surface); font-size: clamp(1.45rem, 2.6vw, 2.15rem); font-weight: 900; text-decoration: none; }
.prefooter-cta__note { position: relative; margin: 28px 0 0; padding: 15px 17px; border: 1px solid rgba(255,255,255,.14); border-left: 4px solid var(--orange-500); border-radius: var(--radius-sm); color: #dce8ef; background: rgba(6,21,34,.34); font-size: 0.88rem; }

.site-footer { color: #c4d2dc; background: var(--navy-950); }
.footer-grid { display: grid; grid-template-columns: 1.35fr 0.72fr 0.72fr 1fr; gap: 44px; padding: 62px 0 44px; }
.site-footer .brand { color: var(--surface); }
.site-footer .brand__text small { color: #7dc4e2; }
.footer-about { max-width: 420px; }
.footer-about > p { margin: 20px 0 0; }
.footer-transparency { margin-top: 19px; padding: 14px; border: 1px solid rgba(255,255,255,.14); border-left: 4px solid var(--orange-500); border-radius: var(--radius-sm); color: var(--surface); background: rgba(255,255,255,.035); font-size: 0.86rem; }
.site-footer h2 { margin-bottom: 18px; color: var(--surface); font-size: 1rem; letter-spacing: 0; }
.footer-links { display: grid; gap: 8px; }
.footer-links a { display: inline-flex; min-height: 44px; align-items: center; color: #c4d2dc; text-decoration: none; }
.footer-links a:hover { color: var(--surface); transform: translateX(2px); }
.contact-list { display: grid; gap: 13px; }
.contact-list li { font-size: 0.9rem; }
.contact-list li span { display: block; color: #7690a1; font-size: 0.69rem; font-weight: 850; letter-spacing: 0.09em; text-transform: uppercase; }
.contact-list a { color: var(--surface); font-weight: 850; }
.footer-phone { display: inline-flex; min-height: 44px; align-items: center; font-size: 1.2rem; text-decoration: none; }
.footer-legal { display: grid; min-height: 82px; grid-template-columns: auto 1fr auto; align-items: center; gap: 22px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.11); font-size: 0.82rem; }
.footer-legal p { margin: 0; }
.footer-legal__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 17px; }
.footer-legal__links a,
.design-credit { color: #b9cad5; }
.footer-legal__links a,
.design-credit { display: inline-flex; min-width: 44px; min-height: 44px; align-items: center; }
.design-credit { font-weight: 760; text-decoration: none; }
.design-credit:hover { color: var(--surface); }

.mobile-call-bar { display: none; }

.reveal { opacity: 1; transform: none; }
.reveal-ready .reveal { opacity: 0; transform: translateY(22px); transition: opacity 560ms ease var(--reveal-delay, 0ms), transform 560ms ease var(--reveal-delay, 0ms); }
.reveal-ready .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1120px) {
  .header-inner { gap: 15px; }
  .site-nav > a,
  .nav-dropdown > summary { padding-inline: 8px; font-size: 0.83rem; }
  .site-nav .header-call { padding-inline: 13px; }
  .trust-panel__grid { grid-template-columns: repeat(3, 1fr); }
  .trust-panel__item:nth-child(3n + 1) { border-left: 1px solid var(--line); }
  .trust-panel__item { border-bottom: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1.2fr 0.75fr 0.75fr; }
  .footer-grid > :last-child { grid-column: 1 / -1; }
}

@media (max-width: 960px) {
  :root { --header-height: 68px; }
  body.menu-open::before { position: fixed; z-index: 1040; inset: 0; background: rgba(6,21,34,.58); content: ""; backdrop-filter: blur(2px); }
  .site-header { backdrop-filter: none; }
  .topbar__group span:nth-child(2),
  .topbar__group--right span { display: none; }
  .header-mobile-actions { display: flex; }
  .mobile-header-call,
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: fixed;
    z-index: 1050;
    top: var(--menu-top, calc(38px + var(--header-height)));
    right: 0;
    bottom: 0;
    display: flex;
    width: min(88vw, 390px);
    overflow-y: auto;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    gap: 4px;
    padding: 18px;
    border-left: 1px solid var(--line);
    background: var(--surface);
    box-shadow: -24px 0 60px rgba(6,21,34,.2);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateX(0) scaleX(0.97);
    transform-origin: right center;
    transition: opacity 220ms ease, transform 260ms ease, visibility 0s linear 260ms;
  }
  .site-nav.is-open { opacity: 1; pointer-events: auto; visibility: visible; transform: translateX(0) scaleX(1); transition-delay: 0s; }
  .site-header.is-scrolled .site-nav { top: var(--menu-top, var(--header-height)); }
  .nav-panel-head { display: grid; margin: -18px -18px 12px; padding: 20px; color: var(--surface); background: linear-gradient(135deg, var(--navy-900), var(--blue-700)); }
  .nav-panel-head strong { font-size: 1.15rem; }
  .nav-panel-head span { color: #c8e0eb; font-size: 0.78rem; }
  .site-nav > a,
  .nav-dropdown > summary { width: 100%; min-height: 50px; padding: 12px 14px; font-size: 0.98rem; }
  .nav-dropdown__menu { position: static; width: 100%; margin-top: 4px; box-shadow: none; }
  .site-nav .header-call { margin: 10px 0 0; justify-content: center; }

  .hero-v2__grid { min-height: auto; grid-template-columns: 1fr; gap: 46px; padding: 66px 0 72px; }
  .hero-v2__copy { max-width: 760px; }
  .hero-v2__visual { min-height: 500px; }
  .hero-photo { left: 0; }
  .trust-panel__grid { grid-template-columns: repeat(3, 1fr); }
  .service-card,
  .service-card--wide { grid-column: span 6; }
  .split,
  .areas-layout,
  .faq-layout,
  .content-grid { grid-template-columns: 1fr; }
  .feature-visual { order: -1; max-width: 720px; width: 100%; margin-inline: auto; }
  .process-timeline { grid-template-columns: repeat(3, 1fr); row-gap: 28px; }
  .process-timeline::before { display: none; }
  .mid-cta__inner,
  .prefooter-cta__inner,
  .cta-band__inner { grid-template-columns: 1fr; }
  .mid-cta__action,
  .prefooter-cta__action { justify-content: start; justify-items: start; }
  .faq-intro { position: static; }
  .sidebar { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-grid > :last-child { grid-column: 1 / -1; }
  .footer-legal { grid-template-columns: 1fr; justify-items: start; }
  .footer-legal__links { justify-content: flex-start; }
}

@media (max-width: 700px) {
  body { padding-bottom: calc(74px + env(safe-area-inset-bottom)); }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .topbar__inner { justify-content: center; }
  .topbar__group--right { display: none; }
  .brand { gap: 9px; }
  .brand img { width: 43px; height: 43px; }
  .brand__text strong { font-size: 0.94rem; }
  .brand__text small { font-size: 0.58rem; }
  .header-mobile-actions { gap: 6px; }
  .mobile-header-call,
  .nav-toggle { width: 44px; height: 44px; }

  h1 { font-size: clamp(2.15rem, 10.5vw, 3.15rem); }
  h2 { font-size: clamp(1.75rem, 8.2vw, 2.45rem); }
  .hero-v2__grid { gap: 32px; padding: 44px 0 48px; }
  .hero-v2 h1 { margin-bottom: 14px; font-size: clamp(2.2rem, 10.7vw, 3.25rem); }
  .hero-v2__brandline { margin-bottom: 10px; }
  .hero-v2__lead { font-size: 0.98rem; line-height: 1.55; }
  .hero-v2 .transparency-note { margin-top: 16px; padding: 11px 12px; font-size: 0.86rem; }
  .hero-v2__actions,
  .hero__actions,
  .cta-actions { flex-direction: column; gap: 9px; margin-top: 18px; }
  .hero-v2__actions .btn,
  .hero__actions .btn,
  .cta-actions .btn { width: 100%; }
  .hero-contact-row { margin-top: 17px; gap: 6px 14px; font-size: 0.82rem; }
  .hero-v2__visual { min-height: 300px; }
  .hero-photo { inset: 0; border-radius: 24px 24px 54px 24px; }
  .hero-photo img { object-position: center; }
  .hero-float-card { min-width: 154px; padding: 11px 13px; }
  .hero-float-card--top { top: 14px; right: 10px; }
  .hero-float-card--bottom { bottom: 14px; left: 10px; }
  .hero-service-pills { display: none; }
  .service-marquee__list { min-height: 52px; }
  .service-marquee__list li { padding-inline: 16px; font-size: 0.8rem; }

  .section { padding: 54px 0; }
  .section--compact { padding: 44px 0; }
  .section-heading { margin-bottom: 28px; }
  .section-heading p { font-size: 0.98rem; }
  .trust-panel__grid { grid-template-columns: repeat(2, 1fr); }
  .trust-panel__item { min-height: 106px; padding: 17px 14px; }
  .trust-panel__item:nth-child(odd) { border-left: 1px solid var(--line); }
  .service-grid { gap: 16px; }
  .service-card,
  .service-card--wide { grid-column: 1 / -1; }
  .service-card__media,
  .service-card--wide .service-card__media { height: 215px; }
  .service-card__body { padding: 21px; }
  .service-card__actions { align-items: stretch; flex-direction: column; }
  .service-card__call { width: 100%; margin-left: 0; }
  .feature-visual { min-height: 390px; }
  .feature-visual__image { inset: 0 24px 60px 0; border-radius: 26px 26px 26px 60px; }
  .feature-visual__card { width: min(280px, 86%); padding: 19px; }
  .feature-list { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: 1fr; gap: 0; }
  .process-timeline__item { position: relative; min-height: 128px; padding: 0 0 26px 78px; }
  .process-timeline__item:not(:last-child)::after { position: absolute; top: 52px; bottom: 0; left: 28px; width: 1px; background: rgba(255,255,255,.2); content: ""; }
  .process-timeline__number { position: absolute; top: 0; left: 0; margin: 0; }
  .mid-cta { border-radius: var(--radius-lg); }
  .mid-cta__inner { padding: 29px 22px; }
  .mid-cta__phone { font-size: 1.55rem; }
  .mid-cta__action .btn { width: 100%; }
  .pricing-panel { padding: 24px; }
  .area-visual { min-height: 380px; border-radius: 30px 30px 70px 30px; }
  .area-visual__rings { width: 220px; height: 220px; }
  .area-visual__caption { font-size: 0.74rem; }
  .area-groups,
  .cards,
  .process-grid,
  .contact-grid,
  .sidebar { grid-template-columns: 1fr; }
  .faq-list summary { min-height: 60px; padding: 15px 16px; font-size: 0.94rem; }
  .faq-list details p { padding: 0 16px 18px; }
  .faq-contact a { font-size: 1.2rem; }

  .page-hero { padding: 58px 0; }
  .page-hero h1 { margin-bottom: 12px; font-size: clamp(2.15rem, 10vw, 2.85rem); }
  .page-hero p { font-size: 1rem; line-height: 1.58; }
  .page-hero--service { min-height: 590px; padding: 42px 0 48px; }
  .page-hero__media img { object-position: 60% center; }
  .page-hero__media::after { background: linear-gradient(90deg, rgba(6,21,34,.98), rgba(6,21,34,.79)); }
  .page-hero--service .transparency-note { margin-top: 15px; padding: 10px 12px; font-size: 0.86rem; }
  .hero-facts { margin-top: 14px; }
  .hero-facts li { min-height: 34px; padding: 6px 10px; font-size: 0.78rem; }
  .content-grid { gap: 34px; }
  .prose h2 { margin-top: 35px; }
  .cta-band { border-radius: var(--radius-lg); }
  .cta-band__inner { padding: 28px 22px; }

  .prefooter-cta { padding: 46px 0 28px; }
  .prefooter-cta__action { width: 100%; }
  .prefooter-cta__action .btn { width: 100%; }
  .prefooter-cta__note { margin-top: 22px; font-size: 0.82rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding: 48px 0 36px; }
  .footer-grid > :last-child { grid-column: auto; }
  .footer-legal { gap: 15px; }
  .mobile-call-bar {
    position: fixed;
    z-index: 1200;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    height: calc(74px + env(safe-area-inset-bottom));
    align-items: center;
    justify-content: center;
    padding: 8px 14px calc(8px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(11,31,51,.15);
    background: rgba(255,255,255,.97);
    box-shadow: 0 -10px 28px rgba(7,28,45,.13);
    backdrop-filter: blur(12px);
  }
  .mobile-call-bar a { width: 100%; max-width: 520px; min-height: 56px; }
  .mobile-call-bar a > span:last-child { display: grid; line-height: 1.05; }
  .mobile-call-bar small { margin-top: 4px; font-size: 0.72rem; font-weight: 750; }
}

@media (max-width: 380px) {
  .brand__text strong { font-size: 0.86rem; }
  .brand__text small { letter-spacing: 0.08em; }
  .mobile-header-call { display: none; }
  .hero-v2 h1 { font-size: clamp(2rem, 10.4vw, 2.65rem); }
  .trust-panel__grid { grid-template-columns: 1fr; }
  .trust-panel__item,
  .trust-panel__item:nth-child(odd) { border-left: 1px solid var(--line); }
  .hero-v2__visual { min-height: 270px; }
  .hero-float-card--bottom { display: none; }
}

/* Premium ortak header ve navigasyon */
.nav-backdrop,
.nav-panel-close,
.nav-panel-footer { display: none; }

.topbar {
  background: linear-gradient(90deg, var(--navy-950), #09263a 55%, var(--navy-950));
  box-shadow: inset 0 -1px rgba(255,255,255,.06);
}

.topbar__group i { display: inline-grid; min-width: 17px; place-items: center; }
.topbar__phone { padding-inline: 10px; border-radius: 9px; transition: color 180ms ease, background-color 180ms ease; }
.topbar__phone:hover { color: var(--surface); background: rgba(255,255,255,.08); }

.site-header {
  border-bottom-color: rgba(11,31,51,.07);
  background: rgba(255,255,255,.975);
  box-shadow: 0 8px 28px rgba(7,28,45,.045);
}

.header-inner { min-height: 82px; gap: 22px; }
.site-header.is-scrolled .header-inner { min-height: 68px; }
.site-header.is-scrolled { box-shadow: 0 14px 42px rgba(7,28,45,.11); }

.header-inner > .brand { padding: 5px 0; }
.header-inner > .brand img { filter: drop-shadow(0 8px 15px rgba(11,31,51,.12)); }
.header-inner > .brand:hover { color: var(--navy-900); }
.header-inner > .brand:hover img { transform: translateY(-1px); }

.header-divider { display: block; width: 1px; height: 34px; flex: 0 0 1px; background: linear-gradient(transparent, var(--line), transparent); }

.site-nav {
  gap: 3px;
  padding: 5px;
  border: 1px solid #e5edf2;
  border-radius: 17px;
  background: #f8fafc;
  box-shadow: inset 0 1px var(--surface), 0 10px 25px rgba(7,28,45,.035);
}

.site-nav > a,
.nav-dropdown > summary {
  position: relative;
  min-height: 46px;
  padding: 10px 13px;
  border-radius: 12px;
  font-size: .88rem;
  transition: color 180ms ease, background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.site-nav > a:hover,
.nav-dropdown > summary:hover { transform: translateY(-1px); color: var(--blue-700); background: var(--surface); box-shadow: 0 7px 18px rgba(7,28,45,.07); }
.site-nav > a[aria-current="page"] { color: var(--blue-700); background: var(--surface); box-shadow: 0 7px 18px rgba(7,28,45,.075); }
.site-nav > a[aria-current="page"]::after {
  position: absolute;
  right: 13px;
  bottom: 6px;
  left: 13px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--orange-500), var(--blue-500));
  content: "";
}

.nav-dropdown__menu { top: calc(100% + 13px); padding: 11px; border-color: #d8e4eb; box-shadow: 0 25px 70px rgba(7,28,45,.18); }
.nav-dropdown__menu::before { position: absolute; top: -7px; left: 28px; width: 14px; height: 14px; transform: rotate(45deg); border-top: 1px solid #d8e4eb; border-left: 1px solid #d8e4eb; background: var(--surface); content: ""; }
.nav-dropdown__menu a { position: relative; z-index: 1; }

.site-nav .header-call {
  min-width: 157px;
  min-height: 54px;
  margin-left: 7px;
  gap: 10px;
  padding: 7px 15px;
  border-radius: 13px;
  box-shadow: 0 12px 28px rgba(245,158,11,.25);
}
.site-nav .header-call:hover { transform: translateY(-1px); box-shadow: 0 16px 32px rgba(245,158,11,.32); }
.header-call__icon { display: grid; width: 31px; height: 31px; flex: 0 0 31px; place-items: center; border-radius: 10px; background: rgba(255,255,255,.42); }
.header-call__icon .phone-icon { width: 14px; height: 14px; }
.header-call__text { display: grid; line-height: 1.08; text-align: left; }
.header-call__text strong { font-size: .86rem; }
.header-call__text small { margin-top: 4px; font-size: .67rem; font-weight: 820; white-space: nowrap; }

@media (max-width: 1120px) {
  :root { --header-height: 74px; }
  html { scrollbar-gutter: stable; }
  html.menu-open { overscroll-behavior: none; }
  body.menu-open { overflow: visible; overscroll-behavior: none; }
  body.menu-open::before { content: none; }
  [data-shared-header] { min-height: calc(38px + var(--header-height)); }
  .site-header { z-index: 1300; backdrop-filter: none; }
  .header-inner,
  .site-header.is-scrolled .header-inner { min-height: var(--header-height); }
  .header-divider { display: none; }
  .header-mobile-actions { display: flex; }
  .mobile-header-call,
  .nav-toggle { display: inline-flex; }
  .mobile-header-call,
  .nav-toggle { border-color: #d8e4eb; box-shadow: 0 7px 18px rgba(7,28,45,.07); }
  .mobile-header-call:hover,
  .nav-toggle:hover { color: var(--navy-900); border-color: #b9d4e0; background: var(--surface-blue); }
  .nav-toggle[aria-expanded="true"] { border-color: rgba(245,158,11,.72); background: #fff7e3; box-shadow: 0 0 0 4px rgba(245,158,11,.12); }

  .nav-backdrop {
    position: fixed;
    z-index: 1250;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: rgba(4,18,30,.64);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    backdrop-filter: blur(4px);
    transition: opacity 240ms ease, visibility 0s linear 240ms;
  }
  .nav-backdrop.is-visible { opacity: 1; pointer-events: auto; visibility: visible; transition-delay: 0s; }

  .site-nav {
    position: fixed;
    z-index: 1310;
    top: calc(38px + var(--header-height));
    right: 0;
    bottom: 0;
    display: flex;
    width: min(92vw, 430px);
    overflow-x: hidden;
    overflow-y: auto;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    gap: 5px;
    padding: 0 20px max(24px, env(safe-area-inset-bottom));
    border: 0;
    border-left: 1px solid rgba(11,31,51,.1);
    border-radius: 28px 0 0 28px;
    background: var(--surface);
    box-shadow: -34px 0 90px rgba(4,18,30,.28);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    clip-path: inset(0 0 0 100%);
    transform: scaleX(.985);
    transform-origin: right center;
    overscroll-behavior: contain;
    transition: clip-path 300ms cubic-bezier(.22,.85,.25,1), opacity 220ms ease, transform 300ms cubic-bezier(.22,.85,.25,1), visibility 0s linear 300ms;
  }
  .site-nav.is-open { opacity: 1; pointer-events: auto; visibility: visible; clip-path: inset(0); transform: scaleX(1); transition-delay: 0s; }
  .site-header.is-scrolled .site-nav { top: var(--header-height); }

  .nav-panel-head {
    position: sticky;
    z-index: 2;
    top: 0;
    display: flex;
    min-height: 118px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 0 -20px 13px;
    padding: 23px 20px;
    border-radius: 28px 0 24px 0;
    color: var(--surface);
    background: radial-gradient(circle at 15% 0%, rgba(35,134,178,.32), transparent 46%), linear-gradient(135deg, var(--navy-950), var(--blue-700));
    box-shadow: 0 12px 32px rgba(7,28,45,.16);
  }
  .nav-panel-brand { display: grid; }
  .nav-panel-brand > span { color: var(--orange-400); font-size: .66rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
  .nav-panel-brand strong { margin-top: 5px; color: var(--surface); font-size: 1.18rem; line-height: 1.15; }
  .nav-panel-brand small { margin-top: 5px; color: #c4dce8; font-size: .76rem; }
  .nav-panel-close {
    position: relative;
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 15px;
    color: var(--surface);
    background: rgba(255,255,255,.1);
    cursor: pointer;
    transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
  }
  .nav-panel-close:hover { transform: rotate(3deg); border-color: rgba(255,255,255,.42); background: rgba(255,255,255,.17); }
  .nav-panel-close span,
  .nav-panel-close span::after { width: 21px; height: 2px; border-radius: 99px; background: currentColor; content: ""; }
  .nav-panel-close span { transform: rotate(45deg); }
  .nav-panel-close span::after { display: block; transform: rotate(90deg); }

  .site-nav > a,
  .nav-dropdown > summary {
    width: 100%;
    min-height: 55px;
    justify-content: flex-start;
    padding: 13px 15px 13px 44px;
    border: 1px solid transparent;
    border-radius: 14px;
    color: var(--navy-900);
    background: transparent;
    box-shadow: none;
    font-size: .98rem;
    transform: none;
  }
  .site-nav > a::before,
  .nav-dropdown > summary::before {
    position: absolute;
    left: 17px;
    width: 9px;
    height: 9px;
    border: 2px solid #8aabba;
    border-radius: 50%;
    content: "";
  }
  .site-nav > a::after { display: none; }
  .site-nav > a:hover,
  .site-nav > a[aria-current="page"],
  .nav-dropdown > summary:hover,
  .nav-dropdown[open] > summary { color: var(--blue-700); border-color: #d3e5ec; background: var(--surface-blue); box-shadow: none; transform: none; }
  .site-nav > a:hover::before,
  .site-nav > a[aria-current="page"]::before,
  .nav-dropdown > summary:hover::before,
  .nav-dropdown[open] > summary::before { border-color: var(--orange-500); background: var(--orange-500); box-shadow: 0 0 0 5px rgba(245,158,11,.12); }
  .nav-dropdown { width: 100%; }
  .nav-dropdown > summary::after { margin-left: auto; }
  .nav-dropdown__menu {
    position: static;
    width: 100%;
    margin: 5px 0 8px;
    padding: 6px 6px 6px 23px;
    border: 0;
    border-left: 1px solid #d5e4eb;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  .nav-dropdown__menu::before { display: none; }
  .nav-dropdown__menu a { min-height: 47px; padding: 10px 13px; border-radius: 11px; font-size: .91rem; }

  .site-nav .header-call {
    width: 100%;
    min-height: 64px;
    margin: 10px 0 0;
    justify-content: flex-start;
    padding: 9px 14px;
    border: 1px solid rgba(217,119,6,.18);
    border-radius: 16px;
  }
  .site-nav .header-call::before { display: none; }
  .header-call__text strong { font-size: .95rem; }
  .header-call__text small { font-size: .75rem; }

  .nav-panel-footer {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 8px;
    margin-top: auto;
    padding-top: 22px;
  }
  .nav-panel-footer span { display: grid; min-height: 52px; place-items: center; padding: 9px; border: 1px solid #d9e6ec; border-radius: 13px; color: var(--muted); background: var(--surface-soft); font-size: .72rem; font-weight: 780; text-align: center; }
}

@media (max-width: 700px) {
  :root { --header-height: 68px; }
  [data-shared-header] { min-height: calc(38px + var(--header-height)); }
  .header-inner,
  .site-header.is-scrolled .header-inner { min-height: var(--header-height); }
  .site-nav { top: var(--menu-top, calc(38px + var(--header-height))); width: min(94vw, 410px); border-radius: 23px 0 0 23px; }
  .site-header.is-scrolled .site-nav { top: var(--menu-top, var(--header-height)); }
  .nav-panel-head { min-height: 106px; border-radius: 23px 0 20px 0; }
  .nav-panel-brand strong { font-size: 1.08rem; }
}

@media (max-width: 380px) {
  .mobile-header-call { display: none; }
  .site-nav { width: 96vw; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .service-marquee__track { width: 100%; animation: none; }
  .service-marquee__list { flex-wrap: wrap; justify-content: center; }
  .service-marquee__list[aria-hidden="true"] { display: none; }
  .reveal-ready .reveal { opacity: 1; transform: none; }
}

@media print {
  .topbar,
  .site-header,
  .mobile-call-bar,
  .hero-v2__actions,
  .hero__actions,
  .cta-actions,
  .service-marquee { display: none !important; }
  body { padding: 0; color: #000; }
  .section { padding: 30px 0; }
}
