:root {
  --bg: #eef3f8;
  --ink: #0f2233;
  --muted: #4b5f73;
  --primary: #113e66;
  --primary-strong: #0a2f50;
  --accent: #f28b24;
  --white: #ffffff;
  --line: #cfdae6;
  --soft: #dfeaf6;
  --shadow: 0 14px 34px rgba(17, 62, 102, 0.16);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Barlow", sans-serif;
}

h1,
h2,
h3 {
  margin: 0 0 0.75rem;
  line-height: 1.1;
  font-family: "Merriweather", serif;
}

p {
  margin: 0 0 1rem;
}

.container {
  width: min(1160px, 94vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.nav-wrap {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 0;
}

.brand {
  text-decoration: none;
  color: var(--ink);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.brand-dot {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(242, 139, 36, 0.2);
}

.top-nav {
  display: flex;
  gap: 0.95rem;
  flex-wrap: wrap;
}

.top-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
}

.call-btn {
  text-decoration: none;
  color: var(--white);
  background: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 999px;
  font-weight: 800;
  padding: 0.62rem 1rem;
}

.hero {
  background: linear-gradient(120deg, rgba(17, 62, 102, 0.96), rgba(10, 47, 80, 0.95)),
    radial-gradient(circle at 10% 12%, rgba(242, 139, 36, 0.3), transparent 40%);
  color: var(--white);
  padding: 3.4rem 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.2rem;
  align-items: start;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #ffcf8f;
  margin-bottom: 0.6rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.45rem);
}

.lead {
  color: #dbe8f4;
  font-size: 1.1rem;
  max-width: 62ch;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.2rem 0 0.8rem;
}

.btn {
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.84rem 1.25rem;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #1e1407;
  border-color: var(--accent);
}

.btn-secondary {
  background: #1f4f79;
  color: var(--white);
  border-color: #3d6f9b;
}

.micro {
  color: #b8d1e6;
  font-weight: 600;
}

.hero-panel {
  background: var(--white);
  color: var(--ink);
  border-radius: 1rem;
  border: 1px solid #b4c6da;
  box-shadow: var(--shadow);
  padding: 1.1rem;
}

.hero-panel h2 {
  font-size: 1.5rem;
}

.mini-form {
  display: grid;
  gap: 0.65rem;
}

.mini-form input,
.mini-form button {
  width: 100%;
  border-radius: 0.6rem;
  padding: 0.7rem 0.8rem;
  font: inherit;
}

.mini-form input {
  border: 1px solid #b8c8da;
}

.mini-form button {
  background: var(--accent);
  border: 1px solid var(--accent);
  font-weight: 800;
  cursor: pointer;
}

.mini-message {
  margin: 0.25rem 0 0;
  color: var(--primary);
  font-weight: 700;
}

.finder {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 1.8rem 0;
}

.finder h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.finder-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 0.8rem;
  align-items: end;
}

.finder label {
  display: grid;
  gap: 0.35rem;
  font-weight: 700;
}

.finder select {
  border: 1px solid #b8c8da;
  border-radius: 0.55rem;
  padding: 0.62rem 0.65rem;
  font: inherit;
  background: #fff;
}

.finder-result {
  margin-top: 0.9rem;
  padding: 0.8rem 0.95rem;
  background: #f3f8fd;
  border: 1px solid #c8d8ea;
  border-radius: 0.65rem;
  color: var(--primary-strong);
  font-weight: 600;
}

.section {
  padding: 3rem 0;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1rem;
}

.card {
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  background: var(--white);
  padding: 1rem;
  box-shadow: 0 8px 25px rgba(16, 49, 79, 0.08);
}

.card p {
  margin: 0;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal.show {
  opacity: 1;
  transform: none;
}

.steps {
  background: var(--soft);
}

.steps-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.step {
  background: var(--white);
  border: 1px solid #bfd0e2;
  border-radius: 0.85rem;
  padding: 1rem;
  position: relative;
}

.step span {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.step p {
  margin: 0;
  color: var(--muted);
}

.trust-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.trust-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--accent);
  border-radius: 0.75rem;
  padding: 1rem;
}

.trust-grid p {
  color: var(--muted);
  margin: 0;
}

.about-adedapo {
  background: linear-gradient(180deg, #ffffff 0%, #f6fafe 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
  align-items: center;
}

.about-image-wrap {
  border: 1px solid #c7d9ea;
  border-radius: 1rem;
  background: radial-gradient(circle at 50% 20%, #e8f2fb 0%, #dbe9f7 70%);
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-image {
  width: min(560px, 120%);
  height: auto;
  object-fit: contain;
  transform: translateY(6px);
}

.about-copy h2 {
  font-size: clamp(1.6rem, 3vw, 2.35rem);
}

.about-kicker {
  margin-bottom: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  font-weight: 800;
}

.about-copy p {
  color: var(--muted);
}

.stories {
  background: linear-gradient(180deg, #f6fbff 0%, #eef6ff 100%);
}

.stories-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

blockquote {
  margin: 0;
  background: var(--white);
  border: 1px solid #c5d7ea;
  border-radius: 0.8rem;
  padding: 1rem;
  color: #243d53;
  font-weight: 500;
}

cite {
  display: block;
  margin-top: 0.7rem;
  font-style: normal;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.92rem;
}

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

.areas-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.area-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  padding: 0.95rem;
}

.area-card h3 {
  margin-bottom: 0.3rem;
}

.area-card h3 a {
  color: var(--ink);
  text-decoration: none;
}

.area-card h3 a:hover {
  color: var(--primary);
}

.area-card p {
  margin: 0;
  color: var(--muted);
}

.faq {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.faq details {
  background: #f5f9fd;
  border: 1px solid #cad9e8;
  border-radius: 0.6rem;
  padding: 0.85rem 0.95rem;
  margin-bottom: 0.65rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

.faq details p {
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.final-cta {
  background: linear-gradient(120deg, #0c3355, #153f65);
  color: var(--white);
}

.cta-box {
  text-align: center;
}

.cta-box p {
  color: #dbe8f6;
}

.site-footer {
  background: #0b1f31;
  color: #b6c6d6;
  padding: 1.6rem 0 2rem;
}

.footer-grid {
  text-align: center;
  display: grid;
  gap: 0.24rem;
}

.brandline {
  color: var(--white);
  font-weight: 800;
}

@media (max-width: 980px) {
  .hero-grid,
  .finder-grid,
  .solution-grid,
  .steps-grid,
  .trust-grid,
  .stories-grid,
  .areas-grid,
  .about-grid,
  .nav-wrap {
    grid-template-columns: 1fr;
  }

  .about-image-wrap {
    min-height: 380px;
  }

  .about-image {
    width: min(480px, 125%);
  }

  .top-nav {
    gap: 0.65rem;
  }

  .top-nav a {
    font-size: 0.95rem;
  }
}
