/* ============================================================
   KYC.me.co.bw — Landing Page Styles v2
   Clean, modern, conversion-focused design.
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --primary: #0f172a;
  --accent: #10b981;
  --accent-2: #6366f1;
  --gradient: linear-gradient(135deg, #10b981 0%, #6366f1 100%);
  --text-muted: #64748b;
  --border: #e2e8f0;
}

.landing { font-family: var(--font); overflow-x: hidden; }
.landing h1,.landing h2,.landing h3,.landing h4 { font-weight: 800; letter-spacing: -.02em; }

/* ====== Navbar ====== */
.nav-top {
  position: fixed; top:0; left:0; right:0; z-index:1040;
  background: transparent; border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .3s, border-color .3s, box-shadow .3s;
}
.nav-top.scrolled { background: rgba(255,255,255,.93); backdrop-filter: blur(12px); border-color: rgba(226,232,240,.8); box-shadow: 0 2px 20px rgba(15,23,42,.06); }
.nav-brand { font-weight: 800; font-size: 1.35rem; color: #fff; display: flex; align-items: center; gap: .6rem; text-decoration: none; transition: color .3s; }
.nav-top.scrolled .nav-brand { color: var(--primary); }
.nav-logo { width: 38px; height: 38px; border-radius: 10px; background: var(--gradient); display: flex; align-items: center; justify-content: center; color: #fff; }
.nav-top .nav-link { font-weight: 600; color: rgba(255,255,255,.85); transition: color .2s; }
.nav-top .nav-link:hover { color: #fff; }
.nav-top.scrolled .nav-link { color: #334155; }
.nav-top.scrolled .nav-link:hover { color: var(--accent); }
.btn-white-outline { border: 1.5px solid rgba(255,255,255,.4); color: #fff; background: transparent; }
.btn-white-outline:hover { background: #fff; color: var(--primary); border-color: #fff; }

/* ====== Hero ====== */
.hero {
  position: relative; padding: 10rem 0 7rem;
  background: radial-gradient(circle at 15% 20%, rgba(16,185,129,.16) 0%, transparent 32%),
              radial-gradient(circle at 85% 30%, rgba(99,102,241,.14) 0%, transparent 30%),
              linear-gradient(135deg, #0b1120, #0f172a 50%, #1e293b);
  color: #fff; overflow: hidden;
}
.hero::before { content:''; position:absolute; inset:0; background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px); background-size: 32px 32px; mask-image: linear-gradient(to bottom, rgba(0,0,0,.5), transparent); pointer-events: none; }
.hero-title { font-size: clamp(2.6rem, 5vw, 4.4rem); font-weight: 900; line-height: 1.08; color: #fff; }
.hero-title .gradient-text { background: linear-gradient(135deg, #34d399, #818cf8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { font-size: 1.2rem; color: #94a3b8; max-width: 540px; }
.hero-stats { display: flex; gap: 2rem; }
.hero-stats .stat { display: flex; flex-direction: column; }
.hero-stats .stat strong { font-size: 2rem; font-weight: 800; }
.hero-stats .stat span { color: #94a3b8; font-size: .85rem; }
.hero-form .input-group-text { background: rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.14); border-right:none; color:#94a3b8; border-radius:12px 0 0 12px; }
.hero-form .form-control { background: rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.14); border-left:none; border-right:none; color:#fff; font-size:1rem; box-shadow:none; }
.hero-form .form-control::placeholder { color:#64748b; }
.hero-form .form-control:focus { background: rgba(255,255,255,.12); border-color:rgba(255,255,255,.25); color:#fff; }
.hero-form .btn { border-radius: 0 12px 12px 0; }
.hero-form .form-text { color: #64748b; }

/* ====== Hero mockup ====== */
.hero-visual { position:relative; min-height:440px; display:flex; align-items:center; justify-content:center; perspective:1200px; }
.mockup { width:100%; max-width:600px; transform: rotateY(-6deg) rotateX(3deg); transition:transform .5s; }
.mockup:hover { transform: rotateY(-3deg) rotateX(1deg); }
.mockup .mock-header { background:#f8fafc; border-bottom:1px solid var(--border); padding:.9rem 1.25rem; display:flex; align-items:center; gap:.5rem; border-radius: 18px 18px 0 0; }
.mockup .dot { width:10px; height:10px; border-radius:50%; }
.mockup .dot.r { background:#ef4444; } .mockup .dot.y { background:#f59e0b; } .mockup .dot.g { background:#22c55e; }
.mockup .mock-body { display:flex; min-height:300px; background:#fff; border-radius:0 0 18px 18px; overflow:hidden; box-shadow: 0 50px 100px -20px rgba(0,0,0,.45); }
.mockup .mock-side { width:72px; background:#fff; border-right:1px solid var(--border); padding:1rem .6rem; display:flex; flex-direction:column; gap:.6rem; }
.mockup .nav-dot { width:32px; height:32px; border-radius:8px; background:#f1f5f9; margin:0 auto; }
.mockup .nav-dot.active { background: var(--gradient); }
.mockup .mock-main { flex:1; padding:1.25rem; background:#f8fafc; }
.mockup .mock-stats { display:flex; gap:.6rem; margin-bottom:1rem; }
.mockup .mock-stat { flex:1; background:#fff; border-radius:10px; padding:.75rem; box-shadow:0 3px 10px rgba(15,23,42,.04); }
.mockup .lbl { height:6px; width:50%; background:#e2e8f0; border-radius:3px; margin-bottom:.5rem; }
.mockup .val { height:14px; width:35%; background:var(--primary); border-radius:3px; }
.mockup .mock-table { background:#fff; border-radius:10px; padding:.6rem; box-shadow:0 3px 10px rgba(15,23,42,.04); }
.mockup .mock-row { display:flex; align-items:center; gap:.6rem; padding:.5rem 0; border-bottom:1px solid #f1f5f9; }
.mockup .mock-row:last-child { border-bottom:none; }
.mockup .avatar { width:28px; height:28px; border-radius:50%; background:linear-gradient(135deg,#cbd5e1,#94a3b8); }
.mockup .line { height:8px; background:#e2e8f0; border-radius:4px; }
.mockup .line.w { flex:1; } .mockup .line.s { width:55px; }
.mockup .chp { margin-left:auto; padding:.3rem .55rem; border-radius:6px; font-size:.68rem; font-weight:700; color:#fff; }
.mockup .chp.complete { background:#22c55e; } .mockup .chp.pending { background:#f59e0b; }

@media(max-width:991px) { .mockup { transform:none; } .mockup:hover { transform:none; } }
@media(max-width:767px) { .hero { padding:7rem 0 4rem; } .hero-stats { flex-wrap:wrap; gap:1.2rem; } .hero-visual { min-height:auto; } }

/* ====== Trust ====== */
.trust-strip { background: #fff; border-bottom:1px solid var(--border); padding: 1.5rem 0; }

/* ====== Sections ====== */
.section { padding: 6rem 0; }
.section.bg-light { background: #f8fafc; }
.section-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; color: var(--primary); }
.tag { display:inline-flex; align-items:center; gap:.4rem; background:#ecfdf5; color:var(--accent); font-size:.75rem; font-weight:700; text-transform:uppercase; letter-spacing:.5px; padding:.45rem .8rem; border-radius:999px; margin-bottom:1rem; }
.tag-light { background:rgba(255,255,255,.12); color:#fff; }

/* ====== Features ====== */
.f-card { background:#fff; border:1px solid var(--border); border-radius:20px; padding:1.75rem; height:100%; transition:transform .25s,box-shadow .25s; }
.f-card:hover { transform:translateY(-5px); box-shadow:0 20px 50px rgba(15,23,42,.08); }
.f-icon { width:52px; height:52px; border-radius:14px; display:flex; align-items:center; justify-content:center; font-size:1.4rem; color:#fff; margin-bottom:1.1rem; }
.f-icon.teal { background:linear-gradient(135deg,#14b8a6,#0d9488); }
.f-icon.indigo { background:linear-gradient(135deg,#6366f1,#4f46e5); }
.f-icon.purple { background:linear-gradient(135deg,#8b5cf6,#7c3aed); }
.f-icon.orange { background:linear-gradient(135deg,#f59e0b,#ea580c); }
.f-icon.emerald { background:linear-gradient(135deg,#10b981,#059669); }
.f-icon.rose { background:linear-gradient(135deg,#f43f5e,#e11d48); }
.f-card h3 { font-size:1.2rem; margin-bottom:.6rem; }
.f-card p { color:var(--text-muted); margin:0; font-size:.95rem; }

/* ====== Steps ====== */
.step-card { position:relative; padding-left:3.2rem; margin-bottom:2rem; }
.step-num { position:absolute; left:0; top:0; width:40px; height:40px; border-radius:50%; background:var(--gradient); color:#fff; font-weight:800; display:flex; align-items:center; justify-content:center; font-size:1rem; }
.step-card h4 { font-size:1.15rem; margin-bottom:.35rem; }
.step-card p { color:var(--text-muted); margin:0; }

/* ====== Pricing ====== */
.price-card { background:#fff; border:1px solid var(--border); border-radius:24px; padding:2.5rem; position:relative; box-shadow:0 4px 24px rgba(15,23,42,.04); transition:transform .2s; }
.price-card:hover { transform:translateY(-4px); }
.price-card.featured { border:2px solid var(--accent); box-shadow:0 16px 50px rgba(16,185,129,.14); }
.price-badge { position:absolute; top:-12px; right:20px; background:var(--gradient); color:#fff; font-size:.72rem; font-weight:700; padding:.35rem .8rem; border-radius:999px; }
.price-amt { font-size:2.8rem; font-weight:800; margin:.5rem 0; }
.price-amt span { font-size:1rem; font-weight:500; color:var(--text-muted); }
.price-features { list-style:none; padding:0; margin:1.5rem 0; }
.price-features li { padding:.55rem 0; display:flex; gap:.5rem; }
.price-features li i { color:var(--accent); font-weight:700; }

/* ====== CTA ====== */
.cta-section { background:linear-gradient(135deg,#0f172a,#1e293b); color:#fff; border-radius:28px; padding:4rem 2rem; margin: 0 1rem 4rem; position:relative; overflow:hidden; }
.cta-section h2 { color:#fff; }
.cta-section p { color:rgba(255,255,255,.75); }
.btn-white { background:#fff; color:var(--primary); font-weight:700; box-shadow:0 10px 30px -6px rgba(0,0,0,.3); }
.btn-white:hover { background:#f1f5f9; color:var(--primary); }
@media(max-width:992px) { .cta-section { margin:0 0 4rem; border-radius:0; } }

/* ====== Footer ====== */
.footer { background:var(--primary); color:rgba(255,255,255,.7); padding:4rem 0 1.5rem; }
.footer h5 { color:#fff; font-size:.95rem; margin-bottom:1rem; }
.footer a { color:rgba(255,255,255,.7); text-decoration:none; }
.footer a:hover { color:#fff; }