:root {
  --ink: #08273a;
  --ink-deep: #041b29;
  --blue: #18a9d2;
  --blue-bright: #39c7ee;
  --blue-pale: #e8f7fb;
  --mist: #f3f7f8;
  --line: #d7e2e7;
  --white: #ffffff;
  --muted: #5d707a;
  --shadow: 0 24px 70px rgba(5, 33, 48, 0.14);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 110px 0;
}

.topbar {
  background: var(--blue);
  color: var(--ink-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.topbar-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(4, 27, 41, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 44px;
}

.brand {
  width: 248px;
  margin-right: auto;
}

.brand img {
  width: 100%;
  height: 62px;
  object-fit: contain;
  object-position: left center;
}

nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

nav a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 700;
  transition: color 160ms ease;
}

nav a:hover,
nav a:focus-visible {
  color: var(--blue-bright);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 1px solid var(--blue);
  border-radius: 6px;
  background: var(--blue);
  color: var(--ink-deep);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 32px rgba(24, 169, 210, 0.24);
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  background: var(--blue-bright);
}

.button-small {
  min-height: 44px;
  padding: 0 19px;
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  color: var(--white);
  display: flex;
  align-items: center;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 58% center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 27, 41, 0.96) 0%, rgba(4, 27, 41, 0.86) 36%, rgba(4, 27, 41, 0.26) 67%, rgba(4, 27, 41, 0.08) 100%),
    linear-gradient(0deg, rgba(4, 27, 41, 0.45), transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 90px 0 120px;
}

.eyebrow {
  margin: 0 0 20px;
  color: #078bb1;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--blue-bright);
}

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

h1 {
  max-width: 770px;
  margin-bottom: 25px;
  font-size: clamp(52px, 6.2vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.052em;
  font-weight: 800;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 900;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
}

.light-link {
  color: var(--white);
}

.hero-proof {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-proof span {
  padding: 23px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.hero-proof span:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 4.1vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.042em;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 100px;
  align-items: start;
}

.intro-copy {
  padding-top: 36px;
}

.intro-copy p,
.areas-grid > div > p,
.faq-grid > div > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.services {
  background:
    radial-gradient(circle at top right, rgba(24, 169, 210, 0.12), transparent 30%),
    var(--mist);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 52px;
}

.section-heading > p {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 510px;
  padding: 40px 34px 34px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(7, 39, 58, 0.035);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
}

.service-number {
  display: inline-block;
  margin-bottom: 58px;
  color: #159ec5;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.service-card h3 {
  margin-bottom: 16px;
  font-size: 27px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.service-card > p {
  min-height: 114px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.service-card ul {
  margin: 28px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.service-card li {
  display: flex;
  gap: 11px;
  margin-bottom: 13px;
  color: #294857;
  font-size: 14px;
  font-weight: 700;
}

.service-card li span {
  color: var(--blue);
}

.specialty {
  background: var(--ink-deep);
  color: var(--white);
}

.specialty-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 74px;
  align-items: center;
}

.specialty-image-wrap {
  position: relative;
}

.specialty-image-wrap img {
  width: 100%;
  min-height: 570px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.image-label {
  position: absolute;
  right: -20px;
  bottom: 24px;
  padding: 15px 20px;
  border-left: 4px solid var(--blue);
  background: var(--white);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.specialty-copy h2 {
  margin-bottom: 24px;
}

.specialty-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.8;
}

.feature-list {
  margin: 36px 0 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.feature-list div {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.feature-list strong {
  color: var(--blue-bright);
  font-size: 14px;
}

.feature-list span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  line-height: 1.55;
}

.process {
  background: var(--white);
}

.narrow-heading {
  grid-template-columns: minmax(0, 760px);
}

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

.process-grid article {
  min-height: 270px;
  padding: 36px 38px 40px;
  border-right: 1px solid var(--line);
}

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

.process-grid article > span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 52px;
  border-radius: 50%;
  background: var(--blue-pale);
  color: #087fa1;
  font-size: 13px;
  font-weight: 900;
}

.process-grid h3 {
  margin-bottom: 12px;
  font-size: 21px;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.areas {
  background: var(--blue-pale);
}

.areas-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 110px;
  align-items: center;
}

.areas-grid h2 {
  margin-bottom: 24px;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.area-tags span {
  padding: 15px 18px;
  border: 1px solid rgba(8, 39, 58, 0.14);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.66);
  color: #244654;
  font-size: 13px;
  font-weight: 800;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 110px;
  align-items: start;
}

.faq-grid h2 {
  margin-bottom: 22px;
}

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

details {
  border-bottom: 1px solid var(--line);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 27px 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 800;
  list-style: none;
}

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

summary span {
  color: var(--blue);
  font-size: 26px;
  font-weight: 400;
  transition: transform 160ms ease;
}

details[open] summary span {
  transform: rotate(45deg);
}

details p {
  max-width: 710px;
  padding: 0 45px 25px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.quote {
  padding: 88px 0;
  background:
    linear-gradient(125deg, rgba(24, 169, 210, 0.2), transparent 50%),
    var(--ink);
  color: var(--white);
}

.quote-inner {
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  gap: 90px;
  align-items: center;
}

.quote h2 {
  margin-bottom: 20px;
}

.quote-inner > div > p:not(.eyebrow) {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  line-height: 1.7;
}

.quote-contact {
  padding: 35px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.quote-contact > span {
  display: block;
  margin-bottom: 12px;
  color: var(--blue-bright);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.quote-contact a {
  display: inline-block;
  margin-bottom: 15px;
  font-size: clamp(31px, 4vw, 45px);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.quote-contact p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

footer {
  padding: 62px 0 28px;
  background: #031722;
  color: rgba(255, 255, 255, 0.62);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 0.55fr 0.55fr;
  gap: 70px;
  padding-bottom: 52px;
}

.footer-grid > img {
  width: 310px;
  height: 120px;
  object-fit: contain;
  object-position: left center;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13px;
}

.footer-grid strong {
  margin-bottom: 6px;
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-grid a:hover {
  color: var(--blue-bright);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
}

.mobile-call {
  display: none;
}

@media (max-width: 1020px) {
  nav {
    display: none;
  }

  .intro-grid,
  .specialty-grid {
    gap: 55px;
  }

  .section-heading {
    gap: 45px;
  }

  .service-card {
    padding: 36px 25px 30px;
  }

  .service-card > p {
    min-height: 140px;
  }

  .feature-list div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .areas-grid,
  .faq-grid {
    gap: 65px;
  }
}

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

  body {
    padding-bottom: 67px;
  }

  .shell {
    width: min(100% - 32px, 640px);
  }

  .section {
    padding: 76px 0;
  }

  .topbar {
    display: none;
  }

  .site-header {
    position: absolute;
    top: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(4, 27, 41, 0.94), rgba(4, 27, 41, 0.48), transparent);
    border: 0;
    backdrop-filter: none;
  }

  .nav-wrap {
    min-height: 78px;
  }

  .brand {
    width: 220px;
  }

  .brand img {
    height: 58px;
  }

  .nav-wrap > .button {
    display: none;
  }

  .hero {
    min-height: 760px;
    align-items: flex-end;
  }

  .hero-image {
    object-position: 57% center;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(4, 27, 41, 0.98) 4%, rgba(4, 27, 41, 0.87) 52%, rgba(4, 27, 41, 0.2) 92%),
      linear-gradient(90deg, rgba(4, 27, 41, 0.45), transparent);
  }

  .hero-content {
    padding: 130px 0 150px;
  }

  h1 {
    font-size: clamp(46px, 14vw, 66px);
    line-height: 0.98;
  }

  .hero-copy {
    font-size: 17px;
    line-height: 1.6;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
  }

  .hero-actions .text-link {
    align-self: flex-start;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-proof span {
    display: none;
  }

  .hero-proof span:first-child {
    display: block;
    padding: 17px 10px;
  }

  .intro-grid,
  .section-heading,
  .service-grid,
  .specialty-grid,
  .process-grid,
  .areas-grid,
  .faq-grid,
  .quote-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .section-heading,
  .specialty-grid,
  .areas-grid,
  .faq-grid,
  .quote-inner {
    gap: 38px;
  }

  .intro-copy {
    padding-top: 0;
  }

  .section-heading {
    margin-bottom: 36px;
  }

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

  .service-number {
    margin-bottom: 35px;
  }

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

  .specialty-grid {
    display: flex;
    flex-direction: column-reverse;
  }

  .specialty-image-wrap img {
    min-height: 360px;
  }

  .image-label {
    right: 12px;
    bottom: 12px;
  }

  .process-grid {
    border: 0;
  }

  .process-grid article,
  .process-grid article:first-child {
    min-height: auto;
    padding: 28px 0;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-grid article:first-child {
    border-top: 1px solid var(--line);
  }

  .process-grid article > span {
    margin-bottom: 24px;
  }

  .quote-contact {
    padding: 28px 22px;
  }

  .quote-contact a {
    font-size: 36px;
  }

  .footer-grid {
    gap: 35px;
  }

  .footer-grid > img {
    width: 290px;
  }

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

  .mobile-call {
    position: fixed;
    z-index: 100;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    min-height: 67px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: var(--blue);
    color: var(--ink-deep);
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 -8px 28px rgba(4, 27, 41, 0.24);
  }

  .mobile-call strong {
    font-size: 16px;
  }
}

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

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