/* ============================================
   BIZCA — Business Connect Agent
   Master Stylesheet
   Brand: Navy #0B1F3A + Gold #D4AF37
   Font: Be Vietnam Pro
   ============================================ */

:root {
  --primary: #0B1F3A;
  --primary-light: #152d4d;
  --primary-dark: #061224;
  --accent: #D4AF37;
  --accent-light: #e6c862;
  --accent-dark: #b8961d;
  --bg: #F5F7FA;
  --bg-dark: #EAECF0;
  --white: #FFFFFF;
  --text: #1a2233;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --info: #3b82f6;

  --shadow-sm: 0 1px 2px rgba(11,31,58,0.05);
  --shadow: 0 4px 12px rgba(11,31,58,0.08);
  --shadow-md: 0 8px 24px rgba(11,31,58,0.10);
  --shadow-lg: 0 16px 40px rgba(11,31,58,0.15);

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Be Vietnam Pro', 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--primary);
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0;
}

a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent); }

/* ============= BUTTONS ============= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.btn-gold { background: var(--accent); color: var(--primary); }
.btn-gold:hover { background: var(--accent-dark); color: var(--primary); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-navy { background: var(--primary); color: white; }
.btn-navy:hover { background: var(--primary-light); color: white; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline-gold { background: transparent; color: var(--accent); border: 2px solid var(--accent); padding: 10px 24px; }
.btn-outline-gold:hover { background: var(--accent); color: var(--primary); }
.btn-outline-navy { background: transparent; color: var(--primary); border: 2px solid var(--primary); padding: 10px 24px; }
.btn-outline-navy:hover { background: var(--primary); color: white; }
.btn-outline-white { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.4); padding: 10px 24px; }
.btn-outline-white:hover { background: white; color: var(--primary); border-color: white; }
.btn-ghost { background: transparent; color: var(--primary); }
.btn-ghost:hover { background: rgba(11,31,58,0.05); }
.btn-sm { padding: 8px 18px; font-size: 14px; }
.btn-lg { padding: 16px 32px; font-size: 17px; }
.btn-block { width: 100%; }

/* ============= NAVBAR ============= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11,31,58,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212,175,55,0.15);
}
.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 22px;
  color: var(--accent);
  letter-spacing: 0.5px;
}
.navbar-brand .logo-mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--primary);
  font-weight: 900;
}
.navbar-brand .tagline { font-size: 10px; color: rgba(255,255,255,0.55); display: block; font-weight: 400; letter-spacing: 1px; }
.navbar-menu { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; }
.navbar-menu a {
  color: rgba(255,255,255,0.78);
  font-size: 14.5px;
  font-weight: 500;
  position: relative;
}
.navbar-menu a:hover { color: var(--accent); }
.navbar-menu a.active { color: var(--accent); }
.navbar-menu a.active::after {
  content: '';
  position: absolute;
  bottom: -8px; left: 0; right: 0;
  height: 2px; background: var(--accent);
  border-radius: 2px;
}
.navbar-cta { display: flex; gap: 10px; }
.navbar-toggle { display: none; background: none; border: none; color: var(--accent); font-size: 22px; cursor: pointer; }

@media (max-width: 992px) {
  .navbar-menu, .navbar-cta { display: none; }
  .navbar-toggle { display: block; }
  .navbar-menu.open, .navbar-cta.open { display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--primary-dark); padding: 20px; gap: 14px; }
}

/* ============= HERO ============= */
.hero {
  background:
    radial-gradient(ellipse at top right, rgba(212,175,55,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(212,175,55,0.08) 0%, transparent 50%),
    linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(212,175,55,0.08) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 100px;
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: 56px;
  font-weight: 800;
  color: white;
  margin: 0 0 20px;
  letter-spacing: -1.2px;
  line-height: 1.05;
}
.hero h1 .gold { color: var(--accent); }
.hero-subtitle {
  font-size: 19px;
  color: rgba(255,255,255,0.78);
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.55;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-trust .item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.7); }
.hero-trust .item i { color: var(--accent); }

.hero-visual {
  position: relative;
  height: 480px;
}
.hero-card {
  position: absolute;
  background: white;
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-lg);
  color: var(--text);
}
.hero-card.card-1 { top: 0; right: 0; width: 320px; }
.hero-card.card-2 { top: 180px; left: -20px; width: 300px; }
.hero-card.card-3 { bottom: 0; right: 40px; width: 340px; }

@media (max-width: 992px) {
  .hero { padding: 60px 0 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 38px; }
  .hero-visual { height: 380px; }
}

/* ============= SECTION ============= */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-lg { padding: 120px 0; }
.section-dark { background: var(--primary); color: white; }
.section-dark h1, .section-dark h2, .section-dark h3 { color: white; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

.section-header { text-align: center; max-width: 760px; margin: 0 auto 64px; }
.section-eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(212,175,55,0.12);
  color: var(--accent-dark);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.section h2 {
  font-size: 42px;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.section-lead { font-size: 18px; color: var(--text-muted); }

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .section h2 { font-size: 30px; }
}

/* ============= STATS BANNER ============= */
.stats-banner {
  background: var(--primary);
  color: white;
  padding: 56px 0;
  border-top: 1px solid rgba(212,175,55,0.15);
  border-bottom: 1px solid rgba(212,175,55,0.15);
}
.stats-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-value { font-size: 42px; font-weight: 800; color: var(--accent); line-height: 1; }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.7); margin-top: 8px; text-transform: uppercase; letter-spacing: 1px; }
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } .stat-value { font-size: 32px; } }

/* ============= CARDS ============= */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.card-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 20px;
}
.card h3 { font-size: 20px; margin-bottom: 10px; }
.card p { color: var(--text-muted); margin: 0; font-size: 15px; }

/* Hub cards */
.hub-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.hub-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.hub-card:hover::before { transform: scaleX(1); }
.hub-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.hub-badge { display: inline-flex; padding: 4px 12px; background: var(--bg-dark); color: var(--text-muted); border-radius: 100px; font-size: 12px; font-weight: 600; margin-bottom: 18px; }
.hub-card h3 { font-size: 22px; margin-bottom: 10px; }
.hub-card .hub-fee { display: inline-block; padding: 6px 14px; background: rgba(212,175,55,0.12); color: var(--accent-dark); border-radius: 8px; font-size: 14px; font-weight: 600; margin-top: 18px; }
.hub-card .hub-list { list-style: none; padding: 0; margin: 16px 0; }
.hub-card .hub-list li { padding: 6px 0; font-size: 14px; color: var(--text-muted); display: flex; gap: 8px; }
.hub-card .hub-list li::before { content: '✓'; color: var(--accent); font-weight: 700; }

/* ============= PRICING ============= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.pricing-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 2px solid var(--border);
  position: relative;
  text-align: center;
}
.pricing-card.featured { border-color: var(--accent); transform: scale(1.04); box-shadow: var(--shadow-md); }
.pricing-card.featured::before {
  content: 'Phổ biến nhất';
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: var(--primary);
  padding: 6px 18px; border-radius: 100px;
  font-size: 12px; font-weight: 700;
}
.pricing-card h3 { font-size: 22px; margin-bottom: 8px; }
.pricing-tag { font-size: 14px; color: var(--text-muted); margin-bottom: 22px; }
.pricing-price { font-size: 44px; font-weight: 800; color: var(--primary); line-height: 1; }
.pricing-price small { font-size: 16px; color: var(--text-muted); font-weight: 500; }
.pricing-features { list-style: none; padding: 0; margin: 28px 0; text-align: left; }
.pricing-features li { padding: 10px 0; border-bottom: 1px solid var(--border); display: flex; gap: 10px; font-size: 14.5px; }
.pricing-features li::before { content: '✓'; color: var(--success); font-weight: 700; }
.pricing-features li:last-child { border-bottom: none; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } .pricing-card.featured { transform: none; } }

/* ============= DEAL CARD ============= */
.deal-card {
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  margin-bottom: 16px;
  position: relative;
  transition: all 0.2s;
}
.deal-card:hover { box-shadow: var(--shadow); border-color: var(--accent); }
.deal-header { display: flex; justify-content: space-between; align-items: start; gap: 12px; margin-bottom: 14px; }
.deal-code { font-family: 'Monaco', 'Consolas', monospace; font-size: 12px; color: var(--accent-dark); font-weight: 700; }
.deal-type-badge { display: inline-block; padding: 4px 10px; border-radius: 6px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.deal-type-badge.von { background: #fef3c7; color: #92400e; }
.deal-type-badge.ma { background: #fce7f3; color: #9d174d; }
.deal-type-badge.dichvu { background: #dbeafe; color: #1e40af; }
.deal-type-badge.banhang { background: #d1fae5; color: #065f46; }
.deal-title { font-size: 16px; font-weight: 600; margin: 6px 0 10px; color: var(--primary); }
.deal-meta { display: flex; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--text-muted); margin-bottom: 14px; }
.deal-meta span { display: flex; align-items: center; gap: 4px; }
.deal-value { font-size: 20px; font-weight: 800; color: var(--primary); margin-top: 6px; }
.deal-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); }
.deal-locked .blur-content { filter: blur(4px); pointer-events: none; user-select: none; }
.deal-locked::after {
  content: '🔒 Đăng nhập để xem chi tiết';
  position: absolute;
  bottom: 50%; left: 50%; transform: translate(-50%, 50%);
  background: var(--primary); color: var(--accent);
  padding: 10px 18px; border-radius: 100px;
  font-size: 13px; font-weight: 600;
  white-space: nowrap;
}

/* ============= FOOTER ============= */
.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 24px;
  border-top: 3px solid var(--accent);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand h3 { color: var(--accent); margin-bottom: 14px; font-size: 22px; }
.footer-brand p { font-size: 14px; line-height: 1.6; margin-bottom: 18px; }
.footer-meta { font-size: 13px; line-height: 1.8; color: rgba(255,255,255,0.55); }
.footer h6 { color: var(--accent); font-size: 13px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { padding: 5px 0; }
.footer ul a { color: rgba(255,255,255,0.7); font-size: 14px; }
.footer ul a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 14px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 16px;
}
.footer-social a:hover { background: var(--accent); color: var(--primary); }
@media (max-width: 992px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============= FORMS ============= */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-weight: 600; font-size: 14px; color: var(--primary); margin-bottom: 8px; }
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 15px;
  background: white;
  color: var(--text);
  transition: all 0.2s;
}
.form-control:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(212,175,55,0.15); }
.form-help { font-size: 13px; color: var(--text-muted); margin-top: 6px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-grid-2 { grid-template-columns: 1fr; } }

.checkbox { display: flex; align-items: start; gap: 10px; cursor: pointer; }
.checkbox input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--accent); }
.checkbox span { font-size: 14px; color: var(--text-muted); }

/* ============= UTILS ============= */
.text-center { text-align: center; }
.text-gold { color: var(--accent); }
.text-navy { color: var(--primary); }
.text-muted { color: var(--text-muted); }
.bg-navy { background: var(--primary); }
.bg-gold { background: var(--accent); }
.bg-light { background: var(--bg); }
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; } .mt-5 { margin-top: 48px; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; } .mb-4 { margin-bottom: 32px; } .mb-5 { margin-bottom: 48px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: 8px; } .gap-2 { gap: 16px; } .gap-3 { gap: 24px; }

/* ============= BADGE ============= */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
}
.badge-gold { background: rgba(212,175,55,0.15); color: var(--accent-dark); }
.badge-navy { background: rgba(11,31,58,0.08); color: var(--primary); }
.badge-success { background: #d1fae5; color: #065f46; }
.badge-warning { background: #fef3c7; color: #92400e; }
.badge-danger { background: #fee2e2; color: #991b1b; }

/* ============= ALERT ============= */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  margin-bottom: 16px;
  border: 1px solid;
  font-size: 14.5px;
}
.alert-info { background: #eff6ff; border-color: #bfdbfe; color: #1e40af; }
.alert-success { background: #ecfdf5; border-color: #a7f3d0; color: #065f46; }
.alert-warning { background: #fffbeb; border-color: #fde68a; color: #92400e; }
.alert-danger { background: #fef2f2; border-color: #fecaca; color: #991b1b; }
.alert-gold { background: rgba(212,175,55,0.1); border-color: rgba(212,175,55,0.3); color: var(--primary); }

/* ============= CTA BLOCK ============= */
.cta-block {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  padding: 72px 48px;
  border-radius: var(--radius-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 60%);
}
.cta-block h2 { color: white; font-size: 38px; margin-bottom: 16px; position: relative; }
.cta-block p { color: rgba(255,255,255,0.8); font-size: 18px; max-width: 640px; margin: 0 auto 32px; position: relative; }
.cta-block .btn-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ============= FLOATING CHAT ============= */
.float-chat-btn {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--primary);
  border: none;
  box-shadow: 0 8px 24px rgba(212,175,55,0.4);
  font-size: 26px;
  cursor: pointer;
  z-index: 9999;
  transition: all 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.float-chat-btn:hover { transform: scale(1.08); box-shadow: 0 12px 32px rgba(212,175,55,0.5); }

/* ============= TIMELINE / PROCESS ============= */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 32px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(to right, var(--accent), var(--border), var(--accent));
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.process-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--accent);
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 800;
  color: var(--primary);
}
.process-step h4 { font-size: 17px; margin-bottom: 8px; }
.process-step p { font-size: 14px; color: var(--text-muted); margin: 0; }
@media (max-width: 768px) { .process-timeline { grid-template-columns: 1fr 1fr; gap: 32px; } .process-timeline::before { display: none; } }

/* ============= TABS ============= */
.tabs { display: flex; gap: 6px; border-bottom: 2px solid var(--border); margin-bottom: 32px; flex-wrap: wrap; }
.tab {
  padding: 12px 22px;
  background: transparent; border: none;
  font-family: inherit; font-size: 15px; font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  position: relative;
  bottom: -2px;
  border-bottom: 2px solid transparent;
}
.tab.active { color: var(--primary); border-color: var(--accent); }
.tab:hover { color: var(--primary); }

/* ============= TESTIMONIAL ============= */
.testimonial {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow);
}
.testimonial-quote { font-size: 16px; line-height: 1.7; color: var(--text); font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent-dark)); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--primary); }
.testimonial-info strong { display: block; color: var(--primary); font-size: 15px; }
.testimonial-info small { font-size: 13px; color: var(--text-muted); }

/* ============= DASHBOARD ============= */
.dashboard { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }
.sidebar { background: var(--primary); color: white; padding: 24px 0; }
.sidebar-brand { padding: 0 24px 24px; border-bottom: 1px solid rgba(255,255,255,0.1); color: var(--accent); font-weight: 800; font-size: 22px; }
.sidebar-menu { list-style: none; padding: 16px 0; margin: 0; }
.sidebar-menu li a { display: flex; align-items: center; gap: 12px; padding: 12px 24px; color: rgba(255,255,255,0.7); font-size: 14.5px; }
.sidebar-menu li a:hover, .sidebar-menu li a.active { background: rgba(212,175,55,0.1); color: var(--accent); border-left: 3px solid var(--accent); padding-left: 21px; }
.dashboard-main { padding: 32px; background: var(--bg); }
.dashboard-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.stat-card { background: white; border-radius: var(--radius); padding: 24px; border: 1px solid var(--border); }
.stat-card-label { font-size: 13px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.stat-card-value { font-size: 32px; font-weight: 800; color: var(--primary); margin: 8px 0; }
.stat-card-change { font-size: 13px; color: var(--success); }
@media (max-width: 768px) { .dashboard { grid-template-columns: 1fr; } .sidebar { display: none; } }

/* ============= MODAL ============= */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(11,31,58,0.7);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center; justify-content: center;
  z-index: 10000;
  padding: 20px;
}
.modal-overlay.show { display: flex; }
.modal-box {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  max-width: 480px; width: 100%;
  box-shadow: var(--shadow-lg);
}
.modal-box h3 { margin-bottom: 16px; }

/* ============= ANIMATIONS ============= */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.7; } }
.fade-up { animation: fadeUp 0.6s ease-out; }
.pulse { animation: pulse 2s ease-in-out infinite; }
