

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


:root {
  --red:#ff7a00;
  --dark:#0b0b0b;
  --gray:#cfcfcf;
}

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background:#000;
  color:#fff;
  line-height:1.6;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  width: 100%;
  padding: 0 6%;
  background: rgba(0, 0, 0, 0.9);
  border-bottom: 1px solid rgba(255, 122, 0, 0.2);
  backdrop-filter: blur(12px);
}

.logo img {
  height: 50px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  font-size: 0.95rem;
  color: #fff;
}

.nav-cta {
  padding: 9px 22px;
  border-radius: 30px;
  background: linear-gradient(135deg, #ff7a00, #e56600);
  color: #ffffff;
  font-weight: 500;
  box-shadow:
    0 0 25px rgba(255, 122, 0, 0.88),
    0 0 50px rgba(255, 122, 0, 0.56);
}

/* COMMON */
.container {
  max-width:1200px;
  margin:auto;
  padding:80px 20px;
}

h2 {
  font-size:clamp(28px,4vw,42px);
  margin-bottom:40px;
}

span { color:var(--red); }

/* BUTTONS */
.btn {
  padding:15px 30px;
  border-radius:10px;
  font-weight:600;
  text-decoration:none;
  display:inline-block;
  transition:.3s;
}

.primary {
  background:var(--red);
  color:#fff;
}

.outline {
  border:2px solid var(--red);
  color:#fff;
}

.glow {
  box-shadow:0 0 35px rgba(255,122,0,.62);
}

.btn:hover {
  transform:translateY(-2px);
}

/* HERO */
.hero {
  min-height:100vh;
  padding-top: 110px;
  background:radial-gradient(circle at top, rgba(255,122,0,.14), #000);
  display:flex;
  align-items:center;
}

.hero-wrap {
  max-width:1200px;
  margin:auto;
  padding:100px 20px;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:50px;
  align-items:center;
}

.badge {
  display:inline-block;
  padding:8px 18px;
  border:1px solid var(--red);
  border-radius:30px;
  margin-bottom:20px;
}

.hero h1 {
  font-size:clamp(36px,5vw,60px);
  margin-bottom:20px;
}

.hero p {
  max-width:520px;
  color:var(--gray);
}

.hero-actions {
  margin-top:30px;
  display:flex;
  gap:15px;
  flex-wrap:wrap;
}

.trust {
  display:block;
  margin-top:15px;
  color:#aaa;
}

/* SVG */
.hero-visual svg {
  width:100%;
  animation:float 6s ease-in-out infinite;
}

@keyframes float {
  0%,100% { transform:translateY(0); }
  50% { transform:translateY(-12px); }
}

/* AI CURRICULUM */
.ai-curriculum {
  background: #0f0f0f;
  border-top: 1px solid rgba(255,122,0,0.14);
}

.ai-curriculum-intro {
  color: var(--gray);
  max-width: 640px;
  margin-bottom: 28px;
}

.ai-curriculum-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.ai-curriculum-card {
  padding: 24px;
  border-radius: 16px;
  background: linear-gradient(135deg,#111,#0b0b0b);
  border: 1px solid rgba(255,122,0,.25);
}

.ai-curriculum-card h3 {
  color: var(--red);
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.ai-curriculum-card p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.65;
}

.ai-curriculum-note {
  margin-top: 28px;
  color: #aaa;
  font-size: 0.95rem;
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* OUTCOMES */
.outcome-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:30px;
}

.card {
  padding:30px;
  border-radius:18px;
  background:linear-gradient(135deg,#111,#0b0b0b);
  border:1px solid rgba(255,122,0,.3);
  transition:.3s;
}

.card:hover {
  transform:translateY(-8px);
  box-shadow:0 0 40px rgba(255,122,0,.36);
}

/* CURRICULUM */
.curriculum {
  background:#0f0f0f;
}

.curriculum-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:25px;
}

.item {
  padding:25px;
  background:#111;
  border-radius:14px;
}

.item span {
  display:block;
  font-size:24px;
  font-weight:700;
}

/* STATS */
.stats {
  background: #0b0b0b;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.stat-card {
  padding: 26px;
  border-radius: 16px;
  text-align: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,122,0,0.25);
}

.stat-card h3 {
  color: #ff7a00;
  font-size: 1.6rem;
  margin-bottom: 6px;
}

/* LEAD FORM */
.lead-form {
  background: radial-gradient(circle at top, rgba(255,122,0,0.1), #000);
  padding: 120px 0;
  border-top: 1px solid rgba(255,122,0,0.17);
}

.lead-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

.lead-text p {
  color: var(--gray);
}

.lead-card {
  background: #0f0f0f;
  border: 1px solid rgba(255,122,0,0.2);
  border-radius: 18px;
  padding: 28px;
  display: grid;
  gap: 14px;
}

.lead-card label {
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
  color: #bbb;
}

.lead-card input,
.lead-card select,
.lead-card textarea {
  background: #111;
  color: #fff;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 12px;
  font-size: 0.95rem;
}

.lead-card textarea {
  min-height: 110px;
  resize: vertical;
}

/* ===============================
   PRICING SECTION
================================ */

.pricing-section {
  background: radial-gradient(circle at top, rgba(255,122,0,0.1), #000);
  padding: 120px 0;
  border-top: 1px solid rgba(255,122,0,0.17);
}

.pricing-header {
  max-width: 680px;
  margin: 0 auto 70px;
  text-align: center;
}

.section-tag {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 30px;
  background: rgba(255,122,0,0.15);
  color: var(--red);
  font-weight: 600;
  margin-bottom: 18px;
}

.pricing-header h2 {
  font-size: clamp(32px, 4vw, 44px);
  margin-bottom: 18px;
}

.pricing-header p {
  color: var(--gray);
  line-height: 1.7;
}

/* GRID */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
}

/* CARD */
.price-card {
  background: linear-gradient(135deg, #111, #0b0b0b);
  border-radius: 22px;
  padding: 42px 32px;
  text-align: center;
  border: 1px solid rgba(255,122,0,0.25);
  transition: transform .35s ease, box-shadow .35s ease;
  position: relative;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 45px rgba(255,122,0,0.42);
}

.price-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--red);
  margin: 12px 0;
}

.duration {
  display: inline-block;
  font-size: .85rem;
  color: #aaa;
  margin-bottom: 26px;
}

/* FEATURES */
.price-card ul {
  list-style: none;
  margin-bottom: 30px;
}

.price-card li {
  margin-bottom: 10px;
  color: #ddd;
  font-size: .95rem;
}

/* FEATURED */
.featured {
  border: 2px solid var(--red);
  transform: scale(1.06);
}

.featured:hover {
  transform: scale(1.06) translateY(-10px);
}

.tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #ff7a00, #e56600);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 700;
  box-shadow: 0 0 25px rgba(255,122,0,0.6);
}

/* NOTE */
.pricing-note {
  margin-top: 50px;
  text-align: center;
  color: #aaa;
  font-size: .95rem;
}

.gh-note {
  display: none;
}

.intl-note {
  display: block;
}

/* MOBILE */
@media (max-width: 768px) {
  .featured {
    transform: none;
  }
}


/* FINAL CTA */
.final {
  padding:120px 20px;
  text-align:center;
  background:radial-gradient(circle at bottom,rgba(255,122,0,0.22),#000);
}

/* FAQ */
.faq {
  background: #0b0b0b;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.faq-item {
  background: #111;
  border: 1px solid rgba(255,122,0,0.2);
  padding: 22px;
  border-radius: 16px;
}

.faq-item h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

footer {
  padding:30px;
  text-align:center;
  font-size:14px;
  color:#888;
  border-top:1px solid #222;
}

.site-footer {
  border-top: 1px solid rgba(255, 122, 0, 0.2);
  background: #0b0b0b;
  padding: 26px 0 20px;
}

.footer-grid {
  padding-top: 0;
  padding-bottom: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px 20px;
}

.footer-grid p {
  margin: 0;
  color: #cfcfcf;
  font-size: 0.92rem;
}

.footer-grid a {
  color: #fff;
  text-decoration: none;
}

.footer-grid a:hover {
  color: #ffb066;
}

.site-footer .copyright {
  margin-top: 14px;
  text-align: center;
  font-size: 0.84rem;
  color: #8f8f8f;
}

.icon-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #fff;
}

.icon-link img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

/* MOBILE */
@media (max-width:900px) {
  .hero-wrap {
    grid-template-columns:1fr;
    text-align:center;
  }

  .site-nav {
    display: none;
  }

  .lead-grid {
    grid-template-columns: 1fr;
  }
}


/* ===============================
   SCROLL ANIMATIONS
================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.9s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.fade-left { transform: translateX(-40px); }
.fade-right { transform: translateX(40px); }
.zoom-in { transform: scale(0.92); }

.fade-left.active,
.fade-right.active,
.zoom-in.active {
  transform: none;
}
.chat-preview {
  position: absolute;
  right: 70px;
  bottom: 0;
  background: #fff;
  color: #000;
  padding: 12px 14px;
  border-radius: 12px;
  width: 220px;
  box-shadow: 0 0 20px rgba(0,0,0,0.15);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: 0.3s ease;
}

.chat-preview p {
  margin: 0;
  font-weight: 700;
}

.chat-preview span {
  font-size: 0.9rem;
}

/* ===============================
   WHATSAPP FLOAT + CHAT PREVIEW
================================ */

.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 62px;
  height: 62px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.85);
  animation: whatsappFloat 3s ease-in-out infinite;
  text-decoration: none;
}

/* ICON */
.whatsapp-icon {
  width: 30px;
  height: 30px;
}

/* ONLINE DOT */
.whatsapp-dot {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 12px;
  height: 12px;
  background: #00ff66;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: dotPulse 1.5s infinite;
}

/* CHAT PREVIEW */
.chat-preview {
  position: absolute;
  right: 75px;
  bottom: 0;
  width: 230px;
  background: #fff;
  color: #000;
  padding: 14px 16px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all 0.3s ease;
}

.chat-preview strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.chat-preview p {
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.4;
}

/* SHOW ON HOVER */
.whatsapp-float:hover .chat-preview {
  opacity: 1;
  transform: translateY(0);
}

/* ANIMATIONS */
@keyframes whatsappFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes dotPulse {
  0% { box-shadow: 0 0 0 rgba(0,255,102,0.7); }
  70% { box-shadow: 0 0 14px rgba(0,255,102,0); }
  100% { box-shadow: 0 0 0 rgba(0,255,102,0); }
}

/* MOBILE: hide preview */
@media (max-width: 768px) {
  .chat-preview {
    display: none;
  }
}




@media (max-width: 768px) {
  body {
    font-size: 15px;
  }

  .hero-wrap {
    padding: 80px 16px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.2rem;
    line-height: 1.25;
  }

  section {
    padding-left: 16px;
    padding-right: 16px;
  }
}


/* ===============================
   MOBILE STICKY CTA
================================ */
.mobile-cta {
  display: none;
}

@media (max-width: 768px) {
  .mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, #ff7a00, #e56600);
    text-align: center;
    padding: 14px;
    z-index: 9998;
    box-shadow: 0 -4px 25px rgba(255,122,0,0.52);
  }

  .mobile-cta a {
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
  }

  body {
    padding-bottom: 60px; /* avoid overlap */
  }
}

@media (max-width: 768px) {
  .outcome-grid,
  .ai-curriculum-grid,
  .timeline-grid,
  .pricing-grid,
  .testimonial-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  .featured {
    transform: none;
  }
}


.chat-preview.show {
  opacity: 1;
  transform: translateY(0);
}


.hero-wrap,
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 24px);
}
@media (max-width: 480px) {
  .price-card {
    padding: 28px 20px;
  }

  h2 {
    font-size: 1.9rem;
  }
}

body.theme-light .logo img {
  height: 62px;
}

.wa-lead-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999999;
}

.wa-lead-box {
  background: #111;
  padding: 30px;
  border-radius: 18px;
  width: 90%;
  max-width: 360px;
  text-align: center;
}

.wa-lead-box input,
.wa-lead-box select {
  width: 100%;
  margin: 12px 0;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #222;
  background: #000;
  color: #fff;
}

.wa-lead-box button {
  width: 100%;
  padding: 14px;
  margin-top: 10px;
  border-radius: 12px;
  background: #25d366;
  font-weight: 700;
  border: none;
  cursor: pointer;
}


/* Show international text by default */
.intl-price {
  display: inline;
  font-size: 0.95rem;
  color: #aaa;
}

/* Hide Ghana price by default (JS will enable for GH) */
.gh-price {
  display: none;
}

