    :root {
      --bg-deep: #05060a;
      --bg-elevated: #0c0e14;
      --bg-card: rgba(18, 22, 32, 0.72);
      --bg-glass: rgba(255, 255, 255, 0.04);
      --border-glass: rgba(255, 255, 255, 0.08);
      --text-primary: #f5f7fb;
      --text-secondary: #9aa3b5;
      --text-muted: #6b7385;
      --accent: #c8a45d;
      --accent-soft: rgba(200, 164, 93, 0.15);
      --accent-strong: #e8c87a;
      --blue: #4f8cff;
      --blue-soft: rgba(79, 140, 255, 0.15);
      --success: #3dd68c;
      --danger: #ff5c7a;
      --gradient-hero: linear-gradient(135deg, rgba(5,6,10,0.2) 0%, rgba(5,6,10,0.75) 55%, rgba(5,6,10,0.95) 100%);
      --gradient-gold: linear-gradient(135deg, #c8a45d 0%, #f0d78c 50%, #a8873f 100%);
      --gradient-blue: linear-gradient(135deg, #3a7bfd 0%, #7aa7ff 100%);
      --shadow-soft: 0 20px 60px rgba(0,0,0,0.45);
      --shadow-glow: 0 0 40px rgba(200, 164, 93, 0.18);
      --radius-lg: 24px;
      --radius-md: 16px;
      --radius-sm: 12px;
      --nav-height: 80px;
      --font-sans: 'Inter', system-ui, sans-serif;
      --font-display: 'Playfair Display', Georgia, serif;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: var(--font-sans);
      background: var(--bg-deep);
      color: var(--text-primary);
      overflow-x: hidden;
      min-height: 100vh;
    }

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 50% at 20% -10%, rgba(200,164,93,0.12), transparent 50%),
        radial-gradient(ellipse 60% 40% at 90% 10%, rgba(79,140,255,0.1), transparent 45%),
        radial-gradient(ellipse 50% 30% at 50% 100%, rgba(200,164,93,0.06), transparent 50%);
      pointer-events: none;
      z-index: 0;
    }

    .page { display: none; position: relative; z-index: 1; min-height: 100vh; }
    .page.active { display: block; }

    /* LOADER */
    #loader {
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: #05060a;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      transition: opacity 0.8s ease, visibility 0.8s ease;
    }
    #loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
    .loader-logo {
      font-family: var(--font-display);
      font-size: 2.5rem;
      letter-spacing: 0.08em;
      background: var(--bs-danger);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 2rem;
      text-align: center;
    }
    .loader-bar {
      width: 200px;
      height: 2px;
      background: rgba(255,255,255,0.1);
      border-radius: 2px;
      overflow: hidden;
    }
    .loader-bar-fill {
      height: 100%;
      width: 0%;
      background: var(--bs-danger);
      animation: loadFill 1.8s ease forwards;
    }
    @keyframes loadFill { to { width: 100%; } }

    /* NAV */
    .navbar-premium {
      position: fixed;
      top: 0; left: 0; right: 0;
      height: var(--nav-height);
      z-index: 1000;
      transition: all 0.4s ease;
      background: transparent;
      border-bottom: 1px solid transparent;
    }
    .navbar-premium.scrolled {
      background: rgba(5, 6, 10, 0.85);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom-color: var(--border-glass);
    }
    .navbar-premium .container-fluid {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 2rem;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .brand {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      text-decoration: none;
      cursor: pointer;
    }
    .brand-mark {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      background: var(--bs-danger);
      display: grid;
      place-items: center;
      color: #0a0a0a;
      font-weight: 800;
      font-size: 0.9rem;
      box-shadow: var(--shadow-glow);
    }
    .brand-text {
      font-family: var(--font-display);
      font-size: 1.35rem;
      color: var(--text-primary);
      letter-spacing: 0.04em;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 0.25rem;
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .nav-links a {
      color: var(--text-secondary);
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 500;
      padding: 0.55rem 1rem;
      border-radius: 999px;
      transition: all 0.3s ease;
      cursor: pointer;
    }
    .nav-links a:hover,
    .nav-links a.active {
      color: var(--text-primary);
      background: var(--bg-glass);
    }
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    .nav-icon-btn {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      border: 1px solid var(--border-glass);
      background: var(--bg-glass);
      color: var(--text-secondary);
      display: grid;
      place-items: center;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .nav-icon-btn:hover {
      color: var(--text-primary);
      border-color: rgba(255,255,255,0.18);
      background: rgba(255,255,255,0.08);
    }
    .btn-premium {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 0.85rem 1.5rem;
      border-radius: 999px;
      border: none;
      font-weight: 600;
      font-size: 0.9rem;
      cursor: pointer;
      transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
      text-decoration: none;
      position: relative;
      overflow: hidden;
    }
    .btn-gold {
      background: var(--bs-danger);
      color: #0a0a0a;
      box-shadow: 0 8px 30px rgba(200,164,93,0.3);
    }
    .btn-gold:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 40px rgba(200,164,93,0.45);
      color: #0a0a0a;
    }
    .btn-ghost {
      background: transparent;
      color: var(--text-primary);
      border: 1px solid var(--border-glass);
      backdrop-filter: blur(10px);
    }
    .btn-ghost:hover {
      background: var(--bg-glass);
      border-color: rgba(255,255,255,0.2);
      color: var(--text-primary);
      transform: translateY(-2px);
    }
    .btn-blue {
      background: var(--gradient-blue);
      color: white;
      box-shadow: 0 8px 30px rgba(79,140,255,0.3);
    }
    
    
    .marquee {
  overflow: hidden;
  padding: 44px 0;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,.012);
}

.marquee-track {
  display: flex;
  gap: 90px;
  width: max-content;
  animation: scrollX 34s linear infinite;
}

.marquee-track span {
  font-family: 'Sora';
  font-weight: 700;
  font-size: 1.5rem;
  color: rgba(255,255,255,.16);
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color .3s;
}
    
    
    
    .btn-blue:hover {
      transform: translateY(-2px);
      color: white;
      box-shadow: 0 12px 40px rgba(79,140,255,0.45);
    }
    .btn-sm-premium {
      padding: 0.55rem 1.1rem;
      font-size: 0.82rem;
    }
    .mobile-toggle {
      display: none;
      width: 42px;
      height: 42px;
      border-radius: 12px;
      border: 1px solid var(--border-glass);
      background: var(--bg-glass);
      color: var(--text-primary);
      cursor: pointer;
    }
    .mobile-menu {
      display: none;
      position: fixed;
      top: var(--nav-height);
      left: 0; right: 0;
      background: rgba(5,6,10,0.96);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border-glass);
      padding: 1.5rem;
      z-index: 999;
      flex-direction: column;
      gap: 0.5rem;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      color: var(--text-secondary);
      text-decoration: none;
      padding: 0.85rem 1rem;
      border-radius: 12px;
      font-weight: 500;
      cursor: pointer;
    }
    .mobile-menu a:hover { background: var(--bg-glass); color: var(--text-primary); }

    /* HERO */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: flex-end;
      padding: 0 0 8vh;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transform: scale(1.05);
      transition: transform 8s ease;
    }
    .hero:hover .hero-bg { transform: scale(1.1); }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: var(--gradient-hero);
    }
    .hero-glow {
      position: absolute;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(200,164,93,0.2), transparent 70%);
      bottom: -200px;
      left: 10%;
      filter: blur(40px);
      pointer-events: none;
    }
    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 2rem;
      width: 100%;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.45rem 1rem;
      border-radius: 999px;
      background: var(--accent-soft);
      border: 1px solid rgba(200,164,93,0.25);
      color: var(--accent-strong);
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      margin-bottom: 1.5rem;
    }
    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(2.8rem, 6vw, 5.5rem);
      font-weight: 600;
      line-height: 1.05;
      max-width: 900px;
      margin-bottom: 1.5rem;
      letter-spacing: -0.02em;
    }
    .hero-title span {
      background: var(--bs-danger);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero-sub {
      font-size: 1.15rem;
      color: var(--text-secondary);
      max-width: 560px;
      line-height: 1.7;
      margin-bottom: 2.5rem;
      font-weight: 400;
    }
    .hero-ctas {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-bottom: 4rem;
    }
    .hero-stats {
      display: flex;
      flex-wrap: wrap;
      gap: 3rem;
      padding-top: 2rem;
      border-top: 1px solid var(--border-glass);
      max-width: 700px;
    }
    .hero-stat-value {
      font-size: 1.75rem;
      font-weight: 700;
      background: var(--bs-danger);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero-stat-label {
      font-size: 0.85rem;
      color: var(--text-muted);
      margin-top: 0.25rem;
    }

    /* SECTIONS */
    .section {
      padding: 7rem 0;
      position: relative;
    }
    .section-sm { padding: 4rem 0; }
    .container-premium {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 2rem;
    }
    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--bs-danger);
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }
    .section-title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 600;
      line-height: 1.15;
      margin-bottom: 1rem;
      letter-spacing: -0.02em;
    }
    .section-sub {
      color: var(--text-secondary);
      font-size: 1.05rem;
      max-width: 560px;
      line-height: 1.7;
    }
    .section-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 2rem;
      margin-bottom: 3rem;
      flex-wrap: wrap;
    }

    /* GLASS CARDS */
    .glass-card {
      background: var(--bg-card);
      border: 1px solid var(--border-glass);
      border-radius: var(--radius-lg);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      box-shadow: var(--shadow-soft);
      transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .glass-card:hover {
      border-color: rgba(255,255,255,0.14);
      transform: translateY(-4px);
      box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    }

    /* SERVICES */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    .service-card {
      padding: 2rem;
      position: relative;
      overflow: hidden;
    }
    .service-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(200,164,93,0.5), transparent);
      opacity: 0;
      transition: opacity 0.4s;
    }
    .service-card:hover::before { opacity: 1; }
    .service-icon {
      width: 56px;
      height: 56px;
      border-radius: 16px;
      background: var(--accent-soft);
      color: var(--bs-danger);
      display: grid;
      place-items: center;
      font-size: 1.3rem;
      margin-bottom: 1.5rem;
    }
    .service-card h3 {
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 0.75rem;
    }
    .service-card p {
      color: var(--text-secondary);
      font-size: 0.95rem;
      line-height: 1.65;
      margin: 0;
    }

    /* NETFLIX SLIDER */
    .featured-section {
      padding: 5rem 0 3rem;
      overflow: hidden;
    }
    .vehicle-swiper {
      overflow: visible;
      padding: 1rem 0 3rem;
    }
    .vehicle-card {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      cursor: pointer;
      background: var(--bg-elevated);
      border: 1px solid var(--border-glass);
      transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
      height: 420px;
    }
    .vehicle-card:hover {
      transform: translateY(-12px) scale(1.02);
      border-color: rgba(200,164,93,0.35);
      box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 40px rgba(200,164,93,0.1);
      z-index: 5;
    }
    .vehicle-card-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .vehicle-card:hover .vehicle-card-img { transform: scale(1.1); }
    .vehicle-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 30%, rgba(5,6,10,0.95) 100%);
    }
    .vehicle-card-body {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 1.5rem;
      z-index: 2;
    }
    .vehicle-badge {
  display: inline-block;
  border-radius: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.55rem;
  font-weight: bold !important;
  font-size: 15px !important;
  background: black !important;
  top: 15px;
  position: fixed;
  right: 15px;
}
    .badge-new { background: var(--blue-soft); color: #7aa7ff; }
    .badge-lease { background: var(--accent-soft); color: var(--accent-strong); }
    .badge-rent { background: rgba(61,214,140,0.15); color: var(--success); }
    .vehicle-card h3 {
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 0.35rem;
    }
    .vehicle-meta {
      display: flex;
      gap: 1rem;
      color: var(--text-muted);
      font-size: 0.8rem;
      margin-bottom: 0.85rem;
    }
    .vehicle-price {
      font-size: 1.15rem;
      font-weight: 700;
      color: goldenrod;
    }
    .vehicle-price small {
      font-size: 0.75rem;
      color: white;
      font-weight: 400;
    }
    .vehicle-card-actions {
      display: flex;
      gap: 0.5rem;
      margin-top: 1rem;
      opacity: 0;
      transform: translateY(10px);
      transition: all 0.35s ease;
    }
    .vehicle-card:hover .vehicle-card-actions {
      opacity: 1;
      transform: translateY(0);
    }

    /* CATALOGUE */
    .filters-bar {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      padding: 1.5rem;
      margin-bottom: 2rem;
      align-items: flex-end;
    }
    .filter-group {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
      flex: 1;
      min-width: 140px;
    }
    .filter-group label {
      font-size: 0.75rem;
      color: var(--text-muted);
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }
    .form-control-premium,
    .form-select-premium {
      background: rgba(255,255,255,0.04);
      border: 1px solid var(--border-glass);
      border-radius: 12px;
      color: var(--text-primary);
      padding: 0.7rem 1rem;
      font-size: 0.9rem;
      transition: all 0.3s ease;
      width: 100%;
    }
    .form-control-premium:focus,
    .form-select-premium:focus {
      outline: none;
      border-color: rgba(200,164,93,0.5);
      box-shadow: 0 0 0 3px rgba(200,164,93,0.1);
      background: rgba(255,255,255,0.06);
      color: var(--text-primary);
    }
    .form-select-premium option {
      background: #121620;
      color: var(--text-primary);
    }
    .catalogue-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 1.5rem;
    }
    .catalogue-card {
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: var(--bg-elevated);
      border: 1px solid var(--border-glass);
      transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
      cursor: pointer;
    }
    .catalogue-card:hover {
      transform: translateY(-8px);
      border-color: rgba(200,164,93,0.3);
      box-shadow: var(--shadow-soft), var(--shadow-glow);
    }
    .catalogue-card-img-wrap {
      position: relative;
      height: 220px;
      overflow: hidden;
    }
    .catalogue-card-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }
    .catalogue-card:hover .catalogue-card-img-wrap img { transform: scale(1.08); }
    .catalogue-card-body { padding: 1.35rem; }
    .catalogue-card h3 {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 0.4rem;
    }
    .catalogue-specs {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
      margin: 1rem 0;
    }
    .spec-chip {
      padding: 0.3rem 0.65rem;
      border-radius: 8px;
      background: var(--bg-glass);
      border: 1px solid var(--border-glass);
      font-size: 0.75rem;
      color: var(--text-secondary);
    }
    .catalogue-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 1rem;
      border-top: 1px solid var(--border-glass);
    }
    .fav-btn {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      border: 1px solid var(--border-glass);
      background: transparent;
      color: var(--text-muted);
      cursor: pointer;
      transition: all 0.3s;
      display: grid;
      place-items: center;
    }
    .fav-btn:hover, .fav-btn.active {
      color: var(--danger);
      border-color: rgba(255,92,122,0.3);
      background: rgba(255,92,122,0.1);
    }

    /* DETAIL PAGE */
    .detail-hero {
      position: relative;
      height: 70vh;
      min-height: 500px;
      overflow: hidden;
      margin-top: var(--nav-height);
    }
    .detail-hero img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .detail-hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(5,6,10,0.3) 0%, rgba(5,6,10,0.9) 100%);
      display: flex;
      align-items: flex-end;
      padding: 3rem 0;
    }
    .detail-gallery {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
      margin: 2rem 0;
    }
    .detail-gallery img {
      width: 100%;
      height: 120px;
      object-fit: cover;
      border-radius: var(--radius-sm);
      border: 2px solid transparent;
      cursor: pointer;
      transition: all 0.3s;
      opacity: 0.7;
    }
    .detail-gallery img:hover,
    .detail-gallery img.active {
      border-color: var(--bs-danger);
      opacity: 1;
    }
    .specs-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }
    .spec-item {
      padding: 1.25rem;
      border-radius: var(--radius-md);
      background: var(--bg-glass);
      border: 1px solid var(--border-glass);
    }
    .spec-item .label {
      font-size: 0.75rem;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-bottom: 0.35rem;
    }
    .spec-item .value {
      font-size: 1.1rem;
      font-weight: 600;
    }
    .price-simulator {
      padding: 2rem;
      position: sticky;
      top: 100px;
    }
    .price-big {
      font-size: 2.2rem;
      font-weight: 700;
      background: var(--bs-danger);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .range-premium {
      -webkit-appearance: none;
      width: 100%;
      height: 4px;
      border-radius: 2px;
      background: rgba(255,255,255,0.1);
      outline: none;
    }
    .range-premium::-webkit-slider-thumb {
      -webkit-appearance: none;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: var(--bs-danger);
      cursor: pointer;
      box-shadow: 0 0 10px rgba(200,164,93,0.5);
    }
    .review-card {
      padding: 1.5rem;
      margin-bottom: 1rem;
    }
    .stars { color: var(--bs-danger); letter-spacing: 2px; }

    /* DASHBOARD */
    .dashboard-layout {
      display: grid;
      grid-template-columns: 260px 1fr;
      min-height: 100vh;
      padding-top: var(--nav-height);
    }
    .sidebar {
      background: rgba(8,10,16,0.95);
      border-right: 1px solid var(--border-glass);
      padding: 2rem 1.25rem;
      position: sticky;
      top: var(--nav-height);
      height: calc(100vh - var(--nav-height));
      overflow-y: auto;
    }
    .sidebar-nav {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .sidebar-nav li { margin-bottom: 0.35rem; }
    .sidebar-nav a {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.8rem 1rem;
      border-radius: 12px;
      color: var(--text-secondary);
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 500;
      transition: all 0.3s;
      cursor: pointer;
    }
    .sidebar-nav a:hover,
    .sidebar-nav a.active {
      background: var(--accent-soft);
      color: goldenrod;
    }
    .sidebar-nav a i { width: 20px; text-align: center; }
    .dashboard-main {
      padding: 2.5rem;
      overflow-x: hidden;
    }
    .kpi-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.25rem;
      margin-bottom: 2rem;
    }
    .kpi-card {
      padding: 1.5rem;
    }
    .kpi-card .kpi-label {
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-bottom: 0.5rem;
    }
    .kpi-card .kpi-value {
      font-size: 1.75rem;
      font-weight: 700;
    }
    .kpi-card .kpi-change {
      font-size: 0.8rem;
      margin-top: 0.5rem;
    }
    .kpi-change.up { color: var(--success); }
    .kpi-change.down { color: var(--danger); }
    .chart-placeholder {
      height: 280px;
      display: flex;
      align-items: flex-end;
      gap: 12px;
      padding: 1.5rem;
    }
    .chart-bar {
      flex: 1;
      background: var(--bs-danger);
      border-radius: 8px 8px 0 0;
      opacity: 0.85;
      transition: opacity 0.3s;
      min-height: 20px;
      position: relative;
    }
    .chart-bar:hover { opacity: 1; }
    .chart-bar::after {
      content: attr(data-label);
      position: absolute;
      bottom: -24px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 0.7rem;
      color: var(--text-muted);
      white-space: nowrap;
    }
    .table-premium {
      width: 100%;
      border-collapse: collapse;
    }
    .table-premium th {
      text-align: left;
      padding: 1rem;
      font-size: 0.75rem;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      border-bottom: 1px solid var(--border-glass);
      font-weight: 600;
    }
    .table-premium td {
      padding: 1rem;
      border-bottom: 1px solid var(--border-glass);
      font-size: 0.9rem;
      color: var(--text-secondary);
    }
    .table-premium tr:hover td {
      background: rgba(255,255,255,0.02);
      color: var(--text-primary);
    }
    .status-pill {
      display: inline-block;
      padding: 0.3rem 0.7rem;
      border-radius: 999px;
      font-size: 0.75rem;
      font-weight: 600;
    }
    .status-active { background: rgba(61,214,140,0.15); color: var(--success); }
    .status-pending { background: var(--accent-soft); color: goldenrod; }
    .status-cancelled { background: rgba(255,92,122,0.15); color: var(--danger); }

    /* LOGIN */
    .auth-page {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      padding-top: 0;
    }
    .auth-visual {
      position: relative;
      overflow: hidden;
    }
    .auth-visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .auth-visual-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(5,6,10,0.7), rgba(5,6,10,0.4));
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 4rem;
    }
    .auth-form-wrap {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 3rem;
      background: var(--bg-deep);
    }
    .auth-form {
      width: 100%;
      max-width: 420px;
    }
    .auth-tabs {
      display: flex;
      gap: 0.5rem;
      margin-bottom: 2rem;
      background: var(--bg-glass);
      padding: 0.35rem;
      border-radius: 14px;
      border: 1px solid var(--border-glass);
    }
    .auth-tab {
      flex: 1;
      padding: 0.7rem;
      border: none;
      background: transparent;
      color: var(--text-muted);
      border-radius: 10px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
    }
    .auth-tab.active {
      background: var(--accent-soft);
      color: goldenrod;
    }
    .form-group-premium {
      margin-bottom: 1.25rem;
    }
    .form-group-premium label {
      display: block;
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-bottom: 0.45rem;
      font-weight: 500;
    }

    /* EXPERIENCE BAND */
    .experience-band {
      position: relative;
      padding: 8rem 0;
      overflow: hidden;
    }
    .experience-band-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      filter: brightness(0.4);
    }
    .experience-content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 800px;
      margin: 0 auto;
    }

    /* BRANDS */
    .brands-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2rem 3.5rem;
      opacity: 0.5;
    }
    .brand-item {
      font-family: var(--font-display);
      font-size: 1.3rem;
      color: var(--text-secondary);
      letter-spacing: 0.1em;
      transition: all 0.3s;
      cursor: default;
    }
    .brand-item:hover {
      opacity: 1;
      color: var(--text-primary);
    }

    /* FOOTER */
    .footer {
      border-top: 1px solid var(--border-glass);
      padding: 5rem 0 2rem;
      background: rgba(5,6,10,0.8);
      position: relative;
      z-index: 1;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem;
      margin-bottom: 3rem;
    }
    .footer h4 {
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--text-muted);
      margin-bottom: 1.25rem;
      font-weight: 600;
    }
    .footer a {
      display: block;
      color: var(--text-secondary);
      text-decoration: none;
      font-size: 0.9rem;
      margin-bottom: 0.7rem;
      transition: color 0.3s;
      cursor: pointer;
    }
    .footer a:hover { color: var(--bs-danger); }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 2rem;
      border-top: 1px solid var(--border-glass);
      color: var(--text-muted);
      font-size: 0.85rem;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .socials {
      display: flex;
      gap: 0.75rem;
    }
    .socials a {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      border: 1px solid var(--border-glass);
      display: grid;
      place-items: center;
      color: var(--text-secondary);
      margin: 0;
      transition: all 0.3s;
    }
    .socials a:hover {
      border-color: var(--bs-danger);
      color: var(--bs-danger);
      background: var(--accent-soft);
    }

    /* SEARCH MODAL */
    .search-overlay {
      position: fixed;
      inset: 0;
      z-index: 2000;
      background: rgba(5,6,10,0.92);
      backdrop-filter: blur(20px);
      display: none;
      align-items: flex-start;
      justify-content: center;
      padding-top: 15vh;
    }
    .search-overlay.open { display: flex; }
    .search-box {
      width: 100%;
      max-width: 680px;
      padding: 0 1.5rem;
    }
    .search-input {
      width: 100%;
      background: transparent;
      border: none;
      border-bottom: 2px solid var(--border-glass);
      color: var(--text-primary);
      font-size: 1.75rem;
      padding: 1rem 0;
      outline: none;
      font-weight: 300;
    }
    .search-input::placeholder { color: var(--text-muted); }
    .search-results {
      margin-top: 2rem;
      max-height: 50vh;
      overflow-y: auto;
    }
    .search-result-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1rem;
      border-radius: 12px;
      cursor: pointer;
      transition: background 0.3s;
    }
    .search-result-item:hover { background: var(--bg-glass); }
    .search-result-item img {
      width: 80px;
      height: 50px;
      object-fit: cover;
      border-radius: 8px;
    }

    /* TOAST */
    .toast-container-premium {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      z-index: 3000;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }
    .toast-premium {
      padding: 1rem 1.5rem;
      border-radius: 14px;
      background: rgba(18,22,32,0.95);
      border: 1px solid var(--border-glass);
      backdrop-filter: blur(20px);
      color: var(--text-primary);
      font-size: 0.9rem;
      box-shadow: var(--shadow-soft);
      animation: toastIn 0.4s ease;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      min-width: 280px;
    }
    @keyframes toastIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* UTILS */
    .text-accent { color: goldenrod; }
    .text-muted-premium { color: var(--text-muted); }
    .text-secondary-premium { color: var(--text-secondary); }
    .mb-section { margin-bottom: 3rem; }
    .hidden { display: none !important; }
    .tab-panel { display: none; }
    .tab-panel.active { display: block; }

    /* RESPONSIVE */
    @media (max-width: 1200px) {
      .kpi-grid { grid-template-columns: repeat(2, 1fr); }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 992px) {
      .nav-links { display: none; }
      .mobile-toggle { display: grid; place-items: center; }
      .dashboard-layout { grid-template-columns: 1fr; }
      .sidebar {
        position: fixed;
        left: -280px;
        top: var(--nav-height);
        width: 260px;
        z-index: 900;
        transition: left 0.35s ease;
      }
      .sidebar.open { left: 0; }
      .auth-page { grid-template-columns: 1fr; }
      .auth-visual { display: none; }
      .detail-gallery { grid-template-columns: repeat(2, 1fr); }
      .specs-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 768px) {
      .services-grid { grid-template-columns: 1fr; }
      .hero-stats { gap: 1.5rem; }
      .kpi-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .dashboard-main { padding: 1.5rem; }
      .catalogue-grid { grid-template-columns: 1fr; }
      .filters-bar { flex-direction: column; }
      .filter-group { min-width: 100%; }
      .navbar-premium .container-fluid { padding: 0 1rem; }
      .container-premium { padding: 0 1rem; }
      .section { padding: 4rem 0; }
    }

    /* SCROLLBAR */
    ::-webkit-scrollbar { width: 8px; height: 8px; }
    ::-webkit-scrollbar-track { background: var(--bg-deep); }
    ::-webkit-scrollbar-thumb {
      background: rgba(255,255,255,0.12);
      border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.2); }

    /* 3D hover card effect helper */
    .card-3d {
      transform-style: preserve-3d;
      perspective: 1000px;
    }
