﻿
    /* ГЛОБАЛЬНЫЙ ГРАДИЕНТ ДЛЯ ВСЕЙ СТРАНИЦЫ referral */
    body {
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
     /*  background: linear-gradient(135deg, #0b2b3f 0%, #1a4b62 100%); */
	  background: linear-gradient(to right, #fcdc32, #674a84, #fed517);
      min-height: 100vh;
      color: #ffffff !important; /* БЕЛЫЙ ТЕКСТ */
    }

    /* Заголовки — белые */
    h1, h2, h3, h4, h5, h6 {
      color: #ffffff !important;
    }

    /* Параграфы, списки — белые с полупрозрачностью */
    p, li, span, small {
      color: rgba(255, 255, 255, 0.85) !important;
    }

    /* Ссылки — жёлтые/золотые 
    a:not(.btn):not(.footer-link) {
      color: #ffc107 !important;
      text-decoration: none;
    }
    a:not(.btn):not(.footer-link):hover {
      color: #ffd44d !important;
      text-decoration: underline;
    }
*/
    /* Карточки и блоки с полупрозрачным фоном */
    .card-glass {
      /* background: rgba(255, 255, 255, 0.07); */
	  background: linear-gradient(135deg, #0b2b3f 0%, #1a4b62 100%);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, 0.08);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .card-glass:hover {
      transform: translateY(-6px);
      box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.25);
    }

    .badge-glass {
      background: rgba(255, 255, 255, 0.12);
      color: #ffffff !important;
    }

    .icon-circle {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.10);
      font-size: 2rem;
      color: #ffc107 !important;
    }

    .step-number {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: #ffc107;
      color: #0b2b3f !important;
      font-weight: 700;
      font-size: 1.25rem;
      flex-shrink: 0;
    }

    .text-gold {
      color: #ffc107 !important;
    }

    /* Кнопки */
    .btn-warning-custom {
      background: #ffc107;
      color: #0b2b3f !important;
      font-weight: 600;
      border: none;
    }
    .btn-warning-custom:hover {
      background: #ffd44d;
      color: #0b2b3f !important;
    }

    .btn-outline-light {
      border: 2px solid rgba(255, 255, 255, 0.3);
      color: #ffffff !important;
      background: transparent;
    }
    .btn-outline-light:hover {
      background: #ffffff;
      color: #0b2b3f !important;
    }

    /* Аккордеон */
    .accordion-item.bg-glass {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(4px);
      border: 1px solid rgba(255, 255, 255, 0.08);
    }
    .accordion-item.bg-glass .accordion-button {
      background: transparent;
      color: #ffffff !important;
      border: none;
      box-shadow: none;
    }
    .accordion-item.bg-glass .accordion-button:not(.collapsed) {
      background: rgba(255, 255, 255, 0.08);
      color: #ffc107 !important;
    }
    .accordion-item.bg-glass .accordion-button::after {
      filter: brightness(0) invert(1);
    }
    .accordion-item.bg-glass .accordion-body {
      color: rgba(255, 255, 255, 0.75) !important;
    }

    .footer-link {
      color: rgba(255, 255, 255, 0.6) !important;
      text-decoration: none;
    }
    .footer-link:hover {
      color: #ffffff !important;
      text-decoration: underline;
    }

    hr {
      border-color: rgba(255, 255, 255, 0.08);
    }

    .border-light-subtle {
      border-color: rgba(255, 255, 255, 0.08) !important;
    }

    .check-list li i {
      color: #ffc107 !important;
    }

/* ============================================
   INVEST HUB CLUB + Magnolia Admin
   Vintage Casino Theme — Inspired by drawpoker.css
   ============================================ */

/* ----- FONTS & VARIABLES ----- */
:root {
  --gold: #CFB87C;
  --gold-light: #F9E7B3;
  --gold-dark: #b69b4b;
  --gold-accent: #e5b83c;
  --gold-gradient: linear-gradient(135deg, #F9E7B3, #CFB87C); 
  --gold-glow: 0 8px 30px rgba(207,184,124,.3);
  --green-darkest: #0a1408;
  --green-dark: #0e2a1a;
  --green: #1a472a;
  --green-mid: #2f4127;
  --green-light: #5e7b4b;
  --green-gradient: linear-gradient(145deg, #1a472a 0%, #0e2a1a 100%);

  --white: #f5f2e8;
  --white-bright: #ffffff;
  --text-muted: #cbc3a0;
  --text-dim: #8a7e5a;

  --surface: rgba(10, 20, 8, 0.75);
  --surface-card: rgba(15, 25, 12, 0.85);
  --surface-light: rgba(44, 43, 38, 0.88);

  --border: rgba(218, 185, 110, 0.4);
  --border-light: rgba(218, 185, 110, 0.2);

  --font-display: 'Playfair Display', serif;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-sm: 0 2px 8px rgba(0,0,0,.3);
  --shadow-md: 0 8px 18px rgba(0,0,0,.35);
  --shadow-lg: 0 25px 45px rgba(0,0,0,.5);
  --shadow-gold: 0 8px 30px rgba(207,184,124,.2);

  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 2rem;
}

body {
  font-family: var(--font-main);
 /*  background: var(--green-gradient) !important; 
  background: linear-gradient(to right, #fcdc32, #674a84, #fed517);*/
  background: linear-gradient(to right, #5b1a4d, #481a46, #231432);
  color: var(--white) !important;
  min-height: 100vh;
}

/* ===== PRELOADER ===== */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--green-darkest);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .6s, visibility .6s;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  text-align: center;
}

.loader-logo {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 24px;
}

.loader-bar {
  width: 270px;
  height: 3px;
  background: rgba(207,184,124,.2);
  border-radius: 10px;
  overflow: hidden;
}

.loader-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--gold-gradient);
  border-radius: 10px;
  animation: loader-fill 1.8s ease-in-out forwards;
}

@keyframes loader-fill {
  0%   { width: 0; }
  100% { width: 100%; }
}

/* ===== LOGO BRAND ===== */
.brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--gold-gradient);
  color: var(--green-darkest);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .8rem;
  margin-right: 6px;
}

.brand-icon-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--gold-gradient);
  color: var(--green-darkest);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
}

.brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
}

/* ===== TOP BAR (header top) ===== */
.top-bar {
  background: var(--green-dark);
  padding: 8px 0;
  font-size: .82rem;
  border-bottom: 1px solid var(--border-light);
}

.top-bar a {
  color: var(--text-muted);
  text-decoration: none;
  transition: .2s;
}

.top-bar a:hover {
  color: var(--gold-light);
}

.top-bar .bi {
  margin-right: 4px;
}

/* ===== NAVBAR ===== */
.ih-navbar {
  background: var(--surface) !important;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: .3s ease;
  box-shadow: var(--shadow-sm);
}

.ih-navbar .navbar-nav .nav-link {
  color: var(--text-muted) !important;
  font-size: .9rem;
  font-weight: 500;
  padding: .5rem 1rem;
  border-radius: 100px;
  transition: .3s ease;
}

.ih-navbar .navbar-nav .nav-link:hover,
.ih-navbar .navbar-nav .nav-link.active {
  color: var(--gold-light) !important;
  background: rgba(207,184,124,.1);
}

/* ===== HERO SECTION ===== */
.hero-section {
  min-height: 90vh;
  background: linear-gradient(160deg, #1a472a 0%, #0e2a1a 40%, #0a1408 100%);
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
 background: linear-gradient(
  to right,
  #a88e18 0%,      /* затемнённый #fcdc32 */
  #674a84 50%,    /* центр без изменений */
  #d6b013 100%    /* затемнённый #fed517 */
);


 /*  background:
    radial-gradient(ellipse at 80% 20%, rgba(207,184,124,.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(233,221,176,.04) 0%, transparent 30%);	 */
  pointer-events: none;
}

.hero-bg-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }

.shape {
  position: absolute;
  border-radius: 50%;
}

.shape-1 { width: 500px; height: 500px; border: 1px solid var(--border-light); top: -150px; right: -100px; animation: float 20s ease-in-out infinite; }
.shape-2 { width: 300px; height: 300px; border: 1px solid var(--border-light); bottom: -80px; left: -80px; animation: float 25s ease-in-out infinite reverse; }
.shape-3 { width: 200px; height: 200px; border: 1px solid var(--border-light); bottom: 30%; right: 15%; animation: float 15s ease-in-out infinite 5s; }

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(30px, -30px) scale(1.05); }
}

.hero-title-custom {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-pre {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--gold-light);
  background: rgba(207,184,124,.1);
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid var(--border-light);
}

/* ===== SECTIONS ===== */
.section {
  padding: 96px 0;
}

.section-alt {
  background: var(--surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.section-tag {
  display: inline-block;
  font-size: 1.0rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold-light);
  background: rgba(207,184,124,.1);
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
  border: 1px solid var(--border);
}

/* ===== CARDS (reusable) ===== */
.about-card,
.audience-card,
.format-card,
.solution-card,
.finance-card,
.service-card,
.benefit-card,
.ecosystem-card,
.contact-form-card {
  background: var(--surface-card) !important;
  backdrop-filter: blur(4px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  transition: all .3s ease;
  box-shadow: var(--shadow-sm);
  color: var(--white);
}

.about-card:hover,
.audience-card:hover,
.service-card:hover {
  border-color: var(--gold-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.format-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.format-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: .3s ease;
}

.format-card:hover::before { transform: scaleX(1); }
.format-card:hover { border-color: var(--gold-accent); transform: translateY(-4px); box-shadow: var(--shadow-gold); }

.format-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(207,184,124,.5);
  line-height: 1;
}

.atmo-item {
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  transition: .3s ease;
  font-weight: 500;
  color: var(--white);
  padding: 20px 24px;
}

.atmo-item:hover {
  border-color: var(--gold-accent);
  background: rgba(207,184,124,.06);
}

.problem-item {
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  transition: .3s ease;
  font-size: .95rem;
  color: var(--white);
  padding: 18px 24px;
}

.problem-item:hover {
  border-color: var(--gold);
  background: rgba(207,184,124,.05);
}

.include-item {
  background: rgba(207,184,124,.06);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  transition: .3s ease;
  color: var(--white);
  padding: 16px 22px;
}

.include-item:hover {
  border-color: var(--gold-accent);
  background: rgba(207,184,124,.1);
}

.adv-item {
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  transition: .3s ease;
  color: var(--white);
  padding: 20px 24px;
}

.adv-item:hover {
  border-color: var(--gold-accent);
  background: rgba(207,184,124,.06);
}

.result-item {
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  transition: .3s ease;
  color: var(--white);
  padding: 24px 20px;
}

.result-item:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.benefit-card {
  padding: 2rem;
  text-align: center;
  border-radius: var(--radius-lg);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(207,184,124,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}

/* ===== ECO-SYSTEM SECTION ===== */
.ecosystem-card {
  border-radius: var(--radius-xl);
  padding: 2rem;
  height: 100%;
}

/* ===== CONTACT FORM ===== */
.contact-quote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--gold-light);
  border-left: 3px solid var(--gold-accent);
  padding-left: 20px;
  opacity: .9;
}

.contact-form-card {
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}

/* ===== STATS SECTION ===== */
.section-stats {
  /* background: var(--green); */
  background: linear-gradient(to right, #fcdc32, #674a84, #fed517);

  color: var(--font-display);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-item {
  padding: 1.5rem;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-plus {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-label {
  font-size: .88rem;
  opacity: .85;
  margin-top: 4px;
  color: var(--text-muted);
}

/* ===== FORMS (auth) ===== */
.auth-section {
  background: var(--green-gradient);
  min-height: 100vh;
  padding-top: 100px;
}

.auth-card {
  background: var(--surface-card) !important;
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

/* ===== FOOTER ===== */
.ih-footer {
  background: var(--green-darkest);
  color: var(--text-muted);
  border-top: 1px solid var(--border-light);
}

.ih-footer .brand-text {
  color: var(--white);
}

.footer-link {
  color: var(--text-dim);
  text-decoration: none;
  transition: .3s ease;
}

.footer-link:hover {
  color: var(--gold-light);
}

.ih-footer h6 {
  color: var(--gold);
  letter-spacing: 1px;
}

/* ===== DASHBOARD ===== */
.dash-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border-light);
  padding-top: 100px !important;
}

.dash-card {
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  transition: .3s ease;
  box-shadow: var(--shadow-sm);
  color: var(--white);
}

.dash-card:hover {
  border-color: var(--gold-accent);
  box-shadow: var(--shadow-gold);
}

/* ===== BOOTSTRAP OVERRIDES ===== */
.navbar-brand {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white) !important;
}

.form-control,
.form-select {
  background-color: rgba(10, 20, 8, 0.6) !important;
  border: 1px solid var(--border-light) !important;
  color: var(--white) !important;
  border-radius: var(--radius-xl) !important;
  transition: .3s ease;
  padding: .65rem 1rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--gold-accent) !important;
  box-shadow: 0 0 0 3px rgba(207,184,124,.15) !important;
  background-color: rgba(10, 20, 8, 0.8) !important;
}

.form-control::placeholder {
  color: var(--text-dim) !important;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23CFB87C' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
}

.form-select option {
  background: var(--green-darkest);
  color: var(--white);
}

/* ----- Checkbox (dark theme) ----- */
.form-check-input {
  background-color: rgba(10, 20, 8, 0.6) !important;
  border: 1px solid var(--border-light) !important;
  border-radius: 4px !important;
  cursor: pointer;
}
.form-check-input:checked {
  background-color: var(--gold) !important;
  border-color: var(--gold) !important;
}
.form-check-input:focus {
  border-color: var(--gold-accent) !important;
  box-shadow: 0 0 0 3px rgba(207,184,124,.15) !important;
}
.form-check-label {
  cursor: pointer;
}

/* ----- Password toggle button (dark theme) ----- */
.input-group .btn.toggle-password {
  background: rgba(10, 20, 8, 0.6) !important;
  border: 1px solid var(--border-light) !important;
  border-left: none !important;
  color: var(--text-muted) !important;
  border-radius: 0 var(--radius-xl) var(--radius-xl) 0 !important;
  padding: .65rem 1rem;
  transition: .3s ease;
}
.input-group .btn.toggle-password:hover {
  color: var(--gold-light) !important;
  background: rgba(10, 20, 8, 0.8) !important;
  border-color: var(--gold-accent) !important;
}
.input-group .password-toggle {
  border-radius: var(--radius-xl) 0 0 var(--radius-xl) !important;
  border-right: none !important;
}
.input-group .password-toggle:focus + .toggle-password {
  border-color: var(--gold-accent) !important;
}
.input-group:focus-within .toggle-password {
  border-color: var(--gold-accent) !important;
  box-shadow: 0 0 0 3px rgba(207,184,124,.15) !important;
}

.btn-teal {
  background: var(--gold-gradient);
  border: none;
  color: var(--green-darkest);
  font-weight: 700;
  border-radius: 100px;
  padding: .65rem 2rem;
  transition: .3s ease;
}

.btn-teal:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: var(--green-darkest);
}

.btn-outline-teal {
  border: 2px solid var(--gold);
  color: var(--gold-light);
  font-weight: 600;
  border-radius: 100px;
  padding: .55rem 2rem;
  transition: .3s ease;
}

.btn-outline-teal:hover {
  background: var(--gold);
  color: var(--green-darkest);
  box-shadow: var(--shadow-gold);
}

.btn-warning {
  background: var(--gold-gradient);
  border: none;
  color: var(--green-darkest);
  font-weight: 700;
  border-radius: 100px;
  transition: .3s ease;
}

.btn-warning:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: var(--green-darkest);
}

.btn-outline-warning {
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn-outline-warning:hover {
  background: var(--gold);
  color: var(--green-darkest);
}

.btn-outline-light:hover {
  background: rgba(207,184,124,.15);
  color: var(--gold-light);
  border-color: var(--gold);
}

.table-dark {
  --bs-table-bg: var(--surface-card);
  --bs-table-hover-bg: rgba(207,184,124,.08);
  --bs-table-border-color: var(--border-light);
  --bs-table-color: var(--white);
}

.card {
  background-color: var(--surface-card) !important;
  border: 1px solid var(--border-light) !important;
  color: var(--white) !important;
}

.bg-dark {
  background-color: var(--green-dark) !important;
}

/* ===== DROPDOWN ===== */
.dropdown-menu {
  border-radius: var(--radius-xl);
  background: var(--surface-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
}

.dropdown-item {
  color: var(--white);
  padding: .5rem 1rem;
  border-radius: 8px;
  transition: .2s;
}

.dropdown-item:hover {
  background: rgba(207,184,124,.1);
  color: var(--gold-light);
}

.dropdown-item i {
  color: var(--gold);
}

.dropdown-menu-dark {
  background: var(--green-darkest);
  border: 1px solid var(--border-light);
}

.dropdown-menu-dark .dropdown-item {
  color: var(--text-muted);
}

.dropdown-menu-dark .dropdown-item:hover {
  background: rgba(207,184,124,.15);
  color: var(--gold-light);
}

/* ===== LINKS ===== */
a.text-warning {
  color: var(--gold) !important;
}
a.text-warning:hover {
  color: var(--gold-light) !important;
}

.text-warning {
  color: var(--gold) !important;
}

.text-success {
  color: var(--gold-light) !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .hero-section { min-height: 70vh; }
  .auth-card { border-radius: var(--radius-lg); }
  .contact-form-card { padding: 1.5rem; }
}

@media (max-width: 480px) {
  .hero-section { min-height: 60vh; }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--green-darkest);
}

::-webkit-scrollbar-thumb {
  background: var(--green-light);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dark);
}

/* ============================================
   UTILITY CLASSES (replacing inline styles)
   ============================================ */

/* ----- Text Colors ----- */
.c-white      { color: var(--white) !important; }
.c-gold       { color: var(--gold) !important; }
.c-gold-light { color: var(--gold-light) !important; }
.c-gold-dark  { color: var(--gold-dark) !important; }
.c-muted      { color: var(--text-muted) !important; }
.c-dim        { color: var(--text-dim) !important; }
.c-green-dark { color: var(--green-darkest) !important; }
.c-danger     { color: #dc3545 !important; }
.c-warning    { color: #ffc107 !important; }

/* ----- Background Colors ----- */
.bg-gold          { background: var(--gold) !important; }
.bg-gold-gradient { background: var(--gold-gradient) !important; }
.bg-surface       { background: var(--surface) !important; }
.bg-surface-card  { background: var(--surface-card) !important; }
.bg-surface-light { background: var(--surface-light) !important; }
.bg-green-dark    { background: var(--green-dark) !important; }
.bg-green-mid     { background: var(--green-mid) !important; }
.bg-gold-tint     { background: rgba(207,184,124,.06) !important; }
.bg-gold-tint-2   { background: rgba(207,184,124,.1) !important; }
.bg-gold-tint-3   { background: rgba(207,184,124,.12) !important; }
.bg-gold-tint-4   { background: rgba(207,184,124,.15) !important; }
.bg-teal-tint     { background: rgba(94,158,149,.1) !important; }
.bg-teal-tint-2   { background: rgba(94,158,149,.06) !important; border: 1px solid rgba(94,158,149,.15) !important; }

/* ----- Borders ----- */
.border-light   { border: 1px solid var(--border-light) !important; }
.border-gold    { border: 1px solid var(--gold) !important; }
.border-gold-accent { border: 1px solid var(--gold-accent) !important; }
.border-danger  { border: 1px solid #dc3545 !important; }
.border-left-gold { border-left: 4px solid var(--gold-accent) !important; }

/* ----- Max Width ----- */
.mw-600 { max-width: 600px !important; }
.mw-300 { max-width: 300px !important; }

/* ----- Margin ----- */
.mb-2px { margin-bottom: 2px !important; }

/* ----- Font Sizes ----- */
.fs-xs  { font-size: .68rem !important; }
.fs-sm  { font-size: .78rem !important; }
.fs-md  { font-size: .88rem !important; }
.fs-lg  { font-size: 1.1rem !important; }
.fs-xl  { font-size: 1.5rem !important; }

/* ----- Opacity ----- */
.op-3 { opacity: .3 !important; }

/* ----- Icon Circle Helper ----- */
.icon-circle {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-circle-sm {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold);
}
.icon-circle-lg {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.icon-circle-lg.bg-gold {
  color: #fff;
}

/* ----- Accordion Override Helper ----- */
.accordion-custom {
  border-color: var(--border-light) !important;
  border-radius: var(--radius);
}
.accordion-custom .accordion-button {
  color: var(--white);
  background: var(--surface-card);
  border-radius: var(--radius);
}

/* ----- Misc Helpers ----- */
.text-foot { color: rgba(255,255,255,.35) !important; }
.text-foot-light { color: rgba(255,255,255,.4) !important; font-size: 1.1rem !important; }
.text-foot-muted { color: rgba(255,255,255,.5) !important; font-size: .88rem !important; }

/* ----- Status Badge Colors ----- */
.badge-new { background: var(--gold); color: #fff; }
.badge-contacted { background: var(--gold); color: #fff; }
.badge-converted { background: #28a745; color: #fff; }
.badge-closed { background: var(--text-dim); color: #fff; }
.badge-qualified { background: #6f42c1; color: #fff; }
.badge-negotiation { background: #28a745; color: #fff; }

/* ----- Role Badges (dynamic) ----- */
.role-badge { color: #fff !important; }
.role-admin   { background: var(--gold) !important; color: #fff !important; }
.role-manager { background: var(--gold) !important; color: #fff !important; }
.role-user    { background: var(--text-dim) !important; color: #fff !important; }

/* ----- Status Badges (dynamic) ----- */
.status-badge { color: #fff !important; }
.status-new         { background: var(--gold) !important; color: #fff !important; }
.status-contacted   { background: var(--gold) !important; color: #fff !important; }
.status-converted   { background: #28a745 !important; color: #fff !important; }
.status-closed      { background: var(--text-dim) !important; color: #fff !important; }
.status-qualified   { background: #6f42c1 !important; color: #fff !important; }
.status-negotiation { background: #28a745 !important; color: #fff !important; }

/* ----- Accordion Button Custom ----- */
.accordion-button-custom {
  color: var(--white) !important;
  background: var(--surface-card) !important;
  border-radius: var(--radius) !important;
}

/* ----- Border Footer ----- */
.border-foot { border-color: rgba(255,255,255,.08) !important; }
