:root {
  --accent: #1558d6;
  --accent-dark: #1047af;
  --ink: #17283e;
  --muted: #546478;
  --line: #dfe6ed;
  --control-border: #7b8da3;
  --soft: #f3f6fa;
  --blue-soft: #eaf1fc;
  --page-width: 1200px;
  font-synthesis: none;
  color-scheme: light;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Helvetica Neue", Arial, "PingFang SC", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: not-allowed;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  text-wrap: balance;
}
p {
  text-wrap: pretty;
}
h1,
h2 {
  letter-spacing: -0.045em;
}
h3 {
  letter-spacing: -0.025em;
}
h2 {
  font-size: clamp(30px, 3.5vw, 46px);
  line-height: 1.16;
  font-weight: 600;
}
h3 {
  font-size: 21px;
  line-height: 1.3;
  font-weight: 600;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 5px;
}
::selection {
  background: #d9e6ff;
  color: var(--ink);
}
[hidden] {
  display: none !important;
}
.container,
.nav-inner {
  width: min(var(--page-width), calc(100% - 64px));
  margin-inline: auto;
}
.section {
  padding-block: 100px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.5;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: currentColor;
  flex-shrink: 0;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 44px;
}
.section-heading h2 {
  max-width: 620px;
}
.section-heading > p {
  max-width: 380px;
  color: var(--muted);
}
.section-heading .eyebrow {
  margin-bottom: 14px;
}
.lead {
  font-size: 18px;
  line-height: 1.75;
  color: var(--muted);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  color: var(--accent);
  font-weight: 600;
}
.text-link span {
  transition: transform 0.2s;
}
.text-link:hover span {
  transform: translateX(4px);
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  min-height: 50px;
  padding: 12px 23px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: var(--accent-dark);
}
.button:active {
  transform: translateY(1px);
}
.button-secondary {
  background: transparent;
  color: var(--ink);
  border-color: #c8d3df;
}
.button-secondary:hover {
  background: var(--blue-soft);
}
.button:disabled {
  background: #e1e7ef;
  color: #536075;
  border-color: #d8dfe8;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 16px;
  z-index: 30;
  transform: translateY(-180%);
  padding: 12px 20px;
  background: var(--ink);
  color: #fff;
  border-radius: 6px;
}
.skip-link:focus {
  transform: translateY(0);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 84px;
}
.brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  flex-shrink: 0;
}
.brand img {
  width: 120px;
  height: auto;
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.primary-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
}
.primary-nav a:hover,
.primary-nav a.is-active {
  color: var(--accent);
}
.primary-nav a.is-active {
  font-weight: 600;
}
.nav-cta {
  min-height: 44px;
  padding: 10px 18px;
}
.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 5px;
  padding: 10px 14px;
  min-height: 44px;
  color: var(--ink);
  font-size: 14px;
}
.service-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid var(--line);
}
.service-links a {
  padding: 26px 22px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.2s;
}
.service-links a:first-child {
  padding-left: 0;
}
.service-links a:last-child {
  border-right: 0;
}
.service-links a:hover {
  background: var(--soft);
}
.service-links .number {
  color: var(--muted);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}
.service-links strong {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}
.service-links strong span {
  color: var(--accent);
}
.check-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}
.check-list li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}
.check-list strong {
  color: var(--ink);
  font-weight: 600;
}
.service-copy h2 {
  margin-bottom: 24px;
}
.service-copy > .text-link {
  margin-top: 24px;
}
.scope-note {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}
.process-section {
  background: var(--soft);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}
.process-grid li {
  border-top: 1px solid #bfcbd9;
  padding-top: 22px;
}
.step-number {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 600;
}
.process-grid h3 {
  margin: 18px 0 12px;
}
.process-grid p {
  color: var(--muted);
  font-size: 15px;
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
}
.faq-intro p {
  margin-top: 24px;
  color: var(--muted);
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding-block: 4px;
}
.faq-list summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary::after {
  content: "+";
  color: var(--accent);
  font-size: 23px;
  font-weight: 400;
}
.faq-list details[open] summary::after {
  content: "−";
}
.faq-list details p {
  padding: 0 34px 22px 0;
  color: var(--muted);
  font-size: 15px;
}
.closing-section {
  padding: 0 0 90px;
}
.closing-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 52px 56px;
  border: 1px solid #d8e5fa;
  background: var(--blue-soft);
  border-radius: 12px;
}
.closing-panel h2 {
  font-size: clamp(28px, 3vw, 38px);
}
.closing-panel p {
  margin-top: 14px;
  color: var(--muted);
  max-width: 620px;
}
.closing-panel .button {
  flex-shrink: 0;
}
.site-footer {
  padding: 52px 0 24px;
  border-top: 1px solid var(--line);
  background: #f9fafc;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 38px;
}
.footer-brand p {
  color: var(--muted);
  font-size: 14px;
  max-width: 370px;
  margin-top: 18px;
}
.footer-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer-links {
  display: grid;
  gap: 4px;
}
.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 14px;
  color: var(--muted);
}
.footer-links a:hover {
  color: var(--accent);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
}
@media (min-width: 761px) {
  .primary-nav[hidden] {
    display: flex !important;
  }
}
@media (max-width: 1000px) {
  .section {
    padding-block: 76px;
  }
  .primary-nav {
    gap: 22px;
  }
  .nav-inner {
    gap: 20px;
  }
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
  }
  .faq-layout {
    gap: 44px;
  }
  .footer-main {
    gap: 32px;
  }
  .closing-panel {
    padding: 38px;
  }
  .section-heading {
    gap: 30px;
  }
  .service-links a {
    padding: 22px 16px;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 92px;
  }
  .container,
  .nav-inner {
    width: calc(100% - 40px);
  }
  .section {
    padding-block: 62px;
  }
  .nav-inner {
    min-height: 72px;
    flex-wrap: wrap;
    gap: 12px;
  }
  .brand img {
    width: 108px;
  }
  .menu-toggle {
    display: block;
    margin-left: auto;
  }
  .nav-cta {
    display: none;
  }
  .primary-nav {
    order: 3;
    flex-basis: 100%;
    margin: 0;
    display: grid;
    gap: 0;
    padding-bottom: 14px;
  }
  .primary-nav a {
    padding: 8px 12px;
    border-top: 1px solid var(--line);
  }
  .section-heading {
    display: block;
    margin-bottom: 30px;
  }
  .section-heading > p {
    margin-top: 20px;
    max-width: none;
  }
  .lead {
    font-size: 17px;
  }
  .service-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-links a,
  .service-links a:first-child {
    padding: 20px 14px;
  }
  .service-links a:nth-child(2) {
    border-right: 0;
  }
  .service-links a:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .service-links strong {
    font-size: 14px;
  }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .faq-intro p {
    margin-top: 18px;
  }
  .closing-section {
    padding-bottom: 56px;
  }
  .closing-panel {
    padding: 30px 26px;
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
  .site-footer {
    padding-top: 36px;
  }
}
@media (max-width: 420px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
  .actions {
    align-items: stretch;
  }
  .actions .button {
    width: 100%;
  }
  .service-links strong {
    font-size: 13px;
  }
  .footer-main {
    gap: 24px;
  }
  .button {
    min-height: 48px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media (max-width: 760px) {
  .faq-list details p,
  .footer-brand p {
    font-size: 16px;
  }
  .footer-links a {
    min-height: 44px;
  }
  .section {
    padding-block: 56px;
  }
}
