* {
  box-sizing: border-box;
}

:root {
  --navy: #06172a;
  --navy-2: #0a2440;
  --blue: #008ee8;
  --blue-2: #17b5ff;
  --light: #f3f8fc;
  --white: #ffffff;
  --text: #172331;
  --muted: #607080;
  --border: #dce7ef;
  --shadow: 0 14px 38px rgba(0, 24, 48, .12);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

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

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

.narrow {
  max-width: 820px;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 20, 38, .96);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
}

.brand img {
  width: 250px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #eef7ff;
  font-weight: 650;
}

.main-nav a:hover {
  color: var(--blue-2);
}

.nav-cta {
  background: var(--blue);
  padding: 11px 17px;
  border-radius: 8px;
}

.nav-cta:hover {
  background: var(--blue-2);
  color: #001528 !important;
}

.menu-toggle {
  display: none;
  appearance: none;
  border: 0;
  background: transparent;
  color: white;
  font-size: 28px;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 30%, rgba(0,142,232,.38), transparent 35%),
    linear-gradient(110deg, rgba(2,13,27,.98) 35%, rgba(2,27,52,.90) 70%, rgba(0,95,162,.78));
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("hero-logo.png");
  background-position: 88% 45%;
  background-size: min(700px, 52vw);
  background-repeat: no-repeat;
  opacity: .20;
  filter: saturate(1.15);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3,13,27,.96) 0%, rgba(3,13,27,.85) 46%, rgba(3,13,27,.20) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: 760px;
  color: white;
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .14em;
  color: var(--blue);
}

.hero h1 {
  font-size: clamp(2.7rem, 6vw, 5.3rem);
  line-height: 1.02;
  margin: 0 0 22px;
  letter-spacing: -.045em;
  max-width: 850px;
}

.hero-text {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: #d8e8f6;
  max-width: 700px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 21px;
  border-radius: 8px;
  font-weight: 800;
  transition: transform .15s ease, opacity .15s ease;
}

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

.btn-primary {
  background: var(--blue);
  color: white;
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,.45);
  color: white;
  background: rgba(255,255,255,.07);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: #c7d7e5;
  font-size: .95rem;
}

.section {
  padding: 88px 0;
}

.section h2,
.cta-strip h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.12;
  margin: 0 0 18px;
  letter-spacing: -.035em;
}

.intro p:last-child,
.section-heading > p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-dark {
  background: var(--navy);
  color: white;
}

.section-dark .section-heading > p:last-child {
  color: #bed0df;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 38px;
}

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

.service-card {
  padding: 28px;
  min-height: 260px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.035));
  border: 1px solid rgba(255,255,255,.11);
}

.service-card .icon {
  font-size: 30px;
  margin-bottom: 16px;
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.service-card p {
  color: #bcd0e0;
  margin: 0;
}

.two-col {
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 64px;
  align-items: start;
}

.two-col p {
  color: var(--muted);
  font-size: 1.06rem;
}

.info-box {
  padding: 30px;
  border-radius: 14px;
  background: var(--light);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.info-box h3 {
  margin-top: 0;
}

.info-box ul {
  margin: 0;
  padding-left: 21px;
}

.info-box li {
  margin: 9px 0;
}

.cta-strip {
  padding: 58px 0;
  color: white;
  background: linear-gradient(110deg, #0069ad, #009cf0);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.cta-inner p {
  margin: 5px 0 0;
}

.section-kicker.light {
  color: #dff4ff;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-light {
  background: white;
  color: #06436c;
}

.btn-outline-light {
  color: white;
  border: 1px solid rgba(255,255,255,.7);
}

.contact-section {
  background: #f7fafc;
}

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

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 31, 61, .06);
}

a.contact-card:hover {
  border-color: var(--blue);
}

.contact-icon {
  font-size: 28px;
}

.contact-card div {
  display: flex;
  flex-direction: column;
}

.contact-card span:last-child {
  color: var(--muted);
}

.privacy-note {
  margin-top: 24px;
  color: #6f7b86;
  font-size: .9rem;
}

.site-footer {
  background: #04101f;
  color: #d6e3ee;
  padding: 42px 0 20px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

.footer-brand,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-brand strong {
  color: white;
}

.footer-contact a:hover {
  color: var(--blue-2);
}

.copyright {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.09);
  color: #8fa3b4;
  font-size: .88rem;
}

@media (max-width: 900px) {
  .service-grid,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    padding: 20px;
    flex-direction: column;
    align-items: stretch;
    background: #06172a;
    border-top: 1px solid rgba(255,255,255,.09);
  }

  .main-nav.open {
    display: flex;
  }

  .nav-cta {
    text-align: center;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .hero {
    min-height: 650px;
  }

  .hero::after {
    background-size: 94vw;
    background-position: center 10%;
    opacity: .12;
  }

  .hero-overlay {
    background: rgba(3,13,27,.86);
  }

  .section {
    padding: 68px 0;
  }

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

  .hero-actions,
  .cta-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .footer-inner {
    flex-direction: column;
  }

  .brand img {
    width: 190px;
    height: 52px;
  }
}

/* Request Service form */
.request-section {
  background: #f4f8fb;
}

.request-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, .8fr);
  gap: 32px;
  align-items: start;
}

.service-form,
.request-help {
  background: #fff;
  border: 1px solid rgba(8, 38, 70, .12);
  border-radius: 16px;
  box-shadow: 0 14px 38px rgba(8, 38, 70, .08);
}

.service-form {
  padding: 30px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.form-field label {
  font-weight: 700;
  color: var(--navy);
  font-size: .95rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #c7d3de;
  border-radius: 9px;
  background: #fff;
  color: #152536;
  padding: 13px 14px;
  font: inherit;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 3px solid rgba(25, 119, 190, .18);
  border-color: var(--blue-2);
}

.form-submit {
  border: 0;
  cursor: pointer;
  margin-top: 22px;
}

.form-note,
.small-note {
  color: #657789;
  font-size: .88rem;
  line-height: 1.55;
}

.form-note {
  margin: 14px 0 0;
}

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

.request-help {
  padding: 28px;
}

.request-help h3 {
  margin-top: 0;
}

.request-phone {
  display: inline-block;
  margin: 8px 0 14px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--blue-1);
}

@media (max-width: 900px) {
  .request-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .service-form {
    padding: 22px;
  }

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

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