/* ============================================================
   360LeadKart - Complete Design System
   Font: Plus Jakarta Sans + Syne
   Theme: Professional Navy/Blue with AI accents
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800;900&family=Syne:wght@700;800&display=swap');

:root {
  --blue: #1a56db;
  --blue2: #1648c0;
  --blue3: #1e40af;
  --blue-light: #eff6ff;
  --blue-mid: #dbeafe;
  --navy: #0c1445;
  --navy2: #060d1f;
  --green: #16a34a;
  --green-light: #dcfce7;
  --gold: #f59e0b;
  --orange: #f97316;
  --red: #dc2626;
  --purple: #7c3aed;
  --teal: #0891b2;
  --ai-color: #6366f1;

  --text: #0f172a;
  --text2: #1e293b;
  --text3: #374151;
  --muted: #6b7280;
  --light: #9ca3af;
  --border: #e2e8f0;
  --border2: #cbd5e1;
  --bg: #f1f5f9;
  --bg2: #f8fafc;
  --white: #ffffff;

  --font: 'Plus Jakarta Sans', sans-serif;
  --font-display: 'Syne', sans-serif;
  --nav-h: 62px;
  --bnav-h: 64px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow: 0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
  --shadow-md: 0 8px 30px rgba(0,0,0,.1), 0 4px 12px rgba(0,0,0,.06);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.12), 0 8px 24px rgba(0,0,0,.08);
  --shadow-blue: 0 8px 30px rgba(26,86,219,.2);
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: all 0.22s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 14px; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  -webkit-tap-highlight-color: transparent;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { display: block; max-width: 100%; }
button { font-family: var(--font); cursor: pointer; transition: var(--transition); }
input, select, textarea { font-family: var(--font); }

/* ─── TOPBAR ─────────────────────────────────── */
.topbar {
  background: var(--navy2);
  padding: 7px 0;
  font-size: 11.5px;
  color: rgba(255,255,255,.6);
}
.topbar-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 20px;
  display: flex; justify-content: space-between; align-items: center; gap: 8px;
}
.topbar a { color: rgba(255,255,255,.55); }
.topbar a:hover { color: #fff; }
.tb-sep { opacity: .3; }
.tb-left, .tb-right { display: flex; gap: 14px; align-items: center; }

/* ─── NAVBAR ─────────────────────────────────── */
.navbar {
  background: var(--white);
  border-bottom: 2px solid var(--blue);
  position: sticky; top: 0; z-index: 500;
  box-shadow: var(--shadow);
}
.nav-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 16px;
  display: flex; align-items: center; gap: 12px; height: var(--nav-h);
}
.logo {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 1.3rem;
  font-weight: 800; color: var(--blue); flex-shrink: 0;
  letter-spacing: -0.5px;
}
.logo-icon {
  width: 36px; height: 36px; background: var(--blue);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; color: #fff; font-size: 13px;
  font-weight: 900; flex-shrink: 0;
}
.logo-text span { color: var(--text); }

.search-bar { flex: 1; min-width: 0; }
.search-form {
  display: flex; align-items: center;
  border: 1.5px solid var(--border2); border-radius: var(--radius);
  overflow: hidden; transition: var(--transition);
}
.search-form:focus-within { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,86,219,.08); }
.search-select {
  border: none; outline: none; padding: 0 10px; height: 40px;
  font-size: 12px; color: var(--text3); background: #f8fafc;
  border-right: 1px solid var(--border); min-width: 120px; cursor: pointer;
}
.search-input {
  flex: 1; border: none; outline: none; padding: 0 12px;
  height: 40px; font-size: 13px; color: var(--text); min-width: 0;
}
.search-btn {
  background: var(--blue); color: #fff; border: none;
  padding: 0 16px; height: 40px; font-weight: 700; font-size: 12px;
  white-space: nowrap; flex-shrink: 0;
}
.search-btn:hover { background: var(--blue2); }

.nav-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.btn-ghost {
  border: 1.5px solid var(--border2); background: var(--white);
  padding: 7px 14px; border-radius: var(--radius); font-size: 13px;
  font-weight: 600; color: var(--text3); white-space: nowrap;
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn-solid {
  background: var(--blue); color: #fff; border: none;
  padding: 8px 16px; border-radius: var(--radius); font-size: 13px;
  font-weight: 700; white-space: nowrap;
}
.btn-solid:hover { background: var(--blue2); box-shadow: var(--shadow-blue); }

.nav-icon-btn {
  position: relative; width: 38px; height: 38px; border-radius: var(--radius);
  background: var(--bg); border: 1px solid var(--border); display: flex;
  align-items: center; justify-content: center; color: var(--text3); font-size: 15px;
}
.nav-icon-btn:hover { border-color: var(--blue); color: var(--blue); }
.notif-badge {
  position: absolute; top: -4px; right: -4px; width: 16px; height: 16px;
  background: var(--red); color: #fff; border-radius: 50%; font-size: 9px;
  font-weight: 700; display: flex; align-items: center; justify-content: center;
  border: 1.5px solid #fff;
}

.nav-user-drop { position: relative; }
.nav-user-trigger {
  display: flex; align-items: center; gap: 7px; padding: 6px 10px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  background: var(--white); cursor: pointer; font-size: 13px; font-weight: 600;
}
.nav-user-trigger:hover { border-color: var(--blue); }
.user-avatar-sm {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; color: #fff; flex-shrink: 0;
}
.nav-drop-menu {
  display: none; position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  padding: 8px; min-width: 180px; z-index: 600;
}
.nav-user-drop:hover .nav-drop-menu { display: block; }
.drop-link {
  display: flex; align-items: center; gap: 10px; padding: 9px 13px;
  font-size: 13px; color: var(--text3); border-radius: 8px;
}
.drop-link:hover { background: var(--blue-light); color: var(--blue); }
.drop-link i { width: 16px; text-align: center; }
.drop-divider { height: 1px; background: var(--border); margin: 5px 0; }
.text-danger { color: var(--red) !important; }

/* ─── SUBNAV ─────────────────────────────────── */
.subnav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.subnav-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 16px;
  display: flex; overflow-x: auto; scrollbar-width: none;
  gap: 2px;
}
.subnav-inner::-webkit-scrollbar { display: none; }
.snav-item {
  padding: 10px 14px; font-size: 12.5px; font-weight: 500;
  color: var(--muted); white-space: nowrap; cursor: pointer;
  border-bottom: 2.5px solid transparent; display: inline-block;
  transition: var(--transition);
}
.snav-item:hover, .snav-item.active { color: var(--blue); border-bottom-color: var(--blue); }

/* ─── TICKER ─────────────────────────────────── */
.ticker-wrap {
  background: linear-gradient(90deg, var(--blue-light), var(--blue-mid));
  border-bottom: 1px solid #bfdbfe; padding: 8px 0;
  overflow: hidden;
}
.ticker-track { overflow: hidden; white-space: nowrap; }
.ticker-items {
  display: inline-flex; gap: 60px;
  animation: ticker-scroll 40s linear infinite;
}
.tick-item { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; color: #1e40af; font-weight: 500; }
.tick-dot { width: 5px; height: 5px; background: var(--blue); border-radius: 50%; flex-shrink: 0; }
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── PAGE WRAPPER ───────────────────────────── */
.page { max-width: 1320px; margin: 0 auto; padding: 16px 18px; }

/* ─── HERO ───────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #060d1f 0%, #0c1445 35%, #1a237e 65%, #1a56db 100%);
  border-radius: var(--radius-xl); padding: 40px 36px;
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(99,102,241,.15) 0%, transparent 60%),
              url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M20 20.5V18H0v5h5v5H0v5h20v-9.5z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 560px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  padding: 5px 14px; border-radius: 20px; font-size: 12px;
  color: rgba(255,255,255,.85); margin-bottom: 14px;
}
.hero-pulse { width: 7px; height: 7px; background: #4ade80; border-radius: 50%; animation: pulse-anim 2s infinite; }
@keyframes pulse-anim { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.5; transform:scale(1.6); } }

.hero h1 {
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 800;
  color: #fff; line-height: 1.15; margin-bottom: 12px;
}
.hero h1 .accent { color: #93c5fd; }
.hero h1 .ai-accent {
  background: linear-gradient(90deg, #a5b4fc, #6366f1);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-desc { font-size: 13.5px; color: rgba(255,255,255,.65); max-width: 440px; margin-bottom: 22px; line-height: 1.7; }
.hero-btns { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.btn-hero-green {
  background: var(--green); color: #fff; border: none;
  padding: 11px 22px; border-radius: var(--radius); font-size: 14px;
  font-weight: 700; display: flex; align-items: center; gap: 7px;
}
.btn-hero-green:hover { background: #15803d; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(22,163,74,.35); }
.btn-hero-outline {
  background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.3);
  padding: 10px 20px; border-radius: var(--radius); font-size: 14px; font-weight: 600;
}
.btn-hero-outline:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.6); }
.hero-stats { display: flex; gap: 28px; flex-wrap: wrap; }
.hs-item .hs-num { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: #fff; }
.hs-item .hs-lbl { font-size: 10.5px; color: rgba(255,255,255,.45); }
.hero-visual { position: relative; z-index: 1; flex-shrink: 0; }
.hero-cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.h-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px; padding: 14px; width: 140px; backdrop-filter: blur(10px);
}
.h-card.featured { transform: scale(1.05); background: rgba(255,255,255,.12); }
.h-card-icon { font-size: 1.5rem; margin-bottom: 6px; }
.h-card-val { font-size: 1.1rem; font-weight: 800; color: #fff; }
.h-card-lbl { font-size: 10px; color: rgba(255,255,255,.5); }
.h-card-bar { height: 4px; background: rgba(255,255,255,.1); border-radius: 2px; margin-top: 8px; }
.h-card-bar-fill { height: 100%; border-radius: 2px; background: linear-gradient(90deg, #6366f1, #93c5fd); }

/* ─── SECTION BLOCKS ─────────────────────────── */
.sblock {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 18px; margin-bottom: 14px;
}
.sec-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.sec-title {
  font-size: 15px; font-weight: 700; display: flex; align-items: center; gap: 8px;
}
.sec-badge {
  font-size: 10.5px; background: var(--blue-light); color: var(--blue);
  padding: 3px 10px; border-radius: 20px; font-weight: 600;
}
.sec-link { font-size: 12.5px; color: var(--blue); font-weight: 600; }
.sec-link:hover { color: var(--blue2); text-decoration: underline; }

/* ─── TRUST STRIP ────────────────────────────── */
.trust-strip {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 12px 18px;
  display: flex; align-items: center; justify-content: space-around;
  flex-wrap: wrap; gap: 10px; margin-bottom: 14px;
}
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--text3); font-weight: 500; }
.trust-icon {
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0;
}

/* ─── STATS ROW ──────────────────────────────── */
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-bottom: 14px; }
.stat-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 16px 18px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.stat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.stat-icon { width: 50px; height: 50px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; }
.stat-num { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; line-height: 1; }
.stat-lbl { font-size: 11.5px; color: var(--muted); margin-top: 3px; }

/* ─── SECTOR GRID ────────────────────────────── */
.sector-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.sector-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 16px 10px; text-align: center;
  cursor: pointer; transition: var(--transition); position: relative; overflow: hidden;
}
.sector-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.sector-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--sc, var(--blue)); transform: scaleX(0); transition: transform .25s; transform-origin: left;
}
.sector-card:hover::after { transform: scaleX(1); }
.sector-icon { width: 56px; height: 56px; border-radius: 16px; margin: 0 auto 10px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; }
.sector-name { font-size: 13px; font-weight: 700; margin-bottom: 3px; }
.sector-count { font-size: 11px; color: var(--muted); }

/* ─── PACKAGE CARDS ──────────────────────────── */
.packages-scroll { display: flex; gap: 14px; overflow-x: auto; padding-bottom: 6px; scrollbar-width: none; }
.packages-scroll::-webkit-scrollbar { display: none; }
.pkg-card {
  flex: 0 0 200px; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; transition: var(--transition);
}
.pkg-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.pkg-img {
  height: 90px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; font-size: 2.5rem;
}
.pkg-badge {
  position: absolute; top: 8px; left: 8px; background: rgba(0,0,0,.6);
  color: #fff; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 5px;
}
.pkg-tag {
  position: absolute; top: 8px; right: 8px; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 5px;
}
.tag-hot { background: #ef4444; color: #fff; }
.tag-new { background: var(--green); color: #fff; }
.tag-popular { background: var(--gold); color: #fff; }
.tag-exclusive { background: var(--purple); color: #fff; }
.tag-trending { background: var(--teal); color: #fff; }
.pkg-body { padding: 12px 13px; }
.pkg-industry { font-size: 11px; color: var(--muted); margin-bottom: 4px; display: flex; align-items: center; gap: 5px; }
.pkg-dot { width: 6px; height: 6px; border-radius: 50%; }
.pkg-title { font-size: 13px; font-weight: 700; margin-bottom: 4px; line-height: 1.3; }
.pkg-meta { font-size: 11px; color: var(--muted); margin-bottom: 10px; }
.pkg-footer { display: flex; align-items: center; justify-content: space-between; }
.pkg-price { font-size: 14px; font-weight: 800; color: var(--blue); }
.pkg-price span { font-size: 10px; font-weight: 400; color: var(--muted); }
.pkg-btn {
  background: var(--blue); color: #fff; border: none; padding: 6px 12px;
  border-radius: 7px; font-size: 11.5px; font-weight: 700;
}
.pkg-btn:hover { background: var(--blue2); }

/* AI Score Badge */
.ai-score {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 10.5px; font-weight: 700; padding: 2px 8px; border-radius: 20px;
  background: rgba(99,102,241,.1); color: #4f46e5;
}
.ai-score i { font-size: 9px; }

/* ─── LIVE BATCHES ───────────────────────────── */
.live-grid { display: flex; gap: 14px; overflow-x: auto; padding-bottom: 6px; scrollbar-width: none; scroll-snap-type: x mandatory; }
.live-grid::-webkit-scrollbar { display: none; }
.live-card {
  flex: 0 0 240px; scroll-snap-align: start; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 16px;
  cursor: pointer; transition: var(--transition); position: relative; overflow: hidden;
}
.live-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.live-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--lc, var(--blue)); }
.live-tag { display: inline-flex; align-items: center; gap: 5px; background: var(--bg); border: 1px solid var(--border); border-radius: 20px; padding: 3px 10px; font-size: 11px; font-weight: 600; color: var(--text3); margin-bottom: 9px; }
.live-title { font-size: 14px; font-weight: 700; margin-bottom: 4px; line-height: 1.3; }
.live-brand { font-size: 12px; color: var(--muted); margin-bottom: 10px; }
.live-price { font-size: 15px; font-weight: 800; color: var(--green); margin-bottom: 8px; }
.live-metas { display: flex; gap: 7px; flex-wrap: wrap; }
.live-meta { font-size: 10.5px; color: var(--muted); background: var(--bg); padding: 2px 9px; border-radius: 20px; }
.live-buy { position: absolute; bottom: 14px; right: 14px; background: var(--blue); color: #fff; border: none; font-size: 11px; font-weight: 700; padding: 5px 12px; border-radius: 6px; }

/* ─── CATEGORIES GRID ────────────────────────── */
.cat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.cat-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px 12px 16px; text-align: center;
  cursor: pointer; transition: all .28s; position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.cat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--blue); }
.cat-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--blue); transform: scaleX(0); transition: transform .28s; transform-origin: left; }
.cat-card:hover::after { transform: scaleX(1); }
.cat-icon { width: 68px; height: 68px; border-radius: 18px; background: var(--bg); margin: 0 auto 12px; display: flex; align-items: center; justify-content: center; font-size: 2rem; transition: transform .28s; }
.cat-card:hover .cat-icon { transform: scale(1.1); }
.cat-name { font-size: 13px; font-weight: 700; margin-bottom: 3px; }
.cat-count { font-size: 11px; color: var(--muted); }

/* ─── PROMO DUAL ─────────────────────────────── */
.promo-dual { display: grid; grid-template-columns: 1fr 1fr; border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 14px; }
.promo-dark { background: linear-gradient(135deg, #060d1f, #1a56db); padding: 22px 24px; }
.promo-green { background: linear-gradient(135deg, #f0fdf4, #dcfce7); padding: 22px 24px; }
.promo-label { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 6px; }
.promo-dark .promo-label { color: #93c5fd; }
.promo-green .promo-label { color: #15803d; }
.promo-dark h3 { color: #fff; font-size: 1rem; font-weight: 800; margin-bottom: 6px; }
.promo-green h3 { color: #14532d; font-size: 1rem; font-weight: 800; margin-bottom: 6px; }
.promo-dark p { color: rgba(255,255,255,.6); font-size: 12px; margin-bottom: 14px; line-height: 1.6; }
.promo-green p { color: #166534; font-size: 12px; margin-bottom: 14px; line-height: 1.6; }
.btn-promo-blue { background: #60a5fa; color: #fff; border: none; padding: 8px 16px; border-radius: var(--radius); font-size: 12px; font-weight: 700; }
.btn-promo-green { background: var(--green); color: #fff; border: none; padding: 8px 16px; border-radius: var(--radius); font-size: 12px; font-weight: 700; }

/* ─── HOW IT WORKS ───────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.step-card {
  text-align: center; padding: 20px 12px; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); transition: var(--transition); position: relative;
}
.step-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.step-num {
  width: 36px; height: 36px; border-radius: 50%; background: var(--blue-light);
  color: var(--blue); font-size: .85rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 12px;
}
.step-icon { width: 52px; height: 52px; border-radius: 14px; margin: 0 auto 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }
.step-card h4 { font-size: 13.5px; font-weight: 700; margin-bottom: 6px; }
.step-card p { font-size: 12px; color: var(--muted); line-height: 1.6; }

/* ─── PRICING ────────────────────────────────── */
.plan-tabs { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.plan-tab {
  padding: 8px 20px; border-radius: 20px; font-size: 13px; font-weight: 600;
  cursor: pointer; border: 1.5px solid var(--border); background: var(--white);
  color: var(--muted); transition: var(--transition);
}
.plan-tab.active { background: var(--blue); color: #fff; border-color: var(--blue); }
.plans-scroll { overflow-x: auto; scrollbar-width: none; padding-bottom: 8px; }
.plans-scroll::-webkit-scrollbar { display: none; }
.plans-grid { display: flex; gap: 14px; width: max-content; }
.plan-card {
  width: 200px; flex: 0 0 200px; background: var(--white);
  border: 1.5px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; cursor: pointer; transition: var(--transition);
}
.plan-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.plan-card.featured { border-color: var(--blue); }
.plan-header { height: 115px; display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; gap: 4px; }
.plan-emoji { font-size: 2rem; }
.plan-price-big { font-size: 1.5rem; font-weight: 800; color: #fff; }
.plan-per { font-size: 10.5px; color: rgba(255,255,255,.7); }
.plan-badge { position: absolute; top: 8px; left: 8px; background: rgba(0,0,0,.6); color: #fff; font-size: 9.5px; font-weight: 700; padding: 2px 7px; border-radius: 4px; }
.plan-tag { position: absolute; top: 8px; right: 8px; }
.plan-body { padding: 12px 13px; }
.plan-name { font-size: 14px; font-weight: 800; margin-bottom: 2px; }
.plan-sub { font-size: 11px; color: var(--muted); margin-bottom: 10px; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 0; margin-bottom: 12px; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.plan-features li { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text3); padding: 8px 10px; border-bottom: 1px solid var(--bg); }
.plan-features li:last-child { border-bottom: none; }
.plan-features li:nth-child(even) { background: #fafafa; }
.chk { width: 16px; height: 16px; background: var(--green-light); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: var(--green); font-size: 9px; font-weight: 800; flex-shrink: 0; }
.pno { width: 16px; height: 16px; background: #f3f4f6; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: var(--light); font-size: 9px; flex-shrink: 0; }
.plan-footer { display: flex; align-items: center; justify-content: space-between; }
.plan-amount { font-size: 15px; font-weight: 800; color: var(--blue); }
.plan-period { font-size: 10px; color: var(--muted); font-weight: 400; }
.plan-buy-btn { background: var(--blue); color: #fff; border: none; padding: 6px 12px; border-radius: 7px; font-size: 11.5px; font-weight: 700; }
.plan-buy-btn.gold { background: linear-gradient(135deg, var(--gold), var(--orange)); }

/* ─── TOP BUYERS STRIP ───────────────────────── */
.buyers-strip { overflow-x: auto; scrollbar-width: none; padding: 0 0 4px; }
.buyers-strip::-webkit-scrollbar { display: none; }
.buyers-row { display: flex; gap: 14px; width: max-content; }
.buyer-item { display: flex; flex-direction: column; align-items: center; gap: 5px; cursor: pointer; min-width: 72px; }
.buyer-avatar {
  width: 60px; height: 60px; border-radius: 50%; border: 2.5px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 700; color: #fff; transition: var(--transition); position: relative;
}
.buyer-avatar:hover { border-color: var(--blue); transform: scale(1.08); box-shadow: 0 4px 14px rgba(26,86,219,.25); }
.buyer-verified {
  position: absolute; bottom: -1px; right: -1px; width: 18px; height: 18px;
  background: var(--blue); border-radius: 50%; border: 2px solid #fff;
  display: flex; align-items: center; justify-content: center; font-size: 8px; color: #fff;
}
.buyer-name { font-size: 11px; font-weight: 600; text-align: center; color: var(--text3); white-space: nowrap; }
.buyer-role { font-size: 10px; color: var(--muted); text-align: center; }

/* ─── TESTIMONIALS ───────────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.testi-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 16px; }
.testi-stars { color: var(--gold); font-size: 12px; margin-bottom: 8px; }
.testi-text { font-size: 12.5px; color: var(--text3); line-height: 1.65; margin-bottom: 12px; }
.testi-author { display: flex; align-items: center; gap: 9px; }
.testi-avatar { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: #fff; flex-shrink: 0; }
.testi-name { font-size: 13px; font-weight: 700; }
.testi-role { font-size: 10.5px; color: var(--muted); }

/* ─── BLOG / NEWS CARDS ──────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.blog-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.blog-img { height: 160px; background: linear-gradient(135deg, var(--blue-light), var(--blue-mid)); display: flex; align-items: center; justify-content: center; font-size: 3rem; position: relative; }
.blog-cat { position: absolute; bottom: 10px; left: 10px; font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 20px; }
.blog-body { padding: 14px; }
.blog-meta { display: flex; align-items: center; gap: 10px; font-size: 11px; color: var(--muted); margin-bottom: 8px; }
.blog-title { font-size: 14px; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.blog-title:hover { color: var(--blue); }
.blog-excerpt { font-size: 12px; color: var(--muted); line-height: 1.6; margin-bottom: 12px; }
.blog-read { font-size: 12px; color: var(--blue); font-weight: 600; }

/* ─── CTA BANNER ─────────────────────────────── */
.cta-banner {
  background: linear-gradient(90deg, #060d1f, #1a56db, #0ea5e9);
  border-radius: var(--radius-lg); padding: 28px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  margin-bottom: 14px; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(99,102,241,.2) 0%, transparent 60%);
  pointer-events: none;
}
.cta-text { position: relative; z-index: 1; }
.cta-text h2 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; color: #fff; margin-bottom: 5px; }
.cta-text p { font-size: 13px; color: rgba(255,255,255,.75); }
.cta-btns { display: flex; gap: 10px; flex-shrink: 0; position: relative; z-index: 1; }
.btn-cta-white { background: #fff; color: var(--blue); border: none; padding: 10px 20px; border-radius: var(--radius); font-size: 13px; font-weight: 800; white-space: nowrap; }
.btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.btn-cta-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.4); padding: 10px 18px; border-radius: var(--radius); font-size: 13px; font-weight: 700; white-space: nowrap; }
.btn-cta-outline:hover { background: rgba(255,255,255,.1); }

/* ─── FAQ ────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--border); padding: 14px 0; cursor: pointer; }
.faq-q { display: flex; justify-content: space-between; align-items: center; font-size: 14px; font-weight: 600; gap: 12px; }
.faq-ico { width: 24px; height: 24px; border-radius: 50%; background: var(--blue-light); color: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; flex-shrink: 0; transition: transform .2s; }
.faq-item.open .faq-ico { transform: rotate(45deg); }
.faq-ans { display: none; font-size: 13px; color: var(--muted); line-height: 1.7; padding-top: 10px; }
.faq-item.open .faq-ans { display: block; }

/* ─── CITY SECTION ───────────────────────────── */
.city-section { background: var(--white); border-top: 1px solid var(--border); padding: 20px 0; }
.city-inner { max-width: 1320px; margin: 0 auto; padding: 0 18px; }
.city-section h3 { font-size: 14px; font-weight: 700; margin-bottom: 12px; }
.city-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.c-tag {
  background: var(--bg); border: 1px solid var(--border);
  padding: 5px 14px; border-radius: 20px; font-size: 12.5px;
  color: var(--text3); cursor: pointer; transition: var(--transition);
}
.c-tag:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }

/* ─── FOOTER ─────────────────────────────────── */
.footer-cta { background: linear-gradient(90deg, #1e3a8a, #1a56db, #0369a1); padding: 30px 0; position: relative; overflow: hidden; }
.footer-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(99,102,241,.15) 0%, transparent 60%); pointer-events: none; }
.footer-cta-inner { max-width: 1320px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; position: relative; z-index: 1; }
.fcta-txt h3 { font-size: 1.2rem; font-weight: 800; color: #fff; margin-bottom: 4px; }
.fcta-txt p { font-size: 13px; color: rgba(255,255,255,.7); }
.fcta-btns { display: flex; gap: 10px; }
.fcta-btn-w { background: #fff; color: var(--blue); border: none; padding: 11px 24px; border-radius: var(--radius); font-size: 13.5px; font-weight: 800; white-space: nowrap; transition: var(--transition); }
.fcta-btn-w:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.25); }
.fcta-btn-o { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.4); padding: 10px 22px; border-radius: var(--radius); font-size: 13.5px; font-weight: 700; white-space: nowrap; transition: var(--transition); }
.fcta-btn-o:hover { background: rgba(255,255,255,.1); }

.footer-main { background: #060d1f; padding: 50px 0 0; position: relative; overflow: hidden; }
.footer-main::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(26,86,219,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(26,86,219,.04) 1px, transparent 1px); background-size: 40px 40px; pointer-events: none; }
.footer-inner { max-width: 1320px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 1; }
.footer-stats { display: flex; border: 1px solid rgba(255,255,255,.07); border-radius: 16px; overflow: hidden; margin-bottom: 44px; background: rgba(255,255,255,.02); }
.f-stat { flex: 1; text-align: center; padding: 18px 10px; border-right: 1px solid rgba(255,255,255,.06); }
.f-stat:last-child { border-right: none; }
.f-stat-icon { font-size: 18px; margin-bottom: 5px; display: block; }
.f-stat-num { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; background: linear-gradient(135deg, #fff, rgba(255,255,255,.6)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.f-stat-lbl { font-size: 10px; color: rgba(255,255,255,.3); text-transform: uppercase; letter-spacing: .1em; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 40px; }
.f-logo-wrap { display: flex; align-items: center; gap: 9px; margin-bottom: 8px; }
.f-logo-icon { width: 38px; height: 38px; background: var(--blue); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 14px; font-weight: 900; }
.f-logo-txt { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; background: linear-gradient(135deg, #60a5fa, #3b82f6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.f-tagline { font-size: 10.5px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: #3b82f6; margin-bottom: 12px; }
.f-desc { font-size: 12.5px; color: rgba(255,255,255,.35); line-height: 1.8; margin-bottom: 18px; }
.f-social { display: flex; gap: 9px; margin-bottom: 18px; }
.f-soc { width: 36px; height: 36px; border-radius: 9px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; font-size: 14px; color: rgba(255,255,255,.4); transition: var(--transition); }
.f-soc:hover { color: #fff; transform: translateY(-3px); }
.f-col-head { font-size: 11px; font-weight: 700; color: rgba(255,255,255,.85); margin-bottom: 16px; text-transform: uppercase; letter-spacing: .12em; display: flex; align-items: center; gap: 8px; }
.f-col-head::after { content: ''; flex: 1; height: 1px; background: linear-gradient(90deg, rgba(255,255,255,.1), transparent); }
.f-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.f-col ul a { font-size: 13px; color: rgba(255,255,255,.38); transition: var(--transition); display: flex; align-items: center; gap: 8px; }
.f-col ul a:hover { color: #fff; padding-left: 4px; }
.footer-bot { background: #020510; border-top: 1px solid rgba(255,255,255,.04); padding: 16px 0; }
.footer-bot-inner { max-width: 1320px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,.25); flex-wrap: wrap; gap: 8px; }
.fbot-links { display: flex; gap: 18px; }
.fbot-links a { color: rgba(255,255,255,.25); }
.fbot-links a:hover { color: rgba(255,255,255,.6); }

/* ─── DASHBOARD ──────────────────────────────── */
.dash-layout { display: grid; grid-template-columns: 260px 1fr; gap: 20px; min-height: 100vh; }
.dash-sidebar {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px 0;
  position: sticky; top: calc(var(--nav-h) + 8px); height: fit-content;
  max-height: calc(100vh - var(--nav-h) - 16px); overflow-y: auto;
}
.dash-sidebar::-webkit-scrollbar { width: 4px; }
.dash-sidebar::-webkit-scrollbar-track { background: transparent; }
.dash-sidebar::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
.sidebar-user { padding: 0 16px 16px; border-bottom: 1px solid var(--border); margin-bottom: 8px; }
.sidebar-avatar { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; font-weight: 800; color: #fff; margin-bottom: 10px; }
.sidebar-name { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.sidebar-role { font-size: 11px; color: var(--muted); text-transform: capitalize; }
.sidebar-plan { display: inline-flex; align-items: center; gap: 5px; background: var(--blue-light); color: var(--blue); font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 20px; margin-top: 7px; }

.sidebar-nav { padding: 8px 0; }
.sidebar-section { padding: 10px 16px 4px; font-size: 10.5px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }
.sidebar-link {
  display: flex; align-items: center; gap: 11px; padding: 10px 16px;
  font-size: 13px; font-weight: 500; color: var(--text3);
  border-left: 3px solid transparent; transition: var(--transition);
}
.sidebar-link:hover, .sidebar-link.active {
  background: var(--blue-light); color: var(--blue); border-left-color: var(--blue);
}
.sidebar-link i { width: 18px; text-align: center; font-size: 14px; }
.sidebar-notif {
  margin-left: auto; background: var(--red); color: #fff;
  font-size: 10px; font-weight: 700; padding: 1px 7px; border-radius: 20px;
}

.dash-content { min-width: 0; }
.dash-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.dash-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; }
.dash-subtitle { font-size: 13px; color: var(--muted); margin-top: 3px; }

.dash-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-bottom: 20px; }
.dash-stat {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 16px 18px;
  position: relative; overflow: hidden; transition: var(--transition);
}
.dash-stat:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.dash-stat::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--ds-color, var(--blue)); }
.ds-icon { font-size: 1.6rem; margin-bottom: 10px; }
.ds-val { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; line-height: 1; margin-bottom: 4px; }
.ds-label { font-size: 12px; color: var(--muted); }
.ds-change { font-size: 11px; margin-top: 6px; font-weight: 600; }
.ds-change.up { color: var(--green); }
.ds-change.down { color: var(--red); }

/* Dashboard Cards */
.dash-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 18px; margin-bottom: 16px; }
.dash-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.dash-card-title { font-size: 14px; font-weight: 700; }

/* Tables */
.data-table { width: 100%; border-collapse: collapse; }
.data-table th { background: var(--bg); padding: 10px 14px; font-size: 11.5px; font-weight: 700; color: var(--muted); text-align: left; border-bottom: 1px solid var(--border); text-transform: uppercase; letter-spacing: .05em; }
.data-table td { padding: 12px 14px; font-size: 13px; border-bottom: 1px solid var(--bg); }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--bg2); }
.tbl-status { display: inline-flex; align-items: center; gap: 5px; padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; }
.status-hot { background: #fee2e2; color: var(--red); }
.status-warm { background: #fef9c3; color: #b45309; }
.status-cold { background: var(--blue-light); color: var(--blue); }
.status-completed { background: var(--green-light); color: var(--green); }
.status-pending { background: #fef9c3; color: #b45309; }
.status-new { background: var(--blue-light); color: var(--blue); }
.status-converted { background: var(--green-light); color: var(--green); }

/* ─── FORMS ──────────────────────────────────── */
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--text3); margin-bottom: 6px; }
.form-control {
  width: 100%; padding: 10px 14px; border: 1.5px solid var(--border2);
  border-radius: var(--radius); font-size: 13px; color: var(--text);
  background: var(--white); outline: none; transition: var(--transition);
}
.form-control:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,86,219,.08); }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }
textarea.form-control { resize: vertical; min-height: 100px; }
.form-hint { font-size: 11.5px; color: var(--muted); margin-top: 4px; }
.form-error { font-size: 11.5px; color: var(--red); margin-top: 4px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 7px; padding: 10px 20px; border-radius: var(--radius); font-size: 13.5px; font-weight: 700; border: none; cursor: pointer; transition: var(--transition); }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue2); box-shadow: var(--shadow-blue); transform: translateY(-1px); }
.btn-success { background: var(--green); color: #fff; }
.btn-success:hover { background: #15803d; }
.btn-danger { background: var(--red); color: #fff; }
.btn-warning { background: var(--gold); color: #fff; }
.btn-outline { background: transparent; color: var(--blue); border: 1.5px solid var(--blue); }
.btn-outline:hover { background: var(--blue-light); }
.btn-sm { padding: 6px 14px; font-size: 12px; }
.btn-lg { padding: 13px 28px; font-size: 15px; }
.btn-full { width: 100%; }

/* Badges */
.badge { display: inline-flex; align-items: center; padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; }
.badge-blue { background: var(--blue-light); color: var(--blue); }
.badge-green { background: var(--green-light); color: var(--green); }
.badge-red { background: #fee2e2; color: var(--red); }
.badge-gold { background: #fef3c7; color: #92400e; }
.badge-purple { background: #ede9fe; color: var(--purple); }

/* ─── MOBILE NAV ─────────────────────────────── */
.mob-menu-btn { display: none; background: none; border: 1.5px solid var(--border2); border-radius: var(--radius); padding: 7px 10px; color: var(--text3); font-size: 16px; }
.mob-menu-btn:hover { border-color: var(--blue); color: var(--blue); }
.mob-overlay { display: none; position: fixed; inset: 0; z-index: 700; background: rgba(0,0,0,.5); }
.mob-panel { position: fixed; top: 0; right: -300px; width: 300px; height: 100%; background: var(--white); z-index: 701; box-shadow: -4px 0 30px rgba(0,0,0,.15); transition: right .3s ease; overflow-y: auto; }
.mob-panel.open { right: 0; }
.mob-overlay.open { display: block; }
.mob-panel-head { display: flex; align-items: center; justify-content: space-between; padding: 15px 16px; border-bottom: 1px solid var(--border); }
.mob-close-btn { background: none; border: none; font-size: 22px; cursor: pointer; color: var(--muted); }
.mob-user-info { display: flex; align-items: center; gap: 11px; padding: 14px 16px; background: var(--bg); }
.mob-nav-section { padding: 8px 0; }
.mob-nav-label { font-size: 10px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; padding: 8px 16px 4px; }
.mob-nav-link { display: flex; align-items: center; gap: 10px; padding: 11px 16px; font-size: 13px; font-weight: 500; color: var(--text3); border-bottom: 1px solid var(--bg); transition: var(--transition); }
.mob-nav-link:hover, .mob-nav-link.active { background: var(--blue-light); color: var(--blue); }
.mob-nav-divider { height: 8px; background: var(--bg); }
.mob-nav-actions { padding: 14px 16px; display: flex; flex-direction: column; gap: 9px; }
.mob-btn-primary { background: var(--blue); color: #fff; border: none; padding: 11px; border-radius: var(--radius); font-size: 13px; font-weight: 700; text-align: center; }
.mob-btn-outline { background: var(--white); color: var(--blue); border: 2px solid var(--blue); padding: 10px; border-radius: var(--radius); font-size: 13px; font-weight: 700; text-align: center; }
.mob-btn-ghost { background: var(--bg); color: var(--text3); border: 1px solid var(--border); padding: 10px; border-radius: var(--radius); font-size: 13px; font-weight: 600; text-align: center; }

/* ─── BOTTOM NAV ─────────────────────────────── */
.bottom-nav { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 400; background: var(--white); border-top: 1px solid var(--border); height: var(--bnav-h); box-shadow: 0 -4px 16px rgba(0,0,0,.08); }
.bnav-inner { display: flex; height: 100%; }
.bnav-item { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; cursor: pointer; color: var(--muted); transition: var(--transition); padding: 6px 0; position: relative; text-decoration: none; }
.bnav-item.active { color: var(--blue); }
.bnav-item i { font-size: 18px; }
.bnav-item span { font-size: 10px; font-weight: 600; }
.bnav-center { background: var(--blue); border-radius: 50%; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; margin-top: -20px; box-shadow: 0 4px 16px rgba(26,86,219,.4); color: #fff; flex-direction: column; gap: 1px; flex-shrink: 0; }
.bnav-dot { position: absolute; top: 8px; right: calc(50% - 14px); width: 7px; height: 7px; background: var(--red); border-radius: 50%; border: 1.5px solid #fff; }

/* ─── BREADCRUMBS ────────────────────────────── */
.breadcrumb { display: flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--muted); margin-bottom: 14px; flex-wrap: wrap; }
.breadcrumb a { color: var(--blue); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { color: var(--border2); }

/* ─── PAGINATION ─────────────────────────────── */
.pagination { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.page-btn { width: 34px; height: 34px; border-radius: var(--radius); border: 1.5px solid var(--border); background: var(--white); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; color: var(--text3); cursor: pointer; transition: var(--transition); }
.page-btn:hover, .page-btn.active { background: var(--blue); color: #fff; border-color: var(--blue); }

/* ─── ALERTS ─────────────────────────────────── */
.alert { padding: 12px 16px; border-radius: var(--radius); margin-bottom: 16px; font-size: 13px; display: flex; align-items: flex-start; gap: 10px; }
.alert-success { background: var(--green-light); border: 1px solid #86efac; color: #166534; }
.alert-error { background: #fee2e2; border: 1px solid #fca5a5; color: #991b1b; }
.alert-warning { background: #fef9c3; border: 1px solid #fde047; color: #854d0e; }
.alert-info { background: var(--blue-light); border: 1px solid #93c5fd; color: var(--blue3); }

/* ─── FILTER BAR ─────────────────────────────── */
.filter-bar { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 14px 18px; margin-bottom: 16px; }
.filter-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.filter-group { display: flex; flex-direction: column; gap: 4px; flex: 1; min-width: 160px; }
.filter-label { font-size: 11px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }

/* ─── EMPTY STATE ────────────────────────────── */
.empty-state { text-align: center; padding: 60px 20px; }
.empty-icon { font-size: 4rem; margin-bottom: 16px; }
.empty-title { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.empty-desc { font-size: 13px; color: var(--muted); margin-bottom: 20px; }

/* ─── LOADING ─────────────────────────────────── */
.skeleton { background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%); background-size: 200% 100%; animation: skeleton-loading 1.5s infinite; border-radius: 6px; }
@keyframes skeleton-loading { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 24px; }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 1024px) {
  .testi-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .cat-grid { grid-template-columns: repeat(3,1fr); }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .dash-layout { grid-template-columns: 220px 1fr; }
}
@media (max-width: 768px) {
  .topbar { display: none; }
  .hero-visual { display: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .promo-dual { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { flex-direction: column; text-align: center; }
  .cta-btns { justify-content: center; }
  .sector-grid { grid-template-columns: repeat(2,1fr); }
  .nav-actions .btn-ghost, .nav-actions .btn-solid { display: none; }
  .mob-menu-btn { display: flex; align-items: center; }
  .search-select { display: none; }
  .dash-layout { grid-template-columns: 1fr; }
  .dash-sidebar { display: none; }
  .dash-stats { grid-template-columns: repeat(2,1fr); }
  .form-row { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  body { padding-bottom: var(--bnav-h); }
  .bottom-nav { display: block; }
  .page { padding: 10px 12px; }
  .hero { padding: 20px 16px; border-radius: var(--radius-lg); }
  .hero h1 { font-size: 1.5rem; }
  .cat-grid { grid-template-columns: repeat(3,1fr); gap: 8px; }
  .cat-icon { width: 50px; height: 50px; font-size: 1.5rem; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 9px; }
  .cta-banner { padding: 18px 16px; border-radius: var(--radius-lg); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .dash-stats { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 16px; }
}
@media (max-width: 360px) {
  .cat-grid { grid-template-columns: repeat(2,1fr); }
}
