:root{
  --blue:#0b74b8;
  --blue2:#0d6fa8;
  --soft:#e7f4fb;
  --text:#111;
  --muted:#666;
  --card:#fff;
  --bg:#f3f4f6;
  --radius:22px;
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:#fff;
}

.container{
  max-width:980px;
  margin:auto;
  padding:0 16px;
}

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

/* HEADER */

.site-header{
  position:sticky;
  top:0;
  background:#fff;
  z-index:50;
  border-bottom:1px solid #eee;
}

.bar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:64px;
}

.brand{
  font-weight:800;
  font-size:14px;
}

.brand small{
  font-weight:700;
}

.header-right{
  display:flex;
  gap:12px;
  align-items:center;
}

.lang{
  display:flex;
  gap:6px;
  background:#f3f4f6;
  padding:6px;
  border-radius:999px;
}

.lang button{
  border:0;
  padding:8px 10px;
  border-radius:999px;
  background:transparent;
  font-weight:700;
  cursor:pointer;
}

.lang button.is-active{
  background:#111;
  color:#fff;
}

.menu-btn{
  border:0;
  background:#fff;
  font-size:22px;
}

/* HERO */

.hero{
  position:relative;
  background:linear-gradient(135deg,#0b74b8,#55c0f5);
  padding-bottom:30px;
}

.hero-slider{
  height:320px;
  overflow:hidden;
  position:relative;
}

.hero-track{
  display:flex;
  height:100%;
  transition:transform .5s ease;
}

.hero-slide{
  min-width:100%;
}

.hero-slide img{
  width:100%;
  height:320px;
  object-fit:cover;
}

.hero-dots{
  position:absolute;
  bottom:14px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:8px;
}

.hero-dots button{
  width:10px;
  height:10px;
  border-radius:50%;
  border:0;
  background:rgba(255,255,255,.5);
}

.hero-dots button.is-active{
  background:#fff;
}

/* HERO CARD */

.hero-card{
  background:#fff;
  margin:-70px 16px 0;
  padding:22px;
  border-radius:26px;
  box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.crumb{
  color:#777;
  font-size:13px;
}

.crumb-strong{
  color:var(--blue);
  font-weight:800;
}

.hero-card h1{
  font-size:38px;
  margin:12px 0;
}

.hero-line{
  width:60px;
  height:2px;
  background:#ccc;
  margin-bottom:14px;
}

/* SECTIONS */

.headline{
  text-align:center;
  padding:26px 0;
}

.headline h2{
  font-size:42px;
  margin-bottom:10px;
}

.headline p{
  max-width:650px;
  margin:auto;
  color:#333;
}

/* CARD */

.card{
  background:#fff;
  border-radius:22px;
  padding:20px;
  margin:20px 0;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.card-title{
  font-size:22px;
  margin-bottom:10px;
}

.bullets{
  padding-left:18px;
  line-height:1.7;
}

/* REQUIREMENT BAND */

.section-band{
  background:#2f67a1;
  padding:24px;
  border-radius:26px;
  color:#fff;
  margin:20px 0;
}

.band-title{
  font-size:38px;
  font-weight:800;
  margin-bottom:16px;
}

.req-card{
  background:#fff;
  color:#111;
  border-radius:22px;
  padding:20px;
}

.checkrow{
  display:flex;
  gap:10px;
  margin:10px 0;
}

.check{
  width:20px;
  height:20px;
  border-radius:50%;
  background:#2f67a1;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
}

/* KEY VALUE */

.kv{
  padding:14px 0;
  border-bottom:1px solid #eee;
}

.k{
  color:#888;
  font-weight:700;
}

.v{
  margin-top:6px;
}

/* BUTTON */

.btn-soft{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 18px;
  border-radius:16px;
  background:#dff2fb;
  color:#1b5f86;
  text-decoration:none;
  font-weight:700;
}

.btn-soft.wide{
  width:100%;
  margin-top:14px;
}

/* IMAGE PLACEHOLDER */

.banner-img{
  margin-top:16px;
  border-radius:18px;
  overflow:hidden;
  border:2px dashed #cfe6f6;
}

.banner-img img{
  width:100%;
  height:220px;
  object-fit:cover;
}

/* CUSTOMER SERVICE CARD */

.cs-section{
padding:24px 16px;
}

.cs-card{

background:linear-gradient(
180deg,
#ffffff 0%,
#eaf4ff 40%,
#3a8ec5 100%
);

border-radius:26px;
padding:24px 20px 0;
overflow:hidden;

box-shadow:0 14px 30px rgba(0,0,0,.08);
}

.cs-title{
font-size:28px;
font-weight:800;
margin-bottom:10px;
}

.cs-text{
font-size:16px;
color:#222;
margin-bottom:16px;
}

.cs-phone{
display:flex;
align-items:center;
gap:10px;
font-weight:700;
font-size:18px;
color:#2f69b3;
margin-bottom:14px;
}

.cs-link{
text-decoration:none;
color:#2f69b3;
}

.phone-icon{
font-size:18px;
}

.cs-btn{
margin-bottom:20px;
display:inline-flex;
align-items:center;
justify-content:center;
padding:14px 22px;
border-radius:16px;
background:#dff2fb;
color:#2f69b3;
text-decoration:none;
font-weight:700;
}

.cs-img{
margin-top:20px;
}

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

/* FADE ANIMATION */

.reveal{
opacity:0;
transform:translateY(20px);
transition:all .6s ease;
}

.reveal.visible{
opacity:1;
transform:none;
}

.nav-tiles{
display:grid;
grid-template-columns:1fr 1fr;
gap:18px;
padding:24px 16px;
background:#f4f5f7;
}

.tile{
background:#fff;
border-radius:24px;
padding:24px;
min-height:180px;
display:flex;
flex-direction:column;
justify-content:space-between;
text-decoration:none;
color:#111;
box-shadow:0 6px 20px rgba(0,0,0,0.08);
}

.tile-icon{
width:54px;
height:54px;
background:#2f67a1;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
}

.tile-icon img{
width:26px;
height:26px;
}

.tile h3{
font-size:22px;
font-weight:800;
line-height:1.1;
margin-top:12px;
}

.tile-arrow{
align-self:flex-end;
font-size:26px;
color:#2f67a1;
}

/* FOOTER */

.footer-blue{
background:#3b6ea5;
color:#fff;
padding:20px 0;
}

.footer-menu{
display:flex;
flex-direction:column;
gap:10px;
}

.footer-btn{
width:100%;
text-align:left;
background:none;
border:none;
color:#fff;
font-size:18px;
font-weight:700;
padding:14px 0;
border-bottom:1px solid rgba(255,255,255,0.2);
cursor:pointer;
}

.footer-panel{
display:none;
padding:10px 0 10px 10px;
}

.footer-panel a{
display:block;
color:#fff;
opacity:0.85;
margin:6px 0;
text-decoration:none;
}

.footer-company{
margin-top:16px;
opacity:0.8;
font-size:14px;
}

.footer-address{
background:#fff;
padding:30px 0;
}

.footer-address h3{
font-size:22px;
margin-bottom:12px;
}

.footer-address p{
margin:10px 0;
line-height:1.5;
}

.footer-bottom{
background:#3b6ea5;
color:#fff;
text-align:center;
padding:14px;
font-weight:600;
}

/* FADE ANIMATION */

.reveal{
  opacity:0;
  transform:translateY(20px);
  transition:all .6s ease;
}

.reveal.is-visible{
  opacity:1;
  transform:none;
}

/* MOBILE */

@media (min-width:768px){

.hero-slide img{
height:380px;
}

.hero-slider{
height:380px;
}

.headline h2{
font-size:46px;
}

}
