:root {
  --primary: #002872;
  --primaryLight: #30c1ed;
  font-family: Inter, sans-serif;
  font-feature-settings: 'liga' 1, 'calt' 1;
  --bs-body-font-family: Inter;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
  font-family: Inter;
}

body {
  box-sizing: border-box;
  font-size: 1.6rem;
  background-image: linear-gradient(to right, #001351, #003f7c);
}

main {
  overflow-x: hidden;
}

.nav-nonscroll {
  border-radius: 3rem;
  min-height: 82px;
  width: 94vw;
  max-width: 1440px;
}

.nav-wrap {
  display: flex;
  margin-top: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

header {
  position: sticky;
  top: var(--nav-top, 32px);
  transition: top 420ms ease;
  z-index: 1000;
}

.scroll header {
  --nav-top: 0px;
}

nav, nav ul {
  display: flex; 
  justify-content: center;
  align-items: center;
}

nav ul {
  list-style-type: none;
}

@media (max-width: 1169px) {
  .navbar-nav {
    gap: 30px;
  }
}

nav ul li {
  text-decoration: none;
}

nav ul li a {
  text-decoration: none;
  color: black;
}

.logo {
  height: 55px;
  width: 177px;
}

.logo-controls {
  justify-self: start;
}

.navbar {
  z-index: 1;
  transition: 
    margin 520ms ease,
    width 520ms ease,
    border-radius 520ms ease,
    padding 580ms ease,
    box-shadow 520ms ease,
    background-color 520ms ease;
  display: flex;
  justify-content: space-evenly;
  width: 100%;
  align-items: center;
}

.inner-navbar {
  max-width: 1380px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  width: 100%;
  align-items: center;
}

.navbar.nav-scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 !important;
  width: 100vw;
  max-width: none;
  border-radius: 0;
  z-index: 1030;
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
}

.nav-wrap {
  position: relative;
}

@media screen and (max-width: 1024px) {
  .navbar.nav-scrolled {
    padding-top: .9rem !important;
    padding-bottom: .9rem !important;
  }

  body.scroll .nav-nonscroll {
    top: 0;
    border-radius: 0;
    max-width: 100%;
    width: 100%;
}
}
.nav-item.dropdown {
  position: relative;
}

.nav-item.dropdown::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 320px;
  height: 31px;
  transform: translateX(-50%);
  background: transparent;
  pointer-events: auto;
}

.nav-item.dropdown:not(:hover):not(:focus-within)::after {
  pointer-events: none;
}

.nav-link-dropdown {
  background: none;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.language-selector {
  display: inline-block;
  background-color: inherit;
  border: none;
  color: rgba(0, 0, 0, 0.65);
  padding-right: 15px;
}

.chevron {
  width: 12px;
  transition: transform 0.2s ease;
}

.nav-item.dropdown .dropdown-menu.lw-locations-menu {
  position: absolute;
  left: 50%;
  top: calc(100% + 31px);
  width: 153px;
  padding: 10px 0;
  border-radius: 12px;
  display: block;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: inset 0 12px 12px -14px rgba(0, 0, 0, 0.25);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  list-style: none;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform-origin: top center;
  transform: translateX(-50%) scaleY(0%);
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    visibility 0ms linear 160ms;
}

.nav-item.dropdown:hover .dropdown-menu.lw-locations-menu,
.nav-item.dropdown:focus-within .dropdown-menu.lw-locations-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) scaleY(100%);
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    visibility 0ms;
}

@media screen and (max-width: 992px) {
  .nav-item.dropdown:hover .dropdown-menu.lw-locations-menu,
  .nav-item.dropdown:focus-within .dropdown-menu.lw-locations-menu { 
    transform: translateX(-50%) translateY(-10%);
}
}

.nav-item.dropdown.lw-lang:hover .dropdown-menu.lw-lang-menu,
.nav-item.dropdown.lw-lang:focus-within .dropdown-menu.lw-lang-menu {
  transform: translateX(-50%) scaleY(100%) translateY(4%);
}

.nav-item.dropdown:hover .chevron,
.nav-item.dropdown:focus-within .chevron {
  transform: rotate(180deg);
}

.lw-lang--mobile { display: none; }

.nav-item.dropdown.lw-lang::after {
  content: "";
  position: absolute;
  top: 100%;
  height: 40px;
  width: 160px;
  left: 50%;
  transform: translateX(-50%);
  background: transparent;
  pointer-events: auto;
}

.nav-item.dropdown.lw-lang:not(:hover):not(:focus-within)::after {
  pointer-events: none;
}

@media (max-width: 1169px) {
  .lw-lang--mobile { display: block; }

  .dropdown-menu.lw-lang-menu {
    translate: 0px -14%;
  }

  .nav-item.dropdown.lw-lang:hover .dropdown-menu.lw-lang-menu,
  .nav-item.dropdown.lw-lang:focus-within .dropdown-menu.lw-lang-menu {
  transform: translateX(-50%) scaleY(100%);
}
}

.lw-loc-link {
  display: flex;
  align-items: center;
  padding: 14px 18px;

  color: #0b1f3a;
  text-decoration: none;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 12.5px;
}

.lw-loc-link:hover {
  background: rgba(0, 40, 114, 0.06);
}

.header-btn {
  font-size: 2rem;
  padding-left: 1.65rem;
  padding-right: 1.65rem;
  background-color: #002872;
  color: #fff;
  border-radius: var(--bs-border-radius-pill) !important;
  position: relative;
  overflow: hidden;
  z-index: 0; 
}

.header-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgb(255, 255, 255);
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s;
  border-radius: var(--bs-border-radius-pill) !important;
  z-index: -1; 
}

.header-btn:hover::after {
  width: 220px;
  height: 220px;
}

.header-btn:hover {
  color: #002872;
  border: 1px solid #002872;
}

.nav-wrap {
  width: 100%;
}
.nav-nonscroll {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  min-height: 82px;
  transition:
    max-width 220ms ease,
    border-radius 120ms ease;
}

@media screen and (max-width: 1048px) {
  .nav-wrap {
    margin-top: 24px;
  }

  header {
    top: var(--nav-top, 24px);
  }

  .nav-link {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 1488px) {
  .nav-nonscroll {
    margin: 0px 24px;
    width: calc(100% - 48px);
  }  
  .scroll .nav-nonscroll {
    width: 100%;
  }
}

.scroll .nav-nonscroll {
  max-width: 100vw;
  border-radius: 0;
}

.nav-nonscroll {
  will-change: max-width;
}

.lead-wrapper {
  padding-left: 33px;
  padding-top: 20px;
}

.lead-heading {
  font-size: 6.5rem;
  font-weight: 700;
} 

.lead {
  font-size: 1.8rem;
  margin-top: 1.25rem;
  margin-bottom: 2.5rem;
}

.hero {
  padding-top: 55px;
  padding-bottom: calc(55px + (100vw * 1 / 10));
}

.hero-img {
  width: 850px;
}

.show-1170 {
  display: none;
  justify-self: end;
}

@media screen and (min-width: 1170px) {
  .show-1170 {
    display: flex;
  }
}

@media screen and (max-width: 1169px) {
  .logo-controls {
    display: flex;
    justify-content: space-between;
    flex-grow: 1;
    width: 100%;
  }

  .inner-navbar {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }
}

@media screen and (max-width: 1730px) {
  .hero-img {
    width: min(850px, 48vw);
    height: auto;
    display: block;
  }
}

@media screen and (max-width: 1401px) {
  .lead-heading {
    font-size: 5rem;
  }

  .lead {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 991px) {
  .logo-controls {
    display: flex;
    width: 100%;
    justify-content: space-between;
  }

  .lead-wrapper {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-left: 0px;
  }

  .lead {
    max-width: 80ch;
    padding: 20px;
  }

  .device-stack {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    margin-top: -35px;
  }

  .hero {
    padding-bottom: 55px;
  }

  .hero-img {
    width: 100%;
    z-index: 10;
    translate: 50px;
  }
}

@media screen and (max-width: 700px) {
.hero-img {
  translate: 50px;
}

.device-stack {
  margin-top: 15px;
}
}

@media screen and (max-width: 500px) {
  .lead-heading {
    font-size: clamp(3rem, calc(3rem + ((1vw - 3.2px) * 8.8889)), 4rem);
  }

  .navbar-brand img {
    height: 40px;
  }
}

.primary-btn {
  border-radius: var(--bs-border-radius-pill) !important;
  background: #FFF;
  color: #003f7c;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  padding:10px;
  font-size: 1.7rem;
  line-height: 2.25;
  border: 1px solid #fff;
  transition: border 0s;
}

.primary-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.2);
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s;
  border-radius: var(--bs-border-radius-pill) !important;
}

.primary-btn:hover {
  border: 1px solid #ffffff00;
}

.primary-btn:hover::after {
  width: 200px;
  height: 200px;
}

.secondary-btn {
  border-radius: var(--bs-border-radius-pill) !important;
  background: hsla(0, 0%, 100%, 0);
  color: #fff;
  z-index: 1;
  border: 1px solid #fff;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  padding:10px; 
  font-size: 1.7rem;
  line-height: 2.25;
}

.secondary-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #fff;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s;
  z-index: -1;
  border-radius: var(--bs-border-radius-pill) !important;
}

.secondary-btn:hover {
  color: #0f2468;
  border: 1px solid #fff;
}

.secondary-btn:hover::after {
  width: 200px;
  height: 200px;
}

.divider {
  z-index: 1;
  position: absolute;
  bottom: -3px;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 10 / 1; 
  background: url("/static/images/divider.svg") no-repeat bottom;
  height: var(--divider-h);
  background-size: 100%;
}

.why {
  background: #ffffff;
  padding: clamp(56px, 6vw, 92px) 16px;
  padding-left: 0px;
  padding-right: 0px;
  padding-top: 0;
}

.why { position: relative; }
.why__wrap { position: relative; z-index: 1; }

.why__icon {
  height: 2rem;
}

.why__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;}

.orb{
  z-index: 2;
  position:absolute;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  filter: blur(48px);
  opacity: 0.28;
  transform: translate3d(0,0,0);
  mix-blend-mode: multiply;
}

.orb--1{
  left: -180px; top: 130px;
  background: radial-gradient(circle at 30% 30%, rgba(0,166,215,0.55), rgba(0,166,215,0));
  animation: float1 12s ease-in-out infinite;
}
.orb--2{
  right: -220px; top: 290px;
  background: radial-gradient(circle at 30% 30%, rgba(48,193,237,0.45), rgba(48,193,237,0));
  animation: float2 14s ease-in-out infinite;
}
.orb--3{
  left: 35%; bottom: -240px;
  background: radial-gradient(circle at 30% 30%, rgba(15,23,42,0.18), rgba(15,23,42,0));
  animation: float3 16s ease-in-out infinite;
}

@keyframes float1{
  0%,100%{ transform: translate(0,0) scale(1); }
  50%{ transform: translate(40px, 440px) scale(1.03); }
}
@keyframes float2{
  0%,100%{ transform: translate(0,0) scale(1); }
  50%{ transform: translate(-50px, -150px) scale(1.04); }
}
@keyframes float3{
  0%,100%{ transform: translate(0,0) scale(1); }
  50%{ transform: translate(20px, -300px) scale(1.02); }
}

@media (prefers-reduced-motion: reduce){
  .orb{ animation: none !important; }
}

.why__wrap {
  max-width: 1120px;
  margin: 0 auto;
}

@media screen and (max-width: 700px) {
  .why__head {
    padding-top: 16px;
  }
}

.why__head {
  text-align: center;
  margin-bottom: clamp(28px, 3vw, 44px);
}

.why__title {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f1a2a;
}

.why__subtitle {
  margin: 14px auto 0;
  max-width: 760px;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.55;
  color: #5b6476;
}

.why__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(22px, 3vw, 44px);
  align-items: center;
  margin-top: 10px;
}

.why__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.why__item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px 0;
}

.why__item + .why__item {
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.why__check {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(0, 166, 215, 0.10);
  color: #00A6D7; 
}

.why__itemTitle {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #0f1a2a;
  line-height: 1.2;
}

.why__itemSub {
  margin-top: 4px;
  color: #5b6476;
  font-size: 15.5px;
  line-height: 1.45;
}

.why__right {
  display: grid;
  gap: 16px;
}

.why__pill {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 14px;
  background: linear-gradient(180deg, #f6f9ff 0%, #eff5ff 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.why__pillIcon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.why__pillLabel {
  color: #334155;
  font-weight: 600;
}

.why__pillValue {
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #0f1a2a;
}

.why__pillTail {
  color: #5b6476;
}

.why__quote {
  position: relative;
  padding: 22px 22px 18px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow:
    0 20px 40px rgba(15, 23, 42, 0.10),
    0 2px 10px rgba(15, 23, 42, 0.06);
}

.why__quoteMark {
  position: absolute;
  top: 10px;
  left: 16px;
  font-size: 64px;
  line-height: 1;
  color: rgba(0, 166, 215, 0.18);
  font-weight: 800;
  pointer-events: none;
}

.why__quoteText {
  margin: 0;
  padding-top: 26px;
  color: #0f1a2a;
  font-size: 16px;
  line-height: 1.6;
}

.why__person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.why__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.9), rgba(255,255,255,0) 40%),
    linear-gradient(135deg, rgba(0,166,215,0.35), rgba(48,193,237,0.2));
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.why__name {
  font-weight: 800;
  color: #0f1a2a;
}

.why__role {
  font-size: 13.5px;
  color: #6b7280;
  margin-top: 2px;
}

.why__footer {
  margin-top: clamp(22px, 3vw, 34px);
  padding-top: 18px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  color: #5b6476;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 18px;
  text-align: center;
  font-size: 14.5px;
}

@media (max-width: 920px) {
  .why__grid {
    grid-template-columns: 1fr;
  }

  .why__item {
    grid-template-columns: 30px 1fr;
    gap: 12px;
  }

  .why__itemTitle {
    font-size: 18px;
  }
}

.lp-section {
  position: relative;
  overflow: hidden;
  padding: 64px 16px 64px;
  background: radial-gradient(circle at 50% 18%, rgba(255,255,255,0.10), rgba(255,255,255,0) 55%),
              radial-gradient(circle at 50% 30%, rgba(40,120,255,0.25), rgba(40,120,255,0) 55%),
              linear-gradient(180deg, #032457 0%, #061d4f 25%, #04123a 100%);
}

.lp-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 61%;
  background: #ffffff;
  z-index: 0;
}

@media screen and (max-width: 860px) {
  .lp-section::after {
    height: 75%;
  }
}

@media screen and (max-width: 470px) {
  .lp-section::after {
    height: 78%;
  }
}

@media screen and (max-width: 406px) {
  .lp-section::after {
    height: 80%;
  }
}

.lp-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 42%;
  height: 120px;
  z-index: 0;
}

.lp-wrap {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.lp-title {
  margin: 0;
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.1;
}

.lp-subtitle {
  margin: 14px auto 0;
  color: rgba(255,255,255,0.78);
  font-weight: 500;
  font-size: 2rem;
  max-width: 680px;
}

.lp-mockup {
  width: min(920px, 100%);
  margin: 32px auto 28px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow:
    0 36px 80px -35px rgba(2, 6, 23, 0.55),
    0 16px 34px -18px rgba(2, 6, 23, 0.35);
}

.lp-mockup img {
  display: block;
  width: 100%;
  height: auto;
}

.lp-lead {
  margin: 36px auto 36px auto;
  max-width: 860px;
  color: #5b6476;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.55;
}

.lp-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
  justify-content: center;
}

.lp-card {
  background: #fff;
  border-radius: 16px;
  padding: 26px 22px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow:
    0 20px 40px rgba(15, 23, 42, 0.10),
    0 2px 10px rgba(15, 23, 42, 0.10);
}

.lp-card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: #1d4ed8;
  font-size: 22px;
}

.lp-footnote {
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  padding-top: 18px; margin-top: 40px;
}

.lp-card h3 {
  margin: 6px 0 10px;
  font-size: 22px;
  font-weight: 800;
  color: #0f1a2a;
  letter-spacing: -0.01em;
}

.lp-card p {
  margin: 0;
  color: #6b7280;
  font-size: 15.5px;
  line-height: 1.55;
}

@media (max-width: 860px) {
  .lp-cards {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .lp-mockup {
    transform: translateY(12px);
  }

  .lp-lead {
    margin-top: 34px;
  }
}

.inc {
  padding: 64px 0px;
}

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

.inc__grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.inc__title {
  font-size: 5rem;
  line-height: 1.05;
  margin: 0 0 18px;
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.inc__lead {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.6;
  max-width: 520px;
}

.inc__barList {
  border-left: 3px solid rgba(255, 255, 255, 0.22);
  padding-left: 18px;
  display: grid;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.78);
}

.inc__right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 28px;
}

.inc__item {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 14px;
  align-items: start;
}

.inc__icon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  line-height: 1;
  margin-top: 2px;
  opacity: 0.9;
}

.inc__itemTitle {
  margin: 0 0 6px;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.inc__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  font-size: 14.5px;
  max-width: 40ch;
}

@media (max-width: 980px) {
  .inc__grid {
    grid-template-columns: 1fr;
  }
  .inc__right {
    grid-template-columns: 1fr;
  }
  .inc__text {
    max-width: none;
  }
  .inc__barList {
    font-size: 20px;
  }
}

.hiw {
  padding: clamp(56px, 6vw, 96px) 0;
  background-color: white;
}

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

.hiw__head {
  text-align: center;
  margin-bottom: clamp(28px, 3vw, 40px);
}

.hiw__title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  margin: 0 0 8px;
  color: #0b1f3a;
}

.hiw__subtitle {
  margin: 0 auto;
  max-width: 680px;
  color: rgba(11, 31, 58, 0.65);
  font-size: 16px;
  line-height: 1.6;
}

.hiw__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.hiw__timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.hiw__step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 14px 0;
  position: relative;
  transition: 180ms ease;
}

.hiw__step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 62px;
  bottom: -10px;
  width: 2px;
  background: rgba(11, 31, 58, 0.12);
}

.hiw__step:hover .hiw__num{
  background: rgba(0, 63, 124, 0.16);
  box-shadow: 0 6px 18px rgba(0, 63, 124, 0.18);
}

.hiw__step:hover .hiw__stepTitle{
  color: #003f7c;
}

.hiw__step:hover::after{
  background: rgba(11, 31, 58, 0.22);
}

.hiw__num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(0, 63, 124, 0.08);
  color: #003f7c;
  font-weight: 800;
  transition: 180ms ease;
}

.hiw__content {
  padding-top: 2px;
}

.hiw__stepTitle {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 800;
  color: #0b1f3a;
  transition: 180ms ease;
}

.hiw__text {
  margin: 0;
  color: rgba(11, 31, 58, 0.72);
  line-height: 1.65;
  max-width: 620px;
}

.hiw__side {
  display: grid;
  gap: 14px;
}

.hiw__pillStack {
  display: grid;
  gap: 10px;
}

.hiw__pill {
  background: #fff;
  border: 1px solid rgba(11, 31, 58, 0.08);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 8px 24px rgba(11, 31, 58, 0.06);
}

.hiw__pillLabel {
  font-size: 13px;
  color: rgba(11, 31, 58, 0.62);
  font-weight: 600;
}

.hiw__pillValue {
  font-size: 13px;
  color: #0b1f3a;
  font-weight: 800;
}

.hiw__quote {
  margin: 0;
  background: #fff;
  border: 1px solid rgba(11, 31, 58, 0.08);
  border-radius: 16px;
  padding: 16px 16px 14px;
  box-shadow: 0 10px 28px rgba(11, 31, 58, 0.08);
}

.hiw__quoteMark {
  font-size: 44px;
  line-height: 1;
  color: rgba(0, 63, 124, 0.25);
  font-weight: 800;
  margin-bottom: -6px;
}

.hiw__quoteText {
  margin: 0 0 14px;
  color: rgba(11, 31, 58, 0.72);
  line-height: 1.65;
}

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

.hiw__avatar {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(0, 63, 124, 0.12);
}

.hiw__name {
  font-weight: 800;
  color: #0b1f3a;
  font-size: 14px;
}

.hiw__role {
  font-size: 12px;
  color: rgba(11, 31, 58, 0.6);
}

@media (max-width: 900px) {
  .hiw__grid {
    grid-template-columns: 1fr;
  }
  .hiw__text {
    max-width: none;
  }
}

.hiw__side {
  display: grid;
  gap: 14px;
}

.hiw__panel {
  background: #fff;
  border: 1px solid rgba(11, 31, 58, 0.08);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 28px rgba(11, 31, 58, 0.08);
}

.hiw__panel--soft {
  box-shadow: 0 8px 24px rgba(11, 31, 58, 0.06);
}

.hiw__panelTitle {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 800;
  color: #0b1f3a;
}

.hiw__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.hiw__listItem {
  display: grid;
  color: rgba(11, 31, 58, 0.78);
  line-height: 1.55;
  font-size: 14px;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
}

.hiw__check{
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: rgba(0, 63, 124, 0.10);
  position: relative;
  display: grid;
  place-items: center;
}

.hiw__check::after{
  content: "";
  width: 9px;
  height: 5px;
  border-left: 2.5px solid #003f7c;
  border-bottom: 2.5px solid #003f7c;
  transform: rotate(-45deg);
}

.hiw__dot {
  width: 8px;
  height: 8px;
  margin-top: 6px;
  border-radius: 999px;
  background: rgba(0, 63, 124, 0.35);
  justify-self: center;
}

.hiw__panelNote {
  margin: 12px 0 0;
  font-size: 13px;
  color: rgba(11, 31, 58, 0.60);
  line-height: 1.5;
}

.hiw__ctaRow {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .hiw__ctaRow {
    justify-content: center;
  }
}

.hosting-bridge{
  padding: 64px 16px;
}

.hosting-bridge__inner{
  max-width: 1100px;
  margin: 0 auto;
}

.hosting-card{
  background:#fff;
  border-radius: 18px;
  padding: 38px 32px;
  box-shadow: 0 18px 46px rgba(0,0,0,.12);
  border: 1px solid rgba(0,40,114,.08);
}

.hosting-card__title{
  margin: 0 0 8px;
  font-size: 2.4rem;
  line-height: 1.2;
  color:#0b1b3a;
  font-weight: 800;
}

.hosting-card__sub{
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.6;
  color:#41506a;
}

.hosting-card__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 28px;
  margin-top: 22px;
}

.hosting-card__kicker{
  margin: 0 0 10px;
  font-size: 1.4rem;
  letter-spacing: .02em;
  color:#002872;
  font-weight: 800;
  text-transform: none;
}

.hosting-list{
  margin: 0;
  padding-left: 18px;
  color:#24324a;
  line-height: 1.7;
}

.hosting-list li{
  margin: 6px 0;
}

.hosting-card__note{
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(0,40,114,.10);
  color:#41506a;
  font-size: 1.4rem;
  line-height: 1.6;
}

@media (max-width: 820px){
  .hosting-card{ padding: 28px 20px; }
  .hosting-card__grid{ grid-template-columns: 1fr; }
  .hosting-bridge{ padding: 54px 16px; }
}

.pricing {
  padding: clamp(64px, 6vw, 110px) 0;
}

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

.pricing__head {
  text-align: center;
  margin-bottom: clamp(24px, 3vw, 40px);
}

.pricing__title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  margin: 0 0 8px;
}

.pricing__subtitle {
  margin: 0 auto;
  max-width: 680px;
  line-height: 1.6;
}

.pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 2.4vw, 26px);
  align-items: stretch;
}

.pricing__card {
  background: #fff;
  border: 1px solid rgba(11, 31, 58, 0.10);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 14px 34px rgba(11, 31, 58, 0.08);
  position: relative;
}

.pricing__card--featured {
  border-color: rgba(0, 63, 124, 0.22);
  box-shadow: 0 18px 44px rgba(0, 63, 124, 0.14);
}

.pricing__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 12px;
  font-weight: 800;
  color: #003f7c;
  background: rgba(0, 63, 124, 0.10);
  border: 1px solid rgba(0, 63, 124, 0.18);
  padding: 6px 10px;
  border-radius: 999px;
}

.pricing__plan {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 900;
  color: #0b1f3a;
}

.pricing__priceRow {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 0 0 14px;
}

.pricing__price {
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #0b1f3a;
}

.pricing__per {
  font-size: 16px;
  font-weight: 800;
  color: rgba(11, 31, 58, 0.65);
}

.pricing__list {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: rgba(11, 31, 58, 0.78);
  line-height: 1.55;
}

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

.pricing__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(0, 63, 124, 0.30);
}

.pricing__note {
  margin: 6px 0 0;
  font-size: 13px;
  color: rgba(11, 31, 58, 0.60);
  line-height: 1.5;
}

.pricing__fineprint {
  text-align: center;
  margin: 40px 0 0;
  font-size: 13px;
  color: rgba(11, 31, 58, 0.62);
  border-top: 1px solid rgba(0,40,114,.10);
  padding-top: 18px;
}

.pricing--light {
  background: #fff;
}

.pricing--light .pricing__title {
  color: #0b1f3a;
}

.pricing--light .pricing__subtitle {
  color: rgba(11, 31, 58, 0.65);
}

@media (max-width: 900px) {
  .pricing__grid {
    grid-template-columns: 1fr;
  }
}


.cta {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 10vw, 150px) 0;
  background-image: linear-gradient(to right, #001351, #003f7c);
  color: #fff;
}

#aestheticCanvas.cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
  pointer-events: none;
}

.cta__wrap {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
}

.cta__card {
  text-align: center;
  padding: clamp(26px, 4vw, 44px);
  border-radius: 26px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  max-width: 720px;
}

.cta__title {
  margin: 0 0 10px;
  font-size: clamp(40px, 4.3vw, 64px);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.cta__note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  margin-top: 8px;
  text-decoration: none;
  font-weight: 800;
  color: #fff;
  background: #002872;
  border: 1px solid rgba(255, 255, 255, 0.22);
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  transition: transform 180ms ease, background 180ms ease;
}

.cta__btn::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(90deg, transparent 35%, rgba(255,255,255,0.28), transparent 65%);
  transform: translateX(-60%) rotate(10deg);
  animation: shine 3.8s ease-in-out infinite;
}

.cta__btn:hover {
  transform: translateY(-1px);
  background: var(--primary);
}

.cta__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, #001351, #003f7c);
}

@keyframes shine {
  0%   { transform: translateX(-70%) rotate(10deg); opacity: 0; }
  20%  { opacity: 1; }
  60%  { opacity: 1; }
  100% { transform: translateX(70%) rotate(10deg); opacity: 0; }
}

.lw-footer{
  color: rgba(255, 255, 255, 0.959);
  padding: 72px 0 24px;
}

.lw-footer__wrap{
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 32px;
}

.lw-footer__grid{
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.lw-footer__col {
  display: flex;
  flex-direction: column;
  row-gap: 0px;
  align-items: start;
}

.lw-footer__logo img{
  display:block;
  filter: brightness(1.1);
}

.lw-footer__contact{
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.lw-footer__title{
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .01em;
  margin: 6px 0 14px;
  color: #fff;
}

.lw-footer__list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.lw-footer__link{
  color: rgba(255, 255, 255, 0.815);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.lw-footer__link:hover{
  color: #fff;
}

.lw-footer__social{
  margin-top: 18px;
  display: flex;
  gap: 14px;
}

.lw-footer__socialLink{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(255,255,255,.14);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.lw-footer__socialLink:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.22);
}

.lw-footer__bar{
  margin-top: 56px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.lw-footer__small{
  font-size: 1.2rem;
  color: rgba(255,255,255,.7);
}

.lw-footer__barLinks{
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.lw-footer__smallLink{
  font-size: 1.2rem;
  color: rgba(255,255,255,.65);
  text-decoration: none;
}

.lw-footer__smallLink:hover{
  color: rgba(255,255,255,.95);
}

.lw-footer__toTop{
  font-size: 1.2rem;
  color: rgba(255,255,255,.85);
  text-decoration: none;
}

.lw-footer__toTop:hover{
  color: #fff;
}

@media (max-width: 992px){
  .lw-footer{
    padding: 56px 0 22px;
  }
  .lw-footer__grid{
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

.lw-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 800;
  height: 40px;
  padding: 0 14px;
  position: relative;
  overflow: hidden;
  font-size: 1.7rem;
  border-radius: var(--bs-border-radius-pill) !important;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.lw-btn:focus-visible{
  outline: none;
  box-shadow: 0 0 0 4px rgba(48, 193, 237, 0.25);
}

@media (prefers-reduced-motion: reduce){
  .lw-btn,
  .lw-btn::after{
    transition: none !important;
    animation: none !important;
  }
  .lw-btn:hover{ transform: none; }
}

.lw-btn--dark{
  background: #002872;
  color: #fff;
  border: 1px solid #002872;
  z-index: 0;
}

.lw-btn--dark::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #fff;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  z-index: -1;
  transition: width 200ms ease, height 200ms ease;
}

.lw-btn--dark:hover::after{
  width: 240px;
  height: 240px;
}

.lw-btn--dark:hover{
  color: #002872;
  border-color: #002872;
}

.lw-btn--white{
  background: #fff;
  color: #003f7c;
  border: 1px solid rgba(255,255,255,0.0);
}

.lw-btn--white::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 0, 0, 0.2);
  transform: translate(-50%, -50%);
  border-radius: 999px;
  transition: width 300ms ease, height 300ms ease;
}

.lw-btn--white:hover::after{
  width: 220px;
  height: 220px;
}

.lw-btn--white:hover{
  border-color: rgba(255,255,255,0);
}

.lw-btn--ghost{
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);;
  z-index: 0;
}

.lw-btn--ghost:hover{
  color: #fff;
  border-color: #002872;
}

.lw-btn--ghost::after{
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #002872;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s;
  border-radius: var(--bs-border-radius-pill) !important;
  z-index: -1;
}

.lw-btn--ghost:hover::after{
  width: 220px;
  height: 220px;
}

/* GLOBAL MOBILE RESP */

@media screen and (max-width: 1162px) {
  .why__wrap, .lp-wrap, .inc-wrap, .hiw-wrap {
    margin: 0px 24px;
  }
}


@media screen and (max-width: 990px) {
  .cta__card {
    box-shadow: none;
  }
}

@media screen and (max-width: 430px) {
  .pricing__badge {
    display: none;
  }
}
