:root {
  --ink: #111827;
  --muted: #55606f;
  --line: #d9e1ea;
  --panel: #ffffff;
  --soft: #f4f7f9;
  --navy: #0d2f4f;
  --blue: #1d6fbd;
  --teal: #128478;
  --gold: #d39a2d;
  --shadow: 0 18px 50px rgba(17, 24, 39, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(211, 154, 45, 0.9);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header,
.subpage-header {
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(7, 24, 39, 0.92) 0%, rgba(13, 47, 79, 0.82) 50%, rgba(17, 24, 39, 0.5) 100%),
    url("photo-1504384308090-c894fdcc538d-10.jpg") center / cover no-repeat;
}

.site-header {
  min-height: 84vh;
  display: flex;
  flex-direction: column;
}

.subpage-header {
  min-height: 420px;
}

.nav {
  position: relative;
  z-index: 20;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 800;
  letter-spacing: 0;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.error-nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.nav-link,
.nav-disclosure {
  min-height: 42px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.86);
  background: transparent;
  font: inherit;
  font-size: 0.94rem;
  font-weight: 750;
  cursor: pointer;
}

.nav-link:hover,
.nav-link[aria-current="page"],
.nav-disclosure:hover,
.nav-disclosure.is-active,
.nav-disclosure[aria-expanded="true"] {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

.nav-disclosure {
  gap: 6px;
}

.nav-chevron {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 160ms ease;
}

.nav-disclosure[aria-expanded="true"] .nav-chevron,
.mobile-services-toggle[aria-expanded="true"] .nav-chevron {
  transform: rotate(180deg);
}

.nav-service-group {
  position: relative;
}

.services-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  width: min(760px, calc(100vw - 40px));
  padding: 20px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(217, 225, 234, 0.92);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: none;
  transform: translateX(-50%);
}

.services-menu.is-open {
  display: block;
}

.services-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 16px;
  height: 16px;
  background: #ffffff;
  border-left: 1px solid rgba(217, 225, 234, 0.92);
  border-top: 1px solid rgba(217, 225, 234, 0.92);
  transform: translateX(-50%) rotate(45deg);
}

.menu-overview {
  position: relative;
  margin-bottom: 16px;
  padding: 16px;
  border-radius: 8px;
  background: #f7fafc;
  border: 1px solid var(--line);
}

.menu-overview a,
.service-menu-link strong,
.footer-column a,
.text-link,
.breadcrumbs a {
  color: var(--navy);
  font-weight: 800;
}

.menu-overview p,
.service-menu-link span,
.menu-cta p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.menu-column h2,
.menu-heading,
.mobile-services-title {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.menu-heading {
  line-height: 1.3;
}

.service-menu-link {
  display: block;
  padding: 12px;
  border-radius: 8px;
}

.service-menu-link:hover,
.service-menu-link:focus-visible {
  background: #eef7fb;
}

.service-menu-link strong {
  display: block;
  font-size: 0.96rem;
  line-height: 1.25;
}

.service-menu-link span {
  display: block;
}

.menu-cta {
  margin-top: 16px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-radius: 8px;
  background: var(--navy);
  color: #ffffff;
}

.menu-cta strong {
  display: block;
}

.menu-cta p {
  color: rgba(255, 255, 255, 0.72);
}

.menu-cta a {
  flex: 0 0 auto;
  color: #ffffff;
  font-weight: 800;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.nav-cta {
  min-height: 42px;
  color: var(--navy);
  background: #ffffff;
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--navy);
  background: #ffffff;
}

.button-accent {
  color: #ffffff;
  background: var(--teal);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.42);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.button-outline {
  color: var(--navy);
  border-color: var(--line);
  background: #ffffff;
}

.mobile-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #ffffff;
}

.mobile-menu {
  position: absolute;
  top: 76px;
  left: 0;
  right: 0;
  padding: 18px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mobile-link,
.mobile-services-toggle {
  width: 100%;
  min-height: 48px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-radius: 8px;
  color: var(--navy);
  background: transparent;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.mobile-link:hover,
.mobile-link[aria-current="page"],
.mobile-services-toggle:hover,
.mobile-services-toggle.is-active {
  background: #eef7fb;
}

.mobile-services-panel {
  margin: 8px 0 14px;
  padding: 8px;
  border-left: 3px solid var(--teal);
  background: #f7fafc;
  border-radius: 8px;
}

.mobile-service-link {
  display: block;
  padding: 11px 10px;
  border-radius: 8px;
  color: var(--muted);
  font-weight: 750;
}

.mobile-service-link:hover,
.mobile-service-link:focus-visible {
  color: var(--navy);
  background: #ffffff;
}

.mobile-cta {
  width: 100%;
  margin-top: 12px;
  color: #ffffff;
  background: var(--teal);
}

.hero,
.subpage-hero {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  padding: 84px 0 74px;
  margin-top: auto;
}

.subpage-hero {
  padding: 74px 0 88px;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 18px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  color: #d9f6f2;
  background: rgba(18, 132, 120, 0.24);
  font-size: 0.82rem;
  font-weight: 750;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.65rem, 7vw, 5.5rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.subpage-hero h1 {
  font-size: clamp(2.35rem, 5vw, 4.5rem);
}

.hero-copy,
.subpage-copy {
  max-width: 720px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.26rem);
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.trust-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(5, 19, 32, 0.42);
}

.trust-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

main {
  background: #ffffff;
}

section {
  padding: 82px 20px;
}

.section-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.section-label {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.lead {
  max-width: 780px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.intro-grid,
.content-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 46px;
  align-items: start;
}

.proof-points,
.feature-list {
  display: grid;
  gap: 14px;
}

.proof-item,
.feature-item {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 12px 34px rgba(17, 24, 39, 0.06);
}

.proof-item strong,
.feature-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 1.02rem;
}

.feature-item h3 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 1.02rem;
  line-height: 1.28;
}

.proof-item p,
.feature-item p {
  margin: 0;
  color: var(--muted);
}

.name-part {
  color: var(--teal);
}

.services,
.soft-section {
  background: var(--soft);
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.service-grid,
.all-services-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.all-services-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card {
  min-height: 230px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(17, 24, 39, 0.07);
}

.service-card:hover,
.service-card:focus-visible {
  border-color: rgba(18, 132, 120, 0.45);
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.11);
  transform: translateY(-2px);
}

.service-card span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 24px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--navy);
  font-weight: 800;
}

.service-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.16rem;
  line-height: 1.25;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.service-card .card-link {
  margin-top: auto;
  padding-top: 18px;
  color: var(--teal);
  font-weight: 850;
}

.software-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.software-panel {
  padding: 28px;
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  background: #f9fbfc;
}

.software-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
  list-style: none;
}

.software-list li {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--muted);
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.05);
}

.software-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
}

.steps {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  counter-reset: steps;
}

.step {
  position: relative;
  padding: 28px 24px 24px;
  border-top: 4px solid var(--gold);
  background: #f9fbfc;
  border-radius: 8px;
}

.step::before {
  counter-increment: steps;
  content: "0" counter(steps);
  display: block;
  margin-bottom: 18px;
  color: var(--blue);
  font-weight: 850;
}

.step h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1.12rem;
}

.step p {
  margin: 0;
  color: var(--muted);
}

.breadcrumbs {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.breadcrumbs ol {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.breadcrumbs a {
  color: #ffffff;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.52);
}

.detail-list {
  margin: 28px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.detail-list li + li {
  margin-top: 10px;
}

.mini-card-grid,
.related-links,
.faq-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.mini-card-grid .feature-item,
.faq-grid details {
  height: 100%;
}

.related-links {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faq-grid details {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(17, 24, 39, 0.06);
}

.faq-grid summary {
  color: var(--navy);
  font-weight: 850;
  cursor: pointer;
}

.faq-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.cta-band {
  padding: 42px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--navy);
}

.cta-band h2 {
  color: #ffffff;
  font-size: clamp(1.85rem, 3vw, 2.6rem);
}

.cta-band p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-panel,
form.contact-form {
  padding: 28px;
  border-radius: 8px;
  background: #f9fbfc;
  border: 1px solid var(--line);
}

.contact-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.contact-list li + li {
  margin-top: 10px;
}

label {
  display: block;
  margin-bottom: 16px;
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  margin-top: 8px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.submit-button {
  width: 100%;
  min-height: 50px;
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  background: var(--teal);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.submit-button:hover {
  background: #0f7067;
}

.site-footer {
  padding: 58px 20px 0;
  color: #ffffff;
  background: var(--navy);
}

.footer-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1.35fr 0.65fr;
  gap: 42px;
}

.footer-brand {
  margin: 0 0 14px;
  font-size: 1.45rem;
  font-weight: 850;
}

.footer-description,
.footer-location {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-location {
  margin-top: 12px;
}

.footer-column h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 0.92rem;
  text-transform: uppercase;
}

.footer-links {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  list-style: none;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 650;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: #ffffff;
}

.footer-legal {
  width: min(1120px, 100%);
  margin: 42px auto 0;
  padding: 20px 0 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.76);
  text-align: center;
  font-size: 0.82rem;
  line-height: 1.45;
}

.footer-legal p {
  margin: 0;
}

@media (max-width: 960px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .intro-grid,
  .software-layout,
  .content-grid,
  .contact-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .all-services-grid,
  .mini-card-grid,
  .related-links,
  .faq-grid,
  .steps,
  .trust-inner {
    grid-template-columns: 1fr;
  }

  .section-heading-row {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: auto;
  }

  .nav,
  .hero,
  .subpage-hero,
  .trust-inner {
    width: min(100% - 32px, 1120px);
  }

  .hero {
    padding: 58px 0 68px;
  }

  .subpage-hero {
    padding: 54px 0 64px;
  }

  section {
    padding: 58px 18px;
  }

  .cta-band {
    padding: 28px;
  }

  .footer-inner {
    gap: 30px;
  }
}
