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

:root {
  --bg: #060b14;
  --bg2: #0a1020;
  --bg3: #0d1526;
  --border: rgba(255,255,255,0.08);
  --border2: rgba(255,255,255,0.12);
  --cyan: #00d4ff;
  --white: #f0f4ff;
  --muted: #6b7a99;
  --muted2: #8896b3;
  --font: 'Outfit', sans-serif;
  --body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--white); font-family: var(--body); font-size: 16px; line-height: 1.6; overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6%; height: 64px;
  background: rgba(6,11,20,0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.nav-logo {
  font-family: var(--font); font-weight: 800; font-size: 1.3rem;
  letter-spacing: -0.04em; color: var(--white); text-decoration: none;
}
.nav-logo span { color: var(--cyan); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--muted2); text-decoration: none;
  font-size: 0.875rem; font-family: var(--font);
  font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--cyan); color: #060b14;
  padding: 0.5rem 1.25rem; border-radius: 6px;
  font-weight: 700; font-size: 0.875rem;
  text-decoration: none; font-family: var(--font);
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.88; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center; padding: 8rem 6% 5rem;
  border-bottom: 1px solid var(--border);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,212,255,0.08); border: 1px solid rgba(0,212,255,0.2);
  border-radius: 100px; padding: 6px 16px;
  font-size: 0.8rem; color: var(--cyan);
  font-family: var(--font); font-weight: 500;
  letter-spacing: 0.3px; margin-bottom: 2rem;
}
.hero-badge-dot { width: 6px; height: 6px; background: var(--cyan); border-radius: 50%; }
.hero h1 {
  font-family: var(--font); font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800; letter-spacing: -0.04em; line-height: 1.08;
  margin-bottom: 1.5rem; color: var(--white);
}
.hero h1 .accent { color: var(--cyan); }
.hero-sub {
  color: var(--muted2); max-width: 560px; font-size: 1rem;
  line-height: 1.75; margin-bottom: 2.5rem; font-weight: 400;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3.5rem; }
.btn-primary {
  background: var(--cyan); color: #060b14;
  padding: 0.8rem 2rem; border-radius: 6px;
  font-weight: 700; font-size: 0.95rem;
  text-decoration: none; font-family: var(--font);
  transition: opacity 0.2s; display: inline-block;
}
.btn-primary:hover { opacity: 0.88; }
.btn-ghost {
  background: transparent; color: var(--white);
  padding: 0.8rem 2rem; border-radius: 6px;
  font-weight: 600; font-size: 0.95rem;
  text-decoration: none; font-family: var(--font);
  border: 1px solid var(--border2);
  transition: border-color 0.2s; display: inline-block;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.3); }
.hero-stats {
  display: flex; gap: 0;
  border: 1px solid var(--border); border-radius: 10px;
  overflow: hidden;
}
.stat {
  padding: 1.25rem 2rem; text-align: center;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat-num { display: block; font-family: var(--font); font-size: 1.4rem; font-weight: 800; color: var(--white); }
.stat-label { font-size: 0.75rem; color: var(--muted); font-weight: 400; }

/* ── TRUSTED ── */
.trusted {
  padding: 1.5rem 6%; border-bottom: 1px solid #e5e7eb;
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  background: #f8fafc; justify-content: center;
}
.trusted-label { font-size: 0.75rem; color: #6b7280; font-family: var(--font); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; white-space: nowrap; }
.trusted-divider { width: 1px; height: 20px; background: #d1d5db; }
.trusted-tags { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.trusted-tag {
  font-size: 0.8rem; color: #374151;
  font-family: var(--font); font-weight: 500;
  padding: 4px 12px; border-radius: 100px;
  border: 1px solid #d1d5db; background: #ffffff;
}

/* ── SECTIONS ── */
section { padding: 5rem 6%; }
.section-label {
  font-size: 0.72rem; font-weight: 700; color: var(--cyan);
  text-transform: uppercase; letter-spacing: 2px;
  font-family: var(--font); margin-bottom: 0.75rem;
}
.section-title.dark { color: #060b14; }
.section-sub.dark { color: #6b7280; }
.section-label.dark { color: #0099bb; }
.section-title {
  font-family: var(--font); font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.15;
  margin-bottom: 0.75rem; color: var(--white);
}
.section-sub { color: var(--muted2); font-size: 0.95rem; max-width: 500px; line-height: 1.7; font-weight: 400; }

/* ── FEATURES ── */
.features { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.features-header { text-align: center; margin-bottom: 3.5rem; }
.features-header .section-label { display: block; }
.features-header .section-sub { margin: 0 auto; }
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--border); border: 1px solid var(--border); border-radius: 12px; overflow: hidden;
}
.feature-card {
  background: var(--bg2); padding: 2rem;
  transition: background 0.2s;
}
.feature-card:hover { background: var(--bg3); }
.feature-icon {
  width: 40px; height: 40px; margin-bottom: 1rem;
  color: var(--cyan);
}
.feature-icon svg { width: 100%; height: 100%; }
.feature-title { font-family: var(--font); font-weight: 700; font-size: 0.95rem; margin-bottom: 0.5rem; color: var(--white); }
.feature-desc { color: var(--muted2); font-size: 0.85rem; line-height: 1.65; }

/* ── PRICING ── */
.pricing { background: var(--bg); border-bottom: 1px solid var(--border); }
.pricing-header { text-align: center; margin-bottom: 3rem; }
.pricing-header .section-label { display: block; }
.pricing-header .section-sub { margin: 0 auto; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 960px; margin: 0 auto; }
.pricing-card {
  background: #ffffff; border: 1px solid #e5e7eb;
  border-radius: 12px; padding: 2rem;
  display: flex; flex-direction: column;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.pricing-card.featured {
  border-color: #00d4ff;
  background: #f0fdff;
}
.plan-badge {
  font-size: 0.7rem; font-weight: 700; color: var(--cyan);
  text-transform: uppercase; letter-spacing: 1px;
  font-family: var(--font); margin-bottom: 1rem;
  display: none;
}
.pricing-card.featured .plan-badge { display: block; }
.plan-name { font-family: var(--font); font-weight: 700; font-size: 1rem; color: #6b7280; margin-bottom: 1rem; }
.plan-price { font-family: var(--font); font-size: 2.4rem; font-weight: 800; color: #060b14; letter-spacing: -0.04em; line-height: 1; margin-bottom: 0.3rem; }
.plan-price span { font-size: 1rem; font-weight: 400; color: #9ca3af; }
.plan-sub { font-size: 0.78rem; color: #9ca3af; margin-bottom: 1.5rem; }
.plan-divider { height: 1px; background: #e5e7eb; margin-bottom: 1.5rem; }
.plan-features { list-style: none; margin-bottom: 2rem; flex: 1; }
.plan-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.875rem; color: #374151;
  padding: 0.4rem 0; border-bottom: 1px solid #f3f4f6;
}
.plan-features li:last-child { border-bottom: none; }
.check { color: var(--cyan); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.plan-btn {
  display: block; text-align: center; padding: 0.8rem;
  border-radius: 6px; font-weight: 700; font-size: 0.9rem;
  text-decoration: none; font-family: var(--font);
  transition: opacity 0.2s; margin-top: auto;
}
.plan-btn.solid { background: var(--cyan); color: #060b14; }
.plan-btn.solid:hover { opacity: 0.88; }
.plan-btn.outline { background: transparent; color: #374151; border: 1px solid #d1d5db; }
.plan-btn.outline:hover { border-color: #9ca3af; }

/* ── WHY GHANA ── */
.ghana { background: var(--bg2); border-bottom: 1px solid var(--border); }
.ghana-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.ghana-points { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.ghana-point { display: flex; align-items: flex-start; gap: 1rem; }
.ghana-point-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(0,212,255,0.08); border: 1px solid rgba(0,212,255,0.15);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
}
.ghana-point-icon svg { width: 20px; height: 20px; }
.ghana-point-text h4 { font-family: var(--font); font-weight: 700; font-size: 0.9rem; color: var(--white); margin-bottom: 0.25rem; }
.ghana-point-text p { color: var(--muted2); font-size: 0.835rem; line-height: 1.6; }
.ghana-visual {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 12px; padding: 2rem;
}
.ghana-visual-title { font-family: var(--font); font-weight: 700; font-size: 0.8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1.5rem; }
.ghana-stat-row { display: flex; justify-content: space-between; align-items: center; padding: 0.875rem 0; border-bottom: 1px solid var(--border); }
.ghana-stat-row:last-child { border-bottom: none; }
.ghana-stat-label { font-size: 0.85rem; color: var(--muted2); }
.ghana-stat-val { font-family: var(--font); font-weight: 700; font-size: 0.9rem; color: var(--white); }
.ghana-stat-tag { font-size: 0.72rem; color: var(--cyan); background: rgba(0,212,255,0.08); border: 1px solid rgba(0,212,255,0.15); padding: 2px 8px; border-radius: 100px; }

/* ── BUNDLE ── */
.bundle { background: var(--bg); text-align: center; border-bottom: 1px solid var(--border); }
.bundle-header { margin-bottom: 2.5rem; }
.bundle-grid { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin: 2.5rem 0; align-items: center; }
.bundle-item {
  background: #ffffff; border: 1px solid #e5e7eb;
  border-radius: 10px; padding: 1.5rem 1.75rem;
  text-align: center; min-width: 130px;
  transition: border-color 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.bundle-item:hover { border-color: #00d4ff; }
.bundle-item-icon { color: var(--cyan); margin-bottom: 0.6rem; }
.bundle-item-icon svg { width: 28px; height: 28px; }
.bundle-item-name { font-family: var(--font); font-weight: 700; font-size: 0.875rem; color: #111827; margin-bottom: 3px; }
.bundle-item-sub { font-size: 0.72rem; color: #6b7280; }
.bundle-plus { color: #9ca3af; font-size: 1.2rem; font-weight: 300; }

/* ── CTA ── */
.cta-section { background: var(--bg2); padding: 5rem 6%; text-align: center; }
.cta-inner { max-width: 620px; margin: 0 auto; }
.cta-inner h2 { font-family: var(--font); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; letter-spacing: -0.04em; line-height: 1.1; margin-bottom: 1rem; }
.cta-inner p { color: var(--muted2); margin-bottom: 2rem; font-size: 0.95rem; line-height: 1.7; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer { background: var(--bg); border-top: 1px solid var(--border); padding: 2.5rem 6%; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
.footer-brand { font-family: var(--font); font-weight: 800; font-size: 1.1rem; letter-spacing: -0.03em; }
.footer-brand span { color: var(--cyan); }
.footer-tagline { font-size: 0.775rem; color: var(--muted); margin-top: 4px; }
.footer-links { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 0.85rem; font-family: var(--font); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: 0.75rem; color: var(--muted); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .ghana-inner { grid-template-columns: 1fr; gap: 3rem; }
  .showcase-grid { grid-template-columns: 1fr !important; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .bundle-grid { gap: 0.75rem; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-stats { display: grid; grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3) { border-bottom: none; }
  .stat:nth-child(4) { border-right: none; border-bottom: none; }
  section { padding: 3rem 5%; }
  .hero { padding: 6rem 5% 3rem; }
  .hero h1 { font-size: 2rem; }
  .hero-sub { font-size: 0.9rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions a { width: 100%; text-align: center; }
  .showcase-grid { grid-template-columns: 1fr !important; }
  .testimonials-grid { grid-template-columns: 1fr !important; }
  .bundle-grid { flex-direction: column; align-items: center; }
  .bundle-plus { transform: rotate(90deg); }
  .footer-inner { flex-direction: column; text-align: center; gap: 1rem; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 0.75rem 1.25rem; }
  .footer-links a { font-size: 0.8rem; }
  .footer-copy { text-align: center; }
  footer { padding: 2rem 5%; }
  .trusted { flex-direction: column; align-items: center; text-align: center; }
  .trusted-divider { display: none; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions a { width: 100%; text-align: center; }
}
