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

body {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  background-color: white;
  margin: 0;
  padding: 90px 0 0 0;
  overflow-x: hidden;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0; right: 0;
  z-index: 1000;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  background-color: #102B70;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  color: white;
  flex-wrap: wrap;
}
.header_logo {
  display: flex;
  flex-direction: column;
}
.header_logo img {
  height: 50px;
}
.header_logo span {
  font-size: 14px;
}
.header_top_right {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 20px;
}
.header_nav {
  display: flex;
  align-items: center;
}
.nav_links {
  display: flex;
  gap: 20px;
}
.nav_links a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}
.burger_menu {
  display: none;
}
.header_lang {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: right;
  gap: 4px;
  font-size: 18px;
  z-index: 10;
  cursor: pointer;
}
.header_lang img {
  width: 18px;
  height: auto;
}
.header_lang_menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 6px;
  background: white;
  color: #31414E;
  border-radius: 6px;
  padding: 4px 0;
  list-style: none;
  font-size: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 99;
  cursor: pointer;
}
.header_lang_menu li {
  padding: 4px 8px;
  cursor: pointer;
  white-space: nowrap;
}
.header_lang_menu.hidden {
  display: none;
}
/* RESPONSIVE */
@media (max-width: 768px) {
.nav_links{
  display: none !important;
}
.header_lang {
  margin-right: 45px;
}
.burger_menu {
  width: 43px;
  height: 43px;
  position: absolute;
  top: 32px;
  right: 2%;
  z-index: 999;
  background: transparent;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.burger_lines {
  width: 30px;
  height: 19px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.burger_lines span {
  height: 2.5px;
  background-color: white;
  border-radius: 3px;
  transition: 0.3s;
  transform-origin: center;
}
.burger_menu.open .burger_lines span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
  background-color: white;
}
.burger_menu.open .burger_lines span:nth-child(2) {
  transform: rotate(-45deg) translateY(-8px);
  background-color: white;
}
.burger_menu.open .burger_lines span:nth-child(3) {
  opacity: 0;
}
.nav_links.show {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  background: #E8EBF9;
  position: absolute;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  top: 107px;
  left: 0;
  width: 100%;
  padding: 10px 0;
  z-index: 998;
}
.nav_links.show a {
  padding: 10px;
  font-size: 16px;
  color: black;
  text-decoration: none;
  text-align: center;
}}
/* HEADER */

/* LANDING VIDEO */
.landing_video_block {
  position: relative;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  height: 100vh;
  overflow: hidden;
  padding: 20px;
}
.landing_video_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.landing_video_overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  color: #fff;
  padding-left: 50px;
}
.landing_video_text {
  position: static;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.landing_video_text h1 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4.2vw, 48px);
  line-height: 1.15;
  letter-spacing: .2px;
}
.button_text {
  margin: 22px 0 0;
  padding: 14px 28px;
  background: #FFC124;
  color: #000000;
  font-weight: 700;
  border-radius: 8px;
  border: none;
  font-size: 22px;
}
.landing_video_list {
  list-style: none;
  margin: 8px 0 0;
  padding-left: 22px;
  position: relative;
}
.landing_video_list::before {
  content:"";
  position:absolute;
  left:8px;
  top:6px;
  bottom:6px;
  width:2px;
  background:#8eb9ff;
  opacity:.9;
}
.landing_video_list li {
  position:relative;
  margin: 14px 0;
  line-height:1.5;
  font-size: 22px;
}
.landing_video_list li::before{
  content:"";
  position:absolute;
  left:-17px;
  top:.8em;
  width:8px;
  height:8px;
  border-radius:50%;
  background:#8eb9ff;
  transform:translateY(-50%);
}
/* RESPONSIVE */
@media (max-width: 768px) {
.landing_video_block{
  height: auto;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.landing_video_bg{
  position: relative;
  inset: auto;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  order: 1;
  z-index: 0;
}
.landing_video_overlay{
  position: relative;
  inset: auto;
  z-index: 0;
  order: 2;
  padding: 24px 16px 40px;
  background: #0b1120;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.landing_video_text{
  position: static;
  transform: none;
  max-width: 680px;
}
.landing_video_text h1{
  font-size: 26px;
  line-height: 1.25;
  margin: 0 0 12px;
}
.button_text{
  margin: 18px 0 0;
  font-size: 20px;
}
.landing_video_list li {
  font-size: 20px;
}
}
/* LANDING VIDEO */

/* FOOTER */
.footer {
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px;
  background: #102B70;
  color: white;
  width: 100%;
}
.footer_inner{
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer_left,
.footer_right{
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer_center{
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 10px;
}
.footer_logo {
  display: flex;
  flex-direction: column;
}
.footer_logo img {
  height: 30px;
}
.footer_logo span {
  font-size: 12px;
}
.footer_link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255,255,255,.35);
  transition: opacity .2s ease;
}
.footer_link img {
  width: 22px;
  height: 22px;
  fill: currentColor;
  display: inline-block;
}
.footer_lang {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: right;
  gap: 4px;
  font-size: 18px;
  z-index: 10;
  cursor: pointer;
}
.footer_lang img {
  width: 18px;
  height: auto;
}
.footer_lang_menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 6px;
  background: white;
  color: #31414E;
  border-radius: 6px;
  padding: 4px 0;
  list-style: none;
  font-size: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 99;
  cursor: pointer;
}
.footer_lang_menu li {
  padding: 4px 8px;
  cursor: pointer;
  white-space: nowrap;
}
.footer_lang_menu.hidden {
  display: none;
}
/* RESPONSIVE */
@media (max-width: 900px){
  .footer_inner{ gap:12px; }
  .footer_brand{ font-size:24px; }
}
@media (max-width: 680px){
  .footer_inner{
    flex-wrap: wrap;
    row-gap: 8px;
  }
  .footer_center{
    order: -1;
    width: 100%;
  }
  .footer_left, .footer_right{
    flex:1 1 auto;
    justify-content: space-between;
  }
}
/* FOOTER */

/* LANDING ABOUT */
.landing_about {
  max-width: 1300px;
  margin: 0 auto;
  background: #0B101F;
  color: #e7eefc;
  padding: 28px 0 36px;
}
.landing_about_header {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.landing_about_title {
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.3px;
  font-size: 24px;
}
.about__line {
  flex: 1;
  height: 2px;
  opacity: 0.9;
  background: #BDCFFF;
}
.about__line.about__line--left {
  max-width: 50px;
  background: #BDCFFF;
}
.about__dot {
  position: absolute;
  left: 50%;
  width: 8px;
  height: 8px;
  background: #9bbcff;
  border-radius: 50%;
  transform: translateX(-50%);
}
.landing_about_grid {
  padding: 0 16px 0;
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.landing_about_text {
  padding: 8px 4px;
}
.landing_about_text p {
  margin: 0 0 14px;
  font-size: 25px;
  line-height: 1.3;
  color: #c9d6f2;
}
.landing_about_cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.landing_about_card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 15px;
  border-radius: 16px;
  background: #102B70;
  cursor: pointer;
}
.landing_about_card_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.landing_about_card_icon img {
  width: 94px;
  height: 94px;
}
.landing_about_card_title {
  margin: 2px 0 0;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.2px;
  color: #e7eefc;
  text-align: center;
}
.landing_about_card_chev {
  display: flex;
  margin: 0 auto;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 10px 0 0;
}
.landing_about_card_chev img {
  width: 35px;
  height: auto;
}
.landing_about_card_panel {
  position: absolute;
  inset: 0;
  background: #FFC124;
  color: #0f2533;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  text-align: center;
  padding: 15px 10px;
  border-radius: 16px;
  transform: translateY(100%);
  transition: transform .35s ease;
}
.landing_about_card_panel_chev {
  display: flex;
  margin: 0 auto;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.landing_about_card_panel_chev img {
  width: 30px;
  height: auto;
}
.landing_about_card_panel_title {
  margin: 0;
  font-size: 28px;
  font-weight: 800;
  color: #0f2533;
}
.landing_about_card_panel p {
  max-width: 32ch;
  display: flex;
  align-items: center;
  margin: 0;
  font-size: 18px;
  line-height: 1.1;
  color: #0f2533;
}
.landing_about_card.is-open .landing_about_card_panel {
  transform: translateY(0);
}
.landing_about_card.is-open .landing_about_card_chev img {
  transform: rotate(180deg);
}
/* RESPONSIVE */
@media (max-width: 960px) {
.landing_about_grid { grid-template-columns: 1fr; }
.landing_about_cards { grid-template-columns: 1fr; }
.landing_about_card { min-height: 220px; }
.landing_about_card_panel_title { font-size: 24px; }
.landing_about_card_panel p { font-size: 17px; }}
@media (max-width: 720px) {
.landing_about_grid {
  padding: 0 10px 0;
}
.landing_about_text p {
  font-size: 24px;
}
.landing_about_card_panel {
  gap: 5px;
  text-align: center;
  padding: 15px 10px;
  border-radius: 16px;
  transform: translateY(100%);
  transition: transform .35s ease;
}
.landing_about_card_panel_chev img {
  width: 40px;
}
.landing_about_card_panel_title {
  margin-top: 5px;
  font-size: 35px;
}
.landing_about_card_panel p {
  font-size: 24px;
}
.about__dot {
  display: none;
}}
/* LANDING ABOUT */

/* SERVICES TIMELINE */
.services_timeline {
  max-width: 1300px;
  margin: 0 auto;
  background: #0B101F;
  color: #e6edff;
}
.timeline{
  --gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 16px 64px;
}
.timeline_list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.timeline_list li{
  position: relative;
  margin-top: 50px;
  text-align: center;
  font-size: 20px;
  line-height: 1.25;
  color: #e6edff;
  padding: 0 16px;
}
.timeline_list li:first-child{
  margin-top: 0;
}
.timeline_list li:not(:first-child)::before{
  content: "";
  position: absolute;
  left: 50%;
  top: calc(var(--gap) / -2);
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #BDCFFF;
  z-index: 2;
}
.timeline_list li:not(:first-child)::after{
  content: "";
  position: absolute;
  left: 50%;
  top: calc(var(--gap) / -2 - 28px);
  transform: translateX(-50%);
  width: 2px;
  height: 28px;
  background: #BDCFFF;
  opacity: .75;
  z-index: 1;
}
.timeline_cta{
  background: #15203D;
  text-align:center;
  padding: 40px 16px 60px;
}
.timeline_cta_title{
  margin:0 0 22px;
  font-size: clamp(25px, 2.4vw, 32px);
  font-weight:600;
  color:#e6edff;
}
.timeline_cta_btn{
  display:inline-block;
  border:0;
  background:#FFC124;
  color:#0e192a;
  font-weight:800;
  font-size:22px;
  padding:14px 28px;
  border-radius:10px;
  cursor:pointer;
}
/* RESPONSIVE */
@media (max-width: 680px){
.timeline{ --gap: 64px; padding: 40px 12px 48px; }
.timeline_list li{ font-size: 22px; }
.timeline_list li:not(:first-child)::after{ height: 22px; top: calc(var(--gap) / -2 - 22px); }
}
/* SERVICES TIMELINE */

/* CLIENTS */
.landing_clients { 
  background: #0e1a30; 
  color: #e7eefc; 
  padding: 24px 0 36px;
  max-width: 1300px;
  margin: 0 auto;
}
.landing_clients_header {
  display:flex;
  align-items:center;
  gap:16px;
}
.clients_title {
  margin:0;
  font-weight:800;
  letter-spacing:.3px;
  font-size: 24px;
}
.clients_line {
  flex:1;
  height:2px;
  background: #BDCFFF;
}
.clients_line--left {
  max-width:72px;
  background: #BDCFFF;
}
.clients_sub {
  text-align:center;
  margin:6px auto 18px;
  color:#c9d6f2;
  font-size: 25px;
  max-width:900px;
  padding: 0 16px;
}
.carousel {
  position:relative;
  max-width:1100px;
  margin:0 auto;
  display:flex;
  align-items:center;
  gap:12px;
  padding: 0 12px 0;
}
.carousel_viewport {
  overflow:hidden;
  flex:1;
}
.carousel_track{
  --gap: 20px;
  display: flex;
  gap: var(--gap);
  transition: transform .35s ease;
  will-change: transform;
}
.card{
  flex: 0 0 calc((100% - 2 * var(--gap)) / 3);
  width: 100%;
  background:#102246;
  position: relative;
  border-radius:16px;
  border: 4px solid #7490D6;
}
.card img{
  width: 100%;
  object-fit: cover;
  display: block;
}
.card_overlay{
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  background: rgba(12, 18, 34, .45);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  opacity:0;
  visibility:hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.card_overlay_content{
  text-align:center;
  color:#fff;
  transform: translateY(8px);
  transition: transform .25s ease, opacity .25s ease;
  opacity:.98;
}
.card_overlay_content h4{
  margin:0 0 12px;
  font-size: 22px;
  line-height:1.2;
  font-weight:800;
  text-shadow: 0 2px 8px rgba(0,0,0,.35);
}
.card_overlay_btn{
  display:inline-block;
  padding:8px 14px;
  font-size:12px;
  letter-spacing:.2px;
  color:#fff;
  background: rgba(255,255,255,.18);
  border:1px solid rgba(255,255,255,.35);
  border-radius:6px;
  text-decoration:none;
  backdrop-filter: blur(2px);
}
.card.is-open .card_overlay{ opacity:1; visibility:visible; }
.card.is-open .card_overlay_content{ transform: translateY(0); }

.carousel_btn{
  flex:0 0 auto;
  width:44px;
  height:44px;
  border-radius:50%;
  border:2px solid #F1F5FF;
  background:transparent;
  color:#F1F5FF;
  display:grid;
  place-items:center;
  font-size:18px;
  cursor:pointer;
  transition:background .15s ease, color .15s ease, transform .15s ease;
}
/* CTA */
.clients_cta {
  text-align:center;
  margin-top:24px;
}
.clients_cta_btn{
  border:0;
  background: #FFC124;
  color: #000000;
  font-weight:800;
  font-size: 22px;
  padding:14px 28px;
  border-radius:10px;
  box-shadow:0 8px 20px rgba(0,0,0,.25);
  cursor:pointer;
}
/* RESPONSIVE */
@media (max-width: 1024px){
.card{
  flex-basis: calc((100% - var(--gap)) / 2);
}}
@media (max-width: 640px){
.clients_title {
  font-size: 24px;
}
.clients_sub {
  font-size: 20px;
}
.card{
  flex-basis: 100%;
}}
@media (hover:hover){
  .card:hover .card_overlay{ opacity:1; visibility:visible; }
  .card:hover .card_overlay_content{ transform: translateY(0); }
}
/* CLIENTS */