*{
  box-sizing:border-box;
}

body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:#071d35;
  background:#fff;
}

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

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

.container{
  width:min(1180px,92%);
  margin:auto;
}

/* HEADER */
.site-header{
  height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 8%;
  background:#fff;
  position:sticky;
  top:0;
  z-index:100;
  box-shadow:0 12px 40px rgba(7,29,53,.08);
}

.logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:25px;
  font-weight:900;
  color:#071d35;
}

.logo i{
  color:#0b74ff;
}

.logo span{
  color:#0b74ff;
}

.nav{
  display:flex;
  gap:32px;
  font-size:16px;
  font-weight:500;
}

.header-call{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:14px 24px;
  border-radius:999px;
  background:#0b74ff;
  color:#fff;
  font-size:13px;
  font-weight:900;
  box-shadow:0 16px 35px rgba(11,116,255,.26);
}

.menu-btn{
  display:none;
  border:0;
  background:none;
  color:#071d35;
  font-size:26px;
}

/* HERO */
.hero{
  position:relative;
  overflow:hidden;
  background:#06192d;
}

.hero-bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(4,18,35,.97) 0%, rgba(4,18,35,.78) 46%, rgba(4,18,35,.22) 100%),
    url("https://images.unsplash.com/photo-1569154941061-e231b4725ef1?q=80&w=1740&auto=format&fit=crop")
    center/cover no-repeat;
}

.hero-layout{
  position:relative;
  z-index:2;
  display:grid;
  padding:50px 0;
  gap:60px;
  align-items:center;
}

.kicker{
  display:inline-flex;
  padding:10px 15px;
  border-radius:999px;
  background:rgba(255,255,255,.1);
  color:#ffd12d;
  font-size:12px;
  letter-spacing:.23em;
  text-transform:uppercase;
  font-weight:900;
  border:1px solid rgba(255,255,255,.14);
}

.hero h1{
  margin:24px 0;
  font-size:46px;
  line-height:1.3;
  letter-spacing:-2px;
  color:#fff;
}

.hero p{
  color:#eaf5ff;
  font-size:18px;
  font-weight:500;
  line-height:1.75;
}

.hero-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  margin:32px 0;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  padding:16px 26px;
  border-radius:14px;
  font-size:13px;
  font-weight:900;
  text-transform:uppercase;
}

.primary{
  background:#0b74ff;
  color:#fff;
  box-shadow:0 18px 38px rgba(11,116,255,.3);
}

.secondary{
  background:#fff;
  color:#071d35;
}

.hero-pills{
  display:grid;
  grid-auto-flow: column;
  gap:13px;
  
}

.hero-pills a{
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, .94);
    color: #071d35;
    border-radius: 18px;
    padding: 12px 15px;
    font-weight: 900;
    box-shadow: 0 16px 35px rgba(0, 0, 0, .18);
    font-size: 13px;
}

.hero-pills i{
  color:#0b74ff;
  font-size:19px;
}

/* HERO CARD */
.hero-card{
  background:rgba(255,255,255,.95);
  padding:34px;
  border-radius:30px;
  box-shadow:0 30px 80px rgba(0,0,0,.25);
}

.card-badge{
  width:64px;
  height:64px;
  border-radius:22px;
  background:#eaf4ff;
  color:#0b74ff;
  display:grid;
  place-items:center;
  font-size:26px;
  margin-bottom:18px;
}

.hero-card h3{
  font-size:31px;
  margin:0 0 10px;
}

.hero-card p{
  color:#5b7188;
  font-size:15px;
  line-height:1.65;
}

.mini-list{
  display:grid;
  gap:12px;
  margin:22px 0;
}

.mini-list span{
  padding:14px 15px;
  border:1px solid #dce9f5;
  border-radius:14px;
  font-weight:900;
  background:#f8fbff;
}

.mini-list i{
  color:#0b74ff;
  margin-right:8px;
}

.full{
  width:100%;
}

/* MOBILE HERO */
.mobile-hero{
  display:none;
}

/* TRUST */
.trust-section{
  position:relative;
  z-index:5;
  margin-top:-38px;
}

.trust-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  background:#fff;
  border-radius:24px;
  box-shadow:0 22px 60px rgba(7,29,53,.14);
  overflow:hidden;
}

.trust-grid div{
  text-align:center;
  padding:28px 18px;
  border-right:1px solid #e4eef7;
}

.trust-grid strong{
  display:block;
  font-size:22px;
  color:#0b74ff;
}

.trust-grid span{
  font-size:13px;
  font-weight:900;
}

/* COMMON */
.services,
.support-split,
.routes,
.faq{
  padding:95px 0;
}

.section-head{
  max-width:760px;
  text-align:center;
  margin:0 auto 52px;
}

.section-head.left{
  text-align:left;
  margin-left:0;
}

.section-head span,
.support-copy span,
.faq span{
  color:#0b74ff;
  letter-spacing:.2em;
  text-transform:uppercase;
  font-size:12px;
  font-weight:900;
}

.section-head h2,
.support-copy h2,
.faq h2{
  font-size:36px;
  line-height:1.1;
  margin:13px 0;
}

.section-head p,
.support-copy p,
.faq p{
  color:#5b7188;
  font-weight:700;
  line-height:1.75;
}

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

.service-grid article{
  padding:30px;
  border-radius:28px;
  background:#fff;
  border:1px solid #e0ebf4;
  box-shadow:0 20px 45px rgba(7,29,53,.07);
  transition:.3s;
}

.service-grid article:hover{
  transform:translateY(-6px);
}

.icon{
  width:38px;
  height:38px;
  border-radius:19px;
  background:#eaf4ff;
  display:grid;
  place-items:center;
  color:#0b74ff;
  font-size:18px;
}

.service-grid h3{
  font-size:18px;
}

.service-grid p{
  color:#5b7188;
  font-weight:700;
  line-height:1.5;
  font-size: 14px;
}

.service-grid a{
  display:inline-flex;
  margin-top:12px;
  padding:13px 18px;
  border-radius:999px;
  background:#ffd12d;
  color:#071d35;
  font-size:12px;
  font-weight:900;
}

/* SUPPORT SPLIT */
.support-split{
  background:linear-gradient(135deg,#f7fbff,#eef6ff);
}

.support-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

.check-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin:26px 0;
}

.check-grid span{
  padding:14px;
  border-radius:14px;
  background:#fff;
  color:#071d35;
  box-shadow:0 12px 28px rgba(7,29,53,.06);
  font-size: 10px;
}

.check-grid i{
  color:#0b74ff;
  margin-right:8px;
}

.support-image{
  position:relative;
}

.support-image img{
  width:100%;
  height:480px;
  object-fit:cover;
  border-radius:36px;
  box-shadow:0 30px 70px rgba(7,29,53,.18);
}

.glass-box{
  position:absolute;
  left:26px;
  right:26px;
  bottom:26px;
  padding:24px;
  border-radius:24px;
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(12px);
  box-shadow:0 18px 40px rgba(0,0,0,.18);
}

.glass-box strong{
  display:block;
  font-size:20px;
  font-size: 14px;
}

.glass-box span{
  color:#0b74ff;
  font-weight:900;
}

/* ROUTES */
.routes{
  background:#fff;
}

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

.route-grid article{
  position:relative;
  height:260px;
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 20px 45px rgba(7,29,53,.12);
}

.route-grid img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.route-grid article:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,.05),rgba(0,0,0,.78));
}

.route-grid div{
  position:absolute;
  z-index:2;
  left:24px;
  right:24px;
  bottom:22px;
  color:#fff;
}

.route-grid h3{
  margin:0;
  font-size:24px;
}

.route-grid p{
  margin:6px 0 0;
  font-weight:600;
  font-size: 14px;
}

/* STEPS */
.steps{
  padding:95px 0;
  background:#061a33;
  color:#fff;
}

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

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

.step-grid article{
  padding:34px;
  border-radius:26px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
}

.step-grid span{
  font-size:26px;
  font-weight:900;
  color:#ffd12d;
}

.step-grid h3{
  font-size:24px;
}

.step-grid p{
  color:#cbd9e6;
  line-height:1.7;
  font-weight:700;
}

/* FAQ */
.faq-grid{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:60px;
}

details{
  padding:20px 24px;
  border-radius:16px;
  border:1px solid #dce9f5;
  margin-bottom:14px;
  background:#fff;
}

summary{
  cursor:pointer;
  font-weight:900;
}

details p{
  margin-bottom:0;
}

/* FOOTER */
.footer{
  padding:65px 0 25px;
  background:#061a33;
  color:#fff;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr 1.2fr;
  gap:65px;
}

.footer-logo{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:24px;
  font-weight:900;
  margin-bottom:14px;
}

.footer p,
.footer a{
  color:#c6d5e3;
  line-height:1.7;
  display:block;
  margin:8px 0;
  font-weight:500;
}

.copyright{
  margin:40px auto 0;
  padding-top:24px;
  border-top:1px solid rgba(255,255,255,.12);
  text-align:center;
}

.floating-call{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:90;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:16px 22px;
  border-radius:999px;
  background:#ffd12d;
  color:#071d35;
  font-weight:900;
  box-shadow:0 18px 45px rgba(0,0,0,.22);
}

/* RESPONSIVE */
@media(max-width:900px){

  .site-header{
    padding:0 5%;
  }

  .menu-btn{
    display:block;
  }

  .nav{
    display:none;
    position:absolute;
    top:82px;
    left:0;
    right:0;
    padding:24px;
    background:#fff;
    flex-direction:column;
    text-align:center;
  }

  .nav.show{
    display:flex;
  }

  .header-call{
    display:none;
  }

  .desktop-hero{
    display:none;
  }

  .mobile-hero{
    display:block;
    background:
      linear-gradient(180deg,rgba(5,20,38,.74),rgba(5,20,38,.96)),
      url("https://images.unsplash.com/photo-1569154941061-e231b4725ef1?q=80&w=1740&auto=format&fit=crop")
      center/cover no-repeat;
    padding:38px 18px;
  }

  .mobile-hero-inner{
    display:flex;
    flex-direction:column;
    justify-content:center;
  }

  .mobile-kicker{
    color:#ffd12d;
    text-transform:uppercase;
    font-size:12px;
    font-weight:900;
    letter-spacing:.18em;
  }

  .mobile-hero h1{
    margin:16px 0;
    color:#fff;
    font-size:26px;
    line-height:1.05;
  }

  .mobile-hero p{
    color:#eaf5ff;
    line-height:1.6;
    font-weight:500;
  }

  .mobile-pills{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
    margin:18px 0;
  }

  .mobile-pills a{
   display: flex;
        align-items: center;
        gap: 9px;
        background: #fff;
        color: #071d35;
        border-radius: 14px;
        padding: 10px;
        font-weight: 600;
        font-size: 14px;
  }

  .mobile-pills i{
    color:#0b74ff;
  }

  .mobile-call{
    background:#0b74ff;
    color:#fff;
    text-align:center;
    padding:17px;
    border-radius:16px;
    font-weight:900;
  }

  .trust-section{
    margin-top:0;
  }
.trust-grid{
    grid-template-columns: repeat(2, 1fr);
}
  
  .service-grid,
  .support-grid,
  .route-grid,
  .step-grid,
  .faq-grid,
  .footer-grid{
    grid-template-columns: 1fr;
  }

  .trust-grid{
    border-radius:0;
  }

  .services,
  .support-split,
  .routes,
  .steps,
  .faq{
    padding:55px 0;
  }

  .section-head,
  .section-head.left{
    text-align:left;
  }

  .section-head h2,
  .support-copy h2,
  .faq h2{
    font-size:20px;
  }

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

  .support-image img{
    height:280px;
  }

  .route-grid article{
    height:230px;
  }

  .floating-call{
    left:18px;
    right:18px;
    justify-content:center;
  }
}

.legal-page{
  padding:30px 0;
  background:linear-gradient(135deg,#f7fbff,#eef6ff);
}

.legal-card{
  background:#fff;
  padding:55px;
  border-radius:30px;
  box-shadow:0 25px 70px rgba(7,29,53,.10);
}

.legal-kicker{
  color:#0b74ff;
  font-size:12px;
  font-weight:900;
  letter-spacing:.22em;
  text-transform:uppercase;
}

.legal-card h1{
  font-size:32px;
  line-height:1.1;
  margin:14px 0 22px;
  color:#071d35;
}

.legal-card h2{
  font-size:20px;
  margin:34px 0 12px;
  color:#071d35;
}

.legal-card p,
.legal-card li{
  color:#5b7188;
  font-size:14px;
  font-weight:700;
  line-height:1.8;
}

.legal-card ul{
  padding-left:22px;
}

@media(max-width:768px){
  .legal-page{
    padding:2ch 0;
  }

  .legal-card{
    padding:28px 20px;
    border-radius:22px;
  }

  .legal-card h1{
    font-size:26px;
  }

  .legal-card h2{
    font-size:18px;
  }
}