: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;
}

/* RESET */
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Source Sans 3',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;cursor:pointer}

/* ===============================
   HEADER
=============================== */
.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;
}
.brand-text{
  font-weight:800;
  letter-spacing:.3px;
}
.brand-text span{
  display:block;
  font-size:14px;
}
.brand-text small{
  font-size:12px;
  color:#6b7280;
}

/* LANGUAGE */
.lang{
  display:flex;
  gap:8px;
}
.pill{
  border:1px solid rgba(15,23,42,.12);
  padding:8px 14px;
  border-radius:999px;
  font-weight:600;
}
.pill.active{
  background:#0f172a;
  color:#fff;
}

/* MENU BUTTON */
.menu-btn{
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,.1);
  display:grid;
  place-items:center;
}
.menu-ico{
  width:18px;height:14px;position:relative;
}
.menu-ico::before,
.menu-ico::after,
.menu-ico i{
  content:"";
  position:absolute;
  width:100%;
  height:2px;
  background:#111;
}
.menu-ico::before{top:0}
.menu-ico i{top:6px}
.menu-ico::after{bottom:0}

/* ===============================
   DRAWER (FIXED)
=============================== */
.drawer{
  position:fixed;
  top:0;
  right:-100%;
  width:320px;
  height:100%;
  background:#fff;
  z-index:200;
  transition:.3s ease;
}
.drawer.open{right:0}

.backdrop{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.4);
  z-index:150;
}

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

/* ===============================
   HERO
=============================== */
.hero{
  background:#f1f4fa;
  border-radius:30px;
  box-shadow:var(--shadow);
  overflow:hidden;
  margin-bottom:22px;
}

.hero-slider{
  height:340px;
  overflow:hidden;
}
.hero-track{
  display:flex;
  height:100%;
  transition:.4s;
}
.hero-slide{
  min-width:100%;
}
.hero-slide img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero-card{
  width:min(720px,100%);
  margin:-70px auto 0;
  background:#fff;
  border-radius:26px;
  box-shadow:var(--shadow);
  padding:24px;
}

.hero-card h1{
  font-size:48px;
  font-weight:800;
  margin:0;
}
.hero-card p{
  color:#374151;
  font-size:18px;
}

/* ===============================
   ABOUT TABS (FIXED)
=============================== */
.about-tabs{
  display:flex;
  background:#56adeb;
  margin-top:18px;
}
.about-tabs a{
  flex:1;
  text-align:center;
  padding:16px;
  color:#fff;
  font-weight:600;
}
.about-tabs a.active{
  background:rgba(255,255,255,.15);
  box-shadow:inset 0 -4px 0 #fff;
}

/* ===============================
   CONTENT
=============================== */
.content-card{
  background:#fff;
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow);
  margin-bottom:22px;
}

.card-pad{
  padding:28px;
}
.card-pad h2{
  font-size:32px;
  font-weight:800;
}
.card-pad p{
  font-size:17px;
  color:#4b5563;
}

/* ===============================
   STATS
=============================== */
.stat-label{
  color:#356db3;
  font-size:18px;
}
.stat-number{
  font-size:56px;
  font-weight:900;
}

/* ===============================
   FOOTER CARDS
=============================== */
.footer-cards{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
}
.footer-card{
  background:#fff;
  border-radius:24px;
  padding:24px;
  box-shadow:var(--shadow);
}
.footer-card h3{
  font-size:24px;
  font-weight:700;
}

/* ===============================
   FOOTER
=============================== */
.kib-footer__nav{
  background:#356db3;
  color:#fff;
}
.kib-acc-header{
  font-weight:700;
  padding:16px;
}
.kib-acc-links a{
  font-size:18px;
}

/* ===============================
   REVEAL
=============================== */
.reveal{
  opacity:0;
  transform:translateY(20px);
  transition:.6s;
}
.reveal.show{
  opacity:1;
  transform:none;
}

/* ===============================
   MOBILE
=============================== */
@media(max-width:768px){
  .hero-card h1{font-size:32px}
  .stat-number{font-size:42px}
}
