:root {
  --navy-950: #09182c;
  --navy-900: #10233f;
  --navy-800: #17385f;
  --blue-700: #1559bd;
  --blue-600: #1b6ddd;
  --blue-100: #e8f1ff;
  --green-700: #08734f;
  --green-600: #0a9768;
  --green-500: #13ab75;
  --green-100: #e4f7ef;
  --yellow: #f5c72c;
  --red: #e7313e;
  --ink: #172033;
  --muted: #5c6879;
  --line: #dce4ee;
  --surface: #ffffff;
  --surface-soft: #f4f8fc;
  --surface-blue: #eef5ff;
  --shadow-sm: 0 8px 24px rgba(16, 35, 63, 0.08);
  --shadow-md: 0 18px 48px rgba(16, 35, 63, 0.13);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1180px;
  --header-height: 86px;
  --focus: 0 0 0 4px rgba(27, 109, 221, 0.25);
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--blue-700);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--green-700);
}

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

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

:focus-visible {
  outline: 0;
  box-shadow: var(--focus);
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--navy-950);
  line-height: 1.14;
  letter-spacing: -0.025em;
}

h1 {
  margin-bottom: 1.3rem;
  font-size: clamp(2.45rem, 5.2vw, 4.8rem);
  font-weight: 850;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  font-weight: 800;
}

h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.28rem, 2vw, 1.65rem);
  font-weight: 750;
}

p:last-child {
  margin-bottom: 0;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.7rem;
  left: 0.7rem;
  padding: 0.75rem 1rem;
  color: #fff;
  background: var(--navy-950);
  border-radius: 0.6rem;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.icon {
  width: 1.25em;
  height: 1.25em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: var(--green-700);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2rem;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--blue-600), var(--green-500));
  border-radius: 99px;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.07rem, 1.7vw, 1.24rem);
  line-height: 1.7;
}

.text-muted {
  color: var(--muted);
}

.text-gradient {
  color: var(--green-600);
}

.section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.section--soft {
  background: var(--surface-soft);
}

.section--blue {
  background: var(--surface-blue);
}

.section--navy {
  color: #fff;
  background: var(--navy-950);
}

.section--navy h2,
.section--navy h3,
.section--navy .eyebrow {
  color: #fff;
}

.section-head {
  max-width: 760px;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-head p {
  color: var(--muted);
  font-size: 1.08rem;
}

.section--navy .section-head p {
  color: #becce0;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.btn {
  display: inline-flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.72rem 1.3rem;
  border: 1px solid transparent;
  border-radius: 0.78rem;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-700), #283ee3);
  box-shadow: 0 10px 24px rgba(27, 82, 193, 0.22);
}

.btn--primary:hover {
  color: #fff;
  box-shadow: 0 14px 28px rgba(27, 82, 193, 0.3);
}

.btn--green {
  color: #fff;
  background: var(--green-600);
  box-shadow: 0 10px 24px rgba(10, 151, 104, 0.22);
}

.btn--green:hover {
  color: #fff;
  background: var(--green-700);
}

.btn--outline {
  color: var(--navy-900);
  border-color: #aec0d5;
  background: #fff;
}

.btn--outline:hover {
  color: var(--blue-700);
  border-color: var(--blue-600);
}

.btn--light {
  color: var(--navy-950);
  background: #fff;
}

.btn--light:hover {
  color: var(--blue-700);
}

.topbar {
  color: #40516a;
  background: #f5f8fc;
  border-bottom: 1px solid #e6edf4;
  font-size: 0.84rem;
}

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

.topbar__services,
.topbar__contact {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.topbar a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: inherit;
  text-decoration: none;
}

.topbar a:hover {
  color: var(--green-700);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(220, 228, 238, 0.95);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  min-width: 260px;
  align-items: center;
  gap: 0.8rem;
  color: var(--navy-950);
  text-decoration: none;
}

.brand:hover {
  color: var(--navy-950);
}

.brand img {
  width: 142px;
  height: auto;
}

.brand__text {
  padding-left: 0.75rem;
  border-left: 1px solid var(--line);
  color: #5a6676;
  font-size: 0.72rem;
  font-weight: 650;
  line-height: 1.4;
}

.site-nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
  gap: 0.15rem;
}

.site-nav__link {
  position: relative;
  padding: 0.72rem 0.82rem;
  color: #26354a;
  border-radius: 0.6rem;
  font-size: 0.94rem;
  font-weight: 680;
  text-decoration: none;
}

.site-nav__link:hover,
.site-nav__link[aria-current="page"] {
  color: var(--blue-700);
  background: var(--blue-100);
}

.site-nav .btn {
  min-height: 2.85rem;
  margin-left: 0.55rem;
  padding-inline: 1.05rem;
  font-size: 0.92rem;
}

.nav-toggle {
  display: none;
  width: 2.85rem;
  height: 2.85rem;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  color: var(--navy-950);
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 0.65rem;
  cursor: pointer;
}

.nav-toggle .icon {
  width: 1.55rem;
  height: 1.55rem;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(120deg, #fff 0 52%, #edf5ff 52% 100%);
}

.hero::before {
  position: absolute;
  inset: auto auto -160px -180px;
  width: 480px;
  height: 480px;
  content: "";
  background: radial-gradient(circle, rgba(19, 171, 117, 0.09), transparent 67%);
  border-radius: 50%;
}

.hero__grid {
  display: grid;
  min-height: 650px;
  grid-template-columns: minmax(0, 0.93fr) minmax(480px, 1.07fr);
  align-items: stretch;
}

.hero__copy {
  position: relative;
  z-index: 2;
  display: flex;
  max-width: 660px;
  flex-direction: column;
  justify-content: center;
  padding-block: 5rem;
  padding-right: clamp(2rem, 5vw, 5rem);
}

.hero__copy h1 {
  max-width: 650px;
}

.hero__media {
  position: relative;
  min-height: 650px;
  margin-right: calc((100vw - min(100vw - 2rem, var(--container))) / -2);
  overflow: hidden;
  clip-path: polygon(13% 0, 100% 0, 100% 100%, 0 100%);
}

.hero__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(16, 35, 63, 0.06), transparent 35%);
}

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

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.1rem;
  margin: 1.5rem 0 0;
  padding: 0;
  color: #465469;
  font-size: 0.93rem;
  font-weight: 650;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 0.42rem;
}

.trust-list .icon {
  color: var(--green-600);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.service-card {
  position: relative;
  display: grid;
  min-height: 390px;
  overflow: hidden;
  grid-template-columns: 0.95fr 1.05fr;
  color: inherit;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  color: inherit;
  border-color: #b6c8dc;
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.service-card__content {
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2.2rem);
}

.service-card__media {
  position: relative;
  min-height: 240px;
  overflow: hidden;
}

.service-card__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(16, 35, 63, 0.08), transparent);
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.service-card:hover .service-card__media img {
  transform: scale(1.035);
}

.service-card__icon {
  display: grid;
  width: 3.1rem;
  height: 3.1rem;
  margin-bottom: 1.15rem;
  place-items: center;
  color: var(--green-700);
  background: var(--green-100);
  border-radius: 0.9rem;
}

.service-card__icon .icon {
  width: 1.65rem;
  height: 1.65rem;
}

.service-card p {
  color: var(--muted);
  font-size: 0.96rem;
}

.service-card__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 1rem;
  color: var(--blue-700);
  font-weight: 750;
}

.service-card__link .icon {
  transition: transform 0.2s ease;
}

.service-card:hover .service-card__link .icon {
  transform: translateX(4px);
}

.service-card--compact {
  min-height: 310px;
}

.metric-band {
  color: #fff;
  background: linear-gradient(110deg, var(--navy-950), var(--navy-800));
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.metric {
  padding: 2.3rem clamp(1rem, 3vw, 2.3rem);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  display: block;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 850;
  line-height: 1.1;
}

.metric span {
  display: block;
  margin-top: 0.45rem;
  color: #c6d4e6;
  font-size: 0.92rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
}

.split__media {
  position: relative;
}

.split__media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.split__badge {
  position: absolute;
  right: -1rem;
  bottom: -1rem;
  max-width: 230px;
  padding: 1.1rem 1.25rem;
  color: #fff;
  background: var(--green-600);
  border: 5px solid #fff;
  border-radius: 1rem;
  box-shadow: var(--shadow-sm);
  font-size: 0.92rem;
  font-weight: 700;
}

.check-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}

.check-list .icon {
  width: 1.3rem;
  height: 1.3rem;
  margin-top: 0.2rem;
  padding: 0.18rem;
  color: #fff;
  background: var(--green-600);
  border-radius: 50%;
  stroke-width: 2.3;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.process-card {
  position: relative;
  padding: 1.6rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.process-card__number {
  display: grid;
  width: 2.65rem;
  height: 2.65rem;
  margin-bottom: 1rem;
  place-items: center;
  color: #fff;
  background: var(--blue-700);
  border-radius: 50%;
  font-weight: 850;
}

.process-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.chip {
  display: inline-flex;
  min-height: 2.6rem;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.9rem;
  color: #2e4058;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.91rem;
  font-weight: 650;
}

.chip .icon {
  color: var(--green-600);
}

.area-panel {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  overflow: hidden;
  color: #fff;
  background: var(--navy-950);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.area-panel__copy {
  padding: clamp(2rem, 5vw, 4rem);
}

.area-panel h2 {
  color: #fff;
}

.area-panel p {
  color: #c5d2e3;
}

.area-panel__map {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: linear-gradient(145deg, #193e67, #0b6d5a);
}

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

.area-panel__map::before {
  inset: 8% 14%;
}

.area-panel__map::after {
  inset: 22% 28%;
}

.map-center {
  position: absolute;
  z-index: 2;
  inset: 50% auto auto 50%;
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  color: var(--navy-950);
  background: #fff;
  border: 8px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.25);
  transform: translate(-50%, -50%);
}

.map-center .icon {
  width: 2.1rem;
  height: 2.1rem;
  color: var(--green-600);
}

.map-label {
  position: absolute;
  z-index: 2;
  padding: 0.45rem 0.72rem;
  color: #fff;
  background: rgba(9, 24, 44, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  backdrop-filter: blur(6px);
}

.map-label--1 { top: 16%; left: 18%; }
.map-label--2 { top: 23%; right: 14%; }
.map-label--3 { bottom: 20%; left: 13%; }
.map-label--4 { right: 17%; bottom: 15%; }

.docs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.doc-card {
  display: flex;
  min-height: 120px;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  color: inherit;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.doc-card:hover {
  color: inherit;
  border-color: var(--blue-600);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.doc-card__icon {
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  flex: 0 0 auto;
  place-items: center;
  color: var(--blue-700);
  background: var(--blue-100);
  border-radius: 0.72rem;
}

.doc-card strong,
.doc-card span {
  display: block;
}

.doc-card span {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.contact-wrap {
  display: grid;
  overflow: hidden;
  grid-template-columns: 0.85fr 1.15fr;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-info {
  position: relative;
  padding: clamp(2rem, 5vw, 4rem);
  color: #fff;
  background: linear-gradient(145deg, var(--navy-950), var(--navy-800));
}

.contact-info::after {
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 290px;
  height: 290px;
  content: "";
  border: 50px solid rgba(19, 171, 117, 0.18);
  border-radius: 50%;
}

.contact-info h2,
.contact-info h3 {
  color: #fff;
}

.contact-info p {
  color: #c7d4e4;
}

.contact-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-list a,
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: #fff;
  text-decoration: none;
}

.contact-list .icon {
  margin-top: 0.15rem;
  color: #50ddb0;
}

.contact-form {
  padding: clamp(2rem, 5vw, 4rem);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-field {
  display: grid;
  gap: 0.42rem;
}

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

.form-field label,
.form-label {
  color: #25354a;
  font-size: 0.89rem;
  font-weight: 730;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  color: var(--ink);
  border: 1px solid #cbd6e2;
  background: #fff;
  border-radius: 0.7rem;
}

.form-field input,
.form-field select {
  min-height: 3.1rem;
  padding: 0.65rem 0.85rem;
}

.form-field textarea {
  min-height: 145px;
  padding: 0.8rem 0.85rem;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue-600);
  outline: 0;
  box-shadow: var(--focus);
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.form-consent input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.18rem;
  flex: 0 0 auto;
}

.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-status {
  display: none;
  margin: 1rem 0;
  padding: 0.85rem 1rem;
  border-radius: 0.65rem;
  font-size: 0.9rem;
  font-weight: 650;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  color: #075b3f;
  background: var(--green-100);
  border: 1px solid #a7dfca;
}

.form-status.is-error {
  color: #8d1f2a;
  background: #fff0f1;
  border: 1px solid #f3b8bd;
}

.form-note {
  margin-top: 0.85rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--navy-950);
}

.page-hero__grid {
  display: grid;
  min-height: 500px;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.94fr);
}

.page-hero__copy {
  position: relative;
  z-index: 2;
  display: flex;
  max-width: 720px;
  flex-direction: column;
  justify-content: center;
  padding-block: 4.5rem;
  padding-right: clamp(2rem, 5vw, 5rem);
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(2.5rem, 4.7vw, 4.4rem);
}

.page-hero .lead {
  color: #c8d5e7;
}

.page-hero__media {
  position: relative;
  margin-right: calc((100vw - min(100vw - 2rem, var(--container))) / -2);
  overflow: hidden;
}

.page-hero__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, var(--navy-950) 0, rgba(9, 24, 44, 0.15) 38%, rgba(9, 24, 44, 0.05));
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  margin-bottom: 1.2rem;
  padding: 0;
  color: #aabbd1;
  font-size: 0.82rem;
  list-style: none;
}

.breadcrumb a {
  color: #d8e5f5;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card {
  padding: 1.6rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.feature-card__icon {
  display: grid;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  place-items: center;
  color: var(--blue-700);
  background: var(--blue-100);
  border-radius: 0.85rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: start;
  gap: clamp(2rem, 5vw, 5rem);
}

.content-main > * + * {
  margin-top: 1.5rem;
}

.content-aside {
  position: sticky;
  top: 120px;
  padding: 1.5rem;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.content-aside h3 {
  font-size: 1.15rem;
}

.content-aside .btn {
  width: 100%;
  margin-top: 1rem;
}

.faq {
  display: grid;
  gap: 0.8rem;
  max-width: 900px;
}

.faq details {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.faq summary {
  position: relative;
  padding: 1.15rem 3.2rem 1.15rem 1.2rem;
  color: var(--navy-950);
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}

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

.faq summary::after {
  position: absolute;
  top: 50%;
  right: 1.2rem;
  content: "+";
  color: var(--green-700);
  font-size: 1.5rem;
  transform: translateY(-50%);
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  margin: 0;
  padding: 0 1.2rem 1.2rem;
  color: var(--muted);
}

.notice {
  padding: 1rem 1.1rem;
  color: #495a70;
  background: #f7faff;
  border: 1px solid #cfe0f7;
  border-left: 4px solid var(--blue-600);
  border-radius: 0.55rem;
  font-size: 0.9rem;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(2.2rem, 5vw, 4rem);
  color: #fff;
  background: linear-gradient(120deg, var(--blue-700), #263ee2 60%, var(--green-700));
  border-radius: var(--radius-lg);
}

.cta-band::after {
  position: absolute;
  top: -100px;
  right: -70px;
  width: 300px;
  height: 300px;
  content: "";
  border: 50px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.cta-band__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-band h2 {
  max-width: 760px;
  margin: 0;
  color: #fff;
}

.legal-copy {
  max-width: 900px;
}

.legal-copy h2 {
  margin-top: 2.5rem;
  font-size: 1.55rem;
}

.legal-copy h3 {
  margin-top: 1.7rem;
  font-size: 1.2rem;
}

.legal-copy p,
.legal-copy li {
  color: #465469;
}

.not-found {
  display: grid;
  min-height: 70vh;
  place-items: center;
  padding: 4rem 1rem;
  text-align: center;
}

.not-found__code {
  color: var(--green-600);
  font-size: clamp(4rem, 14vw, 9rem);
  font-weight: 900;
  line-height: 1;
}

.site-footer {
  color: #c6d3e4;
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, minmax(0, 0.8fr));
  gap: 2rem;
  padding-block: 4.5rem 3rem;
}

.footer-logo {
  width: 190px;
  margin-bottom: 1.15rem;
  padding: 0.65rem;
  background: #fff;
  border-radius: 0.65rem;
}

.footer-about {
  max-width: 380px;
  color: #aebdd0;
  font-size: 0.91rem;
}

.footer-title {
  margin-bottom: 1rem;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a,
.footer-links span {
  color: #c6d3e4;
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #93a5bc;
  font-size: 0.8rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal a {
  color: #aebdd0;
  text-decoration: none;
}

.footer-legal a:hover {
  color: #fff;
}

@media (max-width: 1080px) {
  .topbar__services a:nth-child(n + 4) {
    display: none;
  }

  .brand {
    min-width: auto;
  }

  .brand__text {
    display: none;
  }

  .hero__grid,
  .page-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.95fr);
  }

  .service-card {
    grid-template-columns: 1fr;
  }

  .service-card__media {
    grid-row: 1;
    min-height: 210px;
  }

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

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

  .footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 72px;
  }

  .topbar__services {
    display: none;
  }

  .topbar__inner {
    justify-content: center;
  }

  .site-header__inner {
    flex-wrap: wrap;
  }

  .brand img {
    width: 132px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex: 0 0 100%;
    align-items: stretch;
    padding: 0 0 1rem;
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav__link {
    padding: 0.8rem 0.9rem;
  }

  .site-nav .btn {
    margin: 0.4rem 0 0;
  }

  .hero {
    background: #fff;
  }

  .hero__grid,
  .page-hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__copy,
  .page-hero__copy {
    max-width: none;
    padding: 4rem 0 3rem;
  }

  .hero__media,
  .page-hero__media {
    min-height: 440px;
    margin: 0 calc((100vw - min(100vw - 2rem, var(--container))) / -2);
    clip-path: none;
  }

  .hero__media::after {
    background: linear-gradient(180deg, rgba(255,255,255,.15), transparent 30%);
  }

  .page-hero__media {
    grid-row: 1;
    min-height: 350px;
  }

  .page-hero__copy {
    grid-row: 2;
  }

  .page-hero__media::after {
    background: linear-gradient(180deg, transparent 55%, var(--navy-950));
  }

  .split,
  .area-panel,
  .contact-wrap,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .content-aside {
    position: static;
  }

  .area-panel__map {
    min-height: 360px;
  }

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

  .metric:nth-child(2) {
    border-right: 0;
  }

  .metric:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

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

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

@media (max-width: 620px) {
  html {
    scroll-padding-top: 86px;
  }

  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .topbar__contact {
    width: 100%;
    justify-content: space-between;
    gap: 0.6rem;
    font-size: 0.78rem;
  }

  .site-header__inner {
    min-height: 68px;
  }

  .brand img {
    width: 120px;
  }

  .hero__copy {
    padding-block: 3.3rem 2.4rem;
  }

  .hero__media {
    min-height: 340px;
  }

  .page-hero__media {
    min-height: 280px;
  }

  .service-grid,
  .docs-grid,
  .feature-grid,
  .process-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .metric {
    padding: 1.6rem 1rem;
  }

  .split__badge {
    right: 0.5rem;
    bottom: -1.2rem;
  }

  .area-panel__copy,
  .contact-info,
  .contact-form {
    padding: 1.7rem;
  }

  .area-panel__map {
    min-height: 310px;
  }

  .cta-band__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-band .btn {
    width: 100%;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@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;
  }
}

@media print {
  .topbar,
  .site-header,
  .site-footer,
  .btn,
  .contact-form {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section {
    padding-block: 2rem;
  }

  a {
    color: #000;
    text-decoration: none;
  }
}
