/* ===============================
   BASE
================================= */
:root{
  --blue:#3b6ea8;
  --blue2:#4f7fba;
  --light:#f3f5f8;
  --text:#0c0c0c;
  --muted:#5b6472;
  --card:#ffffff;
  --shadow: 0 10px 30px rgba(0,0,0,.10);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:#fff;
}

/* ===============================
   HEADER (same look idea)
================================= */
.kib-header{
  position:sticky;
  top:0;
  z-index:50;
  background:#fff;
  border-bottom:1px solid rgba(0,0,0,.08);
}

.kib-header__inner{
  max-width:1100px;
  margin:0 auto;
  padding:14px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

.kib-brand{
  text-decoration:none;
  color:#000;
  display:flex;
  align-items:center;
  gap:10px;
}

.kib-brand__name{
  font-weight:900;
  line-height:1.05;
  letter-spacing:.2px;
}

.kib-brand__abbr{
  font-weight:800;
  opacity:.55;
  margin-top:4px;
}

.kib-header__right{
  display:flex;
  align-items:center;
  gap:12px;
}

.kib-lang{
  display:flex;
  gap:10px;
  align-items:center;
}

.kib-pill{
  border:1px solid rgba(0,0,0,.14);
  background:#fff;
  border-radius:999px;
  padding:8px 14px;
  font-weight:800;
  cursor:pointer;
}

.kib-pill.is-active{
  background:#0f172a;
  color:#fff;
  border-color:#0f172a;
}

/* burger */
.kib-menu-btn{
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.14);
  background:#fff;
  display:grid;
  place-items:center;
  cursor:pointer;
}
.kib-menu-btn__icon{
  width:18px; height:2px;
  background:#111;
  position:relative;
  display:block;
}
.kib-menu-btn__icon::before,
.kib-menu-btn__icon::after{
  content:"";
  position:absolute;
  left:0;
  width:18px;
  height:2px;
  background:#111;
}
.kib-menu-btn__icon::before{ top:-6px; }
.kib-menu-btn__icon::after{ top:6px; }

/* drawer */
.kib-drawer{
  position:fixed;
  inset:0;
  pointer-events:none;
}
.kib-drawer.is-open{ pointer-events:auto; }

.kib-drawer__panel{
  position:absolute;
  top:0; right:0;
  width:min(360px, 92vw);
  height:100%;
  background:#fff;
  transform:translateX(110%);
  transition:transform .25s ease;
  box-shadow:-20px 0 40px rgba(0,0,0,.16);
  padding:14px;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.kib-drawer.is-open .kib-drawer__panel{ transform:translateX(0); }

.kib-drawer__backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.35);
  opacity:0;
  transition:opacity .25s ease;
}
.kib-drawer.is-open .kib-drawer__backdrop{ opacity:1; }

.kib-drawer__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:6px 4px 12px;
  border-bottom:1px solid rgba(0,0,0,.08);
}
.kib-drawer__title{ font-weight:900; font-size:18px; }
.kib-drawer__close{
  border:none;
  background:#f1f3f7;
  border-radius:10px;
  padding:10px 12px;
  cursor:pointer;
  font-weight:900;
}

.kib-drawer__link{
  padding:14px 12px;
  border-radius:12px;
  text-decoration:none;
  color:#0c0c0c;
  font-weight:800;
  background:#f6f7fb;
}
.kib-drawer__link:active{ transform:scale(.99); }

/* ===============================
   PAGE / SECTIONS
================================= */
.page{ background:#fff; }

.section{
  background:var(--light);
  padding:24px 0 34px;
}

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

/* ===============================
   HERO (slider + card)
================================= */
.hero{
  background:linear-gradient(180deg,#ffffff, #eef2f7);
  padding:18px 0 22px;
}

.hero__wrap{
  max-width:1100px;
  margin:0 auto;
  padding:0 16px;
  display:grid;
  gap:14px;
}

/* slider */
.hero-slider{
  border-radius:22px;
  overflow:hidden;
  background:#cfe0ff;
  box-shadow: var(--shadow);
  position:relative;
}

.hero-slider__track{
  display:flex;
  width:300%;
  transform:translateX(0);
  transition:transform .5s ease;
  touch-action:pan-y;
}

.hero-slide{
  width:100%;
  flex:0 0 100%;
  height:210px;
  background:linear-gradient(180deg,#a8c6ff,#d6e4ff);
  position:relative;
}

.hero-slide__img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.hero-slide__img.is-missing{
  background:transparent;
}

/* dots */
.hero-slider__dots{
  position:absolute;
  left:0; right:0;
  bottom:10px;
  display:flex;
  justify-content:center;
  gap:8px;
}
.dot{
  width:10px; height:10px;
  border-radius:50%;
  border:none;
  background:rgba(255,255,255,.6);
  cursor:pointer;
}
.dot.is-active{ background:#fff; }

/* hero card */
.hero-card{
  background:#fff;
  border-radius:22px;
  box-shadow: var(--shadow);
  padding:18px 18px 16px;
}

.crumbs{
  font-weight:800;
  color:#5f6b7a;
  font-size:14px;
}
.crumbs .sep{ margin:0 6px; opacity:.5; }
.crumbs .is-current{ color:#2a5ea0; }

.hero-title{
  margin:10px 0 10px;
  font-size:44px;
  line-height:1.05;
  font-weight:1000;
}

.hero-underline{
  width:78px;
  height:3px;
  background:#111;
  opacity:.45;
  margin:0 0 14px;
  border-radius:99px;
}

.hero-subtitle{
  margin:0;
  color:#111;
  font-size:18px;
  font-weight:700;
}

/* ===============================
   CONTENT CARDS
================================= */
.info-card{
  background:#fff;
  border-radius:22px;
  box-shadow: var(--shadow);
  padding:18px;
}

.info-title{
  margin:0 0 8px;
  font-size:30px;
  font-weight:1000;
}

.bullets{
  margin:0;
  padding-left:18px;
  color:#4b5563;
  font-weight:700;
  line-height:1.7;
}

.block-title{
  margin:26px 0 10px;
}
.block-title h2{
  margin:0;
  font-size:40px;
  line-height:1.05;
  font-weight:1000;
}

/* tables */
.table-card{
  background:transparent;
  margin-top:10px;
}

.table-scroll{
  width:100%;
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  border-radius:22px;
  background:#fff;
  box-shadow: var(--shadow);
}

/* IMPORTANT: wide tables can slide on mobile */
.kib-table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  min-width:720px; /* forces horizontal scroll on smaller screens */
  overflow:hidden;
}

.kib-table thead th{
  background:#4aa7e6;
  color:#fff;
  font-weight:900;
  font-size:18px;
  padding:16px 14px;
  border-right:2px solid rgba(255,255,255,.35);
  text-align:center;
}
.kib-table thead th:first-child{
  border-top-left-radius:22px;
}
.kib-table thead th:last-child{
  border-top-right-radius:22px;
  border-right:none;
}

.kib-table thead .subhead{
  background:#2f67a5;
}

.kib-table td{
  background:#fff;
  padding:16px 14px;
  border-right:2px solid #cfe7fb;
  border-top:2px solid #cfe7fb;
  text-align:center;
  font-weight:800;
  color:#111;
  font-size:18px;
}

.kib-table td:last-child{ border-right:none; }

.kib-table .rowhead{
  font-weight:900;
  width:42%;
}

.kib-table .note-row{
  text-align:center;
  font-weight:900;
  color:#111;
  background:#fff;
}

.kib-table .special-row{
  text-align:left;
  font-weight:1000;
  background:#d8eefc;
  color:#111;
}

.stack{
  display:grid;
  gap:10px;
}
.stack .cell{
  border-top:2px solid #cfe7fb;
  padding-top:10px;
}
.stack .cell:first-child{
  border-top:none;
  padding-top:0;
}

.note{
  margin:12px 0 0;
  font-weight:800;
  color:#111;
}

/* make some tables slightly wider like the “slide columns” feeling */
.kib-table--wide{
  min-width:980px;
}

/* ===============================
   SUPPORT CARD (customer care)
================================= */
.support-card{
  margin-top:22px;
  background:#fff;
  border-radius:26px;
  box-shadow: var(--shadow);
  overflow:hidden;
  display:grid;
  grid-template-columns:1fr;
}

.support-card__head{
  padding:18px;
}

.support-card__title{
  margin:0 0 10px;
  font-size:40px;
  font-weight:1000;
}

.support-card__text{
  margin:0 0 14px;
  color:#111;
  font-weight:700;
  font-size:18px;
}

.support-card__phone{
  display:flex;
  align-items:center;
  gap:10px;
  margin:8px 0 14px;
}
.support-card__link{
  color:#2a5ea0;
  font-weight:1000;
  text-decoration:none;
  font-size:22px;
}

.support-card__image{
  height:280px;
  background:linear-gradient(180deg,#dceefe,#3aa1e0);
  display:flex;
  align-items:flex-end;
  justify-content:center;
}
.support-card__image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.support-card__image img.is-missing{
  background:transparent;
}

/* buttons */
.btn{
  display:inline-block;
  text-decoration:none;
  font-weight:900;
  border-radius:14px;
  padding:14px 18px;
  border:1px solid rgba(0,0,0,.1);
  cursor:pointer;
}
.btn--soft{
  background:#dceefe;
  color:#2a5ea0;
}
.btn--large{
  padding:16px 20px;
  min-width:160px;
  text-align:center;
}

/* ===============================
   REVEAL (fade-in on scroll)
================================= */
.reveal{
  opacity:0;
  transform:translateY(16px);
  transition:opacity .55s ease, transform .55s ease;
}
.reveal.is-visible{
  opacity:1;
  transform:translateY(0);
}

/* ===============================
   FOOTER (match your “main footer” idea)
================================= */
.kib-footer{
  margin-top: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* BLUE ACCORDION AREA */
.kib-footer__nav{
  background:var(--blue);
  color:#fff;
  padding:12px 0 10px;
}

/* accordion buttons */
.kib-acc{
  width:100%;
  background:transparent;
  border:none;
  color:#fff;
  font-weight:1000;
  font-size:22px;
  padding:16px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  cursor:pointer;
  border-top:1px solid rgba(255,255,255,.18);
}
.kib-footer__nav .kib-acc:first-of-type{ border-top:none; }

.kib-acc__icon{
  opacity:.95;
  transition:transform .25s ease;
}
.kib-acc[aria-expanded="true"] .kib-acc__icon{
  transform:rotate(180deg);
}

/* panels */
.kib-acc__panel{
  display:none;
  padding:0 16px 10px;
}
.kib-acc__panel.is-open{ display:block; }

.kib-footer__link{
  display:block;
  color:#fff;
  text-decoration:none;
  font-size:18px;
  font-weight:800;
  padding:10px 0;
  opacity:.95;
}

/* group company line */
.kib-footer__group{
  padding:14px 16px 10px;
  font-size:16px;
  font-weight:900;
  border-top:1px solid rgba(255,255,255,.18);
  opacity:.95;
}
.kib-footer__groupLink{
  color:#fff;
  font-weight:1000;
  text-decoration:none;
}

/* address area */
.kib-footer__address{
  background:#ffffff;
  padding:18px 16px 26px;
}
.kib-footer__address-card{
  background:#fff;
  border-radius:18px;
  padding:18px;
  box-shadow:0 8px 22px rgba(0,0,0,.10);
}

.kib-footer__badge{
  background:var(--blue);
  color:#fff;
  display:block;
  width:100%;
  text-align:center;
  padding:14px 18px;
  border-radius:14px;
  font-weight:1000;
  font-size:16px;
  letter-spacing:.5px;
  margin-bottom:16px;
}

.kib-footer__address h3{
  font-size:34px;
  font-weight:1000;
  margin:0 0 12px;
  color:#0c0c0c;
}

.kib-footer__address p{
  font-size:18px;
  font-weight:800;
  line-height:1.45;
  margin:0 0 12px;
  color:#1a1a1a;
}

.kib-footer__branchTitle{
  font-weight:1000;
  margin-top:16px;
  margin-bottom:6px;
}

/* bottom bar inside card */
.kib-footer__bottom{
  margin-top:16px;
  background:linear-gradient(180deg,var(--blue2),var(--blue));
  color:#fff;
  text-align:center;
  padding:18px 12px;
  border-bottom-left-radius:22px;
  border-bottom-right-radius:22px;
}

/* social icons row */
.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;
  text-decoration:none;
  font-weight:1000;
}
.kib-footer__copy{
  font-weight:1000;
  font-size:18px;
}

/* ===============================
   RESPONSIVE
================================= */
@media (max-width:520px){
  .hero-title{ font-size:38px; }
  .block-title h2{ font-size:34px; }
  .info-title{ font-size:28px; }
  .support-card__title{ font-size:34px; }
  .kib-pill{ padding:7px 10px; font-size:13px; }
}

@media (max-width:420px){
  .kib-acc{ font-size:20px; }
  .kib-footer__address h3{ font-size:30px; }
  .kib-footer__address p{ font-size:16px; }
}
