:root {
  --navy: #032b5c;
  --navy-dark: #011d3f;
  --teal: #0b9fb2;
  --teal-light: #59d2dc;
  --text: #12233a;
  --muted: #64748b;
  --light: #f4f8fb;
  --white: #ffffff;
  --border: #dce7ef;
  --shadow: 0 22px 60px rgba(1, 29, 63, 0.14);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  line-height: 1.65;
  background: var(--white);
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(220, 231, 239, 0.8);
}

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

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

.brand img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  object-position: top;
  border-radius: 12px;
}

.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand strong {
  color: var(--navy);
  font-size: 16px;
}

.brand small {
  color: var(--teal);
  font-size: 13px;
  margin-top: 4px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 600;
}

.main-nav a {
  transition: color .2s ease;
}

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

.nav-cta {
  padding: 11px 18px;
  color: var(--white) !important;
  background: var(--navy);
  border-radius: 10px;
}

.menu-button {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(125deg, rgba(1,29,63,.98), rgba(3,43,92,.94) 52%, rgba(7,115,132,.9));
  color: var(--white);
  padding: 105px 0 90px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .08;
  background-image:
    linear-gradient(rgba(255,255,255,.6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.6) 1px, transparent 1px);
  background-size: 44px 44px;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: .35;
}

.hero-glow-one {
  width: 420px;
  height: 420px;
  background: var(--teal);
  right: -170px;
  top: -120px;
}

.hero-glow-two {
  width: 280px;
  height: 280px;
  background: #3b82f6;
  left: -160px;
  bottom: -160px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 70px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  margin-bottom: 16px;
}

.hero .eyebrow {
  color: var(--teal-light);
}

h1 {
  max-width: 720px;
  font-size: clamp(46px, 6vw, 78px);
  line-height: 1.02;
  letter-spacing: -.05em;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: -.035em;
  margin-bottom: 20px;
}

h3 {
  font-size: 21px;
  line-height: 1.3;
}

.hero-lead {
  max-width: 650px;
  color: #dceaf4;
  font-size: 20px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin: 34px 0 30px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 11px;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), #0c7f98);
  box-shadow: 0 13px 28px rgba(11,159,178,.25);
}

.button-secondary {
  color: var(--white);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.28);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  color: #d7e8f2;
  font-size: 14px;
}

.hero-card {
  background: rgba(255,255,255,.97);
  color: var(--text);
  padding: 32px;
  border-radius: 26px;
  box-shadow: 0 30px 80px rgba(0,0,0,.25);
  transform: rotate(1.5deg);
}

.hero-card img {
  width: 100%;
  max-height: 305px;
  object-fit: contain;
  border-radius: 18px;
}

.hero-card-copy {
  text-align: center;
  color: var(--navy);
  font-weight: 700;
  margin: 16px 0 22px;
}

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

.stat-grid div {
  padding: 14px 8px;
  text-align: center;
  background: var(--light);
  border-radius: 12px;
}

.stat-grid strong,
.stat-grid span {
  display: block;
}

.stat-grid strong {
  color: var(--navy);
  font-size: 14px;
}

.stat-grid span {
  color: var(--muted);
  font-size: 10px;
}

.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.trust-items {
  min-height: 88px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: #6b7e91;
  font-weight: 700;
}

.section {
  padding: 100px 0;
}

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

.section-heading p {
  color: var(--muted);
  font-size: 18px;
}

.cards {
  display: grid;
  gap: 24px;
}

.three-columns {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 14px 45px rgba(3,43,92,.07);
}

.service-card .icon {
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--teal));
  font-weight: 800;
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  color: var(--muted);
}

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

.section-heading.light p {
  color: #c8d8e5;
}

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

.industry-grid article {
  padding: 28px;
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.13);
}

.industry-grid article > span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--teal-light);
  background: rgba(89,210,220,.12);
  font-size: 23px;
  margin-bottom: 18px;
}

.industry-grid h3 {
  margin-bottom: 8px;
}

.industry-grid p {
  color: #c8d8e5;
  font-size: 14px;
}

.candidates-section {
  background: var(--light);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split-grid > div > p {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 20px;
}

.check-list {
  list-style: none;
  margin: 28px 0;
}

.check-list li {
  margin: 13px 0;
  padding-left: 30px;
  position: relative;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 800;
}

.process-card {
  background: var(--white);
  border-radius: 22px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.process-card h3 {
  margin-bottom: 22px;
}

.process-card ol {
  list-style: none;
}

.process-card li {
  display: flex;
  gap: 16px;
  margin: 22px 0;
}

.process-card li > span {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--navy);
  border-radius: 50%;
  font-weight: 800;
}

.process-card p {
  color: var(--muted);
  font-size: 14px;
}

.about-visual {
  min-height: 460px;
  border-radius: 24px;
  background:
    linear-gradient(rgba(2,31,67,.72), rgba(2,31,67,.72)),
    radial-gradient(circle at top right, var(--teal), transparent 45%),
    linear-gradient(135deg, #0f6f84, var(--navy-dark));
  display: grid;
  place-items: center;
  padding: 30px;
}

.about-badge {
  width: 290px;
  height: 290px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.35);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: inset 0 0 0 15px rgba(255,255,255,.06);
}

.about-badge strong {
  font-size: 42px;
}

.about-badge span {
  color: var(--teal-light);
}

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

.values div {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 13px;
}

.values strong,
.values span {
  display: block;
}

.values strong {
  color: var(--navy);
  margin-bottom: 6px;
}

.values span {
  color: var(--muted);
  font-size: 12px;
}

.contact-section {
  background: var(--light);
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.contact-grid > div > p {
  color: var(--muted);
  font-size: 17px;
}

.contact-info {
  margin-top: 34px;
}

.contact-info > * {
  display: block;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.contact-info span,
.contact-info strong {
  display: block;
}

.contact-info span {
  color: var(--muted);
  font-size: 13px;
}

.contact-info strong {
  color: var(--navy);
  margin-top: 3px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 34px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.contact-form label:nth-of-type(5),
.contact-form button,
.form-note {
  grid-column: 1 / -1;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cddae4;
  border-radius: 10px;
  padding: 13px 14px;
  font: inherit;
  color: var(--text);
  background: #fbfdfe;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(11,159,178,.2);
  border-color: var(--teal);
}

textarea {
  resize: vertical;
}

.form-note {
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

footer {
  padding: 42px 0;
  color: #c9d8e4;
  background: var(--navy-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 30px;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-brand strong {
  color: var(--white);
  font-size: 18px;
}

.footer-grid a:hover {
  color: var(--teal-light);
}

@media (max-width: 900px) {
  .menu-button {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 75px;
    padding: 20px;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border-radius: 14px;
    box-shadow: var(--shadow);
  }

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

  .hero-grid,
  .split-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .hero {
    padding-top: 75px;
  }

  .hero-card {
    max-width: 600px;
  }

  .three-columns,
  .industry-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

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

  .brand span {
    display: none;
  }

  .section {
    padding: 72px 0;
  }

  .trust-items {
    padding: 20px 0;
    flex-wrap: wrap;
    justify-content: center;
  }

  .three-columns,
  .industry-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form label,
  .contact-form label:nth-of-type(5),
  .contact-form button,
  .form-note {
    grid-column: 1;
  }

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

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

  h1 {
    font-size: 45px;
  }
}
