:root {
  --bg: #07111f;
  --bg-soft: #0d1b2f;
  --card: #101f35;
  --primary: #38bdf8;
  --text: #f8fafc;
  --muted: #94a3b8;
  --border: rgba(148, 163, 184, 0.18);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius: 24px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 17, 31, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.nav-wrapper {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-menu a {
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-menu a:hover {
  color: var(--text);
}

.nav-cta {
  background: var(--primary);
  color: #04111f !important;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: var(--text);
  font-size: 1.8rem;
  cursor: pointer;
}

.hero {
  position: relative;
  padding: 4.5rem 0 4rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  background: rgba(56, 189, 248, 0.18);
  filter: blur(100px);
  border-radius: 50%;
  top: -160px;
  right: -120px;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  color: var(--primary);
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.22);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 1.3rem;
}

.hero h1,
.pricing-hero h1,
.status-box h1 {
  font-size: clamp(2.3rem, 4.1vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.hero p,
.pricing-hero p,
.status-box p {
  color: var(--muted);
  font-size: 1.08rem;
  margin-top: 1.4rem;
  max-width: 660px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 1.35rem;
  border-radius: 999px;
  font-weight: 800;
  border: 0;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: #04111f;
}

.btn-secondary {
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.full-btn {
  width: 100%;
}

.hero-points {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-preview {
  display: flex;
  justify-content: center;
}

.mockup-card,
.pricing-card,
.custom-box,
.status-box {
  background: linear-gradient(145deg, rgba(16, 31, 53, 0.95), rgba(8, 22, 40, 0.95));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mockup-card {
  width: 100%;
  max-width: 480px;
  overflow: hidden;
}

.mockup-top {
  height: 52px;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0 1.2rem;
  border-bottom: 1px solid var(--border);
}

.mockup-top span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.45);
}

.mockup-body {
  padding: 1.4rem;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.stat-row div,
.mini-list {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1rem;
}

.stat-row small {
  color: var(--muted);
  display: block;
}

.stat-row strong {
  font-size: 1.5rem;
}

.chart-placeholder {
  height: 180px;
  margin: 1rem 0;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(56, 189, 248, 0.18), rgba(56, 189, 248, 0.02)),
    repeating-linear-gradient(
      to right,
      rgba(148, 163, 184, 0.12) 0,
      rgba(148, 163, 184, 0.12) 1px,
      transparent 1px,
      transparent 48px
    );
  border: 1px solid var(--border);
}

.mini-list {
  display: grid;
  gap: 0.85rem;
}

.mini-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
}

.mini-list strong {
  color: var(--text);
}

.pricing-hero {
  padding: 6rem 0 3rem;
  text-align: center;
}

.pricing-hero p {
  margin-left: auto;
  margin-right: auto;
}

.pricing-section {
  padding: 2rem 0 4rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.pricing-card {
  padding: 2rem;
  position: relative;
}

.pricing-card.featured {
  border-color: rgba(56, 189, 248, 0.45);
}

.badge {
  display: inline-flex;
  background: rgba(56, 189, 248, 0.12);
  color: var(--primary);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.price {
  font-size: 3rem;
  font-weight: 900;
  margin: 0.6rem 0;
}

.pricing-desc {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.pricing-card ul {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.pricing-card form {
  display: grid;
  gap: 0.8rem;
}

.pricing-card input {
  width: 100%;
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  padding: 0 1rem;
  outline: none;
}

.external-checkouts {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

.external-checkouts a {
  color: var(--primary);
  font-weight: 700;
}

.custom-license {
  padding: 0 0 5rem;
}

.custom-box,
.status-box {
  padding: 2rem;
  text-align: center;
}

.custom-box p,
.status-box p {
  margin-left: auto;
  margin-right: auto;
}

.status-page {
  min-height: 65vh;
  display: flex;
  align-items: center;
  padding: 5rem 0;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 4rem 0 1.5rem;
  background: #050c16;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
}

.site-footer p,
.site-footer a {
  color: var(--muted);
}

.site-footer a {
  display: block;
  margin-top: 0.55rem;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 2rem;
  padding-top: 1.5rem;
}

@media (max-width: 840px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 76px;
    left: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem 4%;
    background: rgba(7, 17, 31, 0.98);
    border-bottom: 1px solid var(--border);
  }

  .nav-menu.active {
    display: flex;
  }

  .hero {
    padding: 4.5rem 0 3.5rem;
  }

  .hero-grid,
  .pricing-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-preview {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .stat-row {
    grid-template-columns: 1fr;
  }
}

.checkout-note {
  color: var(--primary) !important;
  font-weight: 700;
}



.section {
  padding: 4rem 0;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.8rem;
}

.section-heading h2,
.problem-section h2,
.why-section h2,
.pricing-cta-box h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.section-heading p,
.problem-section p,
.solution-card p,
.why-section p,
.pricing-cta-box p,
.feature-card p,
.screenshot-card p,
.check-list p,
.faq-list p {
  color: var(--muted);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.solution-card {
  background: linear-gradient(145deg, rgba(16, 31, 53, 0.96), rgba(8, 22, 40, 0.96));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.solution-card h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.feature-card,
.screenshot-card {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 1.5rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover,
.screenshot-card:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.35);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.2);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.feature-card h3,
.screenshot-card h3 {
  margin-bottom: 0.55rem;
  font-size: 1.2rem;
}

.screenshots-section {
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.08), transparent 34%),
    #081321;
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.screenshot-placeholder {
  height: 220px;
  border-radius: 18px;
  margin-bottom: 1rem;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 800;
  border: 1px dashed rgba(148, 163, 184, 0.32);
  background:
    linear-gradient(180deg, rgba(56, 189, 248, 0.12), rgba(56, 189, 248, 0.02)),
    repeating-linear-gradient(
      to right,
      rgba(148, 163, 184, 0.12) 0,
      rgba(148, 163, 184, 0.12) 1px,
      transparent 1px,
      transparent 38px
    );
}

.check-list {
  display: grid;
  gap: 1rem;
}

.check-list div {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.2rem;
}

.check-list strong {
  color: var(--text);
  display: block;
  margin-bottom: 0.4rem;
}

.pricing-cta-section {
  padding-top: 2rem;
}

.pricing-cta-box {
  text-align: center;
  background: linear-gradient(145deg, rgba(16, 31, 53, 0.98), rgba(8, 22, 40, 0.98));
  border: 1px solid rgba(56, 189, 248, 0.28);
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: 3rem 2rem;
}

.pricing-cta-box p {
  max-width: 720px;
  margin: 1rem auto 0;
}

.pricing-mini-grid {
  max-width: 640px;
  margin: 2rem auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.pricing-mini-grid div {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.2rem;
}

.pricing-mini-grid span {
  color: var(--muted);
  display: block;
}

.pricing-mini-grid strong {
  display: block;
  font-size: 2.2rem;
  margin: 0.3rem 0;
}

.faq-section {
  padding-top: 2rem;
}

.faq-list {
  max-width: 860px;
}

.faq-list details {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.2rem 1.4rem;
  margin-bottom: 1rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--text);
}

.faq-list p {
  margin-top: 0.8rem;
}

@media (max-width: 900px) {
  .split-grid,
  .features-grid,
  .screenshots-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 3.5rem 0;
  }

  .split-grid,
  .features-grid,
  .screenshots-grid,
  .pricing-mini-grid {
    grid-template-columns: 1fr;
  }

  .pricing-cta-box {
    padding: 2rem 1.2rem;
  }
}



.checkout-note {
  color: var(--primary) !important;
  font-weight: 800;
}

.pricing-card-top {
  margin-bottom: 1.2rem;
}

.muted-badge {
  background: rgba(148, 163, 184, 0.12);
  color: #cbd5e1;
}

.license-summary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  margin: 1.3rem 0;
}

.license-summary div {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem;
}

.license-summary span {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
}

.license-summary strong {
  display: block;
  font-size: 1.5rem;
  margin-top: 0.2rem;
}

.license-warning {
  background: rgba(245, 158, 11, 0.09);
  border: 1px solid rgba(245, 158, 11, 0.18);
  border-radius: 18px;
  padding: 1rem;
  margin: 1.3rem 0;
}

.license-warning strong {
  display: block;
  color: #fde68a;
  margin-bottom: 0.35rem;
}

.license-warning p {
  color: #fef3c7;
  font-size: 0.92rem;
}

.checkout-form {
  margin-top: 1rem;
}

.external-checkouts span {
  color: var(--muted);
  font-size: 0.92rem;
}

.checkout-methods-section {
  background:
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.08), transparent 30%),
    #081321;
}

.checkout-methods-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.checkout-method-card,
.rules-list div {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.4rem;
}

.checkout-method-card h3 {
  margin-bottom: 0.6rem;
}

.checkout-method-card p,
.rules-list p {
  color: var(--muted);
}

.rules-list {
  display: grid;
  gap: 1rem;
}

.rules-list strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--text);
}

@media (max-width: 900px) {
  .checkout-methods-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .license-summary,
  .checkout-methods-grid {
    grid-template-columns: 1fr;
  }
}



.request-hero {
  padding: 6rem 0;
}

.request-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.3rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.request-hero p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-top: 1.2rem;
}

.request-points {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.request-points div,
.request-card {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border);
  border-radius: 20px;
}

.request-points div {
  padding: 1.2rem;
}

.request-points strong {
  display: block;
  margin-bottom: 0.35rem;
}

.request-points span {
  color: var(--muted);
}

.request-card {
  padding: 2rem;
  box-shadow: var(--shadow);
}

.request-card h2 {
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.request-card > p {
  margin-bottom: 1.3rem;
}

.request-form {
  display: grid;
  gap: 1rem;
}

.request-form label {
  display: grid;
  gap: 0.45rem;
  color: #cbd5e1;
  font-weight: 700;
}

.request-form input,
.request-form textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  padding: 0.9rem 1rem;
  outline: none;
  font: inherit;
}

.request-form input {
  min-height: 48px;
}

.request-form textarea {
  resize: vertical;
}

.alert-success {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.25);
  color: #bbf7d0;
}


.delivery-note {
  max-width: 760px;
  margin: 1rem auto 0;
  color: var(--muted) !important;
  font-size: 0.98rem;
}


.naira-price {
  color: var(--primary);
  font-weight: 800;
  margin-top: -0.4rem;
  margin-bottom: 1rem;
}


.screenshot-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: top;
  display: block;
  border-radius: 18px;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
}


.small-trust-line {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 1rem;
}


@media (max-width: 640px) {
  .hero h1,
  .pricing-hero h1,
  .status-box h1,
  .request-hero h1 {
    font-size: clamp(2.1rem, 10vw, 3rem);
    line-height: 1.05;
  }

  .section-heading h2,
  .problem-section h2,
  .why-section h2,
  .pricing-cta-box h2 {
    font-size: clamp(1.9rem, 9vw, 2.7rem);
    line-height: 1.08;
  }

  .hero {
    padding: 3.5rem 0 3rem;
  }

  .mockup-card {
    max-width: 100%;
  }

  .screenshot-img {
    height: 220px;
  }

  .pricing-card,
  .solution-card,
  .custom-box,
  .request-card {
    padding: 1.3rem;
  }

  .faq-list details {
    padding: 1rem;
  }
}


@media (max-width: 640px) {
  .hero h1 {
    font-size: clamp(2rem, 9vw, 2.75rem);
    line-height: 1.08;
    letter-spacing: -0.045em;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .hero {
    padding: 2.8rem 0 3rem;
  }

  .eyebrow {
    font-size: 0.72rem;
    padding: 0.4rem 0.7rem;
  }

  .hero-actions {
    margin-top: 1.5rem;
  }
}



.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 46px;
  padding: 0.35rem 0.8rem 0.35rem 0.45rem;
  border-radius: 999px;
  background: rgba(16, 31, 53, 0.94);
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
  border: 1px solid rgba(56, 189, 248, 0.45);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  border-color: rgba(56, 189, 248, 0.8);
  background: rgba(13, 27, 47, 0.98);
}

.whatsapp-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(37, 211, 102, 0.14);
  color: #25d366;
  flex-shrink: 0;
}

.whatsapp-icon svg {
  width: 17px;
  height: 17px;
  display: block;
}

.whatsapp-text {
  font-size: 0.9rem;
  line-height: 1;
  color: var(--text);
}

@media (max-width: 640px) {
  .whatsapp-float {
    min-height: auto;
    padding: 0.4rem;
  }

  .whatsapp-icon {
    width: 40px;
    height: 40px;
  }

  .whatsapp-icon svg {
    width: 15px;
    height: 15px;
  }

  .whatsapp-text {
    font-size: 0.82rem;
    display: none;
  }
}



.space{
  margin-top: 20px;
}