:root {
  --black: #020202;
  --ink: #172033;
  --muted: #5c6679;
  --blue: #0075bd;
  --blue-dark: #082f56;
  --red: #e12c2e;
  --gold: #e7b64f;
  --surface: #f5f6f8;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

.section-pad {
  padding: 92px 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  background: #030303;
}

.nav-shell {
  width: min(1360px, calc(100% - 80px));
  height: 66px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  width: 161px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.nav-links a {
  transition: color .2s ease, transform .2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffd21f;
}

.nav-links a:hover {
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 9px;
  border: 0;
  background: transparent;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.hero {
  min-height: 680px;
  padding-top: 66px;
  display: grid;
  align-items: center;
  background: linear-gradient(90deg, rgba(0, 0, 0, .42) 0%, rgba(0, 0, 0, .08) 58%), url("./assets/Image 4 1.png") center / cover no-repeat;
}

.hero-content {
  width: min(1170px, calc(100% - 48px));
  margin: 0 auto;
  color: #fff;
}

.hero h1 {
  margin: 0 0 22px;
  max-width: 740px;
  font-size: clamp(52px, 4.55vw, 72px);
  line-height: 1.03;
  letter-spacing: 0;
}

.hero p {
  max-width: 610px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, .9);
  font-size: 18px;
  line-height: 1.45;
  font-weight: 700;
}

.hero-actions,
.newsletter-form {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  border: 0;
  border-radius: 16px 4px 16px 4px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn-icon {
  width: 13px;
  height: 13px;
  margin-left: 8px;
  object-fit: contain;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, .18);
}

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

.btn-light {
  color: var(--blue);
  background: #fff;
}

.btn-red {
  color: #fff;
  background: var(--red);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 96px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.12;
  letter-spacing: 0;
}

.intro-copy > p:not(.eyebrow),
.section-heading > p,
.newsletter p,
.cta p,
.footer-grid p {
  color: var(--muted);
  line-height: 1.55;
}

.intro-copy h2 {
  max-width: 560px;
  margin-bottom: 20px;
}

.stats-panel {
  width: min(500px, 100%);
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border-radius: 8px;
  background: #f7f8fa;
  box-shadow: 0 10px 30px rgba(20, 32, 52, .06);
}

.stats-panel div {
  padding: 28px 18px;
  text-align: center;
}

.stats-panel div + div {
  border-left: 1px solid #e8ebf0;
}

.stats-panel strong {
  display: block;
  color: var(--red);
  font-size: 30px;
  line-height: 1;
}

.stats-panel span {
  display: block;
  margin-top: 8px;
  color: #657084;
  font-size: 12px;
  font-weight: 700;
}

.intro-image img {
  width: 100%;
  aspect-ratio: 470 / 296;
  object-fit: cover;
  border-radius: 8px;
}

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

.section-heading {
  max-width: 820px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 16px;
}

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

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(24, 34, 48, .08);
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(24, 34, 48, .14);
}

.service-card img {
  width: 100%;
  height: 256px;
  object-fit: cover;
}

.service-card div {
  min-height: 188px;
  padding: 30px 30px 34px;
}

.card-number {
  position: absolute;
  top: 0;
  left: 18px;
  z-index: 1;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 0 0 8px 8px;
  color: #fff;
  background: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.service-card h3,
.feature-item h3 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 18px;
}

.service-card p,
.feature-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 22px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.text-link img {
  width: 11px;
  height: 11px;
  object-fit: contain;
}

.service-card a:hover {
  color: var(--red);
}

.services-more {
  margin-top: 48px;
  text-align: center;
}

.services-more h3 {
  margin: 0 0 22px;
  font-size: 21px;
}

.connections {
  color: #fff;
  background: linear-gradient(180deg, #082f56 0%, #155994 100%);
}

.section-heading.light h2,
.section-heading.light p {
  color: #fff;
}

.section-heading.light p {
  color: rgba(255, 255, 255, .72);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 26px;
  margin-top: 56px;
}

.feature-item {
  text-align: center;
}

.feature-item img {
  width: 74px;
  height: 84px;
  margin: 0 auto 24px;
  object-fit: contain;
}

.feature-item h3 {
  color: #fff;
}

.feature-item p {
  color: rgba(255, 255, 255, .72);
}

.newsletter {
  text-align: center;
  background: #f7f7f8;
}

.newsletter .container {
  max-width: 840px;
}

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

.newsletter-form {
  justify-content: center;
  margin-top: 32px;
}

.newsletter-form input {
  width: min(420px, 100%);
  height: 48px;
  padding: 0 20px;
  border: 1px solid #dfe2e8;
  border-radius: 8px;
  outline: none;
  color: var(--ink);
}

.newsletter-form input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 117, 189, .15);
}

.cta {
  min-height: 350px;
  display: grid;
  align-items: center;
  color: #fff;
  background-image: url("./assets/Rectangle 2.png"), url("./assets/Gradient.png");
  background-position: right center, center;
  background-size: cover, cover;
  background-repeat: no-repeat;
}

.cta h2 {
  color: #fff;
  font-size: clamp(36px, 4vw, 56px);
}

.cta p {
  max-width: 700px;
  color: rgba(255, 255, 255, .86);
}

.cta p a {
  color: #ffd21f;
  font-weight: 800;
}

.site-footer {
  padding: 68px 0 34px;
  color: rgba(255, 255, 255, .8);
  background: #030303;
}

.footer-grid {
  display: grid;
  grid-template-columns: 160px 1fr 310px;
  gap: 86px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.footer-grid h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 14px;
}

.footer-grid a {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, .7);
  font-size: 13px;
}

.footer-grid a:hover {
  color: #ffd21f;
}

.footer-grid p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-line img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.legal-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.legal-note img {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  object-fit: contain;
}

.socials {
  display: flex;
  gap: 18px;
  margin-top: 28px;
}

.socials a {
  width: 24px;
  height: 24px;
  display: block;
  margin: 0;
}

.socials img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.copyright {
  margin: 30px 0 0;
  color: rgba(255, 255, 255, .45);
  text-align: center;
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-list .reveal:nth-child(2) {
  transition-delay: .12s;
}

.stagger-list .reveal:nth-child(3) {
  transition-delay: .24s;
}

.stagger-list .reveal:nth-child(4) {
  transition-delay: .08s;
}

.stagger-list .reveal:nth-child(5) {
  transition-delay: .16s;
}

.stagger-list .reveal:nth-child(6) {
  transition-delay: .24s;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.placeholder-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: #f7f7f8;
}

.page-hero {
  min-height: 320px;
  padding-top: 66px;
  display: grid;
  place-items: center;
  color: #fff;
  text-align: center;
}

.page-hero h1 {
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.08;
}

.page-hero p {
  width: min(830px, 100%);
  margin: 0 auto;
  color: rgba(255, 255, 255, .9);
  font-size: 17px;
  line-height: 1.5;
  font-weight: 700;
}

.services-hero {
  background: linear-gradient(rgba(0, 51, 100, .70), rgba(0, 51, 100, .70)), url("./assets/services-page-banner.png") center / cover no-repeat;
}

.about-hero {
  background: linear-gradient(rgba(0, 51, 100, .70), rgba(0, 51, 100, .70)), url("./assets/about-page-banner.png") center / cover no-repeat;
}

.service-list-block {
  background: #f2f3f5;
}

.white {
  background: #fff;
}

.info-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.info-card {
  min-height: 166px;
  padding: 30px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(24, 34, 48, .05);
  transition: transform .22s ease, box-shadow .22s ease;
}

.info-card.outline {
  border: 1px solid #dce2ea;
  box-shadow: none;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(24, 34, 48, .1);
}

.info-card img {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
}

.info-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
}

.info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.why-panel-wrap {
  padding-top: 84px;
  padding-bottom: 84px;
}

.why-panel,
.pill-panel {
  border-radius: 10px 10px 36px 10px;
  color: #fff;
  background: linear-gradient(180deg, #082f56 0%, #185d9b 100%);
  text-align: center;
}

.why-panel {
  padding: 62px 60px 54px;
}

.why-panel h2,
.pill-panel h2 {
  margin: 0;
  color: #fff;
}

.why-panel > p {
  margin: 12px 0 44px;
  color: var(--gold);
  font-size: 17px;
  font-weight: 800;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.why-item {
  padding: 0 24px;
  border-left: 1px solid rgba(255, 255, 255, .16);
}

.why-item:first-child {
  border-left: 0;
}

.why-item img {
  width: 78px;
  height: 88px;
  margin: 0 auto 18px;
  object-fit: contain;
}

.why-item span {
  display: block;
  color: rgba(255, 255, 255, .86);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 90px;
  align-items: center;
}

.about-intro h2 {
  margin-bottom: 28px;
  color: var(--blue);
}

.about-intro p {
  max-width: 610px;
  color: var(--muted);
  line-height: 1.58;
}

.about-logo {
  width: 380px;
  margin: 0 auto;
}

.about-service {
  background: #f2f3f5;
}

.stats-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(620px, 100%);
  margin: 36px auto 64px;
  text-align: center;
}

.stats-line div + div {
  border-left: 1px solid #dce1e7;
}

.stats-line strong {
  display: block;
  color: var(--red);
  font-size: 36px;
  line-height: 1;
}

.stats-line span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.about-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.about-card {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(24, 34, 48, .07);
}

.about-card img {
  width: 100%;
  height: 182px;
  object-fit: cover;
}

.about-card h3 {
  margin: 24px 18px 12px;
  font-size: 17px;
}

.about-card p {
  margin: 0 18px 24px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.pill-panel {
  margin-top: 60px;
  padding: 54px 60px;
}

.pill-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px 28px;
  margin-top: 38px;
}

.pill-grid span {
  min-width: 190px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  font-size: 13px;
  font-weight: 800;
}

.pill-grid img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 54px;
  text-align: center;
}

.value-card img {
  width: 100%;
  aspect-ratio: 1.52 / 1;
  border-radius: 8px;
  object-fit: cover;
}

.value-card h3 {
  margin: 28px 0 16px;
  font-size: 18px;
}

.value-card p {
  margin: 0 auto;
  max-width: 300px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.contact-main {
  padding-top: 66px;
  background: #fff;
}

.contact-panel {
  min-height: 880px;
  display: grid;
  grid-template-columns: 41.7% 1fr;
}

.contact-image {
  position: relative;
  overflow: hidden;
  background: #eef0f2;
}

.contact-image h1 {
  position: absolute;
  z-index: 1;
  top: 118px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  color: var(--blue);
  font-size: clamp(54px, 5.5vw, 92px);
  line-height: 1;
  white-space: nowrap;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.contact-form-wrap {
  padding: 92px min(10vw, 150px) 80px;
}

.contact-form-wrap h2 {
  margin-bottom: 32px;
  color: #145f91;
  font-size: clamp(42px, 4vw, 64px);
}

.contact-form-wrap > p {
  max-width: 700px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
  font-weight: 700;
}

.contact-detail {
  margin: 34px 0 58px;
}

.contact-detail a {
  color: var(--red);
  text-decoration: underline;
}

.contact-form {
  position: relative;
  width: min(660px, 100%);
}

.contact-form label {
  display: block;
  margin-top: 28px;
  color: #7b8494;
  font-size: 17px;
}

.contact-form input {
  width: 100%;
  height: 48px;
  border: 0;
  border-bottom: 1px solid #c8cfd8;
  outline: none;
  color: var(--ink);
  font-size: 17px;
}

.contact-form textarea {
  width: 100%;
  height: 152px;
  margin-top: 28px;
  padding: 18px;
  resize: none;
  border: 1px solid #c8cfd8;
  border-radius: 4px;
  outline: none;
  color: var(--ink);
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 117, 189, .12);
}

.contact-form input.is-invalid,
.contact-form textarea.is-invalid {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(225, 44, 46, .12);
}

.field-error {
  min-height: 18px;
  margin: 8px 0 0;
  color: var(--red);
  font-size: 13px;
  line-height: 1.35;
}

.form-status {
  display: none;
  margin-top: 18px;
  padding: 14px 16px;
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  color: #145f91;
  background: rgba(0, 117, 189, .08);
  font-size: 14px;
  font-weight: 700;
}

.form-status.is-visible {
  display: block;
}

.message-count {
  position: absolute;
  right: 18px;
  top: 287px;
  color: #7b8494;
  font-size: 15px;
}

.contact-form .btn {
  min-width: 206px;
  margin-top: 30px;
}

.contact-footer {
  padding-top: 90px;
}

@media (max-width: 1100px) {
  .intro-grid,
  .footer-grid {
    gap: 48px;
  }

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

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

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

  .why-item {
    border-left: 0;
    padding: 20px;
  }

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

  .contact-image {
    min-height: 620px;
  }
}

@media (max-width: 860px) {
  .section-pad {
    padding: 68px 0;
  }

  .nav-shell {
    width: calc(100% - 32px);
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 66px;
    right: 16px;
    width: 210px;
    display: none;
    padding: 18px;
    border-radius: 8px;
    background: rgba(0, 0, 0, .92);
  }

  .nav-links.is-open {
    display: grid;
    gap: 18px;
  }

  .hero {
    min-height: 620px;
  }

  .intro-grid,
  .service-grid,
  .footer-grid,
  .about-intro-grid {
    grid-template-columns: 1fr;
  }

  .intro-image {
    order: -1;
  }

  .footer-grid {
    gap: 28px;
  }

  .page-hero {
    min-height: 300px;
  }

  .about-logo {
    width: 280px;
  }

  .contact-form-wrap {
    padding: 64px 24px;
  }
}

@media (max-width: 640px) {
  .container,
  .hero-content {
    width: calc(100% - 32px);
  }

  .brand img {
    width: 132px;
  }

  .hero {
    min-height: 560px;
    background-position: 62% center;
  }

  .hero h1 {
    font-size: 42px;
  }

  .stats-panel {
    grid-template-columns: 1fr;
  }

  .stats-panel div + div {
    border-left: 0;
    border-top: 1px solid #e8ebf0;
  }

  .service-card img {
    height: 220px;
  }

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

  .info-card-grid,
  .about-card-grid,
  .value-grid,
  .why-grid,
  .stats-line {
    grid-template-columns: 1fr;
  }

  .stats-line div + div {
    border-left: 0;
    border-top: 1px solid #dce1e7;
    padding-top: 24px;
    margin-top: 24px;
  }

  .why-panel,
  .pill-panel {
    padding: 42px 20px;
  }

  .pill-grid span {
    width: 100%;
  }

  .contact-image {
    min-height: 500px;
  }

  .contact-image h1 {
    left: 50%;
    top: 72px;
  }

  .newsletter-form input,
  .newsletter-form .btn {
    width: 100%;
  }
}
