:root{
  --primary: #0F66B9;
  --primary-soft: #4DB5FF;
  --accent: #3AD3C0;
  --text-dark: #032336;
  --text-muted: rgba(3,35,54,.65);
  --bg: #f4f8fb;
}
*{box-sizing:border-box;}
body{
  margin:0;
  font-family:"Poppins",sans-serif;
  background:var(--bg);
  color:var(--text-dark);
  
}
a{text-decoration:none;color:inherit;}
.navbar{
  position:fixed;
  top:0;left:0;right:0;
  background:rgba(244,248,251,.6);
  backdrop-filter:blur(12px);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 5vw;
  z-index:999;
  border-bottom:1px solid rgba(15,102,185,0.06);
}
.brand-wrap{
  display:flex;
  gap:10px;
  align-items:center;
}
.brand-wrap img{
  height:48px;
  background:white;
  border-radius:16px;
  padding:4px 6px;
  border:1px solid rgba(15,102,185,.05);
}
.brand-text{
  font-weight:700;
  color:var(--primary);
  font-size:1.05rem;
}
.nav-links{
  display:flex;
  gap:1.1rem;
  align-items:center;
}
.nav-link{
  font-size:.9rem;
  color:var(--text-muted);
  transition:.2s;
}
.nav-link:hover{color:var(--primary);}
.btn-nav{
  background:var(--primary);
  color:white;
  padding:7px 15px;
  border-radius:999px;
  font-weight:500;
  font-size:.78rem;
  border:none;
  box-shadow:0 14px 30px rgba(15,102,185,.25);
  cursor:pointer;
}
.menu-btn{
  display:none;
  width:40px;height:40px;
  border:1.4px solid rgba(3,35,54,.12);
  border-radius:14px;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:4px;
  cursor:pointer;
  background:white;
}
.menu-btn span{
  width:16px;height:3px;
  background:var(--primary);
  border-radius:999px;
}
header.hero{
  padding-top:92px;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  overflow:hidden;
}
.bubble{
  position:absolute;
  border-radius:999px;
}
.b1{width:260px;height:260px;background:radial-gradient(circle, rgba(13,129,221,0.35) 0%, rgba(244,248,251,0) 80%); top:-80px; right:6%;}
.b2{width:320px;height:320px;background:radial-gradient(circle, rgba(58,211,192,0.28) 0%, rgba(244,248,251,0) 80%); bottom:-100px; left:3%;}
.hero-inner{
  width:100%;
  max-width:1150px;
  display:grid;
  grid-template-columns:1.05fr .85fr;
  gap:40px;
  padding:0 5vw 70px;
  position:relative;
  z-index:5;
}
.hero-left .tag{
  background:rgba(13,129,221,.09);
  color:var(--primary);
  display:inline-flex;
  padding:5px 16px;
  border-radius:999px;
  font-size:.7rem;
  font-weight:500;
  margin-bottom:16px;
}
.hero-left h1{
  font-size:2.7rem;
  line-height:1.08;
  margin-bottom:16px;
}
.hero-left p{
  color:var(--text-muted);
  max-width:540px;
}
.hero-stats{
  margin-top:30px;
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}
.stat{
  background:white;
  border:1px solid rgba(15,102,185,0.04);
  border-radius:20px;
  padding:12px 16px;
  min-width:140px;
  box-shadow:0 20px 35px rgba(3,35,54,.03);
}
.stat .num{font-size:1.45rem;font-weight:600;color:var(--primary);}
.hero-right{
  background:rgba(255,255,255,.35);
  backdrop-filter:blur(16px);
  border:1px solid rgba(255,255,255,.6);
  border-radius:26px;
  box-shadow:0 30px 70px rgba(3,35,54,.06);
  padding:24px 22px 26px;
}
.hero-right h2{margin-top:0;font-size:1.12rem;}
.hero-right p{font-size:.8rem;color:var(--text-muted);margin-bottom:18px;}
.form-group{display:flex;flex-direction:column;gap:6px;margin-bottom:10px;}
.form-group label{font-size:.7rem;font-weight:500;color:var(--text-dark);}
.form-group input,.form-group select{
  padding:9px 11px;
  border-radius:14px;
  border:1px solid rgba(3,35,54,.08);
  background:white;
  outline:none;
  font-size:.8rem;
}
.btn-primary{
  width:100%;
  background:linear-gradient(120deg, var(--primary) 0%, #4DB5FF 100%);
  color:white;
  border:none;
  border-radius:16px;
  padding:10px 0;
  font-weight:500;
  cursor:pointer;
  margin-top:6px;
  box-shadow:0 15px 30px rgba(15,102,185,.35);
}

.btn-assurance{
  display:block;
  margin-top:10px;
  background:rgba(58,211,192,.15);
  border:1px solid rgba(58,211,192,.4);
  color:#036f60;
  font-size:.7rem;
  padding:7px 10px;
  border-radius:14px;
  text-align:center;
}
.btn-assurance:hover{background:rgba(58,211,192,.35);}
.link-inline-btn{
  background:none;
  border:none;
  color:var(--primary);
  font-weight:500;
  cursor:pointer;
}
.alt{margin-top:12px;text-align:center;font-size:.74rem;color:var(--text-muted);}
.alt a{color:var(--primary);font-weight:500;}
.alt.small{font-size:.68rem;}
/* modal */
.modal-backdrop{
  position:fixed;
  inset:0;
  background:rgba(3,35,54,.35);
  backdrop-filter:blur(3px);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
  padding:20px;
}
.modal-card{
  background:white;
  border-radius:18px;
  max-width:420px;
  width:100%;
  padding:20px 22px 18px;
  position:relative;
  box-shadow:0 25px 55px rgba(3,35,54,.15);
}
.modal-card.small{max-width:360px;}
.modal-card.wide{max-width:720px;}
.modal-card h3{margin-top:0;margin-bottom:8px;color:#032336;}
.modal-card p{font-size:.78rem;color:rgba(3,35,54,.7);}
.docs-list{
  margin:8px 0 12px 16px;
  font-size:.75rem;
  color:rgba(3,35,54,.8);
}
.modal-actions{
  display:flex;
  gap:10px;
  margin-top:10px;
  flex-wrap:wrap;
}
.btn-modal{
  border:none;
  border-radius:12px;
  padding:8px 12px;
  cursor:pointer;
  font-size:.72rem;
}
.btn-modal.yes{
  background:var(--primary);
  color:white;
}
.btn-modal.no{
  background:rgba(3,35,54,.08);
  color:#032336;
}
.btn-modal.full{
  width:100%;
  text-align:center;
}
.modal-close{
  position:absolute;
  top:8px;
  right:8px;
  border:none;
  background:transparent;
  font-size:1.1rem;
  cursor:pointer;
  color:rgba(3,35,54,.4);
}
.prep-steps{margin-top:10px;}
.prep-options{display:flex;gap:14px;flex-wrap:wrap;}
.prep-option{
  flex:1 1 240px;
  border:1px solid rgba(3,35,54,.08);
  border-radius:14px;
  display:flex;
  gap:10px;
  padding:10px 12px;
  cursor:pointer;
}
.prep-option input{margin-top:5px;}
.prep-body h4{margin:0 0 4px 0;font-size:.75rem;}
.prep-body ul{margin:0 0 0 15px;font-size:.68rem;}
.prep-form .form-group{margin-bottom:10px;}
.prep-form input{width:100%;}
.prep-note{font-size:.7rem;color:rgba(3,35,54,.5);margin-top:10px;}
section{padding:70px 5vw 40px;}
.section-title{text-align:center;font-size:1.8rem;margin-bottom:35px;}
/* floating sections */
.floating-section{
  padding:65px 5vw 10px;
  position:relative;
}
.section-sub{
  text-align:center;
  color:rgba(3,35,54,.55);
  margin-top:-20px;
  margin-bottom:35px;
}
.floating-wrap{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
  justify-content:center;
}
.float-card{
  background:white;
  border-radius:22px;
  width:280px;
  padding:20px 18px 22px;
  box-shadow:0 20px 50px rgba(3,35,54,.08);
  border:1px solid rgba(15,102,185,0.02);
  transform:translateY(0);
  transition:.25s;
}
.float-card h3{margin-top:0;margin-bottom:8px;color:#032336;}
.float-card p{font-size:.78rem;color:rgba(3,35,54,.7);margin-bottom:15px;}
.float-card .tag-small{
  display:inline-block;
  background:rgba(15,102,185,.08);
  color:#0F66B9;
  font-size:.6rem;
  padding:4px 11px;
  border-radius:999px;
}
.float-card .tag-small.green{
  background:rgba(58,211,192,.12);
  color:#079d87;
}
.float-card.mid{transform:translateY(-14px);}
.float-card:hover{
  transform:translateY(-10px);
  box-shadow:0 25px 55px rgba(3,35,54,.12);
}
.float-card.wide{
  width:360px;
}
/* services */
.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(230px,1fr));
  gap:20px;
}
.service-card{
  background:white;
  border:1px solid rgba(15,102,185,0.02);
  border-radius:22px;
  padding:20px 18px 23px;
  box-shadow:0 20px 45px rgba(3,35,54,.03);
}
.badge{
  background:rgba(15,102,185,.08);
  color:var(--primary);
  font-size:.6rem;
  padding:4px 11px;
  border-radius:999px;
}
.badge.muted{
  background:rgba(3,35,54,.05);
  color:rgba(3,35,54,.5);
}
/* visas obtenus */
.visas-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(240px,1fr));
  gap:20px;
  margin-bottom:50px;
}
.visa-card{
  background:white;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 20px 45px rgba(3,35,54,.04);
  border:1px solid rgba(15,102,185,.03);
  position:relative;
}
.visa-img{
  height:190px;
  background-size:cover;
  background-position:center top;
}
.visa-mask{
  background:linear-gradient(120deg, rgba(244,248,251,1) 0%, rgba(255,255,255,1) 100%);
  padding:10px 14px 14px;
}
.visa-mask .label{
  display:inline-block;
  background:rgba(3,35,54,.08);
  color:#032336;
  font-size:.55rem;
  padding:3px 9px;
  border-radius:999px;
  margin-bottom:6px;
}
.visa-mask .type{
  display:block;
  font-weight:600;
  font-size:.8rem;
}
.visa-mask .date{
  display:block;
  font-size:.7rem;
  color:rgba(3,35,54,.5);
}
.visa-card.more .visa-img.more-bg{
  background:radial-gradient(circle at top, rgba(13,129,221,.1) 0%, rgba(244,248,251,1) 75%);
  height:140px;
}
.visa-card.more .visa-mask.center{
  text-align:center;
}
.btn-small-inline{
  display:inline-block;
  margin-top:6px;
  background:var(--primary);
  color:white;
  padding:5px 12px;
  border-radius:999px;
  font-size:.65rem;
}
/* contact / footer */
.footer-cta{text-align:center;padding:50px 0 70px;}
.cta-btn{
  display:inline-block;
  background:var(--primary);
  color:white;
  padding:10px 30px;
  border-radius:999px;
  font-weight:500;
  margin-top:14px;
}
.link-inline{
  color:var(--primary);
  font-weight:500;
  font-size:.78rem;
}
.footer{
  text-align:center;
  font-size:.7rem;
  color:rgba(3,35,54,.55);
  padding:20px 5vw 25px;
}
@media (max-width: 980px){
  .nav-links{display:none;}
  .menu-btn{display:flex;}
  .hero-inner{grid-template-columns:1fr;}
  .hero-left h1{font-size:2.35rem;}
  .float-card.mid{transform:translateY(0);}
  .modal-card.wide{max-width:95vw;}
}
@media (max-width: 560px){
  .hero-left h1{font-size:1.95rem;}
  .hero-right{padding:20px 16px;}
  .hero-stats{flex-direction:column;}
  .navbar{padding:10px 4vw;}
  .float-card,.float-card.wide{width:100%;}
  .prep-options{flex-direction:column;}
}
