/* 
  Fuli Africa – Base Styles
  Palette derived from brand guide:
  - Navy: #0D2C54
  - Gold: #FFB400
  - Soft Sky: #F0F8FF
  - White: #FFFFFF
  - Cool Gray: #687076
*/

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: #11181c;
  background-color: #f0f8ff;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
}

.shell {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background-color: #0d2c54;
  color: #ffffff;
  border-bottom: 1px solid rgba(240, 248, 255, 0.24);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.25rem;
  gap: 0.75rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.brand-mark {
  height: 34px;
  width: auto;
}

.brand-text {
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.9rem;
  margin-left: auto;
}

.nav-link {
  color: rgba(240, 248, 255, 0.9);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

.nav-link:hover {
  border-color: rgba(255, 180, 0, 0.7);
  text-decoration: none;
}

.nav-cta {
  background-color: #ffb400;
  color: #0d2c54;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  border: 1px solid rgba(13, 44, 84, 0.2);
}

.nav-cta:hover {
  background-color: #ffc544;
  text-decoration: none;
}

/* Mobile nav toggle */

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 0.25rem;
  cursor: pointer;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background-color: #f0f8ff;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.nav-toggle-open span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle-open span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* Hero */

.hero {
  background-color: #0d2c54;
  color: #ffffff;
  padding: 3.5rem 0 3rem;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
  gap: 2.75rem;
  align-items: center;
}

.hero-copy h1 {
  margin: 0;
  font-size: 2.4rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-body {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  max-width: 34rem;
  font-size: 1rem;
  color: rgba(240, 248, 255, 0.9);
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffb400;
  margin: 0 0 0.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.hero-note {
  font-size: 0.85rem;
  color: rgba(240, 248, 255, 0.8);
  max-width: 28rem;
}

.hero-panel {
  display: flex;
  justify-content: flex-end;
}

.hero-card {
  background-color: #ffffff;
  color: #11181c;
  border-radius: 18px;
  padding: 1.4rem 1.5rem 1.3rem;
  max-width: 320px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(13, 44, 84, 0.08);
}

.hero-card h2 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-size: 1.25rem;
}

.hero-card p {
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
  color: #475569;
}

.pill-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
}

.pill-list li {
  font-size: 0.8rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background-color: #f0f8ff;
  color: #0d2c54;
  border: 1px solid rgba(13, 44, 84, 0.08);
}

/* Sections */

.section {
  padding: 3rem 0;
}

.section-alt {
  background-color: #ffffff;
}

.section-shell {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.section-header {
  max-width: 40rem;
}

.section-header h2 {
  margin: 0 0 0.5rem;
  font-size: 1.6rem;
  color: #0d2c54;
}

.section-header p {
  margin: 0;
  font-size: 0.98rem;
  color: #475569;
}

.grid {
  display: grid;
  gap: 1.4rem;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 1.3rem 1.3rem 1.2rem;
  border: 1px solid rgba(13, 44, 84, 0.08);
  box-shadow: 0 10px 26px rgba(13, 44, 84, 0.04);
}

.section-alt .card {
  background-color: #f9fbff;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
  color: #0d2c54;
}

.card p {
  margin: 0;
  font-size: 0.94rem;
  color: #475569;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.75rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.45rem;
  font-size: 0.92rem;
  color: #475569;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #ffb400;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.9rem;
  color: #0d2c54;
  font-weight: 500;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

/* Steps */

.subheading {
  margin-top: 0;
  font-size: 1rem;
  color: #0d2c54;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0.7rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.4rem 0.9rem;
  align-items: baseline;
}

.step-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background-color: #ffffff;
  border: 1px solid rgba(13, 44, 84, 0.12);
  font-size: 0.8rem;
  font-weight: 600;
  color: #0d2c54;
}

.steps p {
  margin: 0;
  font-size: 0.9rem;
  color: #475569;
}

/* CTA Banner */

.cta-banner {
  margin-top: 2rem;
  padding: 1.3rem 1.4rem;
  border-radius: 14px;
  background-color: #0d2c54;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(13, 44, 84, 0.3);
}

.cta-banner h3 {
  margin: 0 0 0.35rem;
  font-size: 1.12rem;
}

.cta-banner p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(240, 248, 255, 0.9);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background-color: #ffb400;
  color: #0d2c54;
  border: 1px solid rgba(13, 44, 84, 0.2);
}

.btn-primary:hover {
  background-color: #ffc544;
  text-decoration: none;
}

.btn-secondary {
  background-color: #ffffff;
  color: #0d2c54;
  border: 1px solid rgba(13, 44, 84, 0.16);
}

.btn-secondary:hover {
  background-color: #f0f8ff;
  text-decoration: none;
}

/* Footer */

.site-footer {
  background-color: #0d2c54;
  color: #f0f8ff;
  padding: 2.25rem 0 1.6rem;
  margin-top: 1rem;
}

.footer-shell {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 2.5rem;
  align-items: flex-start;
}

.footer-title {
  margin: 0 0 0.6rem;
  font-size: 1.2rem;
}

.footer-body {
  margin: 0;
  max-width: 20rem;
  font-size: 0.9rem;
  color: rgba(240, 248, 255, 0.88);
}

.footer-contact h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.footer-contact p {
  margin: 0 0 0.35rem;
  font-size: 0.88rem;
}

.footer-contact a {
  color: #ffb400;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.label {
  font-weight: 500;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(240, 248, 255, 0.78);
  border-top: 1px solid rgba(240, 248, 255, 0.14);
  padding-top: 0.9rem;
}

.footer-bottom a {
  color: #ffb400;
}

/* Responsive */

@media (max-width: 880px) {
  .hero-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-panel {
    justify-content: flex-start;
  }

  .hero {
    padding-top: 2.75rem;
  }

  .hero-copy h1 {
    font-size: 2.05rem;
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-main {
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .header-shell {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    inset-inline: 0;
    top: 56px;
    padding: 0.6rem 1.25rem 0.8rem;
    background-color: #0d2c54;
    border-bottom: 1px solid rgba(240, 248, 255, 0.24);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

  .nav-open {
    display: flex;
  }

  .nav-link {
    padding: 0.1rem 0;
  }

  .nav-cta {
    margin-top: 0.25rem;
    width: 100%;
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
  }
}


