:root {
  --ink: #102033;
  --ink-2: #20364d;
  --muted: #5f6b7a;
  --line: #dfe6ee;
  --paper: #ffffff;
  --mist: #f5f8fb;
  --blue: #0f66b3;
  --teal: #0d9488;
  --gold: #d6a429;
  --green: #25d366;
  --danger: #c44536;
  --shadow: 0 18px 46px rgba(16, 32, 51, .12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.site-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 0 5vw;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(223,230,238,.9);
  backdrop-filter: blur(12px);
}
.logo {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.05;
}
.logo span:first-child { font-size: 20px; color: var(--ink); }
.logo span:last-child { font-size: 12px; color: var(--teal); font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a { text-decoration: none; color: var(--ink-2); font-size: 14px; font-weight: 700; }
.nav-links a:hover { color: var(--blue); }
.nav-action, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0;
  cursor: pointer;
}
.nav-action, .button.primary { background: var(--green); color: #fff; }
.button.dark { background: var(--ink); color: #fff; }
.button.light { background: #fff; color: var(--ink); border-color: var(--line); }
.button.blue { background: var(--blue); color: #fff; }
.hero {
  position: relative;
  min-height: calc(100vh - 68px);
  display: grid;
  align-items: center;
  padding: 84px 5vw 56px;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(10,26,45,.93), rgba(10,26,45,.72) 48%, rgba(10,26,45,.48)),
    url('images/kenya-service-en.png') center right / min(760px, 72vw) auto no-repeat,
    linear-gradient(135deg, #0b1f35, #164363);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(0deg, rgba(10,26,45,.18), transparent);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 760px; }
.eyebrow { margin: 0 0 14px; color: #b8f2df; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.2px; }
h1 { margin: 0; font-size: clamp(38px, 6vw, 76px); line-height: .98; letter-spacing: 0; max-width: 900px; }
.hero p.lead { margin: 22px 0 0; max-width: 670px; color: rgba(255,255,255,.84); font-size: clamp(17px, 2vw, 22px); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 34px; }
.hero-proof { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 42px; color: rgba(255,255,255,.86); }
.proof-pill { border-left: 3px solid var(--gold); padding-left: 12px; min-width: 130px; }
.proof-pill strong { display: block; font-size: 22px; color: #fff; }
.section { padding: 78px 5vw; }
.section.alt { background: var(--mist); }
.wrap { max-width: 1160px; margin: 0 auto; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 36px; margin-bottom: 34px; }
.section-head h2, .page-head h1 { margin: 0; font-size: clamp(30px, 4vw, 48px); line-height: 1.08; letter-spacing: 0; }
.section-head p { margin: 0; max-width: 520px; color: var(--muted); font-size: 16px; }
.grid { display: grid; gap: 18px; }
.grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 1px 0 rgba(16,32,51,.03);
}
.card h3 { margin: 0 0 8px; font-size: 19px; line-height: 1.25; }
.card p { margin: 0; color: var(--muted); font-size: 15px; }
.service-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  color: var(--blue);
}
.route-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; display: table; }
.route-table th, .route-table td { text-align: left; padding: 15px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
.route-table th { color: var(--muted); font-size: 13px; text-transform: uppercase; letter-spacing: .5px; background: #f8fafc; }
.route-table tr:last-child td { border-bottom: 0; }
.badge-row { display: flex; flex-wrap: wrap; gap: 10px; }
.badge { display: inline-flex; align-items: center; min-height: 34px; padding: 0 12px; border: 1px solid var(--line); border-radius: 6px; background: #fff; color: var(--ink-2); font-weight: 700; font-size: 14px; text-decoration: none; }
.badge:hover { border-color: var(--blue); color: var(--blue); }
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 36px; align-items: center; }
.visual-panel { border-radius: 8px; overflow: hidden; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow); }
.visual-panel img { width: 100%; }
.check-list { display: grid; gap: 13px; margin: 22px 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 10px; color: var(--ink-2); }
.check-list li::before { content: "✓"; color: var(--teal); font-weight: 900; }
.quote-band { background: var(--ink); color: #fff; }
.quote-band .wrap { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; }
.quote-band h2 { margin: 0; font-size: clamp(26px, 3vw, 38px); }
.quote-band p { margin: 10px 0 0; color: rgba(255,255,255,.75); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 26px; }
.form-card h3 { margin: 0 0 16px; }
.field { display: grid; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { color: var(--muted); font-size: 13px; font-weight: 800; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  min-height: 44px;
  padding: 10px 12px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}
textarea { min-height: 112px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 2px solid rgba(15,102,179,.18); border-color: var(--blue); }
.contact-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; align-items: start; }
.contact-stack { display: grid; gap: 14px; }
.contact-line { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 18px; }
.contact-line strong { display: block; }
.contact-line span, .contact-line a { color: var(--muted); text-decoration: none; }
.footer { padding: 42px 5vw; background: #0d1d30; color: rgba(255,255,255,.72); }
.footer .wrap { display: flex; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.footer strong { color: #fff; }
.footer a { color: rgba(255,255,255,.82); text-decoration: none; }
.float-wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--green);
  display: grid;
  place-items: center;
  box-shadow: 0 14px 30px rgba(37,211,102,.38);
}
.float-wa svg { width: 30px; height: 30px; fill: #fff; }
.page-hero {
  background: linear-gradient(135deg, #0b1f35, #174d6f);
  color: #fff;
  padding: 76px 5vw 62px;
}
.page-hero p { color: rgba(255,255,255,.82); max-width: 700px; font-size: 18px; }
.page-hero .badge-row { margin-top: 24px; }
.page-hero .badge { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); color: #fff; }
.breadcrumb { color: rgba(255,255,255,.72); font-size: 14px; margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,.82); text-decoration: none; }
.mini-cta { margin-top: 24px; display: flex; gap: 12px; flex-wrap: wrap; }
.faq { display: grid; gap: 12px; }
details { border: 1px solid var(--line); border-radius: 8px; background: #fff; padding: 18px; }
summary { cursor: pointer; font-weight: 800; }
details p { color: var(--muted); margin: 12px 0 0; }
@media (max-width: 900px) {
  .nav-links a:not(.nav-action) { display: none; }
  .hero { background-position: center bottom; background-size: 780px auto; padding-bottom: 190px; }
  .section-head, .split, .quote-band .wrap, .contact-layout { grid-template-columns: 1fr; display: grid; }
  .grid.cols-3, .grid.cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .site-nav { min-height: 62px; padding: 0 16px; }
  .logo span:first-child { font-size: 17px; }
  .nav-action { min-height: 40px; padding: 0 12px; }
  .hero { min-height: auto; padding: 64px 16px 150px; }
  .hero-proof { gap: 10px; }
  .proof-pill { min-width: 46%; }
  .section { padding: 56px 16px; }
  .grid.cols-3, .grid.cols-4, .form-grid { grid-template-columns: 1fr; }
  .route-table, .route-table tbody, .route-table tr, .route-table td { display: block; width: 100%; }
  .route-table thead { display: none; }
  .route-table td { border-bottom: 0; padding: 10px 14px; }
  .route-table tr { border-bottom: 1px solid var(--line); padding: 8px 0; display: block; }
  .route-table tr:last-child { border-bottom: 0; }
  .float-wa { width: 52px; height: 52px; right: 16px; bottom: 16px; }
}
