:root {
  --blue: #063276;
  --deep-blue: #05245a;
  --green: #4aa338;
  --text: #061633;
  --muted: #1c2a45;
  --line: #d8e3f0;
  --soft: #f3f8fd;
  --shadow: 0 16px 34px rgba(7, 35, 78, 0.13);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: "Inter", Arial, sans-serif;
  letter-spacing: 0;
}

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

button,
a,
.service-card,
.icon-box,
.notice,
.contact-panel {
  transition:
    transform 320ms var(--ease-out),
    box-shadow 320ms var(--ease-out),
    color 260ms ease,
    background 320ms var(--ease-out),
    border-color 260ms ease;
  will-change: transform;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 118px;
  padding: 18px 31px 18px 34px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 3px 20px rgba(6, 26, 66, 0.12);
}

.brand img {
  width: 275px;
}

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

.desktop-nav a {
  position: relative;
  color: #051024;
  padding: 16px 0;
}

.desktop-nav a:not(.nav-button)::before {
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 0;
  height: 2px;
  content: "";
  background: var(--green);
  transition: width 320ms var(--ease-soft);
}

.desktop-nav a:not(.nav-button):hover {
  color: #0b3e91;
}

.desktop-nav a:not(.nav-button):hover::before {
  width: 100%;
}

.desktop-nav a.active::after {
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 29px;
  height: 2px;
  content: "";
  background: var(--green);
}

.desktop-nav .bi {
  color: #697891;
  font-size: 11px;
}

.desktop-nav .nav-button {
  min-width: 104px;
  padding: 13px 20px;
  color: #fff;
  text-align: center;
  background: #0c3d91;
  border-radius: 4px;
  box-shadow: 0 6px 14px rgba(6, 40, 101, 0.2);
}

.desktop-nav .nav-button:hover,
.email-button:hover {
  transform: translate3d(0, -3px, 0);
  box-shadow: 0 13px 24px rgba(6, 40, 101, 0.28);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  color: #0a1830;
  background: transparent;
  border: 0;
  font-size: 42px;
  line-height: 1;
}

.menu-button:hover {
  color: var(--green);
  transform: scale(1.06);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 44%, rgba(43, 111, 194, 0.13), transparent 20%),
    radial-gradient(circle at 42% 92%, rgba(62, 143, 218, 0.12), transparent 25%),
    linear-gradient(180deg, #fbfdff 0%, #eef6ff 100%);
  border-bottom: 1px solid #d4e1ee;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 644px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 76px 48px 52px;
}

.hero::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 170px;
  pointer-events: none;
  content: "";
  background:
    repeating-radial-gradient(ellipse at 12% 100%, transparent 0 7px, rgba(71, 139, 206, 0.16) 8px 9px, transparent 10px 18px);
  opacity: 0.45;
}

.hero-copy {
  position: relative;
  z-index: 5;
  padding-top: 5px;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #073884;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 800;
}

.desktop-status {
  position: relative;
  padding-bottom: 17px;
}

.desktop-status::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 61px;
  height: 2px;
  content: "";
  background: var(--green);
}

.mobile-status {
  display: none;
  padding: 10px 15px;
  border: 1px solid var(--green);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
}

.mobile-status .bi {
  font-size: 22px;
}

.hero h1 {
  max-width: 430px;
  margin: 23px 0 20px;
  color: #072b64;
  font-size: 54px;
  font-weight: 800;
  line-height: 1.14;
}

.hero h1 span {
  display: block;
}

.hero h1 strong {
  display: block;
  color: var(--green);
}

.hero-copy > p {
  max-width: 382px;
  margin: 0 0 14px;
  color: #0b1427;
  font-size: 19px;
  line-height: 1.65;
}

.hero-copy h2 {
  margin: 0 0 34px;
  color: #08285f;
  font-size: 20px;
  font-weight: 800;
}

.notice {
  display: flex;
  align-items: center;
  gap: 24px;
  width: min(397px, 100%);
  padding: 24px 24px;
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.notice:hover {
  transform: translate3d(0, -5px, 0);
  box-shadow: 0 20px 38px rgba(7, 35, 78, 0.18);
}

.notice .bi {
  flex: 0 0 58px;
  color: var(--green);
  font-size: 58px;
}

.notice h3 {
  margin: 0 0 8px;
  color: #08285f;
  font-size: 21px;
  line-height: 1.15;
}

.notice p {
  margin: 0;
  color: #12223b;
  font-size: 18px;
}

.hero-art {
  position: relative;
  z-index: 1;
  align-self: end;
  min-height: 520px;
}

.hero-art img {
  position: absolute;
  right: -9px;
  bottom: -12px;
  width: min(610px, 100%);
  filter: drop-shadow(0 16px 22px rgba(9, 37, 76, 0.14));
  transition: transform 520ms var(--ease-soft), filter 520ms var(--ease-soft);
  will-change: transform;
}

.hero-art:hover img {
  transform: translate3d(0, -8px, 0) rotate(-1deg);
  filter: drop-shadow(0 23px 28px rgba(9, 37, 76, 0.2));
}

.gear,
.dot-grid {
  position: absolute;
  display: block;
}

.gear::before {
  content: "\F3E5";
  font-family: "bootstrap-icons";
  font-size: inherit;
  line-height: 1;
}

.gear-green {
  top: 25px;
  left: 46px;
  color: var(--green);
  font-size: 112px;
}

.gear-blue {
  right: -92px;
  top: 250px;
  color: #2b72bd;
  font-size: 110px;
  opacity: 0.78;
}

.dot-grid {
  top: 42px;
  right: 105px;
  width: 84px;
  height: 84px;
  background-image: radial-gradient(#8fb1d7 2px, transparent 2px);
  background-size: 18px 18px;
}

.services {
  max-width: 1120px;
  margin: 0 auto;
  padding: 46px 48px 58px;
  text-align: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--green);
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 800;
}

.eyebrow span {
  width: 114px;
  height: 1px;
  background: rgba(74, 163, 56, 0.58);
}

.services h2 {
  margin: 22px 0 14px;
  color: #0b3e91;
  font-size: 34px;
  line-height: 1.2;
}

.services h2 strong {
  color: var(--green);
}

.section-copy {
  max-width: 600px;
  margin: 0 auto 52px;
  color: #0b1830;
  font-size: 18px;
  line-height: 1.55;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.service-card {
  padding: 0 32px;
  border-right: 1px solid #d8e2ef;
}

.service-card:hover {
  transform: translate3d(0, -7px, 0);
}

.service-card:last-child {
  border-right: 0;
}

.icon-box {
  display: grid;
  place-items: center;
  width: 94px;
  height: 94px;
  margin: 0 auto 22px;
  color: #0b4a9f;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(7, 35, 78, 0.11);
  font-size: 50px;
}

.service-card:hover .icon-box {
  color: #fff;
  background: linear-gradient(135deg, #0b4a9f, #49a337);
  box-shadow: 0 16px 28px rgba(8, 56, 132, 0.22);
  transform: translate3d(0, -4px, 0) scale(1.04);
}

.service-card:nth-child(2) .icon-box,
.service-card:nth-child(4) .icon-box {
  font-size: 58px;
}

.service-card h3 {
  margin: 0 0 12px;
  color: #0b3e91;
  font-size: 18px;
  line-height: 1.25;
}

.service-card p {
  margin: 0;
  color: #0b1830;
  font-size: 16px;
  line-height: 1.6;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 45%) minmax(0, 55%);
  background: #fff;
}

.contact-panel {
  display: flex;
  gap: 27px;
  min-height: 260px;
  padding: 43px 58px;
  color: #fff;
  background:
    radial-gradient(circle at 20% 22%, rgba(38, 118, 223, 0.42), transparent 25%),
    linear-gradient(135deg, #053e98 0%, #061d53 100%);
}

.mail-icon {
  display: grid;
  flex: 0 0 84px;
  place-items: center;
  width: 84px;
  height: 84px;
  color: var(--green);
  background: #fff;
  border-radius: 50%;
  font-size: 42px;
}

.contact-copy h2 {
  margin: 0 0 13px;
  font-size: 29px;
  line-height: 1.2;
}

.contact-copy p {
  max-width: 348px;
  margin: 0 0 24px;
  font-size: 17px;
  line-height: 1.55;
}

.email-button {
  display: inline-flex;
  position: relative;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  gap: 15px;
  min-width: 255px;
  padding: 14px 22px;
  color: #fff;
  background: linear-gradient(180deg, #61b548, #3f9835);
  border-radius: 5px;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.16);
}

.email-button::before {
  position: absolute;
  top: 0;
  left: -85%;
  width: 55%;
  height: 100%;
  content: "";
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: skewX(-18deg);
  transition: left 680ms var(--ease-soft);
}

.email-button:hover::before {
  left: 130%;
}

.email-button .bi {
  position: relative;
  z-index: 1;
}

.email-button .bi {
  font-size: 24px;
}

.trust-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  overflow: hidden;
  padding: 34px 60px;
}

.trust-panel::after {
  position: absolute;
  right: -70px;
  bottom: 0;
  width: 220px;
  height: 320px;
  content: "";
  background: linear-gradient(115deg, transparent 0 34%, var(--green) 34% 52%, #0d4da1 52% 100%);
}

.trust-panel img {
  width: 275px;
  margin-bottom: 26px;
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 520px;
  width: 100%;
}

.trust-items div {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 0 20px;
  border-right: 1px solid #d8e2ef;
  color: #0a1830;
  font-size: 13px;
  text-align: center;
}

.trust-items div:last-child {
  border-right: 0;
}

.trust-items .bi {
  color: #0b4a9f;
  font-size: 42px;
  transition: transform 320ms var(--ease-out), color 260ms ease;
  will-change: transform;
}

.trust-items div:hover .bi {
  color: var(--green);
  transform: translate3d(0, -3px, 0) scale(1.08);
}

.footer {
  color: #fff;
  background: linear-gradient(90deg, #062d70, #04173a);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 48px 15px;
}

.footer img {
  width: 258px;
}

.socials {
  display: flex;
  gap: 25px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  font-size: 23px;
}

.socials a:hover {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
  transform: translate3d(0, -4px, 0);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.22);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.footer p {
  max-width: 1120px;
  margin: 0 auto;
  padding: 10px 48px 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  font-size: 18px;
}

@media (max-width: 900px) {
  .site-header {
    height: 153px;
    padding: 34px 48px 25px;
    box-shadow: none;
  }

  .brand img {
    width: 304px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero-inner {
    display: flex;
    flex-direction: column;
    min-height: 667px;
    padding: 70px 48px 26px;
  }

  .desktop-status {
    display: none;
  }

  .mobile-status {
    display: inline-flex;
    font-size: 18px;
  }

  .hero h1 {
    max-width: 390px;
    margin-top: 25px;
    font-size: 49px;
    line-height: 1.18;
  }

  .hero-copy > p {
    max-width: 385px;
    font-size: 21px;
    line-height: 1.55;
  }

  .hero-copy h2 {
    font-size: 21px;
  }

  .hero-art {
    position: absolute;
    right: -72px;
    bottom: 78px;
    width: 50%;
    min-height: 410px;
    z-index: 1;
  }

  .hero-art img {
    right: 0;
    width: 465px;
  }

  .gear-green {
    left: -6px;
    top: 10px;
    font-size: 75px;
  }

  .gear-blue {
    right: -70px;
    top: 195px;
    font-size: 82px;
  }

  .dot-grid {
    right: 52px;
    top: -4px;
  }

  .notice {
    margin-top: 29px;
  }

  .services {
    padding: 38px 51px 40px;
  }

  .services h2 {
    font-size: 36px;
  }

  .section-copy {
    margin-bottom: 25px;
  }

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

  .service-card {
    min-height: 183px;
    padding: 25px 56px 22px;
    background: #fff;
    border: 0;
    border-radius: 10px;
    box-shadow: 0 12px 26px rgba(7, 35, 78, 0.09);
    text-align: left;
  }

  .icon-box {
    width: auto;
    height: 55px;
    margin: 0 0 15px;
    place-items: start;
    background: transparent;
    box-shadow: none;
    font-size: 45px;
  }

  .service-card h3 {
    font-size: 20px;
  }

  .service-card p {
    font-size: 18px;
    line-height: 1.5;
  }

  .contact-band {
    display: block;
    padding: 0 49px 24px;
  }

  .contact-panel {
    min-height: auto;
    padding: 29px 42px 22px;
    border-radius: 10px;
  }

  .trust-panel {
    display: none;
  }

  .footer-inner {
    padding: 24px 48px 15px;
  }
}

@media (max-width: 640px) {
  .site-header {
    height: 132px;
    padding: 28px 28px 22px;
  }

  .brand img {
    width: 255px;
  }

  .menu-button {
    width: 38px;
    font-size: 36px;
  }

  .hero-inner {
    min-height: 670px;
    padding: 52px 28px 24px;
  }

  .mobile-status {
    font-size: 14px;
  }

  .hero h1 {
    max-width: 330px;
    font-size: 39px;
  }

  .hero-copy > p {
    max-width: 320px;
    font-size: 17px;
  }

  .hero-copy h2 {
    font-size: 17px;
  }

  .notice {
    width: 100%;
    gap: 17px;
    padding: 20px;
  }

  .notice .bi {
    flex-basis: 48px;
    font-size: 48px;
  }

  .notice h3 {
    font-size: 18px;
  }

  .notice p {
    font-size: 15px;
  }

  .hero-art {
    right: -62px;
    bottom: 94px;
    width: 57%;
  }

  .hero-art img {
    width: 330px;
  }

  .gear-green,
  .gear-blue,
  .dot-grid {
    display: none;
  }

  .services {
    padding: 35px 28px 31px;
  }

  .eyebrow span {
    width: 80px;
  }

  .services h2 {
    font-size: 29px;
  }

  .section-copy {
    font-size: 16px;
  }

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

  .service-card {
    padding: 24px 28px;
  }

  .contact-band {
    padding: 0 28px 24px;
  }

  .contact-panel {
    align-items: center;
    gap: 18px;
    padding: 24px;
  }

  .mail-icon {
    flex-basis: 62px;
    width: 62px;
    height: 62px;
    font-size: 30px;
  }

  .contact-copy h2 {
    font-size: 25px;
  }

  .contact-copy p {
    font-size: 15px;
  }

  .email-button {
    min-width: 0;
    width: 100%;
    padding: 13px 14px;
    font-size: 14px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    padding: 23px 28px 15px;
  }

  .footer img {
    width: 222px;
  }

  .socials {
    gap: 16px;
  }

  .socials a {
    width: 44px;
    height: 44px;
    font-size: 19px;
  }

  .footer p {
    padding: 10px 28px 16px;
    font-size: 15px;
  }
}
