:root{
  --bg:#ffffff;
  --card:#ffffff;
  --card2:#f7f8fb;
  --text:#0b1220;
  --muted:#4b5565;
  --brand:#0ea5e9;
  --brand2:#22c55e;
  --line:rgba(15,23,42,.12);
  --shadow: 0 16px 40px rgba(2,6,23,.10);
  --radius:18px;
  --max:1200px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", Helvetica;
  background: var(--bg);
  color:var(--text);
  line-height:1.65;
}
a{color:inherit; text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 18px}
.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,.86);
  border-bottom:1px solid var(--line);
}
.topbar-inner{display:flex; gap:14px; align-items:center; justify-content:space-between; padding:12px 0}
.brand{display:flex; gap:10px; align-items:center; font-weight:900; letter-spacing:.2px}
.pill{font-size:12px; padding:4px 10px; border:1px solid var(--line); border-radius:999px; color:var(--muted); background: rgba(2,6,23,.02)}
.nav{display:flex; flex-wrap:wrap; gap:10px; justify-content:flex-end}
.nav a{font-size:13px; color:var(--muted); padding:8px 10px; border-radius:999px; border:1px solid transparent}
.nav a:hover{border-color:var(--line); color:var(--text); background:rgba(2,6,23,.02)}

header{padding:26px 0 10px}
.hero{border:1px solid var(--line); border-radius:var(--radius); background: linear-gradient(180deg, rgba(2,6,23,.02), rgba(2,6,23,.01)); box-shadow: var(--shadow); overflow:hidden}
.hero-media{height:260px; background: url('https://www.cameroon-visa.com/img/cameroon-landmarks.jpg') center/cover no-repeat; border-bottom:1px solid var(--line)}
.hero-body{padding:18px}
.bcrumb{color:var(--muted); font-size:13px; margin:0 0 8px}
h1{margin:0 0 10px; font-size:34px; line-height:1.15}
.lead{margin:0; color:var(--muted); font-size:16px}

.cta-row{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}
.btn{display:inline-flex; align-items:center; justify-content:center; gap:8px; padding:10px 12px; border-radius:12px; border:1px solid var(--line); background: rgba(2,6,23,.02); color:var(--text); font-weight:900; font-size:14px}
.btn.primary{border-color: rgba(14,165,233,.35); background: linear-gradient(135deg, rgba(14,165,233,.16), rgba(34,197,94,.10))}
.btn:hover{transform: translateY(-1px)}

section{padding:18px 0}
.section-title{display:flex; justify-content:space-between; align-items:flex-end; gap:12px; margin:0 0 12px}
.section-title h2{margin:0; font-size:22px}
.section-title p{margin:0; color:var(--muted); font-size:13px}

.two-col{display:grid; grid-template-columns: 1fr 1fr; gap:14px}
.panel{border:1px solid var(--line); border-radius:var(--radius); background: rgba(2,6,23,.015); padding:14px}
.panel h3{margin:0 0 8px; font-size:16px}
.panel p{margin:0 0 10px; color:var(--muted)}
.panel ul{margin:0; padding-left:18px; color:var(--muted)}
.panel li{margin:6px 0}

.cards{display:grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap:14px}
.card{border:1px solid var(--line); border-radius:var(--radius); background: rgba(2,6,23,.015); padding:14px}
.card h3{margin:0 0 6px; font-size:16px}
.card p{margin:0 0 10px; color:var(--muted); font-size:13px}
.meta{display:flex; gap:8px; flex-wrap:wrap; margin-top:10px; color:var(--muted); font-size:12px}
.chip{padding:4px 8px; border:1px solid var(--line); border-radius:999px; background: rgba(2,6,23,.015)}
.card a.link{display:flex; justify-content:space-between; align-items:center; margin-top:10px; padding:10px 12px; border:1px solid var(--line); border-radius:12px; background: rgba(255,255,255,.70); font-weight:900; font-size:13px}
.tag{font-size:12px; color:var(--muted); font-weight:800}

table{width:100%; border-collapse:separate; border-spacing:0; overflow:hidden; border-radius:14px; border:1px solid var(--line); background:#fff}
th,td{padding:12px 10px; border-bottom:1px solid var(--line); vertical-align:top}
th{font-size:13px; text-transform:uppercase; letter-spacing:.08em; color:var(--muted); background: rgba(2,6,23,.02)}
td{color:var(--text); font-size:14px}
tr:last-child td{border-bottom:none}
.note{font-size:13px; color:var(--muted); margin-top:10px}

.faq details{border:1px solid var(--line); border-radius:14px; background: rgba(2,6,23,.015); padding:12px; margin:10px 0}
.faq summary{cursor:pointer; font-weight:900}
.faq p{color:var(--muted); margin:8px 0 0}

footer{margin-top:18px; padding:22px 0; border-top:1px solid var(--line); color:var(--muted); background: rgba(2,6,23,.02)}
.footer-links{display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:10px; margin-top:12px}
.footer-links a{display:flex; align-items:center; justify-content:space-between; padding:10px 12px; border:1px solid var(--line); border-radius:12px; background: rgba(255,255,255,.8); color:var(--text); font-weight:900; font-size:13px}

@media (max-width: 980px){.two-col{grid-template-columns:1fr} .cards{grid-template-columns:1fr} h1{font-size:28px} .footer-links{grid-template-columns:1fr}}
