@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/poppins-regular.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/poppins-700.woff2") format("woff2");
}

:root {
  --wi-orange: #315fa5;
  --wi-orange-dark: #244d8b;
  --wi-blue: #315fa5;
  --wi-blue-dark: #1f58ac;
  --wi-green: #315fa5;
  --wi-charcoal: #26364d;
  --wi-text: #26313d;
  --wi-muted: #697582;
  --wi-line: #dfe5eb;
  --wi-soft: #f4f8fd;
  --wi-white: #ffffff;
  --shadow: 0 18px 45px rgba(31, 88, 172, .16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--wi-text);
  background: var(--wi-white);
  font-family: Poppins, "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
}

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

.container {
  width: min(100% - 40px, 1320px);
  margin-inline: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-inline: -12px;
}

.row > * {
  width: 100%;
  padding-inline: 12px;
}

.g-4 {
  row-gap: 24px;
}

.g-5 {
  row-gap: 48px;
}

.align-items-center {
  align-items: center;
}

.navbar > .container,
.navbar-collapse,
.navbar-nav,
.hero-actions {
  display: flex;
  align-items: center;
}

.navbar > .container {
  justify-content: space-between;
}

.navbar-collapse {
  flex: 1 1 auto;
}

.navbar-nav {
  flex-direction: row;
  padding-left: 0;
  list-style: none;
}

.mx-auto {
  margin-inline: auto;
}

.mb-2 {
  margin-bottom: .5rem;
}

.mb-lg-0 {
  margin-bottom: 0;
}

.navbar-toggler {
  display: none;
  width: 44px;
  height: 40px;
  padding: 0;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 7px;
}

.navbar-toggler-icon {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--wi-white);
  box-shadow: 0 -6px 0 var(--wi-white), 0 6px 0 var(--wi-white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: .68rem 1.1rem;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-light {
  color: var(--wi-charcoal);
  background: var(--wi-white);
  border-color: var(--wi-white);
}

.btn-light:hover,
.btn-light:focus {
  color: var(--wi-charcoal);
  background: #eef3f7;
  border-color: #eef3f7;
}

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

.site-nav {
  min-height: 100px;
  background: rgba(67, 114, 185, .95);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  backdrop-filter: blur(14px);
  transition: box-shadow .2s ease, min-height .2s ease;
}

.site-nav.is-scrolled {
  min-height: 72px;
  box-shadow: 0 10px 30px rgba(31, 88, 172, .22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--wi-white);
  font-size: 0;
  font-weight: 700;
  letter-spacing: 0;
}

.brand:hover,
.brand:focus {
  color: var(--wi-white);
}

.brand-logo {
  width: 200px;
  max-height: 76px;
  object-fit: contain;
}

.navbar-nav {
  gap: 20px;
}

.nav-link {
  color: var(--wi-white);
  font-weight: 700;
  font-size: .96rem;
}

.nav-link:hover,
.nav-link:focus {
  color: rgba(255, 255, 255, .78);
}

.btn {
  border-radius: 7px;
  font-weight: 700;
  letter-spacing: 0;
}

.btn-primary {
  color: var(--wi-blue);
  background: var(--wi-white);
  border-color: var(--wi-white);
  box-shadow: 0 12px 28px rgba(20, 45, 78, .18);
}

.btn-primary:hover,
.btn-primary:focus {
  color: var(--wi-blue);
  background: #f1f1f1;
  border-color: #f1f1f1;
}

.btn-outline-primary {
  color: var(--wi-blue);
  border-color: var(--wi-blue);
  background: var(--wi-white);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  color: var(--wi-white);
  background: var(--wi-blue);
  border-color: var(--wi-blue);
}

.hero .btn-outline-primary {
  color: var(--wi-white);
  border-color: rgba(255, 255, 255, .86);
  background: rgba(255, 255, 255, .08);
}

.hero .btn-outline-primary:hover,
.hero .btn-outline-primary:focus {
  color: var(--wi-blue);
  background: var(--wi-white);
  border-color: var(--wi-white);
}

.btn-lg {
  --bs-btn-padding-y: .9rem;
  --bs-btn-padding-x: 1.25rem;
  --bs-btn-font-size: 1rem;
}

.button-icon {
  display: inline-grid;
  width: 17px;
  height: 17px;
  margin-right: 8px;
  place-items: center;
}

.button-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.hero {
  min-height: 760px;
  display: flex;
  align-items: center;
  padding-top: 166px;
  border-bottom: 0;
  background: linear-gradient(90deg, rgba(31, 88, 172, .98), rgba(67, 114, 185, .94));
}

.hero .row {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: clamp(34px, 5vw, 78px);
  margin-inline: 0;
}

.hero .row > * {
  width: auto;
  min-width: 0;
  padding-inline: 0;
}

.hero h1 {
  max-width: 100%;
  margin: 0 0 26px;
  color: var(--wi-white);
  font-size: clamp(2.85rem, 4.5vw, 5.05rem);
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: 0;
  overflow-wrap: normal;
}

.hero-copy {
  max-width: 520px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, .9);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 34px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px 20px;
  color: var(--wi-white);
  font-size: .88rem;
  font-weight: 700;
}

.trust-row span {
  position: relative;
  padding-left: 24px;
}

.trust-row span::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--wi-white);
  font-weight: 700;
}

.hero-media {
  position: relative;
  min-height: 610px;
  margin: 0;
  overflow: hidden;
  border: 6px solid rgba(255, 255, 255, .9);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 22%;
  background: linear-gradient(90deg, rgba(31, 88, 172, .12) 0%, rgba(31, 88, 172, 0) 100%);
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 610px;
  object-fit: cover;
  object-position: 58% center;
}

.hero-media picture {
  display: block;
}

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

.section-heading h2,
.about h2,
.contact-card h2 {
  margin: 0 0 12px;
  color: var(--wi-blue);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: 0;
}

.contact-card h2 {
  color: var(--wi-white);
}

.section-heading p {
  margin: 0;
  color: var(--wi-muted);
  font-size: 1.05rem;
}

.service-card {
  height: 100%;
  min-height: 394px;
  padding: 34px 28px 30px;
  background: var(--wi-white);
  border: 1px solid var(--wi-line);
  border-bottom: 7px solid var(--wi-blue);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(18, 25, 34, .06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(18, 25, 34, .1);
}

.service-card.accent-blue,
.service-card.accent-orange {
  border-bottom-color: var(--wi-blue);
}

.service-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  color: var(--wi-orange);
}

.accent-blue .service-icon,
.accent-orange .service-icon {
  color: var(--wi-blue);
}

.service-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.service-card h3,
.process-grid h3 {
  margin: 0 0 12px;
  color: var(--wi-charcoal);
  font-size: 1.55rem;
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: 0;
}

.service-card p {
  min-height: 94px;
  margin: 0 0 20px;
  color: #52606f;
}

.service-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--wi-text);
  font-weight: 700;
  font-size: .95rem;
}

.service-card li {
  position: relative;
  padding-left: 22px;
}

.service-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--wi-orange);
  font-weight: 700;
}

.accent-blue li::before,
.accent-orange li::before {
  color: var(--wi-blue);
}

.about {
  background: linear-gradient(180deg, #fff 0%, var(--wi-soft) 100%);
}

.about p {
  max-width: 620px;
  color: #445260;
  font-size: 1.04rem;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  margin-top: 28px;
}

.about-points span {
  position: relative;
  padding-left: 30px;
  color: var(--wi-charcoal);
  font-weight: 700;
}

.about-points span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 15px;
  height: 15px;
  border: 3px solid var(--wi-green);
  border-radius: 4px;
}

.about-panel {
  padding: 46px;
  color: var(--wi-white);
  background: linear-gradient(135deg, rgba(31, 88, 172, .96), rgba(67, 114, 185, .95));
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-panel strong {
  display: block;
  max-width: 520px;
  margin-bottom: 22px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: 0;
}

.about-panel p {
  max-width: 500px;
  margin: 0;
  color: rgba(255, 255, 255, .86);
}

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

.process-grid article {
  position: relative;
  padding: 28px 24px;
  border-top: 3px solid var(--wi-line);
}

.process-grid article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 40px;
  right: -17px;
  width: 26px;
  height: 2px;
  background: var(--wi-orange);
}

.process-grid span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  place-items: center;
  color: var(--wi-white);
  background: var(--wi-charcoal);
  border-radius: 8px;
  font-weight: 700;
}

.process-grid p {
  margin: 0;
  color: #566371;
}

.contact-band {
  padding: 0 0 34px;
  background: var(--wi-soft);
}

.contact-card {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1.15fr;
  gap: 28px;
  align-items: center;
  padding: 36px 42px;
  color: var(--wi-white);
  background: linear-gradient(135deg, rgba(31, 88, 172, .96), rgba(67, 114, 185, .95));
  border-radius: 8px;
}

.contact-card p {
  max-width: 550px;
  margin: 0;
  color: rgba(255, 255, 255, .84);
}

.contact-card .btn {
  color: var(--wi-charcoal);
  white-space: nowrap;
}

.contact-method {
  border-left: 1px solid rgba(255, 255, 255, .35);
  padding-left: 22px;
}

.contact-method span,
.contact-method small {
  display: block;
}

.contact-method span {
  font-weight: 700;
}

.contact-method small {
  color: rgba(255, 255, 255, .72);
}

.email-direct {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.email-direct span {
  margin: 0;
  color: rgba(255, 255, 255, .84);
  font-size: .92rem;
}

.email-link {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.site-footer {
  padding: 46px 0 24px;
  color: rgba(255, 255, 255, .72);
  background: rgba(31, 88, 172, .84);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 42px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.footer-brand {
  margin-bottom: 16px;
  color: var(--wi-white);
}

.footer-brand .brand-logo {
  width: 190px;
  max-height: 66px;
}

.footer-brand:hover,
.footer-brand:focus {
  color: var(--wi-white);
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--wi-white);
  font-size: 1rem;
  font-weight: 700;
}

.site-footer a {
  display: block;
  width: fit-content;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, .78);
}

.site-footer a:hover,
.site-footer a:focus {
  color: var(--wi-orange);
}

.site-footer address {
  margin: 0;
}

.footer-bottom {
  padding-top: 20px;
  color: rgba(255, 255, 255, .58);
  font-size: .9rem;
  text-align: center;
}

@media (max-width: 991.98px) {
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .site-nav {
    min-height: 74px;
  }

  .navbar-toggler {
    display: inline-grid;
    place-items: center;
  }

  .navbar-collapse {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 20px 0 10px;
  }

  .navbar-collapse.show {
    display: flex;
  }

  .navbar > .container {
    flex-wrap: wrap;
  }

  .navbar-nav {
    flex-direction: column;
    align-items: stretch;
    margin-inline: 0;
  }

  .nav-cta {
    width: fit-content;
    margin-top: 14px;
  }

  .navbar-nav {
    gap: 8px;
  }

  .hero {
    min-height: auto;
    padding-top: 126px;
    background: linear-gradient(180deg, rgba(31, 88, 172, .98), rgba(67, 114, 185, .94));
  }

  .hero .row {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 8vw, 4.1rem);
  }

  .hero-media,
  .hero-media img {
    min-height: auto;
    height: 430px;
  }

  .hero-media {
    border-radius: 8px;
  }

  .hero-media::before {
    display: none;
  }

  .process-grid,
  .contact-card,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-grid article:not(:last-child)::after {
    display: none;
  }

  .contact-card {
    align-items: start;
  }
}

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

  .col-md-6,
  .col-md-12 {
    width: 100%;
  }

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

  .brand {
    font-size: 1.45rem;
  }

  .hero {
    padding-top: 112px;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 8.6vw, 3rem);
    line-height: 1.08;
  }

  .hero-actions {
    display: grid;
  }

  .trust-row,
  .about-points,
  .process-grid,
  .contact-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-media img {
    height: 330px;
  }

  .service-card {
    min-height: 0;
  }

  .service-card p {
    min-height: 0;
  }

  .about-panel {
    padding: 32px 24px;
  }

  .contact-card {
    padding: 30px 24px;
  }

  .contact-method {
    border-left: 0;
    padding-left: 0;
  }
}

@media (min-width: 992px) {
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.333333%;
  }

  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.666667%;
  }

  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.333333%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
