:root{
  --blue:#2f67a5;
  --blue2:#3b73b4;
  --soft:#cfe6f6;
  --softText:#5a8fbe;
  --text:#121820;
  --muted:#66707a;
  --bg:#eef1f4;
  --card:#ffffff;
  --shadow: 0 18px 40px rgba(0,0,0,.10);
  --radius:28px;
  --radius2:22px;
  --max: 980px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:linear-gradient(#f3f6f9, #eef1f4);
}

a{color:inherit}
.container{
  width:min(var(--max), 92vw);
  margin:0 auto;
}

/* ===== HEADER ===== */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:#fff;
  border-bottom:1px solid rgba(0,0,0,.06);
}
.header-inner{
  width:min(var(--max), 92vw);
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
}
.brand-text{
  line-height:1.05;
  font-weight:800;
  letter-spacing:.2px;
}
.brand-top{font-size:14px}
.brand-bottom{font-size:18px}
.brand-kib{font-weight:700; opacity:.65}

.header-actions{
  display:flex;
  align-items:center;
  gap:10px;
}
.lang{
  display:flex;
  gap:8px;
}
.pill{
  border:1px solid rgba(0,0,0,.12);
  background:#fff;
  color:#2a3440;
  padding:8px 14px;
  border-radius:999px;
  font-weight:700;
  font-size:12px;
}
.pill.active{
  background:#0f1b2a;
  color:#fff;
  border-color:#0f1b2a;
}
.menu-btn{
  width:40px; height:40px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.12);
  background:#fff;
  display:grid;
  place-items:center;
  gap:3px;
  padding:10px;
}
.menu-dot{
  width:4px; height:4px;
  background:#1a2432;
  border-radius:999px;
  display:block;
}

/* ===== HERO ===== */
.hero{
  position:relative;
  padding-bottom:22px;
}
.hero-slider{
  position:relative;
  height:320px;
  width:100%;
  overflow:hidden;
  background:#dfe7ee;
}
.hero-slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:opacity .7s ease;
}
.hero-slide.is-active{opacity:1}

.hero-dots{
  position:absolute;
  top:10px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:8px;
  z-index:2;
  background:rgba(255,255,255,.65);
  padding:6px 10px;
  border-radius:999px;
  backdrop-filter: blur(6px);
}
.dot{
  width:10px; height:6px;
  border-radius:999px;
  background:rgba(0,0,0,.25);
}
.dot.is-on{background:rgba(0,0,0,.65)}

.hero-card{
  width:min(var(--max), 92vw);
  margin:-92px auto 0;
  background:var(--card);
  border-radius:var(--radius);
  box-shadow: var(--shadow);
  padding:22px 22px 24px;
}
.breadcrumb{
  color:#7b8792;
  font-size:14px;
  margin-bottom:10px;
}
.breadcrumb .sep{opacity:.8}
.crumb-active{color:var(--blue); font-weight:700}

.hero-title{
  font-size:54px;
  letter-spacing:-1.2px;
  margin:0;
  font-weight:900;
}
.title-underline{
  width:120px;
  height:2px;
  background:rgba(0,0,0,.45);
  margin:12px 0 14px;
}
.hero-sub{
  margin:0 0 18px;
  font-size:22px;
  color:#1a2330;
  line-height:1.6;
  max-width:52ch;
}

/* buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  padding:16px 24px;
  font-weight:800;
  letter-spacing:.4px;
  text-decoration:none;
  border:0;
  cursor:pointer;
  user-select:none;
  -webkit-tap-highlight-color: transparent;
}
.btn-primary{
  background:#4ea0df;
  color:#fff;
  box-shadow: 0 10px 20px rgba(78,160,223,.35);
}
.btn-primary:active{transform:scale(.99)}
.btn-soft{
  background: #d9eefc;
  color:#5f9ac7;
  border-radius:18px;
  padding:18px 28px;
  font-size:18px;
  font-weight:700;
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
}
.btn-soft:active{transform:scale(.99)}

/* ===== MAIN ===== */
.page{
  width:min(var(--max), 92vw);
  margin:0 auto;
  padding:18px 0 22px;
}

.intro{
  padding:18px 0 10px;
}
.intro-text{
  margin:0 auto;
  max-width:62ch;
  text-align:center;
  font-size:22px;
  line-height:1.7;
  color:#343c45;
}

.block{padding:10px 0 22px}
.section-title{
  font-size:46px;
  margin:10px 0 14px;
  font-weight:900;
  letter-spacing:-.8px;
}

/* Condition card */
.card{
  background:var(--card);
  border-radius:var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.card-row{
  padding:22px 22px;
}
.label{
  color:#9aa3ab;
  font-weight:900;
  font-size:26px;
  margin-bottom:10px;
}
.bullets{
  margin:0;
  padding-left:22px;
}
.bullets li{
  font-size:26px;
  margin:8px 0;
}
.divider{
  height:1px;
  background:rgba(0,0,0,.08);
}

/* apply */
.apply-card{
  background:var(--card);
  border-radius:var(--radius);
  box-shadow: var(--shadow);
  padding:20px 22px 24px;
}
.apply-list{
  margin:0 0 12px;
  padding-left:26px;
}
.apply-list li{
  font-size:22px;
  line-height:1.7;
  margin:8px 0;
}
.apply-link{
  color:var(--blue);
  text-decoration:underline;
  font-weight:900;
}
.apply-contact{
  font-size:22px;
  line-height:1.7;
  margin:10px 0 14px;
}
.phone{
  color:var(--blue);
  text-decoration:underline;
  font-weight:900;
}
.apply-banner{
  margin-top:18px;
  height:360px;
  border-radius:var(--radius2);
  background:#e8eef4;
  background-size:cover;
  background-position:center;
  overflow:hidden;
}

/* Customer Service Care */
.service-card{
  background: linear-gradient(#ffffff 0%, #e9f2fb 45%, #53a8e7 100%);
  border-radius:var(--radius);
  box-shadow: var(--shadow);
  padding:20px 22px 0;
  overflow:hidden;
}
.service-text{
  font-size:22px;
  line-height:1.7;
  margin:0 0 12px;
}
.service-phone{
  display:flex;
  align-items:center;
  gap:12px;
  margin:10px 0 18px;
  font-size:24px;
}
.call-ico{font-size:26px}
.service-number{
  color:var(--blue);
  font-weight:900;
  text-decoration:none;
}
.service-image{
  height:420px;
  margin-top:18px;
  background:#4ea0df;
  background-size:cover;
  background-position:center;
}

/* ===== FOOTER ===== */
.site-footer{margin-top:26px}

.footer-blue{
  background:var(--blue);
  color:#fff;
}
.footer-accordion{
  padding:18px 0 22px;
}
.foot-item{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 0;
  background:transparent;
  border:0;
  color:#fff;
  font-size:26px;
  font-weight:900;
  border-bottom:1px solid rgba(255,255,255,.18);
  cursor:pointer;
}
.chev{
  opacity:.85;
  font-weight:900;
}

/* ===== Footer Brand Line ===== */
.footer-brandline{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:18px;
  color:#ffffff;
  opacity:0.92;
  margin-top:14px;
  padding-top:10px;
}
.brand-link{
  color:#ffffff;
  text-decoration:none; /* looks like ordinary text */
  font-weight:500;
}

/* blue label row */
.footer-blue-label{
  background:rgba(0,0,0,.14);
  padding:14px 0;
  font-weight:900;
  letter-spacing:.6px;
  font-size:20px;
}

/* white address section */
.footer-address-section{
  background:#fff;
  padding:18px 0 24px;
}
.addr-title{
  margin:0 0 12px;
  font-size:40px;
  font-weight:900;
}
.addr-block p{
  font-size:22px;
  line-height:1.75;
  margin:10px 0;
}
.addr-sub{
  margin:18px 0 6px;
  font-size:26px;
  font-weight:900;
}

/* bottom bar */
.footer-bottom{
  background:rgba(47,103,165,.9);
  color:#fff;
  padding:14px 0;
  text-align:center;
  font-weight:900;
  font-size:22px;
}

/* ===== Scroll reveal ===== */
.reveal{
  opacity:0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible{
  opacity:1;
  transform: translateY(0);
}

/* ===== Mobile tuning ===== */
@media (max-width:520px){
  .hero-slider{height:280px}
  .hero-title{font-size:48px}
  .section-title{font-size:42px}
  .label, .bullets li{font-size:22px}
  .intro-text, .apply-list li, .apply-contact, .service-text{font-size:20px}
  .apply-banner{height:320px}
  .service-image{height:380px}
  .foot-item{font-size:22px}
  .addr-title{font-size:34px}
  .addr-block p{font-size:20px}
}
