/* ═══════════════════════════════════════════════════════════════
   MFH APPAREL — PREMIUM BLACK & SILVER DESIGN SYSTEM
   Version 3.0 | Full site override
═══════════════════════════════════════════════════════════════ */

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

/* ── Design Tokens ── */
:root {
  --black:        #060606;
  --black-2:      #0e0e0e;
  --black-3:      #141414;
  --black-4:      #1c1c1c;
  --silver:       #c8c8c8;
  --silver-light: #e8e8e8;
  --silver-dark:  #888888;
  --silver-faint: rgba(200,200,200,0.08);
  --white:        #f5f5f7;
  --border:       rgba(255,255,255,0.08);
  --border-hover: rgba(255,255,255,0.18);
  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    22px;
  --ease:         cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition:   all 0.3s var(--ease);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
}

p { color: rgba(255,255,255,0.55); }

a { text-decoration: none; transition: var(--transition); }

img { max-width: 100%; }

/* ══════════════════════════════════════════
   TOP BAR
══════════════════════════════════════════ */
.top-bar {
  background: #000;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 9px 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  display: none;
}
@media(min-width:768px){ .top-bar { display: block; } }
.top-bar a { color: rgba(255,255,255,0.5); }
.top-bar a:hover { color: var(--silver); }

/* Override Bootstrap bg-navy */
.bg-navy {
  background: var(--black-2) !important;
  color: var(--white) !important;
}

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
.navbar {
  background: rgba(6,6,6,0.92) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  transition: background 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
  background: rgba(6,6,6,0.98) !important;
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.navbar-brand {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white) !important;
  letter-spacing: 0.01em;
}
.navbar-brand span { color: var(--silver); }

.nav-link {
  color: rgba(255,255,255,0.6) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 14px !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-link:hover,
.nav-link.active {
  color: var(--white) !important;
  background: rgba(255,255,255,0.05);
}

.navbar-toggler {
  border: 1px solid var(--border) !important;
  border-radius: 8px;
  padding: 6px 10px;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.7)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-silver,
.btn-outline-silver {
  background: linear-gradient(135deg, #d0d0d0, #a0a0a0) !important;
  color: #060606 !important;
  border: none !important;
  padding: 12px 28px;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.btn-silver:hover {
  background: linear-gradient(135deg, #e8e8e8, #c0c0c0) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200,200,200,0.25);
  color: #060606 !important;
}

.btn-outline-navy,
.btn-outline-light {
  background: transparent !important;
  color: var(--white) !important;
  border: 1px solid rgba(255,255,255,0.3) !important;
  padding: 12px 28px;
}
.btn-outline-navy:hover,
.btn-outline-light:hover {
  background: rgba(255,255,255,0.08) !important;
  border-color: rgba(255,255,255,0.6) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--white) !important;
  color: var(--black) !important;
  border: none !important;
  padding: 12px 28px;
  font-weight: 700;
}
.btn-navy:hover {
  background: var(--silver) !important;
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════ */
.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--black) 0%, var(--black-2) 100%);
  overflow: hidden;
}

/* Particle canvas inside hero */
#heroCanvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

/* Grid overlay */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 55px 55px;
  pointer-events: none;
}

/* Radial glow */
.hero-section::after {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 70%;
  height: 130%;
  background: radial-gradient(ellipse, rgba(200,200,200,0.06) 0%, transparent 65%);
  z-index: 1;
  pointer-events: none;
  animation: heroGlow 8s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(40px, 30px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
  background: rgba(200,200,200,0.08);
  border: 1px solid rgba(200,200,200,0.2);
  border-radius: 50px;
  padding: 6px 16px;
  margin-bottom: 24px;
  animation: fadeUp 0.6s 0.1s both;
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--silver);
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-content h1 {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--white);
  animation: fadeUp 0.6s 0.2s both;
}

.hero-content h1 .gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #c8c8c8 50%, #888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.1rem;
  max-width: 560px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 40px;
  animation: fadeUp 0.6s 0.3s both;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.4s both;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  animation: fadeUp 0.6s 0.5s both;
}

.hero-stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  margin-top: 4px;
  letter-spacing: 0.05em;
}

/* Hero right visual */
.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.hero-card {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(20px);
}

.hero-card-main {
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
  animation: cardFloat 5s ease-in-out infinite;
}

@keyframes cardFloat {
  0%,100% { transform: translateY(0) rotate(-1deg); }
  50%     { transform: translateY(-16px) rotate(-1deg); }
}

.hero-card-bg {
  position: absolute;
  top: 20px; right: -20px;
  width: 90%;
  opacity: 0.4;
  transform: rotate(3deg);
  z-index: -1;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════
   SECTION LAYOUT
══════════════════════════════════════════ */
.section-padding { padding: 100px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--silver-dark);
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  max-width: 520px;
}

/* ══════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════ */
.about-section { background: var(--black-2); }

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  filter: brightness(0.85) saturate(0.7);
  transition: transform 0.6s var(--ease);
}
.about-img-wrap:hover img { transform: scale(1.03); }

.about-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,6,6,0.7) 0%, transparent 60%);
}

.about-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(14,14,14,0.9);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-badge-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--silver), var(--silver-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 0.9rem;
}
.about-badge-text { font-size: 0.78rem; color: rgba(255,255,255,0.7); }
.about-badge-num  { font-size: 1.1rem; font-weight: 800; color: var(--white); }

.stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}
.stat-box {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: var(--transition);
}
.stat-box:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}
.stat-box-num {
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--white), var(--silver));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-box-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}

/* ══════════════════════════════════════════
   FABRIC CARDS
══════════════════════════════════════════ */
.fabric-section { background: var(--black); }

.fabric-card {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.fabric-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.fabric-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  filter: saturate(0.7) brightness(0.85);
  transition: transform 0.5s var(--ease), filter 0.5s;
}
.fabric-card:hover img {
  transform: scale(1.06);
  filter: saturate(0.9) brightness(0.95);
}
.fabric-card .card-body {
  background: var(--black-3);
  padding: 20px;
}
.fabric-card .card-title {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.fabric-card .btn-link {
  color: var(--silver) !important;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0 !important;
  text-decoration: none;
}
.fabric-card .btn-link:hover { color: var(--white) !important; }

/* ══════════════════════════════════════════
   PROCESS / TIMELINE
══════════════════════════════════════════ */
.process-section { background: var(--black-2); }

.timeline-container { padding: 20px 0; }

.timeline-step { text-align: center; }

.step-icon {
  width: 80px; height: 80px;
  background: var(--black-4);
  border: 1px solid var(--border);
  color: var(--silver);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  font-weight: 800;
  transition: var(--transition);
  position: relative;
}
.step-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: conic-gradient(var(--silver) 0deg, transparent 0deg);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s;
}
.timeline-step:hover .step-icon {
  background: var(--silver);
  color: var(--black);
  border-color: var(--silver);
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(200,200,200,0.2);
}
.timeline-step h5 { color: var(--white); font-size: 1rem; margin-bottom: 6px; }
.timeline-step p  { color: rgba(255,255,255,0.4); font-size: 0.85rem; }

/* ══════════════════════════════════════════
   INDUSTRY CARDS
══════════════════════════════════════════ */
.industry-card {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.industry-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--silver), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.industry-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.industry-card:hover::before { opacity: 1; }
.industry-card i {
  color: var(--silver-dark);
  transition: var(--transition);
}
.industry-card:hover i {
  color: var(--silver);
  transform: scale(1.15);
}
.industry-card h4 { color: var(--white); margin-bottom: 12px; }
.industry-card p  { color: rgba(255,255,255,0.4); font-size: 0.9rem; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
  background: #000 !important;
  border-top: 1px solid var(--border);
  padding-top: 72px;
  padding-bottom: 32px;
}
footer h4, footer h5 { color: var(--white); }
footer p  { color: rgba(255,255,255,0.4); font-size: 0.9rem; }
footer a  { color: rgba(255,255,255,0.45); font-size: 0.88rem; line-height: 2.2; }
footer a:hover { color: var(--silver); padding-left: 4px; }
footer li { list-style: none; }

.footer-brand-name span { color: var(--silver); }

.footer-input-group {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.footer-input-group input {
  flex: 1;
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  padding: 10px 14px;
  outline: none;
  transition: var(--transition);
}
.footer-input-group input::placeholder { color: rgba(255,255,255,0.25); }
.footer-input-group input:focus { border-color: rgba(200,200,200,0.4); }
.footer-input-group button {
  background: linear-gradient(135deg, var(--silver), var(--silver-dark));
  color: var(--black);
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}
.footer-input-group button:hover { background: var(--silver-light); }

/* ══════════════════════════════════════════
   FORMS (Quote, Contact, Auth)
══════════════════════════════════════════ */
.form-control,
.form-select {
  background: var(--black-3) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
  color: var(--white) !important;
  font-family: 'Outfit', sans-serif;
  padding: 12px 16px;
  transition: var(--transition);
}
.form-control::placeholder { color: rgba(255,255,255,0.25) !important; }
.form-control:focus,
.form-select:focus {
  border-color: rgba(200,200,200,0.5) !important;
  box-shadow: 0 0 0 3px rgba(200,200,200,0.08) !important;
  background: rgba(255,255,255,0.06) !important;
  outline: none;
}
.form-select option { background: var(--black-3); color: var(--white); }

.form-label {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  font-weight: 600;
}

/* ══════════════════════════════════════════
   CARDS / GLASS PANELS
══════════════════════════════════════════ */
.card {
  background: var(--black-3) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-lg) !important;
  color: var(--white) !important;
}
.card-body { color: var(--white); }
.card-title { color: var(--white); }
.card-text  { color: rgba(255,255,255,0.5); }

.glass-panel {
  background: rgba(20,20,20,0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

/* ══════════════════════════════════════════
   BADGES / PILLS
══════════════════════════════════════════ */
.badge-silver {
  background: rgba(200,200,200,0.1);
  color: var(--silver);
  border: 1px solid rgba(200,200,200,0.2);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ══════════════════════════════════════════
   WHATSAPP WIDGET
══════════════════════════════════════════ */
#whatsappWidget {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
  transition: var(--transition);
  animation: waBounce 2s ease-in-out infinite 3s;
}
#whatsappWidget:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37,211,102,0.5);
}
@keyframes waBounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ══════════════════════════════════════════
   PROGRESS STEPS (Quote form)
══════════════════════════════════════════ */
.step-progress {
  display: flex;
  align-items: center;
  margin-bottom: 36px;
}
.step-dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--black-4);
  border: 2px solid var(--border);
  color: rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition);
}
.step-dot.active {
  border-color: var(--silver);
  color: var(--silver);
  background: rgba(200,200,200,0.1);
}
.step-dot.done {
  background: var(--silver);
  border-color: var(--silver);
  color: var(--black);
}
.step-line {
  flex: 1;
  height: 1px;
  background: var(--border);
  margin: 0 8px;
}
.step-line.done { background: var(--silver-dark); }

/* ══════════════════════════════════════════
   TABLES
══════════════════════════════════════════ */
.table {
  color: var(--white) !important;
  border-color: var(--border) !important;
}
.table thead th {
  background: var(--black-3) !important;
  color: rgba(255,255,255,0.6) !important;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-color: var(--border) !important;
}
.table tbody tr {
  border-color: rgba(255,255,255,0.04) !important;
  transition: background 0.2s;
}
.table tbody tr:hover { background: rgba(255,255,255,0.03) !important; }
.table td { color: rgba(255,255,255,0.7) !important; vertical-align: middle; }

/* ══════════════════════════════════════════
   MODALS
══════════════════════════════════════════ */
.modal-content {
  background: var(--black-3) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-lg) !important;
  color: var(--white) !important;
}
.modal-header {
  border-bottom: 1px solid var(--border) !important;
}
.modal-footer {
  border-top: 1px solid var(--border) !important;
}
.modal-title { color: var(--white) !important; }
.btn-close {
  filter: invert(1) opacity(0.5);
}
.btn-close:hover { filter: invert(1) opacity(1); }

/* ══════════════════════════════════════════
   ALERTS
══════════════════════════════════════════ */
.alert {
  border-radius: var(--radius-md) !important;
  border: 1px solid !important;
  font-size: 0.9rem;
}
.alert-success {
  background: rgba(16,185,129,0.1) !important;
  border-color: rgba(16,185,129,0.3) !important;
  color: #6ee7b7 !important;
}
.alert-danger {
  background: rgba(239,68,68,0.1) !important;
  border-color: rgba(239,68,68,0.3) !important;
  color: #fca5a5 !important;
}
.alert-warning {
  background: rgba(245,158,11,0.1) !important;
  border-color: rgba(245,158,11,0.3) !important;
  color: #fde68a !important;
}

/* ══════════════════════════════════════════
   CONTACT SECTION
══════════════════════════════════════════ */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
  margin-bottom: 16px;
}
.contact-info-item:hover {
  border-color: var(--border-hover);
  transform: translateX(4px);
}
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(200,200,200,0.08);
  border: 1px solid rgba(200,200,200,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver);
  flex-shrink: 0;
  font-size: 0.9rem;
}
.contact-info-item h6 { color: var(--white); margin-bottom: 2px; }
.contact-info-item p  { color: rgba(255,255,255,0.45); font-size: 0.85rem; margin: 0; }

/* ══════════════════════════════════════════
   DASHBOARD CARDS
══════════════════════════════════════════ */
.dash-stat-card {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.dash-stat-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.dash-stat-icon {
  width: 48px; height: 48px;
  background: rgba(200,200,200,0.08);
  border: 1px solid rgba(200,200,200,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver);
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.dash-stat-num  { font-size: 2rem; font-weight: 800; color: var(--white); }
.dash-stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.4); margin-top: 4px; }

/* ══════════════════════════════════════════
   PAGE HEADERS (inner pages)
══════════════════════════════════════════ */
.page-hero {
  background: var(--black-2);
  border-bottom: 1px solid var(--border);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--silver-dark), transparent);
}

/* ══════════════════════════════════════════
   SCROLLBAR
══════════════════════════════════════════ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--black-4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--silver-dark); }

/* ══════════════════════════════════════════
   SELECTION
══════════════════════════════════════════ */
::selection { background: rgba(200,200,200,0.2); color: var(--white); }

/* ══════════════════════════════════════════
   UTILITIES
══════════════════════════════════════════ */
.text-silver    { color: var(--silver-dark) !important; }
.text-silver-lg { color: var(--silver) !important; }
.text-navy      { color: var(--white) !important; }
.bg-light       { background: var(--black-2) !important; }
.bg-white       { background: var(--black-3) !important; }
.text-muted     { color: rgba(255,255,255,0.4) !important; }
.border-light   { border-color: var(--border) !important; }
.shadow-sm      { box-shadow: 0 2px 16px rgba(0,0,0,0.3) !important; }
.shadow-lg      { box-shadow: 0 20px 60px rgba(0,0,0,0.5) !important; }
.rounded-3      { border-radius: var(--radius-md) !important; }
.rounded-4      { border-radius: var(--radius-lg) !important; }
