:root {
  --teal-900: #004f4d;
  --teal-800: #06615f;
  --teal-100: #e7f5f4;
  --teal-050: #f4fbfa;
  --gold: #ddb63d;
  --gold-soft: #f7e9b5;
  --ink: #173231;
  --muted: #5e7472;
  --line: #d6e8e6;
  --white: #ffffff;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--teal-050);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(231, 245, 244, 0.92), rgba(255, 255, 255, 0.98)),
    var(--teal-050);
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 14px 18px;
  border: 1px solid rgba(214, 232, 230, 0.74);
  border-top: 0;
  border-radius: 0 0 8px 8px;
  background: rgba(244, 251, 250, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  height: 58px;
  width: 182px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--teal-100);
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.65);
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

nav a:hover {
  color: var(--teal-900);
}

.header-action,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1;
}

.header-action {
  padding: 0 18px;
  color: var(--white);
  background: var(--teal-900);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  align-items: center;
  gap: 64px;
  min-height: calc(100vh - 90px);
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 34px 0 62px;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--teal-800);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  color: var(--teal-900);
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  color: var(--teal-900);
  font-size: clamp(2rem, 3.3vw, 3.45rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  color: var(--teal-900);
  font-size: 1.35rem;
  line-height: 1.15;
}

p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

.hero-copy > p {
  max-width: 610px;
  margin-bottom: 26px;
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.primary-button {
  padding: 0 24px;
  color: var(--white);
  background: var(--teal-900);
  box-shadow: 0 18px 32px rgba(0, 79, 77, 0.2);
}

.secondary-button {
  padding: 0 22px;
  color: var(--teal-900);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--teal-900);
  background: rgba(255, 255, 255, 0.75);
  font-weight: 800;
}

.hero-media,
.process-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--teal-100);
}

.hero-media {
  min-height: 560px;
  box-shadow: 0 30px 70px rgba(0, 79, 77, 0.16);
}

.hero-media::after,
.process-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 79, 77, 0), rgba(0, 79, 77, 0.38));
}

.hero-media img,
.process-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ussd-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: grid;
  gap: 6px;
  width: min(260px, calc(100% - 48px));
  padding: 20px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 20px 50px rgba(0, 33, 32, 0.24);
}

.ussd-card span,
.contact-panel small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ussd-card strong {
  color: var(--teal-900);
  font-size: 2rem;
  line-height: 1;
}

.intro-band {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center;
  padding: 54px max(24px, calc((100vw - 1180px) / 2));
  color: var(--white);
  background: var(--teal-900);
}

.intro-band span,
.intro-band h2,
.intro-band li {
  color: var(--white);
}

.intro-band > div > span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.intro-band h2 {
  max-width: 760px;
  margin: 0;
}

.intro-band ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.intro-band li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 92px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  min-height: 310px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 34px;
  border-radius: 8px;
  color: var(--teal-900);
  background: var(--gold-soft);
}

.process {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) 1fr;
  gap: 64px;
  align-items: center;
}

.process-image {
  min-height: 560px;
}

.steps {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: var(--teal-900);
  background: var(--gold);
  font-weight: 900;
}

.step p {
  margin: 0;
  color: var(--ink);
  font-weight: 750;
}

.split-feature {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-top: 0;
}

.split-feature > div {
  min-height: 300px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(247, 233, 181, 0.42), rgba(231, 245, 244, 0.3)),
    var(--white);
}

.contact {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 48px;
  align-items: start;
  padding-top: 20px;
  padding-bottom: 72px;
}

.contact-copy {
  position: sticky;
  top: 110px;
}

.contact-panel {
  display: grid;
  gap: 12px;
}

.contact-panel > a,
.contact-panel > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--teal-900);
  background: var(--white);
  font-size: 1.08rem;
  font-weight: 850;
}

.contact-panel svg {
  color: var(--gold);
}

.contact-panel span {
  display: grid;
  gap: 4px;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px max(24px, calc((100vw - 1180px) / 2));
  border-top: 1px solid var(--line);
  background: var(--white);
}

footer img {
  width: 144px;
  height: 48px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  transform: scale(1.05);
}

footer p {
  margin: 0;
  font-size: 0.95rem;
}

@media (max-width: 940px) {
  .site-header {
    width: min(100% - 32px, 720px);
  }

  nav {
    display: none;
  }

  .hero,
  .process,
  .contact,
  .intro-band,
  .split-feature {
    grid-template-columns: 1fr;
  }

  .hero,
  .section {
    width: min(100% - 32px, 720px);
  }

  .hero {
    min-height: auto;
    gap: 32px;
    padding-top: 28px;
  }

  .hero-media,
  .process-image {
    min-height: 420px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 5.4rem);
  }

  .intro-band ul,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 14px;
  }

  .brand {
    width: 140px;
    height: 48px;
  }

  .header-action {
    width: 48px;
    padding: 0;
    font-size: 0;
  }

  .hero-actions,
  footer {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .contact-panel > a,
  .contact-panel > div {
    grid-template-columns: 28px 1fr;
    padding: 18px;
    font-size: 1rem;
  }
}
