/* ===========================
   BIASHARA KIGANJANI — DESIGN SYSTEM
   =========================== */

:root {
  --navy: #0B1426;
  --navy-mid: #1A2740;
  --navy-light: #243352;
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-dark: #A0842E;
  --cream: #F9F6F0;
  --cream-dark: #EDE8DF;
  --white: #FFFFFF;
  --text: #1A1A2E;
  --text-light: #666B7A;
  --border: #E2D9C8;
  --green: #27AE60;
  --red: #E74C3C;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.15);
  --transition: all 0.3s ease;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.gold-text { color: var(--gold); }
.white { color: var(--white) !important; }
.light { color: rgba(255,255,255,0.75) !important; }
.hidden { display: none !important; }
.mt-2 { margin-top: 2rem; }
.w-full { width: 100%; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 50px; font-weight: 600;
  font-size: 15px; cursor: pointer; border: 2px solid transparent;
  transition: var(--transition); white-space: nowrap;
}
.btn-gold { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.4); }
.btn-outline-gold { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); }
.btn-outline-dark { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--navy); }
.btn-lg { padding: 16px 32px; font-size: 16px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(11,20,38,0.95); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.3); }
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 72px; display: flex; align-items: center; gap: 32px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 44px; height: 44px; background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 16px; color: var(--navy);
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; }
.logo-main { font-weight: 700; font-size: 16px; color: var(--white); line-height: 1; }
.logo-sub { font-size: 11px; color: var(--gold); letter-spacing: 0.5px; }
.nav-links {
  display: flex; list-style: none; gap: 4px; margin-left: auto;
}
.nav-links a {
  color: rgba(255,255,255,0.75); font-size: 14px; font-weight: 500;
  padding: 8px 14px; border-radius: 8px; transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); background: rgba(201,168,76,0.1); }
.nav-actions { display: flex; gap: 10px; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* ===== SECTIONS ===== */
.section { padding: 100px 0; position: relative; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-badge {
  display: inline-block; padding: 6px 18px; border-radius: 50px;
  background: rgba(201,168,76,0.12); color: var(--gold); font-size: 13px;
  font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  border: 1px solid rgba(201,168,76,0.3); margin-bottom: 16px;
}
.section-badge.gold { background: rgba(201,168,76,0.2); }
.section-title {
  font-family: 'Playfair Display', serif; font-size: clamp(32px, 4vw, 52px);
  line-height: 1.15; margin-bottom: 16px; color: var(--text);
}
.section-title.white { color: var(--white); }
.section-desc { font-size: 18px; color: var(--text-light); max-width: 600px; margin: 0 auto; }
.section-desc.light { color: rgba(255,255,255,0.7); }

/* ===== HERO ===== */
.hero {
  background: var(--navy); min-height: 100vh;
  display: flex; align-items: center; position: relative; overflow: hidden;
  padding-top: 72px;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.25;
}
.hero-orb-1 { width: 600px; height: 600px; background: var(--gold); top: -200px; right: -100px; }
.hero-orb-2 { width: 400px; height: 400px; background: #1E5FA0; bottom: -100px; left: -50px; }
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-container {
  max-width: 1200px; margin: 0 auto; padding: 80px 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.3);
  padding: 8px 16px; border-radius: 50px; font-size: 13px; color: var(--gold);
  font-weight: 600; margin-bottom: 24px;
}
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }

.hero-title {
  font-family: 'Playfair Display', serif; font-size: clamp(48px, 6vw, 80px);
  color: var(--white); line-height: 1.1; margin-bottom: 24px;
}
.hero-subtitle { font-size: 18px; color: rgba(255,255,255,0.75); margin-bottom: 40px; line-height: 1.7; max-width: 520px; }

.hero-search { margin-bottom: 40px; }
.search-box {
  display: flex; align-items: center;
  background: var(--white); border-radius: 50px; overflow: hidden;
  padding: 6px 6px 6px 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}
.search-icon-left { font-size: 18px; margin-right: 12px; flex-shrink: 0; }
.search-box input {
  flex: 1; border: none; outline: none; font-size: 15px; color: var(--text);
  background: transparent;
}
.search-btn {
  background: var(--gold); color: var(--navy); border: none; padding: 14px 24px;
  border-radius: 50px; font-weight: 700; font-size: 15px; cursor: pointer;
  transition: var(--transition); white-space: nowrap;
}
.search-btn:hover { background: var(--gold-light); }
.search-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.search-tags span {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8); padding: 6px 14px; border-radius: 50px;
  font-size: 13px; cursor: pointer; transition: var(--transition);
}
.search-tags span:hover { background: rgba(201,168,76,0.2); border-color: var(--gold); color: var(--gold); }

.hero-stats { display: flex; gap: 32px; align-items: center; }
.stat-item { text-align: center; }
.stat-num { font-size: 36px; font-weight: 800; color: var(--gold); }
.stat-suffix { font-size: 20px; font-weight: 700; color: var(--gold); }
.stat-label { display: block; font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 2px; }
.stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.15); }

/* Phone Mockup */
.hero-visual { position: relative; display: flex; justify-content: center; }
.phone-mockup { position: relative; }
.phone-frame {
  width: 280px; background: #101928; border-radius: 40px;
  border: 6px solid #2A3A54; overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  margin: 0 auto;
}
.phone-screen { padding: 20px 16px; background: #0F1A2E; min-height: 500px; }
.phone-header { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; color: var(--white); font-size: 13px; font-weight: 600; }
.phone-logo-sm { width: 28px; height: 28px; background: var(--gold); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 10px; color: var(--navy); }
.phone-header i { margin-left: auto; color: var(--gold); }
.phone-search-bar {
  background: #1A2740; border-radius: 12px; padding: 10px 14px;
  display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.5);
  font-size: 12px; margin-bottom: 16px;
}
.phone-search-bar i:last-child { margin-left: auto; }
.phone-categories { display: flex; gap: 8px; margin-bottom: 16px; }
.phone-cat {
  flex: 1; background: #1A2740; border-radius: 10px; padding: 8px 4px;
  text-align: center; color: rgba(255,255,255,0.6); font-size: 9px;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  cursor: pointer; transition: var(--transition);
}
.phone-cat.active { background: rgba(201,168,76,0.2); color: var(--gold); }
.phone-cat i { font-size: 16px; }
.phone-card {
  background: #1A2740; border-radius: 12px; overflow: hidden; margin-bottom: 12px; position: relative;
}
.phone-card-img { height: 80px; }
.food-bg { background: linear-gradient(135deg, #FF6B35, #FF8C42); }
.salon-bg { background: linear-gradient(135deg, #E91E63, #9C27B0); }
.phone-card-info { padding: 10px 12px; }
.phone-card-name { color: var(--white); font-size: 12px; font-weight: 700; margin-bottom: 4px; }
.phone-card-meta { color: rgba(255,255,255,0.6); font-size: 10px; margin-bottom: 6px; }
.phone-card-tags { display: flex; gap: 4px; }
.phone-card-tags span { background: rgba(201,168,76,0.2); color: var(--gold); font-size: 9px; padding: 2px 6px; border-radius: 4px; }
.phone-verified { position: absolute; top: 8px; right: 8px; background: rgba(39,174,96,0.9); color: var(--white); font-size: 9px; padding: 3px 6px; border-radius: 6px; }
.phone-ai-chip { background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3); border-radius: 12px; padding: 10px 12px; display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.8); font-size: 11px; margin-top: 8px; }
.phone-glow { position: absolute; bottom: -60px; left: 50%; transform: translateX(-50%); width: 200px; height: 100px; background: var(--gold); filter: blur(40px); opacity: 0.2; border-radius: 50%; }

.floating-card {
  position: absolute; background: var(--white); border-radius: 14px;
  padding: 12px 16px; display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15); font-size: 12px;
  animation: float 4s ease-in-out infinite;
}
.floating-card i { font-size: 20px; }
.fc-title { font-weight: 700; color: var(--text); font-size: 12px; }
.fc-sub { color: var(--text-light); font-size: 11px; }
.fc-1 { top: 40px; left: -40px; animation-delay: 0s; }
.fc-2 { bottom: 120px; left: -50px; animation-delay: 1.5s; }
.fc-3 { top: 180px; right: -40px; animation-delay: 0.8s; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }

.hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; }
.hero-wave svg { width: 100%; height: 80px; display: block; }

/* ===== TRUSTED BY ===== */
.trusted-by { background: var(--cream); padding: 48px 0; }
.trusted-label { text-align: center; font-size: 13px; color: var(--text-light); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 24px; }
.trusted-logos { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.trust-item {
  display: flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--border);
  padding: 10px 20px; border-radius: 50px; font-size: 14px; font-weight: 600; color: var(--text-light);
  transition: var(--transition);
}
.trust-item:hover { border-color: var(--gold); color: var(--gold); }
.trust-item i { color: var(--gold); }

/* ===== PROBLEM ===== */
.problem-section { background: var(--white); }
.problem-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 40px; }
.problem-card {
  background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 24px; text-align: center; transition: var(--transition);
}
.problem-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.problem-icon { font-size: 40px; margin-bottom: 16px; color: var(--text-light); }
.problem-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.problem-card p { font-size: 14px; color: var(--text-light); margin-bottom: 16px; }
.problem-badge {
  display: inline-block; padding: 4px 12px; border-radius: 50px; font-size: 12px; font-weight: 700;
}
.problem-badge.red { background: rgba(231,76,60,0.1); color: var(--red); }
.problem-result {
  background: linear-gradient(135deg, #FFF5E6, #FFF0D6);
  border: 1px solid rgba(201,168,76,0.3); border-radius: var(--radius);
  padding: 24px 32px; display: flex; align-items: center; gap: 16px;
}
.pr-icon { font-size: 24px; color: var(--gold); flex-shrink: 0; }
.pr-text { font-size: 16px; color: var(--text); }

/* ===== SOLUTION ===== */
.solution-section { background: var(--navy); overflow: hidden; }
.solution-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.05) 0%, transparent 70%); pointer-events: none; }
.solution-demo { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

/* Chat Demo */
.chat-demo {
  background: #131F35; border: 1px solid rgba(201,168,76,0.2); border-radius: 20px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.chat-header { padding: 16px 20px; background: #1A2740; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.chat-avatar { width: 40px; height: 40px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--navy); font-size: 18px; }
.chat-name { color: var(--white); font-weight: 700; font-size: 14px; }
.chat-status { color: rgba(255,255,255,0.5); font-size: 12px; display: flex; align-items: center; gap: 4px; }
.online-dot { width: 6px; height: 6px; border-radius: 50%; background: #4CAF50; }
.chat-messages { padding: 20px; min-height: 280px; display: flex; flex-direction: column; gap: 12px; }
.msg { display: flex; }
.msg.user { justify-content: flex-end; }
.msg-bubble { max-width: 85%; padding: 12px 16px; border-radius: 16px; font-size: 14px; line-height: 1.6; }
.msg.bot .msg-bubble { background: #1A2740; color: rgba(255,255,255,0.9); border-radius: 4px 16px 16px 16px; }
.msg.user .msg-bubble { background: var(--gold); color: var(--navy); border-radius: 16px 4px 16px 16px; font-weight: 500; }
.chat-results { margin-top: 10px; display: flex; flex-direction: column; gap: 6px; }
.chat-result { background: rgba(255,255,255,0.06); padding: 8px 10px; border-radius: 8px; font-size: 12px; }
.chat-cta { display: inline-block; margin-top: 12px; background: var(--gold); color: var(--navy); padding: 8px 16px; border-radius: 50px; font-size: 12px; font-weight: 700; border: none; cursor: pointer; }
.chat-input-row { padding: 12px 16px; background: #1A2740; border-top: 1px solid rgba(255,255,255,0.06); display: flex; gap: 10px; }
.chat-input-row input { flex: 1; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1); border-radius: 50px; padding: 10px 16px; color: var(--white); font-size: 13px; outline: none; }
.chat-input-row button { background: var(--gold); border: none; border-radius: 50%; width: 40px; height: 40px; color: var(--navy); cursor: pointer; font-size: 14px; }

.solution-features { display: flex; flex-direction: column; gap: 24px; }
.sol-feature { display: flex; align-items: flex-start; gap: 16px; }
.sol-icon { width: 48px; height: 48px; background: rgba(201,168,76,0.12); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 20px; flex-shrink: 0; }
.sol-text h3 { color: var(--white); font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.sol-text p { color: rgba(255,255,255,0.6); font-size: 14px; }

/* ===== CATEGORIES ===== */
.categories-section { background: var(--cream); }
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cat-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 20px; display: flex; flex-direction: column; gap: 8px;
  transition: var(--transition); position: relative; overflow: hidden;
  cursor: pointer;
}
.cat-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--cat-color, var(--gold)); border-radius: 4px 0 0 4px;
  transition: var(--transition);
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.cat-card:hover::before { width: 100%; opacity: 0.05; }
.cat-icon-wrap {
  width: 52px; height: 52px; background: var(--cat-color, var(--gold));
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--white); margin-bottom: 4px;
}
.cat-card.cat-all .cat-icon-wrap { background: var(--navy); }
.cat-name { font-weight: 700; font-size: 16px; color: var(--text); }
.cat-count { font-size: 13px; color: var(--text-light); }
.cat-arrow { position: absolute; top: 24px; right: 20px; color: var(--text-light); font-size: 12px; opacity: 0; transition: var(--transition); }
.cat-card:hover .cat-arrow { opacity: 1; color: var(--cat-color, var(--gold)); }

/* ===== HOW IT WORKS ===== */
.hiw-section { background: var(--white); }
.hiw-tabs { display: flex; gap: 8px; justify-content: center; margin-bottom: 48px; }
.hiw-tab {
  padding: 12px 28px; border-radius: 50px; border: 2px solid var(--border);
  background: transparent; font-size: 15px; font-weight: 600; cursor: pointer;
  transition: var(--transition); color: var(--text-light);
}
.hiw-tab.active { background: var(--navy); color: var(--gold); border-color: var(--navy); }
.hiw-steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; align-items: center; gap: 0; }
.hiw-step { text-align: center; padding: 0 16px; }
.step-num { font-size: 13px; font-weight: 800; color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; }
.step-icon { width: 80px; height: 80px; background: linear-gradient(135deg, var(--navy), var(--navy-light)); border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 28px; color: var(--gold); margin: 0 auto 16px; }
.hiw-step h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.hiw-step p { font-size: 14px; color: var(--text-light); line-height: 1.6; }
.hiw-arrow { color: var(--gold); font-size: 20px; opacity: 0.4; }

/* ===== AI SECTION ===== */
.ai-section { background: var(--navy-mid); overflow: hidden; }
.ai-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.08), transparent 60%); pointer-events: none; }
.ai-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.ai-features-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.ai-feat { display: flex; align-items: flex-start; gap: 14px; }
.ai-feat-icon { width: 40px; height: 40px; background: rgba(201,168,76,0.12); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 16px; flex-shrink: 0; }
.ai-feat-title { color: var(--white); font-weight: 700; font-size: 15px; margin-bottom: 2px; }
.ai-feat-desc { color: rgba(255,255,255,0.6); font-size: 13px; }

.ai-card-stack { position: relative; height: 420px; }
.ai-card {
  background: #1A2740; border: 1px solid rgba(201,168,76,0.2); border-radius: 16px;
  padding: 20px; position: absolute; transition: var(--transition);
}
.ai-card:hover { transform: translateY(-4px); }
.ai-card { top: 0; left: 0; right: 0; }
.ai-card-2 { top: 140px; left: 20px; right: 0; }
.ai-card-3 { top: 270px; left: 0; right: 20px; }
.ai-card-header { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.ai-card-header span:first-of-type { color: var(--white); font-weight: 700; font-size: 14px; }
.ai-live { margin-left: auto; color: #4CAF50; font-size: 11px; font-weight: 700; }
.ai-card p { color: rgba(255,255,255,0.75); font-size: 13px; line-height: 1.6; margin-bottom: 12px; }
.ai-match-bar { height: 6px; background: rgba(255,255,255,0.1); border-radius: 3px; overflow: hidden; margin-bottom: 6px; }
.ai-match-fill { height: 100%; background: linear-gradient(90deg, var(--gold-dark), var(--gold-light)); border-radius: 3px; }
.ai-match-label { color: var(--gold); font-size: 13px; font-weight: 700; }
.mini-chart { display: flex; align-items: flex-end; gap: 6px; height: 60px; margin-bottom: 8px; }
.mc-bar { flex: 1; background: rgba(201,168,76,0.2); border-radius: 4px 4px 0 0; position: relative; }
.mc-bar.active { background: var(--gold); }
.mc-bar span { position: absolute; bottom: -18px; left: 50%; transform: translateX(-50%); font-size: 9px; color: rgba(255,255,255,0.4); white-space: nowrap; }
.ai-card-footer { color: rgba(255,255,255,0.6); font-size: 12px; margin-top: 20px; }
.near-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.75); font-size: 13px; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.near-item:last-child { border: none; }
.near-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

/* ===== BUSINESS CTA ===== */
.biz-cta-section { background: var(--cream); }
.biz-cta-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.biz-cta-card {
  background: var(--white); border: 2px solid var(--border); border-radius: 20px;
  padding: 36px 28px; position: relative; transition: var(--transition);
}
.biz-cta-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.biz-cta-card.pro { border-color: var(--gold); background: linear-gradient(135deg, #FFFBF0, var(--white)); }
.biz-plan-badge {
  display: inline-block; padding: 4px 14px; border-radius: 50px; font-size: 12px; font-weight: 700;
  margin-bottom: 20px;
}
.biz-plan-badge.gold { background: var(--gold); color: var(--navy); }
.biz-plan-badge { background: var(--cream-dark); color: var(--text-light); }
.biz-plan-badge.dark { background: var(--navy); color: var(--white); }
.biz-plan-icon { font-size: 36px; margin-bottom: 12px; color: var(--navy); }
.biz-cta-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.biz-cta-card p { color: var(--text-light); font-size: 15px; margin-bottom: 24px; line-height: 1.7; }
.biz-plan-features { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.biz-plan-features li { font-size: 14px; color: var(--text); display: flex; align-items: center; gap: 10px; }
.biz-plan-features li i { color: var(--green); font-size: 12px; }

/* ===== FEATURED BUSINESSES ===== */
.featured-section { background: var(--white); }
.biz-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.biz-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: var(--transition); cursor: pointer;
}
.biz-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.biz-card-cover { height: 180px; position: relative; overflow: hidden; }
.biz-cover-img { width: 100%; height: 100%; object-fit: cover; }
.biz-cat-tag { position: absolute; top: 12px; left: 12px; background: rgba(0,0,0,0.6); color: var(--white); padding: 4px 10px; border-radius: 6px; font-size: 12px; font-weight: 600; }
.biz-verified-badge { position: absolute; top: 12px; right: 12px; background: rgba(39,174,96,0.9); color: var(--white); padding: 4px 10px; border-radius: 6px; font-size: 11px; display: flex; align-items: center; gap: 4px; }
.biz-logo { position: absolute; bottom: -20px; left: 16px; width: 48px; height: 48px; border-radius: 10px; border: 3px solid var(--white); display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 16px; color: var(--white); }
.biz-card-body { padding: 28px 16px 16px; }
.biz-card-name { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.biz-card-cat { font-size: 13px; color: var(--text-light); margin-bottom: 10px; }
.biz-card-rating { display: flex; align-items: center; gap: 6px; font-size: 13px; margin-bottom: 10px; }
.biz-card-rating .stars { color: var(--gold); font-size: 14px; }
.biz-card-rating .count { color: var(--text-light); }
.biz-card-meta { display: flex; gap: 12px; font-size: 12px; color: var(--text-light); margin-bottom: 14px; }
.biz-card-meta span { display: flex; align-items: center; gap: 4px; }
.biz-card-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 12px; border-top: 1px solid var(--border); }
.biz-open { color: var(--green); font-size: 13px; font-weight: 600; }
.biz-book-btn { background: var(--navy); color: var(--white); padding: 8px 16px; border-radius: 50px; font-size: 12px; font-weight: 600; border: none; cursor: pointer; transition: var(--transition); }
.biz-book-btn:hover { background: var(--gold); color: var(--navy); }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--cream); overflow: hidden; }
.testimonials-track { display: flex; gap: 24px; overflow-x: auto; padding-bottom: 12px; scroll-behavior: smooth; scrollbar-width: none; }
.testimonials-track::-webkit-scrollbar { display: none; }
.testi-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 20px;
  padding: 32px; min-width: 320px; flex-shrink: 0;
  transition: var(--transition);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold); }
.testi-stars { color: var(--gold); font-size: 18px; margin-bottom: 16px; }
.testi-card p { font-size: 15px; color: var(--text); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 16px; }
.testi-name { font-weight: 700; font-size: 15px; }
.testi-role { font-size: 13px; color: var(--text-light); }
.testi-controls { display: flex; gap: 12px; justify-content: center; margin-top: 32px; }
.testi-controls button { width: 48px; height: 48px; border-radius: 50%; border: 2px solid var(--border); background: var(--white); font-size: 16px; cursor: pointer; transition: var(--transition); }
.testi-controls button:hover { border-color: var(--gold); color: var(--gold); }

/* ===== EXPANSION ===== */
.expansion-section { background: var(--white); }
.exp-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.exp-phases { display: flex; flex-direction: column; gap: 0; }
.exp-phase { display: flex; align-items: flex-start; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.exp-phase:last-child { border: none; }
.exp-phase-dot { width: 14px; height: 14px; border-radius: 50%; border: 2px solid var(--border); flex-shrink: 0; margin-top: 4px; transition: var(--transition); }
.exp-phase.active .exp-phase-dot { background: var(--gold); border-color: var(--gold); box-shadow: 0 0 12px rgba(201,168,76,0.5); }
.exp-phase.upcoming .exp-phase-dot { background: transparent; border-color: var(--text-light); }
.exp-phase-info strong { display: block; font-size: 15px; color: var(--text); margin-bottom: 2px; }
.exp-phase-info span { font-size: 13px; color: var(--text-light); }

.africa-svg { width: 100%; max-width: 280px; margin: 0 auto; display: block; }
.continent { fill: var(--cream-dark); stroke: var(--border); stroke-width: 2; }
.city-dot { transition: var(--transition); }
.active-city { fill: var(--gold); filter: drop-shadow(0 0 6px rgba(201,168,76,0.6)); }
.upcoming-city { fill: var(--text-light); opacity: 0.5; }
.city-label { font-size: 9px; fill: var(--text); font-family: 'Inter', sans-serif; font-weight: 600; }
.upcoming-label { fill: var(--text-light); opacity: 0.7; }
.map-legend { display: flex; gap: 20px; justify-content: center; margin-top: 16px; }
.legend-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-light); }
.legend-dot { width: 10px; height: 10px; border-radius: 50%; }
.active-ld { background: var(--gold); }
.upcoming-ld { background: var(--text-light); opacity: 0.5; }
.africa-map-container { display: flex; flex-direction: column; }

/* ===== VISION ===== */
.vision-section { background: var(--navy); }
.vision-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(201,168,76,0.05) 0%, transparent 70%); pointer-events: none; }
.vision-products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; position: relative; z-index: 1; }
.vision-product {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 28px 24px; transition: var(--transition); position: relative;
}
.vision-product:hover { border-color: rgba(201,168,76,0.3); background: rgba(201,168,76,0.05); }
.vision-product.active { border-color: var(--gold); background: rgba(201,168,76,0.08); }
.vp-icon { font-size: 32px; color: rgba(255,255,255,0.3); margin-bottom: 14px; }
.vision-product.active .vp-icon { color: var(--gold); }
.vp-name { color: var(--white); font-weight: 700; font-size: 16px; margin-bottom: 4px; }
.vp-desc { color: rgba(255,255,255,0.5); font-size: 13px; margin-bottom: 14px; }
.vp-status { display: inline-block; padding: 4px 12px; border-radius: 50px; font-size: 11px; font-weight: 700; }
.vp-status.live { background: rgba(39,174,96,0.2); color: #4CAF50; border: 1px solid rgba(39,174,96,0.3); }
.vp-status.soon { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.4); }

/* ===== FINAL CTA ===== */
.final-cta { background: var(--cream); }
.fcta-card {
  background: var(--navy); border-radius: 24px; padding: 80px;
  text-align: center; position: relative; overflow: hidden;
}
.fcta-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(201,168,76,0.12) 0%, transparent 70%); }
.fcta-content { position: relative; z-index: 1; }
.fcta-card h2 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 48px); color: var(--white); margin-bottom: 16px; }
.fcta-card p { color: rgba(255,255,255,0.7); font-size: 18px; margin-bottom: 40px; }
.fcta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer { background: #070E1C; }
.footer-main { padding: 80px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr; gap: 48px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-tagline { color: rgba(255,255,255,0.5); font-size: 14px; line-height: 1.7; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a { width: 38px; height: 38px; background: rgba(255,255,255,0.06); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); font-size: 15px; transition: var(--transition); }
.footer-socials a:hover { background: var(--gold); color: var(--navy); }
.footer-col h4 { color: var(--white); font-size: 15px; font-weight: 700; margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.5); font-size: 14px; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.fc-item { display: flex; align-items: flex-start; gap: 10px; color: rgba(255,255,255,0.5); font-size: 14px; }
.newsletter p { color: rgba(255,255,255,0.5); font-size: 13px; margin-bottom: 10px; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input { flex: 1; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 10px 14px; color: var(--white); font-size: 13px; outline: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 24px 0; }
.footer-bottom-content { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(255,255,255,0.35); flex-wrap: wrap; gap: 8px; }

/* ===== DISCOVER PAGE ===== */
.page-hero {
  background: var(--navy); padding: 140px 0 60px;
  position: relative; overflow: hidden;
}
.page-hero::after { content:''; position:absolute; inset:0; background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.08), transparent 60%); pointer-events:none; }
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(36px,5vw,60px); color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 18px; margin-bottom: 32px; }
.discover-search { display: flex; gap: 12px; max-width: 700px; }
.discover-search input { flex:1; padding: 16px 24px; border-radius: 50px; border: none; font-size: 15px; outline: none; }
.discover-search select { padding: 16px 20px; border-radius: 50px; border: none; font-size: 15px; background: rgba(255,255,255,0.12); color: var(--white); outline: none; cursor: pointer; }
.discover-search select option { background: var(--navy); color: var(--white); }

/* Discover hero (compact, AI search) */
.dsc-hero { background: var(--navy); position: relative; overflow: hidden; padding: 104px 0 30px; }
.dsc-hero::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 78% 25%, rgba(201,168,76,0.12), transparent 60%); pointer-events: none; }
.dsc-hero-inner { position: relative; z-index: 1; }
.dsc-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 46px); color: var(--white); line-height: 1.12; margin-bottom: 8px; }
.dsc-hero p { color: rgba(255,255,255,0.7); font-size: 16px; margin-bottom: 22px; max-width: 580px; }
.dsc-searchbar { display: flex; align-items: center; gap: 8px; background: var(--white); border-radius: 50px; padding: 7px 8px 7px 20px; box-shadow: 0 14px 44px rgba(0,0,0,0.32); max-width: 760px; }
.dsc-searchbar .mic { color: var(--gold); font-size: 18px; flex-shrink: 0; }
.dsc-searchbar input { flex: 1; border: none; outline: none; font-size: 15px; font-family: inherit; color: var(--text); background: none; min-width: 0; }
.dsc-searchbar input::placeholder { color: #b8b3a8; }
.dsc-sb-divider { width: 1px; height: 24px; background: var(--border); flex-shrink: 0; }
.dsc-loc { display: flex; align-items: center; gap: 6px; color: var(--navy); font-weight: 700; font-size: 13px; white-space: nowrap; cursor: pointer; padding: 0 8px; transition: var(--transition); }
.dsc-loc:hover { color: var(--gold-dark); }
.dsc-loc i { color: var(--gold); }
.dsc-search-btn { background: var(--navy); color: var(--gold); border: none; border-radius: 50px; padding: 12px 24px; font-weight: 800; font-size: 14px; cursor: pointer; display: flex; align-items: center; gap: 8px; white-space: nowrap; font-family: inherit; transition: var(--transition); }
.dsc-search-btn:hover { background: var(--navy-light); }
.dsc-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; align-items: center; }
.dsc-tags .lbl { color: rgba(255,255,255,0.4); font-size: 12px; font-weight: 600; margin-right: 2px; }
.dsc-tags span.tag { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.8); padding: 6px 14px; border-radius: 50px; font-size: 13px; cursor: pointer; transition: var(--transition); }
.dsc-tags span.tag:hover { background: rgba(201,168,76,0.2); border-color: var(--gold); color: var(--gold); }

/* Sticky filter + sort bar */
.dsc-filter { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 72px; z-index: 90; box-shadow: 0 2px 14px rgba(0,0,0,0.04); }
.dsc-filter-inner { display: flex; align-items: center; gap: 16px; padding: 12px 0; }
.dsc-chips { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; flex: 1; }
.dsc-chips::-webkit-scrollbar { display: none; }
.dsc-chip { display: flex; align-items: center; gap: 7px; padding: 8px 16px; border-radius: 50px; border: 1.5px solid var(--border); background: var(--white); font-size: 13px; font-weight: 600; color: var(--text); cursor: pointer; white-space: nowrap; transition: var(--transition); }
.dsc-chip .cdot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; background: var(--gold); }
.dsc-chip:hover { border-color: var(--gold); }
.dsc-chip.active { background: var(--navy); color: var(--gold); border-color: var(--navy); }
.dsc-sort { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.dsc-sort select { padding: 8px 14px; border: 1.5px solid var(--border); border-radius: 50px; font-size: 13px; font-weight: 600; background: var(--white); color: var(--text); outline: none; cursor: pointer; font-family: inherit; }

/* Layout: results + map */
.dsc-layout { display: grid; grid-template-columns: 1fr 440px; gap: 28px; padding: 26px 0 64px; align-items: start; }
.dsc-results-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; flex-wrap: wrap; gap: 10px; }
.dsc-count { font-size: 16px; font-weight: 800; color: var(--text); }
.dsc-count small { display: block; color: var(--text-light); font-weight: 500; font-size: 13px; margin-top: 2px; }
.dsc-ai-insight { display: flex; align-items: center; gap: 12px; background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(201,168,76,0.03)); border: 1px solid rgba(201,168,76,0.3); border-radius: 14px; padding: 14px 18px; margin-bottom: 20px; }
.dsc-ai-insight i { color: var(--gold); font-size: 18px; flex-shrink: 0; }
.dsc-ai-insight p { font-size: 14px; color: var(--text); margin: 0; line-height: 1.5; }
.dsc-ai-insight strong { color: var(--navy); }
.dsc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

/* Provider/business card */
.dsc-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; cursor: pointer; transition: var(--transition); position: relative; }
.dsc-card:hover, .dsc-card.hl { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.dsc-card-cover { height: 84px; position: relative; }
.dsc-card-ava { position: absolute; bottom: -20px; left: 16px; width: 52px; height: 52px; border-radius: 14px; border: 3px solid var(--white); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 18px; color: var(--white); box-shadow: 0 4px 14px rgba(0,0,0,0.2); }
.dsc-card-status { position: absolute; top: 10px; right: 10px; font-size: 10px; font-weight: 800; padding: 3px 9px; border-radius: 6px; }
.dsc-card-status.on { background: rgba(39,174,96,0.92); color: #fff; }
.dsc-card-status.off { background: rgba(0,0,0,0.5); color: #eee; }
.dsc-card-verified { position: absolute; top: 10px; left: 10px; background: rgba(255,255,255,0.92); color: var(--green); font-size: 10px; font-weight: 800; padding: 3px 8px; border-radius: 6px; display: flex; align-items: center; gap: 4px; }
.dsc-card-body { padding: 28px 16px 16px; }
.dsc-card-name { font-size: 15px; font-weight: 800; color: var(--text); margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dsc-card-svc { font-size: 12.5px; color: var(--text-light); margin-bottom: 10px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dsc-card-meta { display: flex; align-items: center; gap: 12px; font-size: 12.5px; margin-bottom: 14px; flex-wrap: wrap; }
.dsc-card-meta .star { color: var(--gold); font-weight: 700; }
.dsc-card-meta .muted { color: var(--text-light); }
.dsc-card-foot { display: flex; gap: 8px; }
.dsc-card-foot button { flex: 1; padding: 9px; border-radius: 10px; border: none; font-size: 12.5px; font-weight: 700; cursor: pointer; transition: var(--transition); font-family: inherit; }
.dsc-btn-call { background: var(--cream); color: var(--text); border: 1px solid var(--border) !important; }
.dsc-btn-call:hover { background: var(--cream-dark); }
.dsc-btn-book { background: var(--navy); color: var(--gold); }
.dsc-btn-book:hover { background: var(--navy-light); }

/* Map */
.dsc-map-wrap { position: sticky; top: 140px; }
#dscMap { height: calc(100vh - 168px); min-height: 520px; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow); overflow: hidden; }
.dsc-map-toggle { display: none; }

/* Empty state */
.dsc-empty { grid-column: 1 / -1; text-align: center; padding: 60px 24px; }
.dsc-empty i { font-size: 42px; color: var(--cream-dark); margin-bottom: 14px; }
.dsc-empty h3 { font-size: 18px; font-weight: 800; margin-bottom: 6px; }
.dsc-empty p { color: var(--text-light); font-size: 14px; margin-bottom: 18px; }

/* Leaflet pins + popup (re-skinned) */
.pin-wrap { position: relative; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.pin-body { width: 34px; height: 34px; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); display: flex; align-items: center; justify-content: center; border: 2.5px solid #fff; box-shadow: 0 4px 14px rgba(0,0,0,0.35); transition: transform 0.2s; }
.pin-body:hover, .pin-body.active { transform: rotate(-45deg) scale(1.25); }
.pin-body i { transform: rotate(45deg); font-size: 13px; color: #fff; }
.pin-pulse { position: absolute; width: 50px; height: 50px; border-radius: 50%; top: -8px; left: -8px; pointer-events: none; animation: pinpulse 2.4s ease-out infinite; }
@keyframes pinpulse { 0% { transform: scale(.35); opacity: .6; } 100% { transform: scale(1.9); opacity: 0; } }
.leaflet-popup-content-wrapper { border-radius: 16px !important; padding: 0 !important; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.25) !important; }
.leaflet-popup-content { margin: 0 !important; width: 250px !important; }
.leaflet-popup-tip-container { display: none !important; }
.leaflet-popup-close-button { color: rgba(255,255,255,0.9) !important; font-size: 20px !important; top: 8px !important; right: 10px !important; }
.dsc-pop-hero { height: 66px; position: relative; }
.dsc-pop-ava { width: 44px; height: 44px; border-radius: 12px; border: 2px solid #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; color: #fff; position: absolute; bottom: -18px; left: 14px; }
.dsc-pop-body { padding: 26px 14px 14px; font-family: 'Inter', sans-serif; }
.dsc-pop-name { font-weight: 800; font-size: 15px; color: var(--text); }
.dsc-pop-svc { font-size: 12px; color: var(--text-light); margin-bottom: 8px; }
.dsc-pop-meta { font-size: 12px; color: var(--text-light); margin-bottom: 12px; }
.dsc-pop-meta .star { color: var(--gold); font-weight: 700; }
.dsc-pop-actions { display: flex; gap: 8px; }
.dsc-pop-actions button { flex: 1; padding: 9px; border-radius: 9px; border: none; font-size: 12px; font-weight: 700; cursor: pointer; font-family: inherit; }

@media (max-width: 1024px) {
  .dsc-layout { grid-template-columns: 1fr; }
  .dsc-map-wrap { position: fixed; left: 0; right: 0; bottom: 0; top: auto; z-index: 80; transform: translateY(100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1); background: var(--white); padding: 12px; box-shadow: 0 -8px 32px rgba(0,0,0,0.2); border-radius: 20px 20px 0 0; }
  .dsc-map-wrap.show { transform: translateY(0); }
  #dscMap { height: 64vh; min-height: 0; }
  .dsc-map-toggle { display: flex; position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 81; background: var(--navy); color: #fff; border: none; border-radius: 50px; padding: 13px 24px; font-size: 14px; font-weight: 700; cursor: pointer; align-items: center; gap: 8px; box-shadow: 0 8px 32px rgba(11,20,38,0.45); font-family: inherit; }
  .dsc-map-toggle i { color: var(--gold); }
}
@media (max-width: 560px) {
  .dsc-grid { grid-template-columns: 1fr; }
  .dsc-searchbar { flex-wrap: wrap; border-radius: 18px; padding: 12px; }
  .dsc-sb-divider { display: none; }
  .dsc-search-btn { width: 100%; justify-content: center; }
}

/* ===== BUSINESS DETAIL ===== */
.biz-detail-hero { background: var(--navy); padding: 140px 0 0; }
.biz-detail-cover { height: 300px; background: linear-gradient(135deg, #1A2740, #243352); margin-top: 24px; border-radius: 16px 16px 0 0; overflow: hidden; position: relative; }
.biz-detail-cover-img { width:100%; height:100%; object-fit:cover; }
.biz-detail-body { background: var(--white); }
.biz-detail-header { display: flex; align-items: flex-end; gap: 24px; padding: 0 0 32px; position: relative; }
.biz-detail-logo { width: 100px; height: 100px; border-radius: 20px; border: 4px solid var(--white); margin-top: -50px; display: flex; align-items: center; justify-content: center; font-size: 36px; color: var(--white); font-weight: 900; flex-shrink: 0; }
.biz-detail-info h1 { font-size: 32px; font-weight: 800; margin-bottom: 6px; }
.biz-detail-actions { margin-left: auto; display: flex; gap: 10px; }

/* ===== FOR BUSINESSES PAGE ===== */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px; transition: var(--transition);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold); }
.feature-card-icon { width: 60px; height: 60px; background: linear-gradient(135deg, var(--navy), var(--navy-light)); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--gold); margin-bottom: 20px; }
.feature-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.feature-card p { color: var(--text-light); font-size: 15px; line-height: 1.7; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pricing-card {
  background: var(--white); border: 2px solid var(--border); border-radius: 20px;
  padding: 40px 32px; position: relative; transition: var(--transition);
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pricing-card.popular { border-color: var(--gold); }
.pricing-popular-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--navy); padding: 6px 20px; border-radius: 50px; font-size: 12px; font-weight: 800; white-space: nowrap; }
.pricing-name { font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text-light); margin-bottom: 8px; }
.pricing-price { font-size: 48px; font-weight: 900; color: var(--text); line-height: 1; margin-bottom: 4px; }
.pricing-price span { font-size: 20px; font-weight: 400; color: var(--text-light); }
.pricing-period { font-size: 14px; color: var(--text-light); margin-bottom: 24px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pricing-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.pricing-features li i { color: var(--green); width: 16px; }

/* ===== ABOUT PAGE ===== */
.about-mission { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.mission-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(30px,4vw,48px); margin-bottom: 20px; }
.mission-text p { color: var(--text-light); font-size: 16px; line-height: 1.8; margin-bottom: 16px; }
.mission-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px; }
.mstat { text-align: center; padding: 24px; background: var(--cream); border-radius: 12px; }
.mstat-num { font-size: 36px; font-weight: 900; color: var(--gold); }
.mstat-label { font-size: 13px; color: var(--text-light); }
.mission-visual { background: linear-gradient(135deg, var(--navy), var(--navy-light)); border-radius: 20px; padding: 48px; }
.mv-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.mv-icon { width: 44px; height: 44px; background: rgba(201,168,76,0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 18px; flex-shrink: 0; }
.mv-title { color: var(--white); font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.mv-desc { color: rgba(255,255,255,0.6); font-size: 13px; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; text-align: center; }
.value-icon { font-size: 36px; color: var(--gold); margin-bottom: 16px; }
.value-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.value-card p { color: var(--text-light); font-size: 14px; line-height: 1.6; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; }
.contact-info h2 { font-size: 32px; font-weight: 800; margin-bottom: 16px; }
.contact-info p { color: var(--text-light); font-size: 16px; margin-bottom: 32px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-item-icon { width: 48px; height: 48px; background: rgba(201,168,76,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 18px; flex-shrink: 0; }
.contact-item-title { font-weight: 700; margin-bottom: 2px; }
.contact-item-val { color: var(--text-light); font-size: 14px; }
.contact-form { background: var(--white); border: 1px solid var(--border); border-radius: 20px; padding: 40px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 18px; border: 1.5px solid var(--border); border-radius: 10px;
  font-size: 15px; outline: none; transition: var(--transition); font-family: inherit; color: var(--text);
  background: var(--cream);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ===== REGISTER BUSINESS ===== */
.reg-form { background: var(--white); border: 1px solid var(--border); border-radius: 20px; padding: 48px; max-width: 800px; margin: 0 auto; }
.reg-steps { display: flex; align-items: center; margin-bottom: 40px; }
.reg-step { display: flex; align-items: center; gap: 8px; }
.reg-step-num { width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; color: var(--text-light); }
.reg-step.active .reg-step-num { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.reg-step.done .reg-step-num { background: var(--green); border-color: var(--green); color: var(--white); }
.reg-step-label { font-size: 13px; font-weight: 600; color: var(--text-light); }
.reg-step.active .reg-step-label { color: var(--text); }
.reg-step-line { flex: 1; height: 2px; background: var(--border); margin: 0 12px; }
.reg-step.done + .reg-step-line { background: var(--green); }

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-subtitle, .hero-search { max-width: 100%; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .solution-demo { grid-template-columns: 1fr; }
  .ai-split { grid-template-columns: 1fr; }
  .ai-visual { display: none; }
  .about-mission { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--navy); padding: 20px; gap: 4px; }
  .problem-grid { grid-template-columns: 1fr 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .hiw-steps { grid-template-columns: 1fr; gap: 24px; }
  .hiw-arrow { transform: rotate(90deg); justify-self: center; }
  .biz-cta-grid { grid-template-columns: 1fr; }
  .biz-grid { grid-template-columns: 1fr; }
  .features-grid, .pricing-grid, .values-grid { grid-template-columns: 1fr; }
  .vision-products { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .fcta-card { padding: 48px 24px; }
  .exp-split { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
}
@media (max-width: 480px) {
  .problem-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat-divider { display: none; }
}
