:root {
  color-scheme: dark;
  --ink: #eef4f6;
  --muted: #9cabb3;
  --bg: #0b1115;
  --bg-deep: #070b0e;
  --surface: #121a20;
  --surface-2: #172229;
  --line: #2a3840;
  --brand: #1f6f9c;
  --brand-strong: #2a83b5;
  --brand-dark: #0c334d;
  --green: #759d62;
  --white: #ffffff;
  --error: #f0a09a;
  --success: #a8cb96;
  --focus: #77bce4;
  --max: 1240px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family: "Aptos", "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

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

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

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

::selection {
  background: var(--brand-strong);
  color: var(--white);
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--bg-deep);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: var(--header-height);
  background: rgba(7, 11, 14, 0.97);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
}

.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1.08;
}

.brand-copy strong {
  font-family: "Bahnschrift", "DIN Alternate", sans-serif;
  font-size: 17px;
  font-weight: 650;
  letter-spacing: 0.01em;
}

.brand-copy em {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 13px;
  border: 1px solid transparent;
  color: #d9e1e5;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: color 150ms ease, background-color 150ms ease, border-color 150ms ease;
}

.site-nav a:hover {
  color: var(--white);
  background: var(--surface);
}

.site-nav a[aria-current="page"] {
  color: var(--white);
  border-bottom-color: var(--brand-strong);
}

.site-nav .nav-quote {
  margin-left: 8px;
  padding-inline: 16px;
  background: var(--brand);
  border-color: var(--brand);
  color: var(--white);
  border-radius: 7px;
}

.site-nav .nav-quote:hover {
  background: var(--brand-strong);
  border-color: var(--brand-strong);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--white);
  cursor: pointer;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

.hero {
  position: relative;
  min-height: min(74vh, 760px);
  overflow: hidden;
  background: var(--bg-deep);
  border-bottom: 1px solid var(--line);
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  margin: 0;
  opacity: 0;
  transition: opacity 650ms ease;
}

.hero-slide.is-active {
  opacity: 1;
}

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

.hero::after {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: min(58%, 820px);
  background: rgba(7, 11, 14, 0.88);
  content: "";
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: min(74vh, 760px);
  align-items: center;
  padding-block: 84px 112px;
}

.hero-copy {
  width: min(610px, 52%);
}

.hero-logo {
  width: 112px;
  height: 112px;
  margin-bottom: 24px;
}

.hero h1,
.page-intro h1,
.service-intro h1 {
  margin: 0;
  font-family: "Bahnschrift", "DIN Alternate", sans-serif;
  font-size: clamp(2.7rem, 5.6vw, 5.35rem);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero h1 span {
  display: block;
  color: #b8d8ea;
}

.hero-copy > p {
  max-width: 560px;
  margin: 25px 0 0;
  color: #ced9de;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  background: var(--brand);
  border: 1px solid var(--brand);
  border-radius: 7px;
  color: var(--white);
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease;
}

.button:hover {
  background: var(--brand-strong);
  border-color: var(--brand-strong);
}

.button-secondary {
  background: rgba(7, 11, 14, 0.72);
  border-color: #5c6a72;
}

.button-secondary:hover {
  background: var(--surface-2);
  border-color: #819099;
}

.button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.hero-controls {
  position: absolute;
  z-index: 3;
  bottom: 32px;
  left: max(20px, calc((100vw - var(--max)) / 2));
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-dot {
  width: 36px;
  height: 5px;
  padding: 0;
  background: #536067;
  border: 0;
  border-radius: 0;
  cursor: pointer;
}

.hero-dot[aria-current="true"] {
  background: var(--white);
}

.trust-bar {
  background: var(--brand-dark);
  border-bottom: 1px solid #27516a;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-right: 1px solid #27516a;
  color: #e7f0f4;
  font-weight: 600;
  text-align: center;
}

.trust-list li:first-child {
  border-left: 1px solid #27516a;
}

.section {
  padding-block: clamp(72px, 9vw, 118px);
}

.section-compact {
  padding-block: 56px;
}

.section-alt {
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 46px;
}

.section-heading h2,
.content-block h2,
.contact-panel h2,
.quote-form h2,
.service-nav h2,
.not-found h1 {
  margin: 0;
  font-family: "Bahnschrift", "DIN Alternate", sans-serif;
  font-size: clamp(2rem, 3.7vw, 3.45rem);
  font-weight: 620;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.section-heading p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.service-list {
  margin: 0;
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 72px minmax(240px, 0.7fr) minmax(300px, 1fr) 32px;
  gap: 26px;
  align-items: center;
  min-height: 118px;
  padding: 22px 8px;
  border-bottom: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
  transition: background-color 150ms ease;
}

.service-row:hover {
  background: var(--surface);
}

.service-number {
  color: var(--green);
  font-family: "Bahnschrift", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.service-row h3 {
  margin: 0;
  font-family: "Bahnschrift", "DIN Alternate", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 600;
  line-height: 1.15;
}

.service-row p {
  margin: 0;
  color: var(--muted);
}

.service-arrow {
  color: #b7c7ce;
  font-size: 1.5rem;
  text-align: right;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: start;
}

.content-block h2 {
  margin-bottom: 24px;
}

.content-block > p {
  margin: 0 0 20px;
  color: #c4d0d5;
  font-size: 1.05rem;
}

.check-list,
.detail-list,
.plain-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.detail-list li {
  position: relative;
  padding: 15px 0 15px 34px;
  border-bottom: 1px solid var(--line);
  color: #dbe3e7;
}

.check-list li::before,
.detail-list li::before {
  position: absolute;
  top: 17px;
  left: 2px;
  color: var(--green);
  content: "✓";
  font-weight: 800;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-list li {
  min-height: 225px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-list li:first-child {
  border-left: 1px solid var(--line);
}

.process-list strong {
  display: block;
  color: var(--green);
  font-family: "Bahnschrift", sans-serif;
  font-size: 1.1rem;
}

.process-list h3 {
  margin: 28px 0 10px;
  font-family: "Bahnschrift", sans-serif;
  font-size: 1.35rem;
}

.process-list p {
  margin: 0;
  color: var(--muted);
}

.cta-band {
  background: var(--white);
  color: #0b2230;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  padding-block: 58px;
}

.cta-inner h2 {
  margin: 0 0 8px;
  font-family: "Bahnschrift", sans-serif;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.cta-inner p {
  margin: 0;
  color: #41525c;
}

.page-intro,
.service-intro {
  padding-block: clamp(72px, 10vw, 132px);
  background: var(--bg-deep);
  border-bottom: 1px solid var(--line);
}

.page-intro-grid,
.service-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: clamp(48px, 9vw, 120px);
  align-items: end;
}

.page-intro h1,
.service-intro h1 {
  font-size: clamp(2.8rem, 6vw, 5.6rem);
}

.page-intro p,
.service-intro p {
  margin: 0;
  color: #bcc9cf;
  font-size: 1.12rem;
}

.service-intro .service-index {
  display: block;
  margin-bottom: 24px;
  color: var(--green);
  font-family: "Bahnschrift", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.services-overview .service-row {
  min-height: 150px;
}

.service-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

.service-copy h2 {
  margin: 0 0 20px;
  font-family: "Bahnschrift", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.service-copy h2:not(:first-child) {
  margin-top: 58px;
}

.service-copy p {
  margin: 0 0 18px;
  color: #c3d0d5;
  font-size: 1.04rem;
}

.service-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.service-sidebar h2 {
  margin: 0 0 12px;
  font-family: "Bahnschrift", sans-serif;
  font-size: 1.55rem;
}

.service-sidebar p {
  margin: 0 0 20px;
  color: var(--muted);
}

.service-sidebar .button {
  width: 100%;
}

.service-sidebar a:not(.button) {
  display: block;
  margin-top: 16px;
  color: #cfe1ea;
}

.service-nav {
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.service-nav h2 {
  margin-bottom: 24px;
  font-size: 1.65rem;
}

.service-nav-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.service-nav-links a {
  min-height: 94px;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #d8e2e6;
  text-decoration: none;
}

.service-nav-links a:nth-child(3n + 1) {
  border-left: 1px solid var(--line);
}

.service-nav-links a:hover,
.service-nav-links a[aria-current="page"] {
  background: var(--surface);
  color: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(46px, 8vw, 100px);
  align-items: start;
}

.contact-panel h2,
.quote-form h2 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
}

.contact-panel > p,
.quote-form > p {
  margin: 0 0 26px;
  color: var(--muted);
}

.contact-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.contact-list li {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.contact-list strong {
  color: var(--muted);
  font-weight: 600;
}

.contact-list a {
  overflow-wrap: anywhere;
  color: var(--white);
}

.response-note {
  margin-top: 26px;
  padding-left: 18px;
  border-left: 3px solid var(--green);
  color: #c5d1d6;
}

.quote-form {
  padding: clamp(24px, 4vw, 42px);
  background: var(--surface);
  border: 1px solid var(--line);
}

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

.form-field {
  display: grid;
  gap: 8px;
}

fieldset.form-field {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

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

.form-field label,
.field-label {
  color: #edf3f5;
  font-size: 0.95rem;
  font-weight: 650;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  background: #0c1317;
  border: 1px solid #3b4a52;
  border-radius: 6px;
  color: var(--white);
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #74858e;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--focus);
  outline: 2px solid rgba(119, 188, 228, 0.28);
  outline-offset: 0;
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  min-height: 48px;
  align-items: center;
}

.contact-methods label,
.consent-row {
  display: inline-flex;
  align-items: flex-start;
  gap: 9px;
  cursor: pointer;
}

.contact-methods input,
.consent-row input {
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  accent-color: var(--brand-strong);
}

.form-help {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
}

.form-status {
  flex: 1;
  min-width: 220px;
  margin: 0;
  color: var(--muted);
}

.form-status.is-error {
  color: var(--error);
}

.form-status.is-success {
  color: var(--success);
}

.honeypot {
  display: none !important;
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.site-footer {
  padding-top: 62px;
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1.1fr;
  gap: 56px;
  padding-bottom: 54px;
}

.footer-brand img {
  width: 92px;
  height: 92px;
  margin-bottom: 18px;
}

.footer-brand strong,
.footer-column h2 {
  display: block;
  margin: 0 0 15px;
  font-family: "Bahnschrift", sans-serif;
  font-size: 1.05rem;
}

.footer-brand p,
.footer-column p {
  margin: 0;
  color: var(--muted);
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  width: fit-content;
  color: #cdd9de;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: #8798a1;
  font-size: 0.9rem;
}

.not-found {
  display: grid;
  min-height: 60vh;
  place-content: center;
  padding-block: 80px;
  text-align: center;
}

.not-found p {
  max-width: 520px;
  margin: 18px auto 0;
  color: var(--muted);
}

.not-found .button {
  margin: 28px auto 0;
}

@media (max-width: 960px) {
  .brand-copy em {
    display: none;
  }

  .hero::after {
    width: 72%;
  }

  .hero-copy {
    width: 66%;
  }

  .section-heading,
  .page-intro-grid,
  .service-intro-grid,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-row {
    grid-template-columns: 52px minmax(220px, 0.72fr) minmax(260px, 1fr) 28px;
    gap: 16px;
  }

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

  .service-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr auto;
    column-gap: 30px;
    align-items: center;
  }

  .service-sidebar .button,
  .service-sidebar a:not(.button) {
    grid-column: 2;
  }

  .service-sidebar h2,
  .service-sidebar p {
    grid-column: 1;
  }

  .service-sidebar p {
    margin-bottom: 0;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: min(calc(100% - 32px), var(--max));
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

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

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

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: none;
    align-items: stretch;
    padding: 14px 16px 22px;
    background: var(--bg-deep);
    border-bottom: 1px solid var(--line);
  }

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

  .site-nav a {
    min-height: 48px;
    padding: 13px 12px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav .nav-quote {
    margin: 12px 0 0;
    border-bottom: 1px solid var(--brand);
  }

  .hero,
  .hero-inner {
    min-height: 680px;
  }

  .hero::after {
    width: 100%;
    background: rgba(7, 11, 14, 0.76);
  }

  .hero-slide img {
    object-position: 63% center;
  }

  .hero-inner {
    align-items: flex-end;
    padding-block: 84px 100px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-logo {
    width: 92px;
    height: 92px;
  }

  .hero h1 {
    max-width: 580px;
    font-size: clamp(2.65rem, 13vw, 4.5rem);
  }

  .hero-copy > p {
    font-size: 1rem;
  }

  .hero-controls {
    bottom: 25px;
    left: 16px;
  }

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

  .trust-list li,
  .trust-list li:first-child {
    min-height: 60px;
    border: 0;
    border-right: 1px solid #27516a;
    border-bottom: 1px solid #27516a;
    font-size: 0.9rem;
  }

  .service-row,
  .services-overview .service-row {
    grid-template-columns: 42px 1fr 26px;
    min-height: 0;
    padding-block: 24px;
  }

  .service-row p {
    grid-column: 2 / 4;
    margin-top: -8px;
  }

  .service-arrow {
    grid-column: 3;
    grid-row: 1;
  }

  .split-layout,
  .process-list,
  .cta-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .process-list li,
  .process-list li:first-child {
    min-height: 0;
    border-left: 1px solid var(--line);
  }

  .cta-inner {
    gap: 26px;
  }

  .cta-inner .button {
    width: fit-content;
  }

  .service-sidebar {
    display: block;
  }

  .service-sidebar p {
    margin-bottom: 20px;
  }

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

  .service-nav-links a:nth-child(3n + 1) {
    border-left: 0;
  }

  .service-nav-links a:nth-child(2n + 1) {
    border-left: 1px solid var(--line);
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
    padding-block: 20px;
  }
}

@media (max-width: 560px) {
  .brand-copy {
    max-width: 190px;
  }

  .brand-copy strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero,
  .hero-inner {
    min-height: 640px;
  }

  .button-row,
  .button-row .button {
    width: 100%;
  }

  .section {
    padding-block: 66px;
  }

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

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

  .contact-methods {
    display: grid;
    gap: 10px;
  }

  .contact-list li {
    grid-template-columns: 1fr;
    gap: 3px;
  }

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

  .service-nav-links a,
  .service-nav-links a:nth-child(2n + 1) {
    min-height: 0;
    border-left: 1px solid var(--line);
  }
}

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

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