:root{
  --bg:#eef3fb;
  --page:#f3f4f6;
  --card:#ffffff;
  --text:#0b1220;
  --muted:#6b7280;
  --blue:#356db3;
  --blue-dark:#144987;
  --soft:#d9edf9;
  --line:#d9dde5;
  --shadow:0 14px 34px rgba(15,23,42,.08);
  --radius:24px;
  --radius-lg:30px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:#efefef;
  color:var(--text);
}
img{display:block;max-width:100%}
a{text-decoration:none;color:inherit}
button{font:inherit}

.topbar{
  position:sticky;
  top:0;
  z-index:100;
  background:#fff;
  border-bottom:1px solid rgba(15,23,42,.06);
}
.topbar-inner{
  max-width:1120px;
  margin:0 auto;
  padding:14px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.brand-text{
  font-weight:900;
  line-height:1;
  text-transform:uppercase;
}
.brand-text span{
  display:block;
  font-size:14px;
  letter-spacing:.4px;
}
.brand-text small{
  display:block;
  font-size:12px;
  color:#555;
  margin-top:6px;
}
.lang{
  display:flex;
  align-items:center;
  gap:8px;
  margin-left:auto;
}
.pill{
  border:1px solid rgba(15,23,42,.12);
  background:#fff;
  color:#111827;
  padding:9px 16px;
  border-radius:999px;
  font-weight:800;
}
.pill.active{
  background:#0f172a;
  color:#fff;
  border-color:#0f172a;
}
.menu-btn{
  width:48px;
  height:48px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,.1);
  background:#fff;
  display:grid;
  place-items:center;
}
.menu-ico{
  position:relative;
  width:18px;
  height:14px;
}
.menu-ico::before,
.menu-ico::after,
.menu-ico i{
  content:"";
  position:absolute;
  left:0;
  width:100%;
  height:2px;
  background:#111827;
  border-radius:4px;
}
.menu-ico::before{top:0}
.menu-ico i{top:6px}
.menu-ico::after{bottom:0}

.page-wrap{
  max-width:1120px;
  margin:0 auto;
  padding:18px 16px 48px;
}

.hero{
  background:#f1f4fa;
  border-radius:30px;
  box-shadow:var(--shadow);
  overflow:hidden;
  margin-bottom:22px;
}
.hero-slider{
  position:relative;
  height:360px;
  background:#dce8fb;
  overflow:hidden;
  touch-action:pan-y;
}
.hero-track{
  display:flex;
  width:100%;
  height:100%;
  transition:transform .45s ease;
}
.hero-slide{
  min-width:100%;
  height:100%;
}
.hero-slide img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.hero-dots{
  position:absolute;
  left:50%;
  bottom:12px;
  transform:translateX(-50%);
  display:flex;
  gap:10px;
  z-index:3;
}
.hero-dots button{
  width:14px;
  height:14px;
  border:0;
  border-radius:999px;
  background:rgba(255,255,255,.7);
}
.hero-dots button.active{
  width:32px;
  background:#fff;
}

.hero-card{
  width:min(760px,calc(100% - 32px));
  margin:-74px auto 0;
  background:#fff;
  border-radius:26px;
  box-shadow:var(--shadow);
  padding:22px 22px 24px;
  position:relative;
  z-index:4;
}
.crumb{
  color:#7a7f87;
  font-size:18px;
  font-weight:700;
  margin-bottom:10px;
}
.crumb span{
  color:var(--blue);
}
.hero-card h1{
  margin:0;
  font-size:62px;
  line-height:.96;
  font-weight:900;
  letter-spacing:-1.4px;
}
.hero-line{
  width:88px;
  height:3px;
  background:#8c8f96;
  border-radius:3px;
  margin:16px 0 18px;
}
.hero-card p{
  margin:0;
  font-size:20px;
  line-height:1.6;
  color:#1f2937;
}

.hero-tabs{
  margin-top:18px;
  display:flex;
  overflow:auto;
  background:#56adeb;
}
.hero-tabs a{
  flex:1 0 auto;
  min-width:180px;
  text-align:center;
  color:#fff;
  padding:18px 12px;
  font-size:18px;
  font-weight:500;
}
.hero-tabs a.active{
  background:rgba(255,255,255,.12);
  box-shadow:inset 0 -4px 0 #fff;
}

.content-card,
.support-card{
  background:#fff;
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow);
  overflow:hidden;
  margin-bottom:22px;
}
.card-pad{
  padding:28px;
}
.card-pad h2,
.support-top h2,
.milestones h2{
  margin:0 0 16px;
  font-size:36px;
  line-height:1.08;
  letter-spacing:-.7px;
  font-weight:900;
}
.card-pad p{
  margin:0 0 14px;
  color:#666;
  font-size:19px;
  line-height:1.65;
}

.media-box{
  padding:0 28px 28px;
}
.media-box img{
  width:100%;
  height:420px;
  object-fit:cover;
  border-radius:24px;
}
.image-box{
  position:relative;
  background:#dce8fb;
  border-radius:24px;
  overflow:hidden;
  min-height:320px;
}
.image-box.is-empty::before{
  content:attr(data-file);
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#2c5ca3;
  font-weight:800;
  font-size:28px;
  text-align:center;
  padding:20px;
  border:2px dashed rgba(44,92,163,.25);
  background:linear-gradient(135deg,#e8f1ff,#d8e8ff);
}
.hero-image-box.is-empty::before{
  font-size:24px;
}
.tall-network img,
.tall-network.is-empty{
  min-height:420px;
}

.stats-section{
  padding:8px 4px 26px;
}
.stat-item{
  margin-bottom:36px;
}
.stat-label{
  display:block;
  color:#346fb3;
  font-size:22px;
  margin-bottom:16px;
}
.stat-number{
  display:block;
  font-size:72px;
  line-height:1;
  font-weight:900;
  letter-spacing:-1px;
}

.milestones{
  background:#e3e3e3;
  border-radius:0;
  padding:30px 0 28px;
  margin:0 -16px 22px;
}
.milestones h2{
  text-align:center;
  margin-bottom:26px;
}
.milestone-card{
  position:relative;
  width:min(920px,calc(100% - 32px));
  margin:0 auto;
  background:#fff;
  border-radius:30px;
  box-shadow:var(--shadow);
  padding:32px 20px 28px;
}
.milestone-slidebox{
  text-align:center;
}
.milestone-image{
  width:100%;
  max-width:760px;
  margin:0 auto 22px;
  min-height:360px;
}
.milestone-image img{
  width:100%;
  height:100%;
  min-height:360px;
  object-fit:cover;
  border-radius:24px;
}
.milestone-slidebox h3{
  margin:0 auto 28px;
  max-width:720px;
  color:#2f66a7;
  font-size:24px;
  line-height:1.35;
  font-weight:800;
}
.mile-line{
  width:min(620px,100%);
  height:4px;
  background:#d9dde5;
  margin:0 auto 22px;
  position:relative;
  border-radius:4px;
}
.mile-dot{
  position:absolute;
  left:50%;
  top:50%;
  width:20px;
  height:20px;
  transform:translate(-50%,-50%);
  border-radius:999px;
  background:#fff;
  border:10px solid #2f66a7;
  box-sizing:content-box;
}
.mile-year{
  color:#2f66a7;
  font-size:22px;
  font-weight:800;
}
.mile-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:56px;
  height:56px;
  border-radius:999px;
  border:4px solid rgba(0,0,0,.65);
  background:rgba(255,255,255,.65);
  color:#333;
  font-size:48px;
  line-height:1;
  display:grid;
  place-items:center;
  padding:0;
}
.mile-prev{left:16px}
.mile-next{right:16px}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:58px;
  padding:0 28px;
  border-radius:20px;
  font-size:20px;
  font-weight:500;
  transition:.2s ease;
}
.btn-soft{
  background:#d7edf7;
  color:#42a2e3;
}
.btn-soft:hover{
  background:#cde7f5;
}

.network-stats{
  background:#fff;
  border-radius:0 0 24px 24px;
  margin:-22px 0 22px;
  padding:26px 20px 30px;
}
.network-item{
  margin-bottom:32px;
}
.network-label{
  display:block;
  color:#2f6aa8;
  font-size:22px;
  margin-bottom:10px;
}
.network-number{
  display:block;
  font-size:72px;
  line-height:1;
  font-weight:900;
}
.network-suffix{
  display:block;
  font-size:28px;
  line-height:1.2;
  font-weight:900;
  margin-top:8px;
}

.support-top{
  padding:28px 28px 0;
}
.support-top p{
  margin:0 0 18px;
  font-size:22px;
  line-height:1.55;
}
.support-phone{
  display:flex;
  align-items:center;
  gap:12px;
  color:#1f6eb9;
  font-size:24px;
  font-weight:900;
  margin-bottom:24px;
}
.phone-icon{
  font-size:36px;
}
.support-bottom{
  background:linear-gradient(180deg,#f1f4fb 0%, #89c8f1 35%, #0c9be6 100%);
  margin-top:16px;
  padding:0;
}
.support-image{
  min-height:520px;
  border-radius:0 0 30px 30px;
}
.support-image img{
  width:100%;
  height:520px;
  object-fit:cover;
}

.footer-cards{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
  margin-bottom:0;
}
.footer-card{
  background:#fff;
  min-height:300px;
  border-radius:28px;
  box-shadow:var(--shadow);
  padding:28px;
  display:flex;
  flex-direction:column;
}
.footer-icon{
  width:74px;
  height:74px;
  border-radius:999px;
  background:#2d6ab2;
  color:#fff;
  display:grid;
  place-items:center;
  font-size:28px;
  margin-bottom:24px;
}
.footer-card h3{
  margin:0;
  font-size:34px;
  line-height:1.15;
  font-weight:900;
}
.footer-arrow{
  margin-top:auto;
  align-self:flex-end;
  color:#2d6ab2;
  font-size:50px;
  line-height:1;
}

.kib-footer{
  margin-top:-40px;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}
.kib-footer__nav{
  background:#3b6ea8;
  color:#fff;
  padding:92px 0 0;
}
.kib-acc-item{
  border-top:1px solid rgba(255,255,255,.18);
}
.kib-acc-item:first-child{
  border-top:none;
}
.kib-acc-header{
  width:100%;
  background:transparent;
  border:none;
  color:#fff;
  font-weight:900;
  font-size:26px;
  padding:18px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  cursor:pointer;
}
.kib-acc-icon{
  transition:transform .25s ease;
}
.kib-acc-item.is-open .kib-acc-icon{
  transform:rotate(180deg);
}
.kib-acc-body{
  max-height:0;
  overflow:hidden;
  transition:max-height .3s ease;
  padding:0 18px;
}
.kib-acc-item.is-open .kib-acc-body{
  max-height:240px;
  padding-bottom:12px;
}
.kib-acc-links a{
  display:block;
  color:#fff;
  font-size:22px;
  font-weight:700;
  padding:10px 0;
  opacity:.95;
}
.kib-footer__group{
  padding:16px 18px 18px;
  font-size:20px;
  font-weight:800;
  border-top:1px solid rgba(255,255,255,.18);
}
.kib-footer__address{
  background:#fff;
  padding:18px 16px 0;
}
.kib-footer__badge{
  background:#3b6ea8;
  color:#fff;
  display:block;
  width:100%;
  text-align:center;
  padding:14px 18px;
  border-radius:14px;
  font-weight:900;
  font-size:18px;
  margin-bottom:18px;
}
.kib-footer__address h3{
  font-size:38px;
  font-weight:900;
  margin:0 0 16px;
}
.kib-footer__address p{
  font-size:20px;
  font-weight:700;
  line-height:1.55;
  margin:0 0 16px;
  color:#1a1a1a;
}
.kib-footer__branchTitle{
  font-weight:900;
  margin-top:18px;
}
.kib-footer__bottom{
  margin-top:16px;
  background:linear-gradient(180deg,#4f7fba,#3b6ea8);
  color:#fff;
  text-align:center;
  padding:18px 12px;
  border-bottom-left-radius:22px;
  border-bottom-right-radius:22px;
}
.kib-footer__social{
  display:flex;
  justify-content:center;
  gap:14px;
  margin-bottom:10px;
}
.kib-social{
  width:44px;
  height:44px;
  border-radius:50%;
  background:rgba(255,255,255,.22);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-weight:900;
}
.kib-footer__copy{
  font-weight:900;
  font-size:18px;
}

/* reveal */
.reveal{
  opacity:0;
  transform:translateY(28px);
  transition:opacity .6s ease, transform .6s ease;
}
.reveal.show{
  opacity:1;
  transform:translateY(0);
}

@media (max-width:860px){
  .hero-slider{height:260px}
  .hero-card{margin-top:-42px}
  .hero-card h1{font-size:34px}
  .hero-card p{font-size:16px}
  .crumb{font-size:16px}
  .hero-tabs a{font-size:16px;min-width:150px}
  .card-pad,
  .support-top{padding:22px}
  .card-pad h2,
  .support-top h2,
  .milestones h2{font-size:30px}
  .card-pad p,
  .support-top p{font-size:16px}
  .media-box{padding:0 22px 22px}
  .media-box img{height:280px}
  .stat-label,
  .network-label{font-size:18px}
  .stat-number,
  .network-number{font-size:48px}
  .network-suffix{font-size:22px}
  .milestone-card{padding:24px 16px}
  .milestone-image,
  .milestone-image img{min-height:220px}
  .mile-arrow{
    width:44px;
    height:44px;
    font-size:36px;
    border-width:3px;
  }
  .mile-prev{left:10px}
  .mile-next{right:10px}
  .support-phone{font-size:18px}
  .support-image,
  .support-image img{min-height:340px;height:340px}
  .footer-card{
    min-height:220px;
    padding:22px;
  }
  .footer-card h3{font-size:26px}
  .footer-icon{width:60px;height:60px;font-size:22px}
  .kib-acc-header{font-size:24px}
  .kib-acc-links a{font-size:20px}
  .kib-footer__address h3{font-size:32px}
  .kib-footer__address p{font-size:18px}
}
