:root{
  --bg: #f3f4f6;
  --card: #ffffff;
  --ink: #111827;
  --muted: #6b7280;

  --primary: #2b6cb0;      /* KIB blue */
  --primary-soft: #dbeafe; /* light blue */
  --radius: 18px;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
  --max: 980px;
}

*{ 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(--ink);
  background: var(--bg);
}

/* HEADER placeholder (you will replace with your exact header code) */
#siteHeader{
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.header-placeholder{
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand__name{
  font-weight: 800;
  letter-spacing: .2px;
}
.hamburger{
  border: 0;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
}

.page{ padding: 18px 0 32px; }

.container{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 16px;
}

.card{
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 18px;
  margin: 14px 0;
}

.hero{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 16px;
}
.hero__slider{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(135deg, #c7d2fe, #bfdbfe);
  box-shadow: var(--shadow);
}

/* Slides */
.slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .5s ease;
}
.slide.is-active{
  position: relative;
  opacity: 1;
}
.slide img{
  width: 100%;
  height: 320px;
  object-fit: cover;

  /* If you have blank JPG files, this still looks fine */
  background: linear-gradient(135deg, #c7d2fe, #bfdbfe);
  display: block;
}

/* Slider controls */
.slider-btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.6);
  background: rgba(255,255,255,.25);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(6px);
}
.slider-btn.prev{ left: 10px; }
.slider-btn.next{ right: 10px; }

.slider-dots{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.slider-dots button{
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,.5);
  cursor: pointer;
}
.slider-dots button.is-active{
  background: rgba(255,255,255,.95);
}

/* Text block like inspo */
.crumb{
  margin: 12px 0 12px;
  color: var(--muted);
  font-size: 14px;
}
.crumb span{ color: var(--primary); font-weight: 600; }

.title{
  font-size: 40px;
  margin: 6px 0 10px;
  font-weight: 900;
}
.title-line{
  width: 120px;
  height: 3px;
  background: rgba(17,24,39,.18);
  border-radius: 999px;
  margin-bottom: 14px;
}
.lead{
  font-size: 16px;
  line-height: 1.65;
  color: #374151;
}

.card__title{
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 900;
}
.label{
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  color: #111827;
}
.value{
  margin-top: 8px;
  color: #111827;
  font-size: 18px;
  font-weight: 600;
}

.bullets{
  margin: 0;
  padding-left: 22px;
  color: #374151;
  line-height: 1.7;
}
.bullets li{ margin: 8px 0; }
.bullets--tight li{ margin: 6px 0; }

.space{ height: 12px; }

.note{
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(0,0,0,.08);
  color: var(--muted);
}

.para{
  margin: 10px 0;
  color: #374151;
  line-height: 1.7;
}

.btn{
  display: inline-block;
  margin-top: 10px;
  padding: 12px 18px;
  border-radius: 14px;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 800;
  text-decoration: none;
  border: 1px solid rgba(43,108,176,.18);
}

.service{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  align-items: end;
}
.service__right{
  display: flex;
  justify-content: center;
  align-items: end;
  min-height: 220px;
  background: linear-gradient(180deg, #e5efff, #7fb0e6);
  border-radius: 18px;
  overflow: hidden;
}
.service__right img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
}
.phone{
  margin: 12px 0 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.phone__link{
  color: var(--primary);
  text-decoration: none;
  font-weight: 800;
}

/* FOOTER placeholder (replace with your exact footer html) */
#siteFooter{
  margin-top: 24px;
  background: #2f5f9f;
  color: #fff;
}
.footer-placeholder{
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px 16px;
}
.footer-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}
.footer-title{
  font-weight: 900;
  opacity: .95;
}
.footer-bottom{
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.18);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: space-between;
  opacity: .95;
}

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

/* Mobile tweaks */
@media (max-width: 720px){
  .title{ font-size: 34px; }
  .slide img{ height: 260px; }
  .service{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
}
