/* =====================
   RESET & BASE
   ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #080808;
  --surface: #0f0f0f;
  --surface-2: #161616;
  --surface-3: #1c1c1c;
  --border: #1e1e1e;
  --border-light: #2a2a2a;
  --text: #ffffff;
  --text-muted: #6b6b6b;
  --text-secondary: #a0a0a0;
  --accent: #9333ea;
  --accent-hover: #7c3aed;
  --accent-dim: rgba(147, 51, 234, 0.08);
  --accent-dim-2: rgba(147, 51, 234, 0.15);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --font: 'Inter', system-ui, sans-serif;
  --max-w: 1140px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: 120px 0; }

/* =====================
   BUTTONS
   ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  letter-spacing: -0.1px;
}
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-lg { padding: 16px 34px; font-size: 16px; }
.btn-full { width: 100%; }
.btn-primary { background: var(--accent); color: #ffffff; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(147,51,234,0.2); }
.btn-ghost { background: transparent; color: var(--text-secondary); border: 1px solid var(--border-light); }
.btn-ghost:hover { color: var(--text); border-color: #444; background: var(--surface-2); }

/* =====================
   NAV
   ===================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
.nav.scrolled {
  background: rgba(8, 8, 8, 0.9);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.8px;
  flex-shrink: 0;
}
.logo span { color: var(--accent); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

/* =====================
   HERO
   ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-glow-1 {
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-60%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse, rgba(147,51,234,0.07) 0%, transparent 65%);
}
.hero-glow-2 {
  position: absolute;
  bottom: 0; right: -200px;
  width: 600px; height: 500px;
  background: radial-gradient(ellipse, rgba(147,51,234,0.04) 0%, transparent 65%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 0%, black 0%, transparent 70%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--accent-dim);
  border: 1px solid rgba(147,51,234,0.2);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 32px;
  letter-spacing: 0.3px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero h1 {
  font-size: clamp(42px, 6.5vw, 80px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -3px;
  margin-bottom: 28px;
  color: var(--text);
}
.hero h1 .highlight {
  color: var(--accent);
  position: relative;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 44px;
  line-height: 1.75;
  font-weight: 400;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-stat strong {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text);
  line-height: 1;
}
.hero-stat span {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-light);
}

/* =====================
   MARQUEE
   ===================== */
.marquee-wrapper {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
  padding: 18px 0;
}
.marquee-track { display: flex; overflow: hidden; }
.marquee-content {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  flex-shrink: 0;
}
.marquee-content span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.marquee-dot {
  color: var(--accent) !important;
  font-size: 10px !important;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =====================
   SECTION HEADERS
   ===================== */
.section-header {
  margin-bottom: 64px;
  max-width: 640px;
}
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-header h2 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* =====================
   SERVICES
   ===================== */
.services { border-top: 1px solid var(--border); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.service-card {
  background: var(--surface);
  padding: 40px;
  transition: background 0.25s ease;
  position: relative;
}
.service-card:hover { background: var(--surface-2); }
.service-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 22px;
}
.service-icon {
  width: 48px; height: 48px;
  color: var(--accent);
}
.service-icon svg { width: 100%; height: 100%; }
.service-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #ffffff;
  background: var(--accent);
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
}
.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.service-card > p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 24px;
}
.service-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.service-card ul li {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.service-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 11px;
  top: 1px;
}

/* =====================
   HOW IT WORKS
   ===================== */
.how { border-top: 1px solid var(--border); }
.steps {
  display: flex;
  align-items: center;
  gap: 0;
}
.step {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px;
}
.step-connector {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--border), var(--accent), var(--border));
  flex-shrink: 0;
}
.step-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.step h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.step p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* =====================
   PRICING
   ===================== */
.pricing { border-top: 1px solid var(--border); }
.pricing-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.pricing-card-left {
  padding: 60px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
}
.pricing-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.price-from {
  font-size: 14px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 8px;
}
.price-main {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}
.price-main strong {
  font-size: 64px;
  font-weight: 900;
  letter-spacing: -4px;
  line-height: 1;
  color: var(--text);
}
.price-naira {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: -0.5px;
}
.pricing-note {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.pricing-card-right {
  padding: 60px;
}
.pricing-includes-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 28px;
}
.pricing-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pricing-includes li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.pricing-includes li svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 1px;
}

/* =====================
   BOOKING
   ===================== */
.booking { border-top: 1px solid var(--border); }
.booking-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.booking-left { padding-top: 8px; }
.booking-left h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin: 12px 0 20px;
}
.booking-left > p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
}
.booking-promises {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.booking-promise {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
  font-weight: 500;
}
.booking-promise svg {
  width: 18px; height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}
.booking-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.2px;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: var(--font);
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(147,51,234,0.08);
}
.form-group select { cursor: pointer; }
.form-group select option { background: var(--surface-2); }
.form-group textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.form-success {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(147,51,234,0.08);
  border: 1px solid rgba(147,51,234,0.2);
  border-radius: var(--radius-sm);
  padding: 16px;
}
.form-success svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.form-success p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.form-error {
  background: rgba(255,80,80,0.08);
  border: 1px solid rgba(255,80,80,0.2);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 14px;
  color: #ff8080;
}
.form-error a { color: var(--accent); text-decoration: none; }

/* =====================
   FAQ
   ===================== */
.faq { border-top: 1px solid var(--border); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item {
  background: var(--surface);
  padding: 36px 40px;
  transition: background 0.2s;
}
.faq-item:hover { background: var(--surface-2); }
.faq-item h4 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
  line-height: 1.4;
}
.faq-item p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* =====================
   FOOTER CTA
   ===================== */
.footer-cta {
  border-top: 1px solid var(--border);
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
  position: relative;
  overflow: hidden;
}
.footer-cta::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(147,51,234,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.footer-cta h2 {
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 16px;
  position: relative;
}
.footer-cta p {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  position: relative;
}

/* =====================
   FOOTER
   ===================== */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
  background: var(--surface);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.footer-brand .logo { display: inline-block; margin-bottom: 12px; }
.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  align-items: center;
}
.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.footer-bottom p { font-size: 13px; color: var(--text-muted); }

/* =====================
   LOADER
   ===================== */
.loader {
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* =====================
   REVEAL ANIMATIONS
   ===================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================
   CHAT WIDGET
   ===================== */
.chat-widget {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.chat-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--accent);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(147,51,234,0.3);
  transition: all 0.2s ease;
}
.chat-trigger:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(147,51,234,0.35); }
.chat-trigger svg { width: 18px; height: 18px; }
.chat-box {
  display: none;
  flex-direction: column;
  width: 380px;
  height: 520px;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}
.chat-box.open { display: flex; }
.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}
.chat-header-info { display: flex; align-items: center; gap: 12px; }
.chat-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.chat-header strong { display: block; font-size: 14px; font-weight: 700; }
.chat-header span { font-size: 12px; color: var(--text-muted); }
.chat-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  border-radius: var(--radius-xs);
}
.chat-close:hover { color: var(--text); background: var(--border); }
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.chat-msg { max-width: 88%; }
.chat-msg p {
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.65;
}
.chat-msg.assistant p {
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 4px 14px 14px 14px;
}
.chat-msg.user { align-self: flex-end; }
.chat-msg.user p {
  background: var(--accent);
  color: #ffffff;
  border-radius: 14px 4px 14px 14px;
  font-weight: 500;
}
.chat-typing p {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 4px 14px 14px 14px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text-muted);
}
.chat-input-row {
  display: flex;
  gap: 8px;
  padding: 14px 16px;
  border-top: 1px solid var(--border);
  background: var(--surface-2);
}
.chat-input-row input {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 11px 15px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}
.chat-input-row input::placeholder { color: var(--text-muted); }
.chat-input-row input:focus { border-color: var(--accent); }
.chat-input-row button {
  width: 42px; height: 42px;
  background: var(--accent);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
  transition: background 0.2s;
}
.chat-input-row button:hover { background: var(--accent-hover); }
.chat-input-row button svg { width: 16px; height: 16px; }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { flex-direction: column; }
  .step-connector { width: 1px; height: 40px; background: linear-gradient(180deg, var(--border), var(--accent), var(--border)); }
  .pricing-card { grid-template-columns: 1fr; }
  .pricing-card-left { border-right: none; border-bottom: 1px solid var(--border); }
  .booking-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .hero { padding: 120px 0 60px; min-height: auto; }
  .hero h1 { letter-spacing: -2px; }
  .hero-ctas { flex-direction: column; }
  .btn-lg { width: 100%; }
  .services-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .booking-form { padding: 28px 24px; }
  .nav-links { display: none; }
  .chat-box { width: calc(100vw - 24px); }
  .chat-widget { right: 12px; bottom: 12px; }
  .pricing-card-left, .pricing-card-right { padding: 36px 28px; }
  .price-main strong { font-size: 48px; }
  .footer-inner { flex-direction: column; }
}
