:root {
  --blue-950: #0b1f42;
  --blue-900: #123766;
  --blue-700: #1664c0;
  --blue-600: #1f7ae0;
  --blue-100: #eaf4ff;
  --blue-50: #f5faff;
  --white: #ffffff;
  --ink: #172033;
  --muted: #5d6b82;
  --line: #dce8f6;
  --shadow: 0 16px 40px rgba(18, 55, 102, 0.12);
  --radius: 8px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section {
  padding: 72px 0;
  scroll-margin-top: 78px;
}

.section-soft {
  background: var(--blue-50);
}

.section-blue {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-950), var(--blue-700));
}

.section-heading {
  max-width: 680px;
  margin-bottom: 32px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #cde5ff;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 10px;
  color: var(--blue-950);
  font-size: clamp(3rem, 15vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  color: var(--blue-950);
  font-size: clamp(2rem, 8vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-blue h2 {
  color: var(--white);
}

h3 {
  margin-bottom: 10px;
  color: var(--blue-950);
  font-size: 1.08rem;
  line-height: 1.25;
}

p {
  color: var(--muted);
}

.section-blue p {
  color: #e9f3ff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 232, 246, 0.86);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-950);
  font-weight: 800;
  font-size: 1.1rem;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  color: var(--white);
  background: var(--blue-700);
  border-radius: var(--radius);
}

.nav-menu {
  display: none;
  position: absolute;
  inset: 70px 16px auto;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.nav-menu.is-open {
  display: grid;
  gap: 6px;
}

.nav-menu a {
  padding: 10px 12px;
  color: var(--blue-900);
  border-radius: 6px;
  font-weight: 600;
  transition: color 160ms ease, background 160ms ease;
}

.nav-menu a:hover {
  color: var(--blue-700);
  background: var(--blue-100);
}

.nav-toggle {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  display: block;
  background: var(--blue-900);
}

.hero {
  min-height: calc(100vh - 70px);
  display: grid;
  align-items: center;
  padding: 64px 0 80px;
  background:
    radial-gradient(circle at 88% 12%, rgba(31, 122, 224, 0.15), transparent 28%),
    linear-gradient(180deg, var(--white), var(--blue-50));
}

.hero-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

.tagline {
  max-width: 650px;
  margin-bottom: 18px;
  color: var(--blue-900);
  font-size: clamp(1.25rem, 5vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
}

.hero-text,
.section-lead {
  max-width: 720px;
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(18, 55, 102, 0.14);
}

.btn-primary {
  color: var(--white);
  background: var(--blue-700);
}

.btn-primary:hover {
  background: var(--blue-600);
}

.btn-secondary {
  color: var(--blue-900);
  background: var(--white);
  border-color: var(--line);
}

.hero-visual {
  position: relative;
  min-height: 320px;
  display: grid;
  place-items: center;
}

.visual-panel {
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.panel-main {
  width: min(100%, 390px);
  padding: 22px;
}

.panel-topline {
  width: 84px;
  height: 8px;
  margin-bottom: 26px;
  background: var(--blue-700);
  border-radius: 999px;
}

.metric-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  color: var(--blue-900);
}

.metric-row strong {
  font-size: 2rem;
}

.bar {
  height: 13px;
  margin-bottom: 12px;
  background: var(--blue-100);
  border-radius: 999px;
}

.bar-long {
  width: 92%;
}

.bar-mid {
  width: 68%;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.mini-grid span {
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, var(--blue-700), #64b5ff);
}

.panel-small {
  position: absolute;
  right: 0;
  bottom: 24px;
  width: 168px;
  padding: 16px;
}

.pulse-dot {
  width: 12px;
  height: 12px;
  display: block;
  margin-bottom: 12px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(34, 197, 94, 0.12);
}

.panel-small strong,
.panel-small small {
  display: block;
}

.panel-small small {
  color: var(--muted);
}

.split {
  display: grid;
  gap: 24px;
}

.card-grid,
.project-grid,
.why-grid {
  display: grid;
  gap: 16px;
}

.card,
.project-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.card {
  padding: 22px;
}

.card:hover,
.project-card:hover {
  transform: translateY(-4px);
  border-color: #b9d7f7;
  box-shadow: var(--shadow);
}

.card-icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--blue-700);
  background: var(--blue-100);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 800;
}

.project-card {
  overflow: hidden;
}

.project-image {
  min-height: 164px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  align-items: end;
  padding: 22px;
  background: var(--blue-100);
}

.project-image span {
  display: block;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.82);
}

.project-image span:nth-child(1) {
  height: 48%;
}

.project-image span:nth-child(2) {
  height: 82%;
}

.project-image span:nth-child(3) {
  height: 64%;
}

.project-booking {
  background: linear-gradient(135deg, #dff0ff, #67b7ff);
}

.project-inventory {
  background: linear-gradient(135deg, #eaf4ff, #4095e8);
}

.project-beneficiary {
  background: linear-gradient(135deg, #d8ecff, #2d78d0);
}

.project-document {
  background: linear-gradient(135deg, #eff8ff, #145db6);
}

.project-content {
  padding: 20px;
}

.why-grid {
  margin-top: 28px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.why-item span {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 3px;
  border: 5px solid #cde5ff;
  border-radius: 50%;
}

.why-item p {
  margin: 0;
  font-weight: 700;
}

.contact-grid {
  display: grid;
  gap: 32px;
}

.contact-details {
  margin: 28px 0;
}

.contact-details p {
  margin-bottom: 8px;
}

.contact-details strong {
  color: var(--blue-950);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a {
  padding: 9px 12px;
  color: var(--blue-700);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 700;
  transition: background 160ms ease, color 160ms ease;
}

.social-links a:hover {
  color: var(--white);
  background: var(--blue-700);
}

.contact-form {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form label {
  color: var(--blue-950);
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue-700);
  outline: 3px solid rgba(31, 122, 224, 0.16);
}

.contact-form button {
  margin-top: 8px;
  cursor: pointer;
}

.site-footer {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  background: var(--blue-50);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: var(--blue-700);
  font-weight: 700;
}

@media (min-width: 720px) {
  .section {
    padding: 96px 0;
  }

  .hero-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 920px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .panel-small {
    right: 10px;
    bottom: 0;
  }
}
