/* ============================================================
   ProCertif – Design System complet
   ============================================================ */

:root {
  --blue-900: #0a1628;
  --blue-800: #0d2144;
  --blue-700: #0f3460;
  --blue-600: #1a5276;
  --blue-500: #1e6fa3;
  --blue-400: #2e86c1;
  --blue-300: #5dade2;
  --blue-100: #d6eaf8;
  --blue-50:  #eaf4fb;

  --green-600: #1e8449;
  --green-500: #27ae60;
  --green-400: #2ecc71;
  --green-100: #d5f5e3;

  --gold: #f39c12;
  --silver: #95a5a6;
  --bronze: #ca6f1e;

  --gray-900: #1a1a2e;
  --gray-800: #2c2c3e;
  --gray-600: #555566;
  --gray-400: #8888a0;
  --gray-200: #e8e8f0;
  --gray-100: #f5f5fa;
  --gray-50:  #fafafe;

  --white: #ffffff;
  --danger: #e74c3c;
  --warning: #f39c12;

  --font-head: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm:  6px;
  --radius:     12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm: 0 2px 8px rgba(10,22,40,.08);
  --shadow:    0 4px 24px rgba(10,22,40,.12);
  --shadow-lg: 0 12px 48px rgba(10,22,40,.16);

  --transition: .2s ease;
  --transition-lg: .35s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; outline: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

/* ---- UTILS ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-sm { max-width: 760px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.text-danger { color: var(--danger); }
.text-green { color: var(--green-500); }
.text-blue { color: var(--blue-500); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue-500);
  color: var(--white);
}
.btn-primary:hover { background: var(--blue-600); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-green {
  background: var(--green-500);
  color: var(--white);
}
.btn-green:hover { background: var(--green-600); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--blue-500);
  border: 2px solid var(--blue-300);
}
.btn-ghost:hover { background: var(--blue-50); }
.btn-white {
  background: var(--white);
  color: var(--blue-700);
  font-weight: 700;
}
.btn-white:hover { background: var(--blue-50); }
.btn-danger { background: var(--danger); color: var(--white); }
.btn-sm { padding: 8px 16px; font-size: .875rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }

/* ---- BADGES CERTIFICATION ---- */
.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 700;
  font-family: var(--font-head);
}
.badge-bronze { background: #fdf0e0; color: var(--bronze); border: 1.5px solid #e59866; }
.badge-silver { background: #f2f3f4; color: #717d7e; border: 1.5px solid #aab7b8; }
.badge-gold   { background: #fef9e7; color: #d4ac0d; border: 1.5px solid #f7dc6f; }
.badge-certified { background: var(--green-100); color: var(--green-600); border: 1.5px solid #a9dfbf; }

/* ---- STARS ---- */
.star-filled { color: var(--gold); }
.star-half   { color: var(--gold); opacity: .6; }
.star-empty  { color: var(--gray-200); }
.stars-row { display: flex; gap: 2px; align-items: center; }

/* ---- FORMS ---- */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: .9rem; color: var(--gray-600); margin-bottom: 7px; font-family: var(--font-head); }
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--gray-900);
  transition: border-color var(--transition);
}
.form-control:focus { outline: none; border-color: var(--blue-400); }
.form-control.error { border-color: var(--danger); }
.form-hint { font-size: .82rem; color: var(--gray-400); margin-top: 5px; }
.form-error { font-size: .85rem; color: var(--danger); margin-top: 5px; }
textarea.form-control { resize: vertical; min-height: 110px; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%23555566'%3E%3Cpath d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media(max-width:600px){ .form-row { grid-template-columns: 1fr; } }

/* ---- ALERTS ---- */
.alert {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: .9rem;
  font-weight: 500;
}
.alert-success { background: var(--green-100); color: var(--green-600); border-left: 4px solid var(--green-500); }
.alert-error   { background: #fde8e6; color: var(--danger); border-left: 4px solid var(--danger); }
.alert-info    { background: var(--blue-50); color: var(--blue-700); border-left: 4px solid var(--blue-400); }
.alert-warning { background: #fef9e7; color: #935116; border-left: 4px solid var(--warning); }

/* ---- CARDS ---- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.card-body { padding: 24px; }
.card-header { padding: 20px 24px; border-bottom: 1px solid var(--gray-100); background: var(--gray-50); }
.card-title { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; }

/* ---- PROFESSIONAL CARD ---- */
.pro-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: all var(--transition-lg);
  position: relative;
}
.pro-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--blue-200); }
.pro-card.sponsored::before {
  content: '⭐ Sponsorisé';
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold);
  color: var(--white);
  padding: 3px 10px;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 700;
}
.pro-card-header {
  padding: 24px 24px 16px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.pro-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--blue-100);
  flex-shrink: 0;
}
.pro-info h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.pro-meta { font-size: .85rem; color: var(--gray-400); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 6px; }
.pro-card-body { padding: 0 24px 16px; }
.pro-bio { font-size: .88rem; color: var(--gray-600); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.pro-card-footer { padding: 16px 24px; background: var(--gray-50); border-top: 1px solid var(--gray-100); display: flex; justify-content: space-between; align-items: center; }
.pro-rating { display: flex; align-items: center; gap: 6px; font-size: .85rem; color: var(--gray-600); }
.pro-score { font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; color: var(--blue-600); }

/* ---- NAVBAR ---- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--blue-800);
  white-space: nowrap;
  text-decoration: none;
}
.nav-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}
.logo-icon { color: var(--blue-400); font-size: 1.1rem; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 24px;
  flex: 1;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: all var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--blue-600); background: var(--blue-50); }
.nav-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }

.nav-notif {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--gray-600);
  transition: all var(--transition);
}
.nav-notif:hover { background: var(--blue-50); color: var(--blue-500); }
.notif-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--danger);
  color: var(--white);
  font-size: .65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-user-menu { position: relative; }
.nav-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--blue-200);
  cursor: pointer;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px 0;
  z-index: 200;
}
.nav-user-menu:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-size: .9rem;
  color: var(--gray-600);
  transition: all var(--transition);
}
.dropdown-menu a:hover { background: var(--blue-50); color: var(--blue-600); }
.dropdown-menu hr { border: none; border-top: 1px solid var(--gray-100); margin: 6px 0; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; padding: 5px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--gray-800); border-radius: 2px; transition: all var(--transition); }

/* ---- HERO ---- */
.hero {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 50%, #1a5f7a 100%);
  color: var(--white);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; text-align: center; max-width: 780px; margin: 0 auto; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--blue-300); }
.hero p {
  font-size: 1.1rem;
  opacity: .85;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-search {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 8px 8px 8px 20px;
  display: flex;
  gap: 8px;
  align-items: center;
  box-shadow: var(--shadow-lg);
  max-width: 680px;
  margin: 0 auto 36px;
}
.hero-search input, .hero-search select {
  border: none;
  outline: none;
  background: none;
  color: var(--gray-900);
  flex: 1;
  min-width: 0;
}
.hero-search .divider { width: 1px; height: 28px; background: var(--gray-200); flex-shrink: 0; }
.hero-search .btn { flex-shrink: 0; border-radius: 16px; }

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-stat span { display: block; }
.hero-stat .num { font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; }
.hero-stat .lbl { font-size: .8rem; opacity: .7; }

/* ---- SECTIONS ---- */
.section { padding: 72px 0; }
.section-alt { background: var(--gray-50); }
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--blue-900);
  margin-bottom: 12px;
}
.section-sub { color: var(--gray-400); font-size: 1rem; margin-bottom: 48px; }

/* ---- GRID ---- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media(max-width:900px){ .grid-4 { grid-template-columns: repeat(2,1fr); } .grid-3 { grid-template-columns: repeat(2,1fr); } }
@media(max-width:600px){ .grid-2,.grid-3,.grid-4 { grid-template-columns: 1fr; } }

/* ---- CATEGORY CARDS ---- */
.cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--gray-200);
  transition: all var(--transition-lg);
  cursor: pointer;
}
.cat-card:hover { border-color: var(--blue-400); background: var(--blue-50); transform: translateY(-4px); box-shadow: var(--shadow); }
.cat-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--blue-500);
  margin-bottom: 14px;
  transition: all var(--transition);
}
.cat-card:hover .cat-icon { background: var(--blue-500); color: var(--white); }
.cat-card h3 { font-family: var(--font-head); font-size: .95rem; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
.cat-card p { font-size: .8rem; color: var(--gray-400); }

/* ---- HOW IT WORKS ---- */
.step-card {
  text-align: center;
  padding: 36px 24px;
}
.step-number {
  width: 56px;
  height: 56px;
  background: var(--blue-500);
  color: var(--white);
  border-radius: 50%;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.step-card h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.step-card p { color: var(--gray-400); font-size: .9rem; }

/* ---- PROFILE PAGE ---- */
.profile-hero {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  color: var(--white);
  padding: 48px 0 80px;
}
.profile-hero-inner {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.profile-big-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255,255,255,.3);
  flex-shrink: 0;
}
.profile-hero h1 { font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; margin-bottom: 8px; }
.profile-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.tag {
  background: rgba(255,255,255,.15);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: .8rem;
  border: 1px solid rgba(255,255,255,.2);
}
.profile-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.pstat { text-align: center; }
.pstat .num { font-family: var(--font-head); font-size: 1.6rem; font-weight: 800; }
.pstat .lbl { font-size: .8rem; opacity: .7; }

.profile-body { margin-top: -36px; }
.profile-grid { display: grid; grid-template-columns: 1fr 340px; gap: 28px; align-items: start; }
@media(max-width:900px){ .profile-grid { grid-template-columns: 1fr; } }

.profile-section { margin-bottom: 32px; }
.profile-section h2 { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid var(--gray-100); display: flex; align-items: center; gap: 10px; }

/* ---- SIDEBAR CONTACT ---- */
.contact-sidebar {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  position: sticky;
  top: 88px;
}
.contact-sidebar .sidebar-head {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  color: var(--white);
  padding: 20px 24px;
}
.contact-sidebar .sidebar-body { padding: 24px; }
.contact-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .9rem;
  width: 100%;
  margin-bottom: 10px;
  transition: all var(--transition);
}
.contact-btn.whatsapp { background: #25d366; color: var(--white); }
.contact-btn.whatsapp:hover { background: #1da851; }
.contact-btn.phone { background: var(--blue-50); color: var(--blue-700); border: 2px solid var(--blue-200); }
.contact-btn.phone:hover { background: var(--blue-100); }

/* ---- DASHBOARD ---- */
.dash-layout { display: grid; grid-template-columns: 260px 1fr; min-height: calc(100vh - 68px); }
@media(max-width:900px){ .dash-layout { grid-template-columns: 1fr; } }

.dash-sidebar {
  background: var(--blue-900);
  color: var(--white);
  padding: 28px 0;
}
.dash-sidebar .user-info { padding: 0 20px 24px; border-bottom: 1px solid rgba(255,255,255,.1); }
.dash-sidebar .user-info img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; margin-bottom: 10px; }
.dash-sidebar .user-info h4 { font-family: var(--font-head); font-weight: 700; font-size: .95rem; }
.dash-sidebar .user-info p { font-size: .8rem; opacity: .6; }
.dash-nav { padding: 16px 0; }
.dash-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  font-weight: 500;
  transition: all var(--transition);
  border-left: 3px solid transparent;
}
.dash-nav a:hover, .dash-nav a.active {
  color: var(--white);
  background: rgba(255,255,255,.08);
  border-left-color: var(--blue-300);
}
.dash-nav a i { width: 18px; text-align: center; }

.dash-main { background: var(--gray-50); padding: 32px; }
.dash-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.dash-header h1 { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; }

.stat-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 18px; margin-bottom: 28px; }
.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 20px;
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 16px;
}
.stat-card .stat-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.stat-icon-blue { background: var(--blue-50); color: var(--blue-500); }
.stat-icon-green { background: var(--green-100); color: var(--green-500); }
.stat-icon-gold { background: #fef9e7; color: var(--gold); }
.stat-card .stat-info .num { font-family: var(--font-head); font-size: 1.6rem; font-weight: 800; }
.stat-card .stat-info .lbl { font-size: .8rem; color: var(--gray-400); }

/* ---- ADMIN ---- */
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { background: var(--gray-100); padding: 12px 16px; text-align: left; font-family: var(--font-head); font-size: .85rem; font-weight: 700; color: var(--gray-600); }
.admin-table td { padding: 14px 16px; border-bottom: 1px solid var(--gray-100); font-size: .9rem; }
.admin-table tr:hover td { background: var(--gray-50); }
.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 700;
}
.status-active { background: var(--green-100); color: var(--green-600); }
.status-pending { background: #fef9e7; color: #935116; }
.status-rejected { background: #fde8e6; color: var(--danger); }
.status-suspended { background: var(--gray-200); color: var(--gray-600); }

/* ---- PRICING ---- */
.pricing-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.pricing-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: all var(--transition-lg);
}
.pricing-card.featured {
  border-color: var(--blue-400);
  background: linear-gradient(135deg, var(--blue-50), var(--white));
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}
.pricing-card .price { font-family: var(--font-head); font-size: 2.2rem; font-weight: 800; color: var(--blue-700); margin: 16px 0; }
.pricing-card .price span { font-size: 1rem; font-weight: 400; color: var(--gray-400); }
.pricing-card ul { text-align: left; list-style: none; margin: 20px 0 28px; display: flex; flex-direction: column; gap: 10px; }
.pricing-card ul li { font-size: .9rem; display: flex; align-items: center; gap: 8px; }
.pricing-card ul li i { color: var(--green-500); }

/* ---- REVIEWS ---- */
.review-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin-bottom: 16px;
}
.review-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; }
.reviewer-info { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; background: var(--gray-200); }
.reviewer-name { font-weight: 700; font-family: var(--font-head); font-size: .95rem; }
.review-date { font-size: .8rem; color: var(--gray-400); }

/* ---- PAGINATION ---- */
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 40px; }
.page-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: .9rem;
  border: 2px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-600);
  transition: all var(--transition);
}
.page-btn:hover, .page-btn.active { background: var(--blue-500); color: var(--white); border-color: var(--blue-500); }

/* ---- FILTER BAR ---- */
.filter-bar {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  padding: 20px 24px;
  margin-bottom: 28px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: flex-end;
}
.filter-bar .form-group { margin: 0; flex: 1; min-width: 160px; }

/* ---- TRUST SCORE ---- */
.trust-score-bar { height: 8px; background: var(--gray-200); border-radius: 100px; overflow: hidden; }
.trust-score-fill { height: 100%; background: linear-gradient(90deg, var(--green-400), var(--green-500)); border-radius: 100px; transition: width .8s ease; }

/* ---- PAGE WRAPPER ---- */
.page-wrap { min-height: calc(100vh - 68px); }

/* ---- FOOTER ---- */
.footer {
  background: var(--blue-900);
  color: rgba(255,255,255,.8);
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 0 48px;
}
@media(max-width:900px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:600px){ .footer-grid { grid-template-columns: 1fr; } }
.footer-brand p { font-size: .88rem; opacity: .7; margin-top: 12px; line-height: 1.6; }
.footer-brand .nav-logo { color: var(--white); }
.social-links { display: flex; gap: 10px; margin-top: 18px; }
.social-links a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all var(--transition);
}
.social-links a:hover { background: var(--blue-400); }
.footer-col h4 { font-family: var(--font-head); font-weight: 700; font-size: .95rem; color: var(--white); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: .88rem; opacity: .7; transition: opacity var(--transition); }
.footer-col ul li a:hover { opacity: 1; color: var(--blue-300); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .82rem;
  opacity: .6;
}

/* ---- RESPONSIVE ---- */
@media(max-width:768px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 68px; left: 0; right: 0; background: var(--white); padding: 20px; border-bottom: 1px solid var(--gray-200); box-shadow: var(--shadow); z-index: 999; }
  .nav-toggle { display: flex; }
  .hero { padding: 48px 0 64px; }
  .hero-stats { gap: 24px; }
  .section { padding: 48px 0; }
  .hero-search { flex-direction: column; border-radius: var(--radius-lg); padding: 12px; gap: 12px; }
  .hero-search .divider { display: none; }
  .hero-search input, .hero-search select { border: 2px solid var(--gray-200); border-radius: var(--radius); padding: 10px 14px; width: 100%; }
  .profile-hero-inner { flex-direction: column; }
  .profile-stats { grid-template-columns: repeat(2, 1fr); }
  .dash-main { padding: 20px 16px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-up { animation: fadeUp .5s ease forwards; }
.animate-up:nth-child(2) { animation-delay: .1s; }
.animate-up:nth-child(3) { animation-delay: .2s; }
.animate-up:nth-child(4) { animation-delay: .3s; }

/* ---- MISC ---- */
.divider { height: 1px; background: var(--gray-200); margin: 24px 0; }
.empty-state { text-align: center; padding: 60px 20px; color: var(--gray-400); }
.empty-state i { font-size: 3rem; margin-bottom: 16px; opacity: .4; }
.empty-state p { font-size: 1rem; }
.page-title-bar { background: var(--blue-50); border-bottom: 1px solid var(--blue-100); padding: 28px 0; margin-bottom: 40px; }
.page-title-bar h1 { font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; color: var(--blue-900); }
.page-title-bar p { color: var(--gray-400); margin-top: 6px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: var(--gray-400); margin-bottom: 10px; }
.breadcrumb a { color: var(--blue-500); }
.breadcrumb span { opacity: .4; }
