:root {
  --navy: #6da7d8;
  --navy-deep: #d7e8f7;
  --gray-900: #eef3f8;
  --gray-700: #b7c3cf;
  --gray-200: #2a3948;
  --gray-100: #142232;
  --surface: #101b29;
  --surface-raised: #172638;
  --white: #ffffff;
  --line: #2e4154;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--gray-900);
  background: #0b1420;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(11, 20, 32, 0.96);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 4px 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(320px, 62vw);
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 22px;
  color: var(--gray-700);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--gray-900);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr);
  gap: 44px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: 72px 56px 68px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 28px 24px;
  z-index: -1;
  border: 1px solid rgba(109, 167, 216, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(109, 167, 216, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(23, 38, 56, 0.72), rgba(11, 20, 32, 0.4));
}

.hero-content,
.section-heading,
.contact-copy {
  max-width: 700px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  color: var(--navy-deep);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 0.98;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  color: var(--navy-deep);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.12;
}

h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.1rem;
  line-height: 1.25;
}

.services-title {
  white-space: nowrap;
}

.hero-copy,
.hero-lead,
.section-heading p,
.split p,
.contact-copy p,
.card p {
  color: var(--gray-700);
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 18px;
  color: var(--gray-700);
  font-size: 1.05rem;
  line-height: 1.6;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 30px;
  font-size: 1.05rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid var(--navy);
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: #0b1420;
  background: var(--navy);
}

.button.secondary {
  color: var(--navy);
  background: transparent;
}

.button:hover,
.button:focus {
  transform: translateY(-1px);
}

.hero-panel {
  max-width: 340px;
  justify-self: end;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, var(--surface-raised), #0f2133);
  box-shadow: var(--shadow);
  color: var(--white);
}

.status-card {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding: 10px;
  font-size: 0.92rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--navy);
  box-shadow: 0 0 0 6px rgba(109, 167, 216, 0.18);
}

.hero-service-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
}

.hero-service-list div {
  display: grid;
  gap: 3px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-service-list div:last-child {
  border-bottom: 0;
}

.hero-service-list strong {
  color: var(--navy-deep);
  font-size: 0.96rem;
}

.hero-service-list span,
.hero-area {
  color: var(--gray-700);
  font-size: 0.92rem;
}

.hero-area {
  margin: 12px 0 0;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 800;
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 72px 24px;
}

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

.card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.card:hover {
  box-shadow: var(--shadow);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: 44px;
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.why-checklist {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.why-checklist li {
  position: relative;
  padding: 14px 16px 14px 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--gray-900);
  font-weight: 700;
}

.why-checklist li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  color: var(--navy);
  font-weight: 800;
}

.area {
  background: transparent;
}

.area-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.area-strip span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  background: var(--surface);
  font-weight: 800;
}

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

.about-content {
  max-width: none;
  width: 100%;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.about-content p {
  color: var(--gray-700);
}

.about-content p:last-child {
  margin-bottom: 0;
}

.about-map {
  display: block;
  width: min(680px, 100%);
  height: auto;
  margin: 28px auto 0;
  border-radius: 8px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: 42px;
  max-width: 1120px;
  margin: 0 auto 42px;
  padding: 54px 24px;
  border-radius: 8px;
  background: var(--surface-raised);
}

.contact-action {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 24px 38px;
  border-top: 1px solid var(--line);
  color: var(--gray-700);
  font-size: 0.95rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .hero,
  .split,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 62px;
  }

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

@media (max-width: 640px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 4px 18px;
  }

  .nav-links {
    justify-content: flex-start;
    gap: 8px 16px;
    font-size: 0.9rem;
  }

  .brand {
    width: min(280px, 76vw);
  }

  .hero,
  .section,
  .contact-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    padding-top: 46px;
    padding-bottom: 52px;
    padding-left: 34px;
    padding-right: 34px;
  }

  h1 {
    font-size: 2.55rem;
  }

  .services-title {
    font-size: 1.45rem;
  }

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

  .card {
    min-height: auto;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
    padding-left: 18px;
    padding-right: 18px;
  }
}
