:root {
  --navy: #083b63;
  --navy-dark: #052a46;
  --orange: #f47b20;
  --orange-dark: #d96510;
  --ink: #102033;
  --muted: #5c6778;
  --line: #e7edf4;
  --bg: #f7fafc;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(8, 59, 99, 0.14);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

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

a:hover {
  color: var(--orange);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 16px;
  background: var(--navy);
  color: white;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 100;
}

.skip-link:focus {
  left: 16px;
}

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

.header-banner {
  background: var(--white);
  border-top: 6px solid var(--navy);
  border-bottom: 4px solid var(--orange);
  display: flex;
  justify-content: center;
}

.header-banner img {
  width: min(1077px, 100%);
  height: auto;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px min(40px, 5vw);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--navy);
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  padding: 9px 12px;
  border-radius: 12px;
  font-weight: 800;
}

.section {
  padding: 84px 0;
}

.hero {
  background:
    radial-gradient(circle at 80% 10%, rgba(244, 123, 32, 0.14), transparent 32%),
    linear-gradient(135deg, #f7fbff 0%, #ffffff 48%, #f8fbfd 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(290px, 0.65fr);
  gap: 34px;
  align-items: center;
}

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

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

h1 {
  max-width: 800px;
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(2.15rem, 5vw, 4.55rem);
  line-height: 1.03;
  letter-spacing: -0.055em;
}

h2 {
  color: var(--navy);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

h3 {
  color: var(--navy);
  line-height: 1.2;
}

.hero-text {
  max-width: 720px;
  font-size: 1.12rem;
  color: var(--muted);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(244, 123, 32, 0.24);
}

.btn-primary:hover {
  background: var(--orange-dark);
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--line);
  box-shadow: 0 10px 26px rgba(8, 59, 99, 0.08);
}

.contact-card,
.service-card,
.strength-grid > div,
.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-card {
  padding: 28px;
  border-top: 5px solid var(--orange);
}

.contact-card h2 {
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}

.contact-card p:last-child {
  margin-bottom: 0;
}

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

.split {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1fr);
  gap: 50px;
}

.split p {
  color: var(--muted);
  font-size: 1.04rem;
}

.services {
  background: var(--bg);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 680px;
}

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

.service-card {
  position: relative;
  min-height: 220px;
  padding: 28px;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -58px auto;
  width: 135px;
  height: 135px;
  background: rgba(244, 123, 32, 0.1);
  border-radius: 50%;
}

.service-card.wide {
  grid-column: span 3;
  min-height: auto;
}

.card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  background: rgba(8, 59, 99, 0.08);
  color: var(--navy);
  border-radius: 14px;
  font-weight: 900;
}

.service-card p,
.strength-grid p,
.cta p,
.site-footer p {
  color: var(--muted);
}

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

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

.strength-grid > div {
  padding: 26px;
  box-shadow: none;
  border-top: 4px solid var(--navy);
}

.cta {
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  color: var(--white);
}

.cta h2,
.cta h3 {
  color: var(--white);
}

.cta .eyebrow {
  color: #ffb276;
}

.cta p {
  color: rgba(255, 255, 255, 0.78);
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr);
  gap: 34px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-list a {
  display: inline-flex;
  width: fit-content;
  color: var(--white);
  font-weight: 800;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.contact-form {
  padding: 28px;
  color: var(--ink);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  font-weight: 800;
  color: var(--navy);
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: #fbfdff;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(244, 123, 32, 0.22);
  border-color: var(--orange);
}

.form-note {
  margin: 12px 0 0;
  font-size: 0.88rem;
  color: var(--muted) !important;
}

.site-footer {
  padding: 34px 0;
  background: #061f34;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: start;
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.site-footer a:hover {
  color: #ffb276;
}

@media (max-width: 860px) {
  .header-banner {
    overflow: hidden;
  }

  .header-banner img {
    width: 100%;
    min-width: 720px;
    transform: translateX(-9%);
  }

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

  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    padding: 12px;
    border-radius: 12px;
  }

  .nav-links a:hover {
    background: var(--bg);
  }

  .hero-grid,
  .split,
  .cta-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .strength-grid {
    grid-template-columns: 1fr;
  }

  .service-card.wide {
    grid-column: auto;
  }

  .section {
    padding: 62px 0;
  }
}

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

  .navbar {
    padding-inline: 14px;
  }

  .brand span {
    font-size: 0.92rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .contact-card,
  .service-card,
  .strength-grid > div,
  .contact-form {
    border-radius: 18px;
    padding: 22px;
  }
}
