/* ═══════════════════════════════════════════
ROOT VARIABLES
═══════════════════════════════════════════ */
:root {
  --bg-dark:        #0c1618;
  --bg-card:        #121f23;
  --bg-card-hover:  #16262b;
  --bg-surface:     #0a1315;
  --primary:        #127a97;
  --primary-dark:   #0e5f74;
  --primary-light:  #1892b3;
  --primary-dim:    rgba(18, 122, 151, 0.12);
  --primary-glow:   rgba(18, 122, 151, 0.3);
  --accent:         #00b8d6;
  --text-primary:   #dcebed;
  --text-secondary: #6e97a2;
  --text-muted:     #3b5963;
  --border:         rgba(18, 122, 151, 0.18);
  --border-subtle:  rgba(255,255,255,0.05);
  --font-display:   'Manrope', sans-serif;
  --font-body:      'DM Sans', sans-serif;
  --radius-sm:      8px;
  --radius-md:      10px;
  --radius-lg:      10px;
  --radius-xl:      10px;
  --shadow-card:    0 4px 32px rgba(0,0,0,0.45);
  --shadow-glow:    0 0 40px rgba(18,122,151,0.25);
  --transition:     0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
/* ═══════════════════════════════════════════
BASE
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.65;
  overflow-x: hidden;
  padding: 0;
}
.form-control {
  font-size: 14px;
}
.dropdown-menu {
  --bs-dropdown-font-size: 14px;
}
/* ═══════════════════════════════════════════
TYPOGRAPHY
═══════════════════════════════════════════ */
.mv-display {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.mv-heading {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}
.mv-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
}
/* ═══════════════════════════════════════════
TEXT GRADIENT
═══════════════════════════════════════════ */
.mv-text-gradient {
  background: var(--primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* ═══════════════════════════════════════════
UTILITY
═══════════════════════════════════════════ */
.mv-text-primary { color: var(--primary); }
.mv-text-secondary { color: var(--text-secondary); }
.mv-text-muted { color: var(--text-muted); }
/* ═══════════════════════════════════════════
NAVBAR
═══════════════════════════════════════════ */
.mv-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13, 23, 25, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0;
  transition: background var(--transition);
}
.mv-navbar.scrolled {
  background: rgba(13, 23, 25, 0.98);
  border-bottom-color: var(--border);
}
.mv-navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.mv-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.mv-logo__mark {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(21,151,187,0.35);
}
.mv-logo__mark svg { width: 20px; height: 20px; color: #fff; }
.mv-logo__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--text-primary);
  letter-spacing: -0.04em;
}
.mv-logo__name span { color: var(--primary); }
.mv-nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.mv-nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-display);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.mv-nav-links a:hover {
  color: var(--text-primary);
  background: var(--border-subtle);
}
.mv-nav-actions { display: flex; align-items: center; gap: 0.6rem; }
/* Hamburger */
.mv-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.mv-hamburger:hover { background: var(--border-subtle); }
.mv-hamburger span {
  display: block;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.mv-hamburger span:first-child { width: 22px; }
.mv-hamburger span:nth-child(2) { width: 16px; }
.mv-hamburger span:last-child { width: 22px; }
.mv-hamburger.open span:first-child { transform: translateY(7px) rotate(45deg); width: 22px; }
.mv-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mv-hamburger.open span:last-child { transform: translateY(-7px) rotate(-45deg); width: 22px; }
/* Mobile menu */
.mv-mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: rgba(13, 23, 25, 0.98);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.25rem 0;
  z-index: 999;
  transform: translateY(-10px);
  opacity: 0;
  transition: all 0.25s ease;
}
.mv-mobile-menu.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
}
.mv-mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0 1rem;
}
.mv-mobile-menu ul a {
  display: block;
  padding: 0.7rem 1rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.mv-mobile-menu ul a:hover {
  color: var(--text-primary);
  background: var(--border-subtle);
}
.mv-mobile-menu__actions {
  display: flex;
  gap: 0.75rem;
  padding: 1rem 2rem 0;
  border-top: 1px solid var(--border-subtle);
  margin-top: 0.75rem;
}
/* ═══════════════════════════════════════════
BUTTONS
═══════════════════════════════════════════ */
.mv-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
  padding: 0.6rem 1.4rem;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  border: none;
  outline: none;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.mv-btn--primary {
  background: var(--primary);
  color: #fff;
}
.mv-btn--primary:hover {
  background: var(--primary-light);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(21,151,187,0.45);
}
.mv-btn--outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.mv-btn--outline:hover {
  background: var(--primary-dim);
  color: var(--primary-light);
}
.mv-btn--ghost {
  background: var(--border-subtle);
  color: var(--text-secondary);
}
.mv-btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  color: var(--text-primary);
}
.mv-btn--lg {
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-md);
}
/* ═══════════════════════════════════════════
HERO PRIMARY
═══════════════════════════════════════════ */
.mv-hero {
  padding-top: 50px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.mv-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.mv-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(21,151,187,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21,151,187,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 100%);
}
.mv-hero__glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21,151,187,0.18) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  pointer-events: none;
}
.mv-hero__glow--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,212,255,0.08) 0%, transparent 70%);
  bottom: -100px;
  left: -50px;
  top: auto;
}
.mv-hero__inner { position: relative; z-index: 1; }
.mv-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-dim);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  margin-bottom: 1.5rem;
}
.mv-hero__eyebrow-dot {
  width: 7px;
  height: 7px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
.mv-hero__title {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  margin-bottom: 1.2rem;
}
.mv-hero__sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 2rem;
  font-weight: 400;
  line-height: 1.7;
}
.mv-hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.mv-trust-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}
.mv-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.83rem;
  color: var(--text-secondary);
  font-weight: 600;
}
.mv-trust-item i {
  color: var(--primary);
  font-size: 1rem;
}
/* ═══════════════════════════════════════════
LOGIN FORM CARD
═══════════════════════════════════════════ */
.mv-login-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-card), 0 0 60px rgba(21,151,187,0.08);
  position: relative;
  overflow: hidden;
}
@keyframes shimmer-line {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}
.mv-login-card__header {
  text-align: center;
  margin-bottom: 2rem;
}
.mv-login-card__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
  letter-spacing: -0.03em;
}
.mv-login-card__sub {
  font-size: 0.875rem;
  color: var(--text-muted);
}
/* Form field styles */
.mv-form-group {
  margin-bottom: 1.2rem;
}
.mv-form-group label.control-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
  font-family: var(--font-display);
}
.mv-form-group .form-control {
  width: 100%;
  background: var(--bg-surface);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.7rem 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.mv-form-group .form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(21,151,187,0.12);
  background: var(--bg-surface);
  color: var(--text-primary);
}
.mv-form-group .form-control::placeholder { color: var(--text-muted); }
.mv-form-group__password { position: relative; }
.mv-forgot-link {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}
.mv-forgot-link:hover { color: var(--primary-light); }
.mv-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.mv-form-footer-left { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.mv-signup-text {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.mv-signup-text a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition);
}
.mv-signup-text a:hover { color: var(--primary-light); }
.mv-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.2rem 0;
  color: var(--text-muted);
  font-size: 0.8rem;
}
.mv-divider::before, .mv-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-subtle);
}
/* Alert overrides */
.mv-form-group .alert {
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  padding: 0.75rem 1rem;
  border: none;
}
.alert-danger {
  background: rgba(220, 53, 69, 0.12);
  color: #ff8a95;
  border: 1px solid rgba(220, 53, 69, 0.25) !important;
}
.alert-success {
  background: rgba(25, 195, 125, 0.12);
  color: #4ee4a0;
  border: 1px solid rgba(25, 195, 125, 0.25) !important;
}
.alert .close {
  background: none;
  border: none;
  color: inherit;
  opacity: 0.6;
  cursor: pointer;
  float: right;
}
/* ═══════════════════════════════════════════
HERO SECONDARY – SCALE & IMPACT
═══════════════════════════════════════════ */
.mv-price-hero {
  padding: 80px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}
.mv-price-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(21,151,187,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.mv-price-hero__inner { position: relative; z-index: 1; text-align: center; }
.mv-price-headline {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 0.75rem;
  letter-spacing: -0.04em;
}
.mv-price-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  font-weight: 400;
}
.mv-platforms {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 3rem;
}
.mv-platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.45rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--text-secondary);
  transition: all var(--transition);
  letter-spacing: -0.01em;
}
.mv-platform-badge:hover {
  color: var(--text-primary);
  background: var(--primary-dim);
}
.mv-platform-badge i { font-size: 1rem; }
/* Platform badge brand colors */
.mv-platform-badge--instagram i { color: #E1306C; }
.mv-platform-badge--instagram:hover { border-color: #E1306C; }
.mv-platform-badge--youtube i { color: #FF0000; }
.mv-platform-badge--youtube:hover { border-color: #FF0000; }
.mv-platform-badge--tiktok i { color: #69C9D0; }
.mv-platform-badge--tiktok:hover { border-color: #69C9D0; }
.mv-platform-badge--telegram i { color: #2AABEE; }
.mv-platform-badge--telegram:hover { border-color: #2AABEE; }
.mv-platform-badge--facebook i { color: #1877F2; }
.mv-platform-badge--facebook:hover { border-color: #1877F2; }
.mv-platform-badge--spotify i { color: #1DB954; }
.mv-platform-badge--spotify:hover { border-color: #1DB954; }
.mv-platform-badge--twitter i { color: #1D9BF0; }
.mv-platform-badge--twitter:hover { border-color: #1D9BF0; }
.mv-platform-badge--website i { color: var(--accent); }
.mv-platform-badge--website:hover { border-color: var(--accent); }
.mv-stats-row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
}
.mv-stat {
  flex: 1;
  min-width: 160px;
  padding: 1.75rem 2rem;
  text-align: center;
  border-right: 1px solid var(--border-subtle);
}
.mv-stat:last-child { border-right: none; }
.mv-stat__value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 0.4rem;
  letter-spacing: -0.04em;
}
.mv-stat__value span { color: var(--primary); }
.mv-stat__label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 700;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
/* ═══════════════════════════════════════════
SECTION BASE
═══════════════════════════════════════════ */
.mv-section {
  padding: 90px 0;
}
.mv-section--alt {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.mv-section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.mv-section-title {
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.04em;
}
.mv-section-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
  font-weight: 400;
  line-height: 1.7;
}
/* ═══════════════════════════════════════════
HOW IT WORKS
═══════════════════════════════════════════ */
.mv-step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: all var(--transition);
  height: 100%;
}
.mv-step-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.mv-step-number {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
}
.mv-step-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-dim);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all var(--transition);
}
.mv-step-card:hover .mv-step-icon {
  background: var(--primary);
  border-color: var(--primary);
}
.mv-step-icon i {
  font-size: 1.7rem;
  color: var(--primary);
  transition: color var(--transition);
}
.mv-step-card:hover .mv-step-icon i { color: #fff; }
.mv-step-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}
.mv-step-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}
.mv-steps-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 2rem;
}
.mv-steps-connector i { color: var(--border); font-size: 1.3rem; }
/* ═══════════════════════════════════════════
SERVICES GRID
═══════════════════════════════════════════ */
.mv-service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.mv-service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-dim) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.mv-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(21,151,187,0.2);
}
.mv-service-card:hover::after { opacity: 1; }

/* Service card platform brand accents */

.mv-service-card--instagram {}
.mv-service-card--instagram .mv-service-card__icon { background: rgba(225,48,108,0.1); }
.mv-service-card--instagram .mv-service-card__icon i { color: #E1306C; }
.mv-service-card--instagram:hover { 
  border-color: #E1306C;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(225,48,108,0.3); 
}

.mv-service-card--youtube {}
.mv-service-card--youtube .mv-service-card__icon { background: rgba(255,0,0,0.1); }
.mv-service-card--youtube .mv-service-card__icon i { color: #FF0000; }
.mv-service-card--youtube:hover { 
  border-color: #FF0000;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,0,0,0.25); 
}

.mv-service-card--tiktok {}
.mv-service-card--tiktok .mv-service-card__icon { background: rgba(238,29,82,0.08); }
.mv-service-card--tiktok .mv-service-card__icon i { color: #EE1D52; }
.mv-service-card--tiktok:hover { 
  border-color: #EE1D52;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(105,201,208,0.3); 
}

.mv-service-card--telegram {}
.mv-service-card--telegram .mv-service-card__icon { background: rgba(42,171,238,0.1); }
.mv-service-card--telegram .mv-service-card__icon i { color: #2AABEE; }
.mv-service-card--telegram:hover { 
  border-color: #2AABEE;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(42,171,238,0.3); 
}

.mv-service-card--facebook {}
.mv-service-card--facebook .mv-service-card__icon { background: rgba(24,119,242,0.1); }
.mv-service-card--facebook .mv-service-card__icon i { color: #1877F2; }
.mv-service-card--facebook:hover { 
  border-color: #1877F2;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(24,119,242,0.3); 
}

.mv-service-card--website {}
.mv-service-card--website .mv-service-card__icon { background: rgba(0,184,214,0.1); }
.mv-service-card--website .mv-service-card__icon i { color: var(--accent); }
.mv-service-card--website:hover { 
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(0,184,214,0.3); 
}

.mv-service-card__icon {
  width: 52px;
  height: 52px;
  background: var(--primary-dim);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
}
.mv-service-card__icon i {
  font-size: 1.5rem;
  color: var(--primary);
}
.mv-service-card__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  position: relative;
  z-index: 1;
  letter-spacing: -0.02em;
}
.mv-service-card__types {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
}
.mv-service-card__footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}
.mv-service-card__price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.mv-service-card__tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.mv-tag {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  letter-spacing: 0.04em;
}
.mv-tag--instant {
  background: rgba(21,151,187,0.15);
  color: var(--primary-light);
}
.mv-tag--quality {
  background: rgba(100, 200, 140, 0.12);
  color: #5ecf8a;
}
.mv-services-cta {
  text-align: center;
  margin-top: 2.5rem;
}
/* ═══════════════════════════════════════════
WHY CHOOSE US
═══════════════════════════════════════════ */
.mv-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 991px) {
  .mv-feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .mv-feature-grid { grid-template-columns: 1fr; }
}
.mv-feature-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  transition: all var(--transition);
  flex-direction: column;
}
.mv-feature-item:hover {
  border-color: var(--border);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.3);
}
.mv-feature-icon {
  width: 46px;
  height: 46px;
  background: var(--primary-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}
.mv-feature-item:hover .mv-feature-icon {
  background: var(--primary);
  border-color: var(--primary);
}
.mv-feature-icon i {
  font-size: 1.25rem;
  color: var(--primary);
  transition: color var(--transition);
}
.mv-feature-item:hover .mv-feature-icon i { color: #fff; }
.mv-feature-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
  letter-spacing: -0.02em;
}
.mv-feature-desc {
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.6;
}
/* ═══════════════════════════════════════════
CTA BANNER
═══════════════════════════════════════════ */
.mv-cta-banner {
  padding: 80px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}
.mv-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 100% at 20% 50%, rgba(21,151,187,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 80% at 80% 50%, rgba(0,212,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.mv-cta-banner__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.mv-cta-banner__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  letter-spacing: -0.04em;
}
.mv-cta-banner__desc {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-weight: 400;
  line-height: 1.7;
}
.mv-cta-banner__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
/* ═══════════════════════════════════════════
FOOTER
═══════════════════════════════════════════ */
.mv-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  padding: 70px 0 0;
}
.mv-footer__brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--text-primary);
  letter-spacing: -0.04em;
  margin-bottom: 0.75rem;
}
.mv-footer__brand-name span { color: var(--primary); }
.mv-footer__tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 240px;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.mv-footer__social {
  display: flex;
  gap: 0.6rem;
}
.mv-social-btn {
  width: 36px;
  height: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: all var(--transition);
}
.mv-social-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-dim);
}
.mv-social-btn i { font-size: 1rem; }
.mv-footer__col-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}
.mv-footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mv-footer__links li a {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color var(--transition);
  font-weight: 500;
}
.mv-footer__links li a i { font-size: 0.9rem; }
.mv-footer__links li a:hover { color: var(--primary); }
.mv-footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.mv-footer__contact-item i { color: var(--primary); font-size: 1rem; flex-shrink: 0; }
.mv-footer__bottom {
  margin-top: 3.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.mv-footer__copy {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}
.mv-footer__legal {
  display: flex;
  gap: 1.25rem;
}
.mv-footer__legal a {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}
.mv-footer__legal a:hover { color: var(--primary); }
/* ═══════════════════════════════════════════
RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 991px) {
  .mv-nav-links { display: none; }
  .mv-hamburger { display: flex; }
  .mv-hero { min-height: auto; padding-top: 30px; padding-bottom: 60px; }
  .mv-hero__title { font-size: 2.4rem; }
  .mv-hero__sub { font-size: 1rem; max-width: 100%; }
  /*.mv-login-card { margin-top: 2.5rem; }*/
}
@media (max-width: 767px) {
  .mv-section { padding: 60px 0; }
  .mv-login-card { padding: 1.75rem; }
  .mv-trust-bar { gap: 0.5rem 1rem; }
  .mv-footer__bottom { flex-direction: column; text-align: center; }
  .mv-footer__legal { justify-content: center; }
  .mv-stat { border-right: none; border-bottom: 1px solid var(--border-subtle); }
  .mv-stat:last-child { border-bottom: none; }
  .mv-nav-actions .mv-btn--ghost { display: none; }
  .mv-price-hero { padding: 60px 0; }
  .mv-cta-banner { padding: 60px 0; }
}
@media (max-width: 575px) {
  .mv-hero__title { font-size: 2rem; }
  .mv-hero__actions { flex-direction: column; align-items: flex-start; }
  .mv-hero__actions .mv-btn { width: 100%; justify-content: center; }
  .mv-cta-banner__actions { flex-direction: column; }
  .mv-cta-banner__actions .mv-btn { width: 100%; justify-content: center; }
}
/* ═══════════════════════════════════════════
ANIMATIONS
═══════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mv-fade-up {
  animation: fadeUp 0.7s cubic-bezier(0.4,0,0.2,1) both;
}
.mv-fade-up--d1 { animation-delay: 0.1s; }
.mv-fade-up--d2 { animation-delay: 0.2s; }
.mv-fade-up--d3 { animation-delay: 0.3s; }
.mv-fade-up--d4 { animation-delay: 0.4s; }
.mv-fade-up--d5 { animation-delay: 0.5s; }
/* Google Sign-in placeholder */
.mv-google-signin-placeholder {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-surface);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.mv-google-signin-placeholder:hover {
  border-color: var(--border);
  color: var(--text-primary);
}
p.mv-step-desc, p.mv-feature-desc {
  margin: 0;
}

@media (max-width: 575px) {
  .mv-hero__actions {
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 10px;
  }
  .mv-hero__actions .mv-btn {
    width: fit-content;
    justify-content: center;
    font-size: 13px;
    padding: 10px 16px;
    flex: auto;
  }
}
.mv-stats-row {
  background: var(--primary);
}
.mv-stat__value span {
  color: #fff;
}
.mv-stat__label {
  color: #ffffff99;
}
ul.mv-footer__links {
  padding: 0;
}
.mv-footer__links li a {
  white-space: nowrap;
}
.mv-footer__links li a i {
  color: var(--primary);
}
button.mv-btn.mv-btn--primary.btn.btn-primary {
  width: 100%;
  text-align: center;
  justify-content: center;
}
span.mv-signup-text {
  width: 100%;
  text-align: center;
  display: block;
}
a.mv-forgot-link.forgot-password {
  margin: 0;
  bottom: 1px;
  border-left: 1px solid #ffffff10;
  padding: 11px;
  right: 0;
  background: var(--bg-surface);
  border-radius: 0 10px 10px 0;
  right: 1px;
}

nav.guestTop {
  background: var(--bg-dark);
}
.guestBtngrps {
  display: flex;
  align-items: center;
  gap: 10px;
}
.guestNavbarins {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 10px;
}
a.navbar-brand {
  color: #fff;
}




/* ═══════════════════════════════════════════
MV SIDEBAR + NAVBAR
═══════════════════════════════════════════ */

/* ── Layout Shell ─────────────────────────── */
.mv-layout {
  display: flex;
  min-height: 100vh;
  background: var(--bg-dark);
}

/* ── Sidebar ──────────────────────────────── */
.mv-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 260px;
  height: 100vh;
  /* Same as body background — blends seamlessly */
  background: var(--bg-dark);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  z-index: 1000;
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
}

/* Sidebar inner scroll area */
.mv-sidebar__inner {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  padding-top: 0.75rem;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-dim) transparent;
}
.mv-sidebar__inner::-webkit-scrollbar { width: 4px; }
.mv-sidebar__inner::-webkit-scrollbar-track { background: transparent; }
.mv-sidebar__inner::-webkit-scrollbar-thumb { background: var(--primary-dim); border-radius: 4px; }

/* Quick Actions (Language + Currency) */
.mv-sidebar__quick-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin: 0 0.85rem 0.5rem;
  flex-shrink: 0;
}
.mv-quick-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.3rem;
  padding: 0.65rem 0.4rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
}
.mv-quick-btn i {
  font-size: 1.05rem;
  color: var(--primary-light);
  transition: color var(--transition);
}
.mv-quick-btn:hover {
  background: var(--primary-dim);
  border-color: var(--primary);
  color: var(--text-primary);
}
.mv-quick-btn:hover i { color: var(--accent); }

/* Nav Section Label */
.mv-sidebar__section-label {
  padding: 0.9rem 1.1rem 0.3rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  flex-shrink: 0;
}

/* Nav Menu */
.mv-sidebar__nav {
  list-style: none;
  padding: 0 0.65rem;
  flex-shrink: 0;
}
.mv-sidebar__nav-item { margin-bottom: 2px; }

.mv-sidebar__nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.8rem;
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all var(--transition);
  position: relative;
}
.mv-sidebar__nav-link .mv-nav-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: all var(--transition);
}
.mv-sidebar__nav-link .mv-nav-label { flex: 1; }

.mv-sidebar__nav-link:hover {
  background: var(--bg-card);
  color: var(--text-primary);
}
.mv-sidebar__nav-link:hover .mv-nav-icon {
  color: var(--accent);
}

.mv-sidebar__nav-link.active {
  background: var(--bg-card);
  color: var(--text-primary);
  font-weight: 600;
}
.mv-sidebar__nav-link.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18%; bottom: 18%;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-light), var(--accent));
  border-radius: 0 3px 3px 0;
}
.mv-sidebar__nav-link.active .mv-nav-icon {
  color: var(--accent);
}

/* Sidebar Footer — pinned at bottom */
.mv-sidebar__footer {
  padding: 0.75rem 0.65rem;
  border-top: 1px solid var(--border-subtle);
  flex-shrink: 0;
}
.mv-sidebar__footer-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.8rem;
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  transition: all var(--transition);
  margin-bottom: 0.65rem;
}
.mv-sidebar__footer-link i { font-size: 1rem; }
.mv-sidebar__footer-link:hover {
  background: rgba(239, 68, 68, 0.08);
  color: #f87171;
}

/* User Card — pinned at very bottom (like reference screenshot) */
.mv-sidebar__user-card {
  padding: 0.75rem 0.8rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
}
.mv-sidebar__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px var(--bg-dark), 0 0 0 4px var(--primary-dim);
  overflow: hidden;
}
.mv-sidebar__avatar img { width: 100%; height: 100%; object-fit: cover; }
.mv-sidebar__user-info { flex: 1; min-width: 0; }
.mv-sidebar__username {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.84rem;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mv-sidebar__balance {
  font-size: 0.7rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.mv-sidebar__user-badge {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.6);
  flex-shrink: 0;
}

/* ── Main Content Area ────────────────────── */
.mv-main {
  margin-left: 260px;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  transition: margin-left var(--transition);
}

/* ── Navbar (Authenticated) ───────────────── */
.mv-topbar {
  position: sticky;
  top: 0;
  z-index: 999;
  height: 62px;
  background: rgba(12, 22, 24, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  gap: 1rem;
}
.mv-topbar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-dim), transparent);
}

/* Logo — always visible on left, all breakpoints */
.mv-topbar__logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  text-decoration: none;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.mv-topbar__logo span { color: var(--accent); }

.mv-topbar__spacer { flex: 1; }

/* Right actions */
.mv-topbar__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Balance Pill — always visible */
.mv-topbar__balance {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.85rem 0.4rem 0.65rem;
  background: var(--primary-dim);
  border: 1px solid var(--primary);
  border-radius: 20px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: all var(--transition);
  flex-shrink: 0;
}
.mv-topbar__balance i { font-size: 0.95rem; }
.mv-topbar__balance:hover {
  background: var(--primary);
  color: #fff;
}

/* Profile Dropdown */
.mv-profile-dropdown { position: relative; }

.mv-profile-trigger {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.35rem 0.65rem 0.35rem 0.35rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 40px;
  cursor: pointer;
  transition: all var(--transition);
}
.mv-profile-trigger:hover {
  background: var(--bg-card);
  border-color: var(--primary);
}
.mv-profile-trigger__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  color: #fff;
  overflow: hidden;
  flex-shrink: 0;
}
.mv-profile-trigger__avatar img { width: 100%; height: 100%; object-fit: cover; }
.mv-profile-trigger__name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  max-width: 90px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mv-profile-trigger__caret {
  color: var(--text-muted);
  font-size: 0.8rem;
  transition: transform var(--transition);
}
.mv-profile-dropdown.open .mv-profile-trigger { border-color: var(--primary); }
.mv-profile-dropdown.open .mv-profile-trigger__caret { transform: rotate(180deg); }

/* Dropdown Menu */
.mv-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 220px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.45);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.97);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: top right;
  z-index: 2000;
}
.mv-profile-dropdown.open .mv-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.mv-dropdown-header {
  padding: 0.5rem 0.75rem 0.65rem;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 0.4rem;
}
.mv-dropdown-header__name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-primary);
  font-family: var(--font-display);
}
.mv-dropdown-header__role {
  font-size: 0.7rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.mv-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 500;
  transition: all var(--transition);
  cursor: pointer;
}
.mv-dropdown-item i { font-size: 1rem; width: 18px; text-align: center; }
.mv-dropdown-item:hover {
  background: var(--bg-card-hover);
  color: var(--text-primary);
}
.mv-dropdown-item.danger:hover {
  background: rgba(239, 68, 68, 0.08);
  color: #f87171;
}
.mv-dropdown-divider {
  height: 1px;
  background: var(--border-subtle);
  margin: 0.4rem 0;
}

/* Hamburger — tablet/mobile only, rightmost */
.mv-hamburger {
  width: 36px;
  height: 36px;
  display: none; /* hidden on desktop */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0;
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition);
}
.mv-hamburger:hover {
  background: var(--primary-dim);
  border-color: var(--primary);
}
.mv-hamburger__bar {
  width: 18px;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.25s ease,
    background 0.25s ease;
  transform-origin: center;
}
.mv-hamburger.open .mv-hamburger__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--accent);
}
.mv-hamburger.open .mv-hamburger__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.mv-hamburger.open .mv-hamburger__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--accent);
}

/* Sidebar Overlay */
.mv-sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.mv-sidebar-overlay.active { opacity: 1; pointer-events: all; }

/* Page Content */
.mv-page-content { flex: 1; padding: 2rem 1.75rem; }

/* ══════════════════════════════════════════
RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  /* Sidebar slides off-canvas */
  .mv-sidebar {
    transform: translateX(-100%);
    box-shadow: none;
  }
  .mv-sidebar.open {
    transform: translateX(0);
    box-shadow: 4px 0 40px rgba(0, 0, 0, 0.6);
  }
  .mv-sidebar-overlay { display: block; }

  /* No sidebar offset on main */
  .mv-main { margin-left: 0; }

  /* Show hamburger */
  .mv-hamburger { display: flex; }

  /* Profile name hidden on small tablets to save space */
  .mv-profile-trigger__name { display: none; }
  .mv-profile-trigger__caret { display: none; }
}

@media (max-width: 640px) {
  .mv-topbar { padding: 0 1rem; gap: 0.6rem; }
  .mv-page-content { padding: 1.25rem 1rem; }

  /* Dropdown opens to left on mobile to avoid clipping */
  .mv-dropdown-menu {
    right: 0;
    left: auto;
    width: 200px;
  }
}
a.mv-sidebar__footer-link:last-child {
  margin: 0;
}
.mv-sidebar__user-card {
  margin: 0.85rem;
  margin-bottom: 10px;
}
.mv-sidebar__inner {
  height: -webkit-fill-available;
}
.mv-sidebar__footer {
  position: sticky;
  bottom: 0;
}
.mv-sidebar {
  height: 100%;
}



/* ═══════════════════════════════════════════════════════
NEW ORDER — ADDITIVE CLASSES ONLY (no-* prefix)
Zero Bootstrap overrides. Zero mv-* modifications.
═══════════════════════════════════════════════════════ */
.no-page { padding: 1.75rem 0 4rem; }
/* ── Greeting ── */
.no-greeting {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
}
.no-greeting::after {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  pointer-events: none;
}
.no-greeting__avatar {
  width: 40px; height: 40px;
  background: var(--primary-dim);
  border: 1.5px solid var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-size: 1.15rem;
  flex-shrink: 0;
}
.no-greeting__name {
  font-family: var(--font-display);
  font-size: 0.95rem; font-weight: 700;
  color: var(--text-primary);
}
.no-greeting__sub { font-size: 0.75rem; color: var(--text-secondary); margin-top: 1px; }
/* ── Stat Chips ── */
.no-chips {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}
.no-chip {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.1rem;
  flex: 1;
  min-width: 150px;
  transition: border-color var(--transition), background var(--transition);
  text-decoration: none;
}
.no-chip:hover {
  border-color: var(--primary);
  background: var(--bg-card-hover);
  text-decoration: none;
}
.no-chip__icon {
  width: 36px; height: 36px;
  background: var(--primary-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-size: 1.05rem;
  flex-shrink: 0;
}
.no-chip__label {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1; margin-bottom: 3px;
}
.no-chip__val {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}
.no-chip--cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-color: var(--primary-light);
  flex: 0 0 auto;
  min-width: 0;
}
.no-chip--cta:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  border-color: var(--accent);
  box-shadow: 0 4px 20px var(--primary-glow);
  transform: translateY(-1px);
}
.no-chip--cta .no-chip__icon { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.2); color: #fff; }
.no-chip--cta .no-chip__label { color: rgba(255,255,255,0.75); }
.no-chip--cta .no-chip__val   { color: #fff; }
/* Mobile: Add Funds full width */
@media (max-width: 575px) {
  .no-chip--cta { flex: 1 1 100%; justify-content: center; }
}
/* ── Form Card ── */
.no-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.no-form-card__header {
  padding: 1rem 1.4rem;
  border-bottom: 1px solid var(--border-subtle);
  display: flex; align-items: center; gap: 0.65rem;
}
.no-form-card__header i { font-size: 1.05rem; color: var(--accent); }
.no-form-card__title {
  font-family: var(--font-display);
  font-size: 0.88rem; font-weight: 700;
  color: var(--text-primary);
}
.no-form-card__body { padding: 1.4rem; }
/* ── Wrap each original form-group so label gets our style without
touching .form-group, .control-label, or the select elements ── */
.no-form-card__body .form-group { margin-bottom: 1.2rem; }
.no-form-card__body .form-group .control-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-family: var(--font-display);
  margin-bottom: 0.45rem;
}
/* Style native .form-control inputs (text, readonly) inside this card
BUT skip selects that Select2 already hijacks (they get hidden anyway) */
.no-form-card__body .form-group input.form-control,
.no-form-card__body .form-group textarea.form-control {
  background: var(--bg-surface);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.875rem;
  padding: 0.65rem 0.9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.no-form-card__body .form-group input.form-control:focus,
.no-form-card__body .form-group textarea.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-dim);
  background: var(--bg-surface);
  color: var(--text-primary);
}
.no-form-card__body .form-group input.form-control::placeholder { color: var(--text-muted); }
.no-form-card__body .form-group input.form-control[readonly] {
  cursor: not-allowed; opacity: 0.7;
}
/* ── Select2 theming — the rendered widget, not the hidden <select> ── */
.no-form-card__body .select2-container--default .select2-selection--single {
  background: var(--bg-surface) !important;
  border: 1.5px solid var(--border-subtle) !important;
  border-radius: var(--radius-sm) !important;
  height: auto !important;
  padding: 0.55rem 2.2rem 0.55rem 0.9rem !important;
  color: var(--text-primary) !important;
  font-family: var(--font-body) !important;
  font-size: 0.875rem !important;
  transition: border-color var(--transition), box-shadow var(--transition) !important;
}
.no-form-card__body .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--text-primary) !important;
  line-height: 1.5 !important;
  padding: 0 !important;
}
.no-form-card__body .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 50% !important;
  transform: translateY(-50%) !important;
  right: 10px !important;
}
.no-form-card__body .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: var(--text-muted) transparent transparent !important;
}
.no-form-card__body .select2-container--default.select2-container--open .select2-selection--single {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px var(--primary-dim) !important;
}
/* Service description panel */
.no-form-card__body .panel-body {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle) !important;
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
/* Search input wrapper */
.no-form-card__body .input-wrapper { position: relative; }
.no-form-card__body .input-wrapper input.form-control { padding-left: 2.2rem; }
/* Terms label */
.no-form-card__body label.terms {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  cursor: pointer;
}
.no-form-card__body label.terms a { color: var(--primary); text-decoration: none; }
.no-form-card__body label.terms a:hover { color: var(--primary-light); }
.no-form-card__body .terms-accept-checkbox { accent-color: var(--primary); }
/* Submit button */
.no-form-card__body .btn.btn-primary {
  width: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border: none;
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.9rem; font-weight: 700;
  padding: 0.8rem 1.5rem;
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem;
  transition: all var(--transition);
  letter-spacing: -0.01em;
}
.no-form-card__body .btn.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 100%);
  box-shadow: 0 6px 28px var(--primary-glow);
  transform: translateY(-1px);
}
/* ── Charge field hidden (we mirror value to invoice) ── */
#charge-field-wrap { display: none; }
/* ── Invoice Summary block ── */
.no-invoice-wrap { margin-bottom: 1.2rem; }
.no-invoice-label {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-secondary); font-family: var(--font-display);
  margin-bottom: 0.45rem; display: block;
}
.no-invoice {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.no-invoice__head {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.6rem 1rem;
  border-bottom: 1px solid var(--border-subtle);
}
.no-invoice__head i { color: var(--accent); font-size: 0.9rem; }
.no-invoice__head span {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); font-family: var(--font-display);
}
.no-invoice__row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.55rem 1rem;
  border-bottom: 1px solid var(--border-subtle);
}
.no-invoice__row:last-of-type { border-bottom: none; }
.no-invoice__row-label { font-size: 0.79rem; color: var(--text-secondary); }
.no-invoice__row-val {
  font-size: 0.82rem; font-weight: 600;
  color: var(--text-primary); font-family: var(--font-display);
  max-width: 60%; text-align: right; word-break: break-word;
}
.no-invoice__total {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.8rem 1rem;
  background: var(--primary-dim);
  border-top: 1px solid var(--border);
}
.no-invoice__total-label {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-secondary); font-family: var(--font-display);
}
.no-invoice__total-val {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 800;
  color: var(--accent); letter-spacing: -0.02em;
}
/* ── Offers Card ── */
.no-offers-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: sticky;
  top: 80px;
}
.no-offers-card__header {
  padding: 1rem 1.4rem;
  border-bottom: 1px solid var(--border-subtle);
  display: flex; align-items: center; justify-content: space-between;
}
.no-offers-card__hl { display: flex; align-items: center; gap: 0.6rem; }
.no-offers-card__hl i { font-size: 1.05rem; color: var(--accent); }
.no-offers-card__title {
  font-family: var(--font-display);
  font-size: 0.88rem; font-weight: 700;
  color: var(--text-primary);
}
.no-offers-count {
  background: var(--primary-dim);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.15rem 0.65rem;
  font-size: 0.68rem; font-weight: 700;
  color: var(--accent); font-family: var(--font-display);
}
.no-offer {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--transition);
}
.no-offer:last-child { border-bottom: none; }
.no-offer:hover { background: var(--bg-card-hover); }
.no-offer__meta {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-bottom: 0.45rem;
}
.no-offer__id {
  font-size: 0.68rem; font-weight: 700;
  color: var(--text-muted); font-family: var(--font-display);
  letter-spacing: 0.04em;
}
.no-offer__platform {
  width: 26px; height: 26px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
}
.no-offer__platform--ig { background: rgba(225,48,108,0.1); color: #E1306C; }
.no-offer__platform--yt { background: rgba(255,0,0,0.1);    color: #FF0000; }
.no-offer__platform--tt { background: rgba(105,201,208,0.1); color: #69C9D0; }
.no-offer__platform--tg { background: rgba(42,171,238,0.1);  color: #2AABEE; }
.no-offer__name {
  font-size: 0.8rem; font-weight: 600;
  color: var(--text-primary); line-height: 1.45;
  margin-bottom: 0.4rem; font-family: var(--font-display);
}
.no-offer__tags { display: flex; flex-wrap: wrap; gap: 0.3rem; margin-bottom: 0.6rem; }
.no-offer__tag {
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 0.17rem 0.55rem; border-radius: 100px;
}
.no-offer__tag--best  { background: rgba(0,184,214,0.1);  color: var(--accent); border: 1px solid rgba(0,184,214,0.2); }
.no-offer__tag--top   { background: rgba(250,204,21,0.1); color: #facc15;        border: 1px solid rgba(250,204,21,0.2); }
.no-offer__tag--cheap { background: rgba(34,197,94,0.1);  color: #4ade80;        border: 1px solid rgba(34,197,94,0.2); }
.no-offer__footer { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
.no-offer__pricing { display: flex; align-items: baseline; gap: 0.4rem; }
.no-offer__old  { font-size: 0.72rem; color: var(--text-muted); text-decoration: line-through; font-family: var(--font-display); }
.no-offer__price { font-family: var(--font-display); font-size: 0.95rem; font-weight: 800; color: var(--accent); letter-spacing: -0.02em; }
.no-offer__buy {
  background: var(--primary-dim);
  border: 1px solid var(--primary);
  border-radius: var(--radius-sm);
  color: var(--primary-light);
  font-family: var(--font-display);
  font-size: 0.72rem; font-weight: 700;
  padding: 0.3rem 0.7rem;
  transition: all var(--transition);
  text-decoration: none; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 0.3rem;
}
.no-offer__buy:hover { background: var(--primary); color: #fff; box-shadow: 0 3px 14px var(--primary-glow); }
/* Extra text block */
.no-extra-text {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.4rem;
  font-size: 0.875rem; color: var(--text-secondary);
  line-height: 1.75; margin-top: 1.25rem;
}
@media (max-width: 991px) {
  .no-offers-card { position: static; }
}


/* ═══════════════════════════════════════════
SERVICES PAGE – REDESIGN
═══════════════════════════════════════════ */

/* ── Platform Filter Bar ── */
.svc-platform-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  scrollbar-width: none;
  margin-bottom: 12px;
  list-style: none;
}
.svc-platform-bar::-webkit-scrollbar { display: none; }
.svc-platform-bar::before {
  content: 'PLATFORMS';
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  white-space: nowrap;
  margin-right: 6px;
  font-family: var(--font-display);
}

.plt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 7px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.plt-btn svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}
.plt-btn:hover {
  border-color: var(--primary-light);
  color: var(--text-primary);
  background: var(--primary-dim);
}
.plt-btn.is-active {
  background: var(--primary-dim);
  border-color: var(--primary);
  color: var(--accent);
}
.plt-btn--all {
  border-style: dashed;
}

/* ── Toolbar ── */
.svc-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 12px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
}

/* Category Dropdown */
.svc-cat-wrap {
  position: relative;
}
.svc-cat-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-display);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.svc-cat-btn svg { width: 16px; height: 16px; color: var(--accent); }
.svc-cat-btn:hover,
.svc-cat-btn:focus {
  border-color: var(--primary);
  background: var(--primary-dim);
  outline: none;
}
.svc-cat-btn .caret-icon {
  margin-left: 4px;
  width: 14px;
  height: 14px;
  color: var(--text-muted);
  transition: transform var(--transition);
}
.svc-cat-wrap.is-open .caret-icon { transform: rotate(180deg); }

.svc-cat-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 999;
  min-width: 220px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 6px;
  display: none;
}
.svc-cat-wrap.is-open .svc-cat-menu { display: block; }

.svc-cat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-body);
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}
.svc-cat-item:hover {
  background: var(--primary-dim);
  color: var(--text-primary);
}

/* Currency Dropdown */
.svc-cur-wrap {
  position: relative;
}
.svc-cur-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-display);
  cursor: pointer;
  transition: var(--transition);
}
.svc-cur-btn svg { width: 15px; height: 15px; color: var(--accent); }
.svc-cur-btn:hover {
  border-color: var(--primary);
  background: var(--primary-dim);
}
.svc-cur-btn .caret-icon {
  margin-left: 4px;
  width: 14px;
  height: 14px;
  color: var(--text-muted);
  transition: transform var(--transition);
}
.svc-cur-wrap.is-open .caret-icon { transform: rotate(180deg); }

.svc-cur-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 999;
  min-width: 160px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 6px;
  display: none;
}
.svc-cur-wrap.is-open .svc-cur-menu { display: block; }

.svc-cur-item {
  display: block;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}
.svc-cur-item:hover {
  background: var(--primary-dim);
  color: var(--text-primary);
}

/* Search */
.svc-search-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: auto;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}
.svc-search-wrap:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.svc-search-input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-size: 13px;
  font-family: var(--font-body);
  padding: 8px 14px;
  width: 220px;
}
.svc-search-input::placeholder { color: var(--text-muted); }

.svc-search-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  background: var(--primary-dim);
  border: none;
  border-left: 1px solid var(--border);
  color: var(--accent);
  cursor: pointer;
  transition: var(--transition);
}
.svc-search-btn svg { width: 16px; height: 16px; }
.svc-search-btn:hover { background: var(--primary-dark); color: #fff; }

/* ── Services Table ── */
.svc-table-shell {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.svc-table-scroll { overflow-x: auto; }

.svc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

/* Head */
.svc-table thead tr {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
}
.svc-table thead th {
  padding: 12px 16px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  text-align: left;
}
.svc-table thead th:first-child { width: 44px; }

/* Category row */
.svc-cat-row {
  background: var(--bg-surface);
  cursor: pointer;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.svc-cat-row:hover { background: var(--primary-dim); }
.svc-cat-row td {
  padding: 11px 18px;
}

.svc-cat-label {
  display: flex;
  align-items: center;
  gap: 10px;
}
.svc-cat-label strong {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-primary);
}
.svc-cat-label .cat-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: var(--primary-dim);
  border: 1px solid var(--border);
  color: var(--accent);
  font-size: 13px;
}
.svc-cat-label .cat-icon-wrap svg {
  width: 14px;
  height: 14px;
}
.svc-cat-label .cat-icon-wrap img {
  max-width: 14px;
  max-height: 14px;
}

.svc-cat-count {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  font-family: var(--font-display);
  background: var(--bg-dark);
  border: 1px solid var(--border-subtle);
  padding: 2px 8px;
  border-radius: 20px;
}

.svc-cat-chevron {
  width: 16px;
  height: 16px;
  color: var(--text-muted);
  transition: transform var(--transition);
  margin-left: 8px;
}
.svc-cat-row.is-collapsed .svc-cat-chevron {
  transform: rotate(-90deg);
}

/* Spacer rows */
.svc-row-spacer { height: 0; }

/* Service rows */
.svc-data-row {
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--transition);
}
.svc-data-row:hover { background: var(--bg-card-hover); }
.svc-data-row td {
  padding: 11px 16px;
  vertical-align: middle;
}

/* Fav star */
.svc-fav-cell { width: 44px; text-align: center; }
.svc-fav-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  padding: 4px;
  border-radius: 4px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
}
.svc-fav-btn svg { width: 15px; height: 15px; }
.svc-fav-btn:hover { color: #f5c842; }
.svc-fav-btn.is-fav { color: #f5c842; }

/* Service name cell */
.svc-name-cell { min-width: 260px; }
.svc-name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.svc-name-text {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}
.svc-id-badge {
  font-size: 10px;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--text-muted);
  background: var(--bg-dark);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  padding: 1px 6px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.svc-name-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.4;
}

.svc-name-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.svc-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-surface);
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  font-size: 12px;
}
.svc-action-btn svg { width: 13px; height: 13px; }
.svc-action-btn:hover {
  border-color: var(--primary);
  background: var(--primary-dim);
  color: var(--accent);
}
.svc-action-btn.is-copied {
  border-color: #2eb87a;
  background: rgba(46,184,122,0.1);
  color: #2eb87a;
}

/* Rate cell */
.svc-rate-cell { white-space: nowrap; }
.svc-rate-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
}
.svc-rate-value {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  cursor: default;
}
.svc-rate-label {
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* Avg time cell */
.svc-time-cell {
  white-space: nowrap;
  color: var(--text-secondary);
  font-size: 12px;
}

/* Description cell */
.svc-desc-cell { white-space: nowrap; }
.svc-details-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  background: var(--primary-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
}
.svc-details-btn svg { width: 13px; height: 13px; }
.svc-details-btn:hover {
  border-color: var(--primary);
  background: var(--primary-dark);
  color: var(--text-primary);
}

/* ── Service Detail Modal ── */
.svc-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
}
.svc-modal-overlay.is-open {
  display: flex;
}

.svc-modal-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  width: 100%;
  max-width: 480px;
  margin: 16px;
  overflow: hidden;
}

.svc-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-surface);
}
.svc-modal-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.svc-modal-title svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

.svc-modal-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}
.svc-modal-close svg { width: 15px; height: 15px; }
.svc-modal-close:hover {
  background: rgba(255,255,255,0.05);
  color: var(--text-primary);
}

.svc-modal-body {
  padding: 20px;
}
.svc-modal-qty {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.svc-qty-card {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.svc-qty-card svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.svc-qty-card--min svg { color: #e05c5c; }
.svc-qty-card--max svg { color: #2eb87a; }

.svc-qty-info { display: flex; flex-direction: column; }
.svc-qty-tag {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-family: var(--font-display);
}
.svc-qty-num {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  font-family: var(--font-display);
}

.svc-modal-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
  border-top: 1px solid var(--border-subtle);
  padding-top: 14px;
}

/* ── RTL support ── */
.rtl-svc-table th,
.rtl-svc-table td {
  text-align: right;
}

/* ── Responsive tweaks ── */
@media (max-width: 640px) {
  .svc-search-input { width: 140px; }
  .svc-toolbar { gap: 8px; }
  .plt-btn span { display: none; }
}
.heading-rightPlatformbar small {
  margin: 0;
  font-size: 10px;
  display: block;
  color: #ffffff99;
  margin-top: -2px;
}
.heading-rightPlatformbar p {
  margin: 0;
  font-weight: bold;
  display: block;
}
.form-control {
  box-shadow: none !important;
}




/* ═══════════════════════════════════════════
PAGE HEADER
═══════════════════════════════════════════ */
.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}

.page-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.3px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-title-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--primary-dim);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 14px;
}

/* ═══════════════════════════════════════════
STATS ROW
═══════════════════════════════════════════ */
.stats-row {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.stat-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-secondary);
  transition: var(--transition);
  cursor: default;
}

.stat-chip:hover {
  border-color: var(--border);
  background: var(--bg-card-hover);
}

.stat-chip .stat-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--text-primary);
}

.stat-chip .stat-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
TOP CONTROLS
═══════════════════════════════════════════ */
.controls-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

/* STATUS PILLS NAV */
.status-nav {
  display: flex;
  gap: 4px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 4px;
  flex-wrap: wrap;
}

.status-nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.status-nav a:hover {
  color: var(--text-primary);
  background: var(--bg-card-hover);
}

.status-nav a.active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 10px var(--primary-glow);
}

.status-nav .status-count {
  display: inline-block;
  padding: 1px 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  font-size: 10px;
  font-family: var(--font-mono);
}

.status-nav a.active .status-count {
  background: rgba(255,255,255,0.22);
}

/* SEARCH */
.search-wrap {
  position: relative;
  min-width: 240px;
}

.search-wrap input {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 9px 38px 9px 38px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 13px;
  outline: none;
  transition: var(--transition);
}

.search-wrap input::placeholder { color: var(--text-muted); }

.search-wrap input:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px var(--primary-dim);
  background: var(--bg-card-hover);
}

.search-icon {
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 12px;
  pointer-events: none;
}

.search-submit {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  padding: 0 12px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.search-submit:hover { color: var(--accent); }

/* ═══════════════════════════════════════════
BULK ACTION BAR
═══════════════════════════════════════════ */
.bulk-bar {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: linear-gradient(135deg, rgba(18,122,151,0.15), rgba(0,184,214,0.07));
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  animation: slideDown 0.2s ease;
  flex-wrap: wrap;
}

.bulk-bar.visible { display: flex; }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.bulk-selected-count {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--accent);
}

.bulk-bar-label {
  font-size: 12.5px;
  color: var(--text-secondary);
}

.bulk-actions {
  display: flex;
  gap: 8px;
  margin-left: auto;
}

/* ═══════════════════════════════════════════
BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--primary-light);
  box-shadow: 0 4px 14px var(--primary-glow);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: var(--bg-card-hover);
  color: var(--text-primary);
  border-color: rgba(18,122,151,0.35);
}

.btn-danger {
  background: rgba(239,68,68,0.1);
  color: #ef4444;
  border: 1px solid rgba(239,68,68,0.2);
}
.btn-danger:hover {
  background: rgba(239,68,68,0.18);
  border-color: rgba(239,68,68,0.4);
}

.btn-copy {
  padding: 4px 8px;
  background: var(--primary-dim);
  color: var(--accent);
  border: 1px solid var(--border);
  font-size: 10px;
  border-radius: 5px;
  opacity: 0;
  transition: var(--transition);
}

.btn-copy:hover {
  background: var(--primary);
  color: #fff;
}

.btn-copy.copied {
  background: rgba(16,185,129,0.15);
  color: #10b981;
  border-color: rgba(16,185,129,0.3);
  opacity: 1;
}

.btn-icon {
  padding: 6px;
  width: 28px;
  height: 28px;
  justify-content: center;
}

/* ═══════════════════════════════════════════
TABLE CARD
═══════════════════════════════════════════ */
.table-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
}

.table-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
  opacity: 0.6;
}

.table-scroll {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

thead {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

thead th {
  padding: 13px 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--text-secondary);
  white-space: nowrap;
  text-align: left;
}

thead th.th-center { text-align: center; }

thead th:first-child { padding-left: 20px; }
thead th:last-child  { padding-right: 20px; }

tbody tr {
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--transition);
}

tbody tr:last-child { border-bottom: none; }

tbody tr:hover {
  background: var(--bg-card-hover);
}

tbody tr:hover .btn-copy {
  opacity: 1;
}

tbody tr.row-selected {
  background: rgba(18,122,151,0.09);
}

tbody tr.row-selected:hover {
  background: rgba(18,122,151,0.14);
}

tbody td {
  padding: 13px 16px;
  vertical-align: middle;
  color: var(--text-primary);
}

tbody td:first-child { padding-left: 20px; }
tbody td:last-child  { padding-right: 20px; }

/* CHECKBOX */
.row-check {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1.5px solid var(--text-muted);
  background: transparent;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  position: relative;
}

.row-check:checked {
  background: var(--primary);
  border-color: var(--primary);
}

.row-check:checked::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 7px;
  border: 1.5px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
}

.row-check:hover:not(:checked) {
  border-color: var(--primary-light);
}

/* ORDER ID */
.order-id {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  font-weight: 500;
}

/* DATE */
.order-date {
  color: var(--text-secondary);
  font-size: 12px;
  white-space: nowrap;
}

/* LINK CELL */
.link-cell {
  display: flex;
  align-items: center;
  gap: 6px;
  max-width: 220px;
}

.link-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--text-secondary);
  font-size: 12px;
  flex: 1;
  min-width: 0;
}

.link-detail-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 12px;
  padding: 2px 4px;
  transition: var(--transition);
  flex-shrink: 0;
}

.link-detail-btn:hover { color: var(--accent); }

/* CHARGE */
.order-charge {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--text-primary);
}

/* QUANTITY / NUMBERS */
.num-cell {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-secondary);
  white-space: nowrap;
}

/* SERVICE */
.service-badge {
  display: inline-block;
  padding: 3px 9px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  font-size: 11.5px;
  color: var(--text-secondary);
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* STATUS BADGE */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: 0.3px;
  text-transform: capitalize;
  white-space: nowrap;
}

.status-badge .status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}

.status-badge.pending    { background: rgba(245,158,11,0.12); color: #f59e0b; }
.status-badge.pending .status-dot { background: #f59e0b; box-shadow: 0 0 5px #f59e0b; animation: pulse 2s infinite; }

.status-badge.inprogress { background: rgba(59,130,246,0.12); color: #60a5fa; }
.status-badge.inprogress .status-dot { background: #60a5fa; box-shadow: 0 0 5px #60a5fa; animation: pulse 1.5s infinite; }

.status-badge.completed  { background: rgba(16,185,129,0.1); color: #10b981; }
.status-badge.completed .status-dot { background: #10b981; }

.status-badge.partial    { background: rgba(139,92,246,0.12); color: #a78bfa; }
.status-badge.partial .status-dot { background: #a78bfa; }

.status-badge.processing { background: rgba(6,182,212,0.12); color: #22d3ee; }
.status-badge.processing .status-dot { background: #22d3ee; animation: pulse 1.8s infinite; }

.status-badge.canceled   { background: rgba(239,68,68,0.1); color: #ef4444; }
.status-badge.canceled .status-dot { background: #ef4444; }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.cancel-reason-icon {
  cursor: pointer;
  color: var(--text-muted);
  margin-left: 4px;
  font-size: 11px;
  transition: var(--transition);
}
.cancel-reason-icon:hover { color: #ef4444; }

/* REMAINS */
.remains-cell {
  font-family: var(--font-mono);
  font-size: 12px;
}

.remains-zero { color: var(--text-muted); }
.remains-positive { color: var(--accent); }

/* ACTIONS CELL */
.actions-cell {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.refilling-label {
  font-size: 11px;
  color: var(--status-processing);
  display: flex;
  align-items: center;
  gap: 4px;
}

.cancel-requested-label {
  font-size: 11px;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════
EMPTY STATE
═══════════════════════════════════════════ */
.empty-state {
  text-align: center;
  padding: 64px 24px;
}

.empty-icon {
  font-size: 36px;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: block;
}

.empty-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.empty-sub {
  font-size: 13px;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════
PAGINATION
═══════════════════════════════════════════ */
.pagination-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-top: 1px solid var(--border-subtle);
  flex-wrap: wrap;
  gap: 12px;
}

.pagination-info {
  font-size: 12px;
  color: var(--text-muted);
}

.pagination-nav {
  display: flex;
  gap: 4px;
}

.page-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  background: transparent;
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}

.page-btn:hover {
  background: var(--bg-card-hover);
  border-color: var(--border);
  color: var(--text-primary);
}

.page-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 2px 10px var(--primary-glow);
}

.page-btn.arrow {
  font-size: 11px;
}

/* ═══════════════════════════════════════════
MODAL
═══════════════════════════════════════════ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 19, 21, 0.82);
  backdrop-filter: blur(6px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.15s ease;
}

.modal-overlay.open { display: flex; }

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.modal-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 500px;
  margin: 20px;
  box-shadow: var(--shadow-glow), var(--shadow-card);
  animation: scaleIn 0.2s cubic-bezier(0.34,1.56,0.64,1) both;
  position: relative;
  overflow: hidden;
}

.modal-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.94) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-header {
  padding: 20px 24px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-subtle);
}

.modal-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--text-primary);
}

.modal-close {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.modal-close:hover {
  background: rgba(255,255,255,0.06);
  color: var(--text-primary);
}

.modal-body {
  padding: 20px 24px 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group:last-child { margin-bottom: 0; }

.form-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 7px;
}

.form-control {
  width: 100%;
  background: var(--bg-surface) !important;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  color: var(--text-primary) !important;
  font-family: var(--font-body);
  font-size: 13px;
  outline: none;
  resize: vertical;
  transition: var(--transition);
}
.form-control:focus {
  border-color: var(--primary) !important;
}

.form-control:disabled {
  cursor: default;
  opacity: 0.85;
}

textarea.form-control { min-height: 110px; }

/* ═══════════════════════════════════════════
TOAST
═══════════════════════════════════════════ */
.toast-wrap {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  font-size: 13px;
  color: var(--text-primary);
  pointer-events: auto;
  animation: toastIn 0.25s ease both;
  max-width: 280px;
}

.toast.toast-success { border-color: rgba(16,185,129,0.3); }
.toast.toast-success .toast-icon { color: #10b981; }
.toast.toast-info { border-color: var(--border); }
.toast.toast-info .toast-icon { color: var(--accent); }

@keyframes toastIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes toastOut {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(20px); }
}

/* ═══════════════════════════════════════════
TOOLTIP
═══════════════════════════════════════════ */
[data-tip] {
  position: relative;
}

[data-tip]::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: #1a2f35;
  color: var(--text-primary);
  font-size: 11px;
  font-family: var(--font-body);
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  border: 1px solid var(--border);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
  z-index: 100;
}

[data-tip]:hover::after {
  opacity: 1;
}

/* ═══════════════════════════════════════════
COPY MULTI PANEL
═══════════════════════════════════════════ */
.copy-format-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.copy-format-btn {
  padding: 5px 11px;
  border-radius: var(--radius-sm);
  font-size: 11.5px;
  font-family: var(--font-body);
  font-weight: 500;
  background: var(--primary-dim);
  color: var(--accent);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}

.copy-format-btn:hover {
  background: var(--primary);
  color: #fff;
}

/* ═══════════════════════════════════════════
RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .stats-row { display: none; }
  .status-nav { overflow-x: auto; flex-wrap: nowrap; width: 100%; }
  .controls-bar { flex-direction: column; align-items: stretch; }
  .search-wrap { min-width: unset; }
}




/* ────────────────────────────────────────────────────────────
tk- prefix — additive only, zero conflicts with existing CSS
──────────────────────────────────────────────────────────────*/

/* ── Alert ── */
.tk-alert {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 13px;
  margin-bottom: 18px;
}
.tk-alert i { font-size: 14px; margin-top: 1px; flex-shrink: 0; }
.tk-alert .close {
  background: none; border: none;
  color: inherit; opacity: 0.6;
  cursor: pointer; margin-left: auto;
  font-size: 16px; line-height: 1;
  padding: 0 2px;
}

/* ── Submit button row ── */
.tk-submit-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
}
.tk-submit-row .mv-btn {
  min-width: 140px;
  justify-content: center;
}

/* ── Section divider ── */
.tk-section-divider {
  display: flex; align-items: center; gap: 12px;
  margin: 0 0 16px;
}
.tk-section-divider__line {
  flex: 1; height: 1px;
  background: var(--border-subtle);
}
.tk-section-divider__label {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

/* ── Search bar ── */
.tk-search-bar {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}
.tk-search-box {
  display: flex;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.tk-search-box:focus-within {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px var(--primary-dim);
}
.tk-search-box input {
  flex: 1;
  background: transparent; border: none; outline: none;
  padding: 9px 13px;
  color: var(--text-primary);
  font-family: var(--font-body); font-size: 13px;
}
.tk-search-box input::placeholder { color: var(--text-muted); }
.tk-search-box button {
  background: transparent;
  border: none;
  border-left: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 0 12px; height: 38px;
  cursor: pointer; font-size: 13px;
  transition: color var(--transition);
}
.tk-search-box button:hover { color: var(--accent); }

/* ── Ticket table ── */
.tk-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.tk-table thead tr {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
}
.tk-table thead th {
  padding: 11px 14px;
  font-family: var(--font-display);
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); text-align: left;
  white-space: nowrap;
}
.tk-table tbody tr {
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--transition);
}
.tk-table tbody tr:last-child { border-bottom: none; }
.tk-table tbody tr:hover { background: var(--bg-card-hover); }
.tk-table td {
  padding: 11px 14px; vertical-align: middle;
  color: var(--text-secondary); font-size: 13px;
}
.tk-id {
  font-family: var(--font-display);
  font-weight: 700; font-size: 13px;
  color: var(--accent);
}
.tk-subject-link {
  color: var(--text-primary);
  text-decoration: none; font-weight: 500;
  transition: color var(--transition);
  display: flex; align-items: center; gap: 7px;
}
.tk-subject-link:hover { color: var(--accent); }
.tk-new-dot {
  display: inline-flex;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px rgba(0,184,214,0.6);
  flex-shrink: 0;
  animation: tk-pulse 1.8s ease-in-out infinite;
}
@keyframes tk-pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.5; transform:scale(0.7); }
}
.tk-badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 10px; border-radius: 30px;
  font-family: var(--font-display);
  font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.3px; white-space: nowrap;
}
.tk-badge--open     { background: rgba(18,122,151,0.12); color: var(--primary-light); border: 1px solid rgba(18,122,151,0.3); }
.tk-badge--closed   { background: rgba(59,89,99,0.18);   color: var(--text-muted);    border: 1px solid var(--border-subtle); }
.tk-badge--pending  { background: rgba(240,165,0,0.1);   color: #f0a500;              border: 1px solid rgba(240,165,0,.25); }
.tk-badge--answered { background: rgba(34,201,126,0.1);  color: #22c97e;              border: 1px solid rgba(34,201,126,.25); }
.tk-badge--customer { background: rgba(167,139,250,0.1); color: #a78bfa;              border: 1px solid rgba(167,139,250,.25); }
.tk-time { white-space: nowrap; color: var(--text-muted); font-size: 12px; }

/* ── Pagination ── */
.tk-pager {
  display: flex; align-items: center; justify-content: flex-end;
  margin-top: 14px; list-style: none; gap: 4px;
  padding: 0; flex-wrap: wrap;
}
.tk-pager li a,
.tk-pager li span {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-weight: 600; font-size: 12px;
  text-decoration: none; transition: var(--transition);
}
.tk-pager li a:hover {
  border-color: var(--primary-light);
  color: var(--text-primary);
  background: var(--bg-card-hover);
}
.tk-pager li.active span {
  background: var(--primary); border-color: var(--primary);
  color: #fff; box-shadow: 0 2px 10px var(--primary-glow);
}

/* ── ticketsText block ── */
.tk-info-block {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.4rem;
  font-size: 13.5px; color: var(--text-secondary);
  line-height: 1.8; margin-top: 1.5rem;
  position: relative; overflow: hidden;
}
.tk-info-block::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-dim), transparent);
}

/* ── Sticky history col on desktop ── */
@media (min-width: 992px) {
  .tk-history-sticky { position: sticky; top: 80px; }
}

/* RTL */
.rtl-table th, .rtl-table td { text-align: right; }

/* Ensure the uploader container takes full width */
.tickets-uploader {
  width: 100%;
}

/* The Button / Dropzone Area */
#uploader-button {
  width: 100%; /* Make width full */
  background-color: var(--bg-card) !important;

  /* Apply dashed border */
  border: 2px dashed var(--border) !important; 
  border-radius: var(--radius-md);

  padding: 24px 16px !important; /* Increased padding for a larger drop-zone feel */
  display: flex !important;
  align-items: center;
  justify-content: center; /* Center the icon and text */
  cursor: pointer;
  transition: var(--transition);
}

/* Hover State */
#uploader-button:hover {
  background-color: var(--bg-card-hover) !important;

  /* Change border color to primary on hover */
  border-color: var(--primary) !important;
  border-style: dashed; /* Maintains the dashed look */

  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

/* Adjusting the Paperclip Icon */
.paperclip svg {
  fill: var(--text-secondary);
  transition: var(--transition);
}

#uploader-button:hover .paperclip svg {
  fill: var(--accent);
}

/* Adjusting the Label */
.files-label {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-left: 12px !important;
  transition: var(--transition);
}

#uploader-button:hover .files-label {
  color: var(--text-primary);
}

/* ─────────────────────────────────────────────
tc- prefix — ticket chat, zero conflicts
───────────────────────────────────────────── */

/* ── Chat shell ── */
.tc-shell {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  position: relative;
}
.tc-shell::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
  opacity: 0.5;
  pointer-events: none;
}

/* ── Chat header ── */
.tc-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.tc-header__icon {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: var(--primary-dim);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-size: 14px;
  flex-shrink: 0;
}
.tc-header__info { flex: 1; min-width: 0; }
.tc-header__title {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.tc-header__sub {
  font-size: 11.5px; color: var(--text-muted);
  margin-top: 1px;
}
.tc-status-pill {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 11px; border-radius: 30px;
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.3px; white-space: nowrap; flex-shrink: 0;
  background: rgba(18,122,151,0.12);
  color: var(--primary-light);
  border: 1px solid rgba(18,122,151,0.3);
}
.tc-status-pill i { font-size: 8px; }

/* ── Messages scroll area ── */
.tc-messages {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 200px;
  overflow: visible; /* height is auto — no inner scroll */
}

/* ── Message block ── */
.tc-block {
  display: flex;
  flex-direction: column;
  max-width: 78%;
  gap: 4px;
}
.tc-block--user {
  align-self: flex-end;
  align-items: flex-end;
}
.tc-block--support {
  align-self: flex-start;
  align-items: flex-start;
}

/* Avatar + name row */
.tc-block__meta {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 2px;
}
.tc-block--user .tc-block__meta { flex-direction: row-reverse; }

.tc-avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 10px; font-weight: 700;
  flex-shrink: 0;
}
.tc-avatar--user {
  background: var(--primary-dim);
  border: 1px solid var(--primary);
  color: var(--accent);
}
.tc-avatar--support {
  background: rgba(0,184,214,0.12);
  border: 1px solid rgba(0,184,214,0.3);
  color: var(--accent);
}

.tc-block__author {
  font-family: var(--font-display);
  font-size: 11.5px; font-weight: 700;
  color: var(--text-secondary);
}
.tc-block__time {
  font-size: 11px;
  color: var(--text-muted);
}

/* Bubble */
.tc-bubble {
  padding: 11px 15px;
  border-radius: 12px;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-primary);
  word-break: break-word;
  position: relative;
}
.tc-block--user .tc-bubble {
  background: var(--primary);
  color: #fff;
  border-radius: 14px 4px 14px 14px;
}
.tc-block--support .tc-bubble {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 4px 14px 14px 14px;
  color: var(--text-primary);
}

/* File attachments inside bubble */
.tc-files {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.tc-file-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px; font-weight: 600;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--transition);
}
.tc-block--user .tc-file-link {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}
.tc-block--user .tc-file-link:hover {
  background: rgba(255,255,255,0.25);
}
.tc-block--support .tc-file-link {
  background: var(--primary-dim);
  color: var(--primary-light);
  border: 1px solid var(--border);
}
.tc-block--support .tc-file-link:hover {
  border-color: var(--primary-light);
  color: var(--accent);
}
.tc-file-link i { font-size: 11px; }

/* ── Day separator ── */
.tc-day-sep {
  display: flex; align-items: center; gap: 12px;
  margin: 10px 0;
}
.tc-day-sep__line { flex: 1; height: 1px; background: var(--border-subtle); }
.tc-day-sep__label {
  font-family: var(--font-display);
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); white-space: nowrap;
  padding: 3px 10px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
}

/* ── Reply form area ── */
.tc-reply {
  border-top: 1px solid var(--border);
  background: var(--bg-surface);
  flex-shrink: 0;
}
.tc-reply__error {
  padding: 10px 18px 0;
}
.tc-reply__form {
  padding: 16px 18px;
}
.tc-reply .control-label {
  font-family: var(--font-display);
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted);
  display: block; margin-bottom: 8px;
}
.tc-reply .form-control {
  background: var(--bg-card);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 13.5px;
  padding: 10px 13px;
  width: 100%;
  resize: vertical;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.tc-reply .form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-dim);
  background: var(--bg-card);
  color: var(--text-primary);
}
.tc-reply .form-control::placeholder { color: var(--text-muted); }

.tc-reply-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  gap: 10px;
  flex-wrap: wrap;
}
.tc-reply-actions .mv-btn {
  display: inline-flex; align-items: center; gap: 7px; padding: 15px;
}
.tc-reply-hint {
  font-size: 11.5px; color: var(--text-muted);
  display: flex; align-items: center; gap: 5px;
}
.tc-reply-hint i { font-size: 11px; color: var(--primary); }

/* ── Alert (error) ── */
.tc-alert {
  background: rgba(220,53,69,0.1);
  color: #ff8a95;
  border: 1px solid rgba(220,53,69,0.22);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 13px;
  display: flex; align-items: flex-start; gap: 8px;
  margin-bottom: 0;
}
.tc-alert .close {
  background: none; border: none;
  color: inherit; opacity: 0.6;
  cursor: pointer; margin-left: auto;
  font-size: 16px; line-height: 1; padding: 0;
}

/* RTL */
.rtl-content .tc-block--user  { align-self: flex-start; align-items: flex-start; }
.rtl-content .tc-block--support{ align-self: flex-end;   align-items: flex-end;   }
.rtl-content .tc-block--user .tc-block__meta  { flex-direction: row; }
.rtl-content .tc-block--support .tc-block__meta { flex-direction: row-reverse; }
.rtl-content .tc-block--user .tc-bubble    { border-radius: 4px 14px 14px 14px; }
.rtl-content .tc-block--support .tc-bubble { border-radius: 14px 4px 14px 14px; }
.tagskeystkc {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  margin: auto;
  margin-top: 15px;
  border-top: 1px dashed #ffffff20;
  padding-top: 15px;
  width: 100%;
  margin-bottom: -10px;
  flex-wrap: wrap;
  row-gap: 5px;
}

/* Page Header */
.ac-page-header {
  background: linear-gradient(135deg, rgba(18,122,151,0.08) 0%, transparent 60%);
  border-bottom: 1px solid var(--border);
  padding: 36px 0 28px;
}
.ac-page-header .row { display: flex; align-items: center; }
.ac-header-flex { display: flex; align-items: center; gap: 20px; }
.ac-avatar-wrap { position: relative; display: inline-block; }
.ac-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 26px; color: #fff;
  flex-shrink: 0; border: 2.5px solid var(--border);
  box-shadow: 0 0 0 6px rgba(18,122,151,0.1);
}
.ac-avatar-edit {
  position: absolute; bottom: 0; right: 0;
  width: 24px; height: 24px;
  background: var(--primary); border-radius: 50%;
  border: 2px solid var(--bg-dark);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background var(--transition);
}
.ac-avatar-edit:hover { background: var(--primary-light); }
.ac-avatar-edit svg { width: 11px; height: 11px; stroke: #fff; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.ac-header-info h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.5rem; letter-spacing: -0.03em;
  color: var(--text-primary); margin-bottom: 4px;
}
.ac-header-info p { color: var(--text-secondary); font-size: 13px; margin: 0; }
.ac-header-badges { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.ac-badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 10px; border-radius: 20px;
  font-size: 11px; font-family: var(--font-display);
  font-weight: 700; letter-spacing: 0.04em;
}
.ac-badge--verified {
  background: rgba(0,184,214,0.12); color: var(--accent);
  border: 1px solid rgba(0,184,214,0.25);
}
.ac-badge--plan {
  background: var(--primary-dim); color: var(--primary-light);
  border: 1px solid var(--border);
}
.ac-badge svg { width: 10px; height: 10px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* Tabs */
.ac-tabs {
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-dark);
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.ac-tabs-inner {
  display: flex; gap: 0;
  overflow-x: auto; scrollbar-width: none;
}
.ac-tabs-inner::-webkit-scrollbar { display: none; }
.ac-tab {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 13px 18px;
  font-family: var(--font-display); font-weight: 600; font-size: 13px;
  color: var(--text-muted); text-decoration: none;
  border: none; border-bottom: 2px solid transparent;
  background: none; cursor: pointer; white-space: nowrap;
  transition: all var(--transition); outline: none;
}
.ac-tab:hover { color: var(--text-secondary); }
.ac-tab.active { color: var(--primary-light); border-bottom-color: var(--primary-light); }
.ac-tab svg {
  width: 14px; height: 14px; stroke: currentColor;
  fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

/* Panels */
.ac-content { padding-top: 32px; padding-bottom: 60px; }
.ac-panel { display: none; }
.ac-panel.active { display: block; }

/* Section Cards */
.ac-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px; margin-bottom: 20px;
  transition: border-color var(--transition);
}
.ac-section:hover { border-color: rgba(18,122,151,0.32); }
.ac-section__header {
  display: flex; align-items: flex-start;
  justify-content: space-between; margin-bottom: 22px;
}
.ac-section__title { display: flex; align-items: center; gap: 10px; }
.ac-section__icon {
  width: 36px; height: 36px;
  background: var(--primary-dim);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); flex-shrink: 0;
}
.ac-section__icon svg {
  width: 16px; height: 16px; stroke: var(--primary-light);
  fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.ac-section__icon--danger { background: rgba(220,60,60,0.1); border-color: rgba(220,60,60,0.2); }
.ac-section__icon--danger svg { stroke: #e57373; }
.ac-section__label {
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.95rem; color: var(--text-primary); letter-spacing: -0.02em;
}
.ac-section__label--danger { color: #e57373; }
.ac-section__desc { font-size: 12px; color: var(--text-secondary); margin-top: 2px; }
.ac-divider { height: 1px; background: var(--border-subtle); margin: 20px 0; }
.ac-danger-zone { border-color: rgba(220,60,60,0.2); }
.ac-danger-zone:hover { border-color: rgba(220,60,60,0.4); }

/* Form Fields */
.ac-field { margin-bottom: 18px; }
.ac-field:last-child { margin-bottom: 0; }
.ac-label {
  display: block;
  font-family: var(--font-display); font-weight: 700;
  font-size: 11.5px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 7px;
}
.ac-input {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-family: var(--font-body); font-size: 14px;
  color: var(--text-primary);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none; appearance: none; display: block;
}
.ac-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(18,122,151,0.15);
}
.ac-input[readonly] {
  color: var(--text-secondary); cursor: default;
  background: rgba(10,19,21,0.5);
}
.ac-input--copy { padding-right: 80px; }
.ac-input--code {
  letter-spacing: 0.3em; font-size: 18px;
  text-align: center; font-family: monospace;
}
.ac-input-wrap { position: relative; }
.ac-copy-btn {
  position: absolute; right: 10px; top: 50%;
  transform: translateY(-50%);
  background: var(--primary-dim); border: none;
  border-radius: 6px; padding: 4px 10px;
  cursor: pointer; color: var(--primary-light);
  font-size: 11px; font-family: var(--font-display); font-weight: 700;
  transition: all var(--transition);
  display: flex; align-items: center; gap: 4px;
}
.ac-copy-btn:hover { background: var(--primary); color: #fff; }
.ac-copy-btn svg { width: 11px; height: 11px; stroke: currentColor; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.ac-hint { font-size: 11.5px; color: var(--text-muted); margin-top: 5px; }
.ac-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ac-select {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-family: var(--font-body); font-size: 14px;
  color: var(--text-primary);
  outline: none; cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236e97a2' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.ac-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(18,122,151,0.15);
}
.ac-select option { background: var(--bg-card); }
.ac-textarea {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-family: var(--font-body); font-size: 14px;
  color: var(--text-primary);
  resize: vertical; min-height: 100px; outline: none;
  transition: border-color var(--transition);
}
.ac-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(18,122,151,0.15);
}

/* Buttons */
.ac-btn {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  border-radius: var(--radius-sm); padding: 9px 18px;
  cursor: pointer; transition: all var(--transition);
  border: none; outline: none; white-space: nowrap;
  letter-spacing: -0.01em; text-decoration: none;
}
.ac-btn--primary { background: var(--primary); color: #fff; }
.ac-btn--primary:hover {
  background: var(--primary-light); color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(18,122,151,0.4);
}
.ac-btn--outline {
  background: transparent; color: var(--primary-light);
  border: 1.5px solid var(--border);
}
.ac-btn--outline:hover { background: var(--primary-dim); border-color: var(--primary); color: var(--primary-light); }
.ac-btn--ghost { background: var(--border-subtle); color: var(--text-secondary); }
.ac-btn--ghost:hover { background: rgba(255,255,255,0.08); color: var(--text-primary); }
.ac-btn--danger {
  background: rgba(220,60,60,0.1); color: #e57373;
  border: 1.5px solid rgba(220,60,60,0.2);
}
.ac-btn--danger:hover { background: rgba(220,60,60,0.2); }
.ac-btn--sm { font-size: 11px; padding: 5px 12px; }
.ac-btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ac-btn-row { display: flex; align-items: center; gap: 10px; margin-top: 20px; flex-wrap: wrap; }

/* Alerts */
.ac-alert {
  padding: 12px 16px; border-radius: var(--radius-md);
  font-size: 13px; margin-bottom: 16px;
  display: flex; align-items: flex-start; gap: 10px;
}
.ac-alert--success { background: rgba(0,184,214,0.08); border: 1px solid rgba(0,184,214,0.2); color: var(--accent); }
.ac-alert--danger { background: rgba(220,60,60,0.08); border: 1px solid rgba(220,60,60,0.2); color: #e57373; }
.ac-alert svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 1px; }

/* Password Strength */
.ac-strength { margin-top: 10px; }
.ac-strength__bar { height: 4px; border-radius: 2px; background: var(--border-subtle); overflow: hidden; margin-bottom: 5px; }
.ac-strength__fill { height: 100%; border-radius: 2px; transition: width 0.4s ease, background 0.4s ease; width: 0; }
.ac-strength__text { font-size: 11px; color: var(--text-muted); }

/* Toggle Switch */
.ac-toggle-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; border-bottom: 1px solid var(--border-subtle);
}
.ac-toggle-row:last-child { border-bottom: none; padding-bottom: 0; }
.ac-toggle-title { font-weight: 600; font-size: 13.5px; color: var(--text-primary); margin-bottom: 2px; }
.ac-toggle-desc { font-size: 12px; color: var(--text-secondary); }
.ac-toggle { position: relative; width: 44px; height: 24px; flex-shrink: 0; cursor: pointer; }
.ac-toggle input { opacity: 0; width: 0; height: 0; position: absolute; }
.ac-toggle__track {
  position: absolute; inset: 0;
  background: var(--border-subtle);
  border-radius: 12px; border: 1px solid var(--border);
  transition: background var(--transition);
}
.ac-toggle input:checked + .ac-toggle__track { background: var(--primary); border-color: var(--primary-dark); }
.ac-toggle__thumb {
  position: absolute; top: 3px; left: 3px;
  width: 16px; height: 16px; border-radius: 50%;
  background: #fff; transition: transform var(--transition);
  pointer-events: none;
}
.ac-toggle input:checked ~ .ac-toggle__thumb { transform: translateX(20px); }

/* 2FA Status Badge */
.ac-status-badge {
  font-size: 11.5px; font-family: var(--font-display); font-weight: 700;
  padding: 4px 12px; border-radius: 20px;
}
.ac-status-badge--on { background: rgba(0,184,214,0.12); color: var(--accent); }
.ac-status-badge--off { background: rgba(220,60,60,0.1); color: #e57373; }

/* Session Items */
.ac-session-item { display: flex; align-items: center; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--border-subtle); }
.ac-session-item:last-child { border-bottom: none; }
.ac-session-icon { width: 36px; height: 36px; border-radius: var(--radius-sm); background: var(--primary-dim); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ac-session-icon svg { width: 16px; height: 16px; stroke: var(--primary-light); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ac-session-info { flex: 1; }
.ac-session-device { font-weight: 600; font-size: 13px; color: var(--text-primary); }
.ac-session-meta { font-size: 11.5px; color: var(--text-secondary); margin-top: 1px; }
.ac-session-badge { font-size: 11px; font-family: var(--font-display); font-weight: 700; padding: 3px 9px; border-radius: 20px; background: rgba(0,184,214,0.12); color: var(--accent); }

/* API Quick Reference */
.ac-api-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px; margin-top: 14px; }
.ac-api-card { background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 12px 14px; }
.ac-api-card__label { font-size: 10px; font-family: var(--font-display); font-weight: 700; letter-spacing: 0.1em; color: var(--text-muted); text-transform: uppercase; margin-bottom: 6px; }
.ac-api-card code { font-size: 12px; color: var(--primary-light); font-family: monospace; }

/* Danger row */
.ac-danger-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.ac-danger-row__info {}
.ac-danger-row__title { font-weight: 600; font-size: 13.5px; color: var(--text-primary); }
.ac-danger-row__desc { font-size: 12px; color: var(--text-secondary); margin-top: 2px; }

/* Modal */
.ac-modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  align-items: center; justify-content: center; z-index: 1050;
}
.ac-modal-overlay.open { display: flex; }
.ac-modal {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  width: 100%; max-width: 440px; margin: 16px;
}
.ac-modal__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.ac-modal__title { font-family: var(--font-display); font-weight: 700; font-size: 1rem; letter-spacing: -0.02em; color: var(--text-primary); }
.ac-modal__close {
  width: 30px; height: 30px; border-radius: 6px;
  background: var(--border-subtle); border: none; cursor: pointer;
  color: var(--text-secondary); display: flex; align-items: center;
  justify-content: center; transition: all var(--transition);
}
.ac-modal__close:hover { background: rgba(255,255,255,0.1); color: var(--text-primary); }
.ac-modal__close svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; }

/* Responsive */
@media (max-width: 600px) {
  .ac-row-2 { grid-template-columns: 1fr; }
  .ac-header-flex { flex-direction: column; align-items: flex-start; gap: 14px; }
  .ac-section { padding: 20px; }
}



@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim-1 { animation: fadeUp 0.4s 0.04s ease both; }
.anim-2 { animation: fadeUp 0.4s 0.10s ease both; }
.anim-3 { animation: fadeUp 0.4s 0.17s ease both; }
.anim-4 { animation: fadeUp 0.4s 0.24s ease both; }

.page-header { margin-bottom: 28px; }
.page-title {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.4px; line-height: 1; margin-bottom: 4px;
}
.page-subtitle { font-size: 13px; color: var(--text-muted); }

.stat-cards-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; margin-bottom: 24px;
}
.stat-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl); padding: 20px 22px;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-card); transition: var(--transition);
}
.stat-card:hover {
  border-color: var(--border); transform: translateY(-2px);
  box-shadow: var(--shadow-glow), var(--shadow-card);
}
.stat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0.6;
}
.stat-card.spent::before {
  background: linear-gradient(90deg, transparent, #f87171, transparent);
}
.stat-card-inner { display: flex; align-items: flex-start; gap: 14px; }
.stat-card-icon {
  width: 44px; height: 44px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; flex-shrink: 0;
  background: var(--primary-dim); border: 1px solid var(--border); color: var(--accent);
}
.stat-card.spent .stat-card-icon {
  background: rgba(248,113,113,0.1); border-color: rgba(248,113,113,0.2); color: var(--debit-color);
}
.stat-card-info { flex: 1; min-width: 0; }
.stat-card-label {
  font-family: var(--font-display); font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.7px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 5px;
}
.stat-card-value {
  font-family: var(--font-display); font-size: 24px; font-weight: 800;
  letter-spacing: -0.6px; line-height: 1;
  background: linear-gradient(135deg, var(--accent), var(--primary-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-card.spent .stat-card-value {
  background: linear-gradient(135deg, #f87171, #fb923c);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-card-glow {
  position: absolute; top: -20px; right: -20px;
  width: 90px; height: 90px; border-radius: 50%;
  background: var(--primary-glow); filter: blur(36px); opacity: 0.25; pointer-events: none;
}
.stat-card.spent .stat-card-glow { background: rgba(248,113,113,0.4); }

.panel-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-card); position: relative;
}
.panel-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
  opacity: 0.5; z-index: 1;
}

.card-heading {
  padding: 18px 24px 14px; display: flex; align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-subtle);
}
.card-heading-title {
  font-family: var(--font-display); font-size: 14px; font-weight: 700;
  color: var(--text-primary); letter-spacing: -0.2px;
}
.card-heading-sub { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.secure-badge {
  display: flex; align-items: center; gap: 5px; font-size: 11px; color: var(--text-muted);
  background: rgba(16,185,129,0.07); border: 1px solid rgba(16,185,129,0.15);
  border-radius: 20px; padding: 4px 10px;
}
.secure-badge i { color: #10b981; font-size: 9px; }

.form-section { padding: 22px 24px 26px; }

.af-alert {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 12px 14px; border-radius: var(--radius-md);
  font-size: 13px; margin-bottom: 20px; position: relative;
}
.af-alert.success {
  background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.22); color: #6ee7b7;
}
.af-alert.danger {
  background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.2); color: #fca5a5;
}
.af-alert i { margin-top: 2px; flex-shrink: 0; }
.af-alert-close {
  position: absolute; right: 10px; top: 10px; background: none; border: none;
  cursor: pointer; color: inherit; opacity: 0.6; font-size: 11px; transition: var(--transition);
}
.af-alert-close:hover { opacity: 1; }

/* ── METHOD SLIDER ── */
.field-label {
  font-family: var(--font-display); font-size: 11px; font-weight: 600;
  letter-spacing: 0.65px; text-transform: uppercase; color: var(--text-secondary);
  margin-bottom: 10px; display: block;
}
.method-slider-wrap {
  position: relative; margin-bottom: 24px;
}
.method-slider-wrap::after {
  content: ''; position: absolute; right: 0; top: 0; bottom: 4px; width: 28px;
  background: linear-gradient(to left, var(--bg-card), transparent); pointer-events: none;
}

/* THE KEY: ul#payUl styled as the slider */
ul#payUl {
  list-style: none; padding: 0 0 4px; margin: 0;
  display: flex; gap: 8px; overflow-x: auto;
  scroll-behavior: smooth; scrollbar-width: none;
}
ul#payUl::-webkit-scrollbar { display: none; }

ul#payUl li {
  flex-shrink: 0;
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  padding: 12px 14px;
  background: var(--bg-surface); border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-lg); cursor: pointer;
  transition: var(--transition);
  min-width: 82px; max-width: 110px;
  position: relative; user-select: none;
  font-family: var(--font-display); font-size: 10.5px; font-weight: 600;
  color: var(--text-secondary); text-align: center; line-height: 1.3;
  word-break: break-word;
}
ul#payUl li img {
  width: 32px; height: 32px; object-fit: contain; border-radius: var(--radius-sm);
  display: block;
}
ul#payUl li:hover {
  background: var(--bg-card-hover); border-color: var(--border);
}
ul#payUl li.active {
  background: var(--primary-dim); border-color: var(--primary);
  color: var(--text-primary);
}
ul#payUl li.active::after {
  content: ''; position: absolute; bottom: -1px; left: 50%;
  transform: translateX(-50%); width: 20px; height: 2px;
  background: var(--accent); border-radius: 2px;
}

.pay-tags { display: flex; flex-wrap: wrap; gap: 3px; justify-content: center; margin-top: 2px; }
.pay-small {
  font-size: 9px; font-weight: 600; padding: 1px 5px;
  border-radius: 3px; line-height: 1.4;
}
.pay-small-1 { background: rgba(16,185,129,0.15); color: #6ee7b7; }
.pay-small-2 { background: rgba(245,158,11,0.15); color: #fcd34d; }
.pay-small-3 { background: rgba(99,102,241,0.15); color: #a5b4fc; }

.method-scroll-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 50%;
  width: 28px; height: 28px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--text-secondary); transition: var(--transition);
  box-shadow: var(--shadow-card);
}
.method-scroll-btn:hover { color: var(--accent); border-color: var(--primary); }
.method-prev { left: -14px; }
.method-next { right: -14px; }
.method-scroll-btn.hidden { display: none; }

/* ── AMOUNT ENHANCEMENTS (purely cosmetic, don't touch inputs) ── */
.amount-input-wrap { position: relative; }
.amount-currency-symbol {
  position: absolute; left: 13px; top: 42px; transform: translateY(-50%);
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  color: var(--accent); pointer-events: none; z-index: 1;
}
/* push the existing platform input text right so ₹ doesn't overlap */
#amount-fields .form-control[name="AddFoundsForm[amount]"],
#amount-fields input#amount {
  padding-left: 30px !important;
}
.quick-amounts {
  display: flex; gap: 7px; margin-top: 9px; flex-wrap: wrap;
}
.quick-amt {
  padding: 5px 12px;
  background: var(--bg-surface); border: 1px solid var(--border-subtle);
  border-radius: 20px; font-family: var(--font-mono); font-size: 11.5px;
  font-weight: 500; color: var(--text-secondary); cursor: pointer;
  transition: var(--transition); user-select: none;
}
.quick-amt:hover, .quick-amt.active {
  background: var(--primary-dim); border-color: var(--primary); color: var(--accent);
}

/* ── SUBMIT BUTTON ── */
.btn.btn-primary {
  width: 100%; padding: 13px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light)) !important;
  border: none !important; border-radius: var(--radius-md) !important;
  color: #fff !important; font-family: var(--font-display) !important;
  font-size: 14px !important; font-weight: 700 !important;
  letter-spacing: 0.3px; cursor: pointer; transition: var(--transition) !important;
  position: relative; overflow: hidden;
}
.btn.btn-primary:hover {
  box-shadow: 0 6px 24px var(--primary-glow) !important; transform: translateY(-1px) !important;
}

/* ── PASSBOOK CARD ── */
.passbook-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-card); position: relative; display: flex; flex-direction: column;
}
.passbook-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--primary), transparent);
  opacity: 0.5; z-index: 1;
}
.passbook-header { padding: 18px 20px 0; flex-shrink: 0; }
.passbook-title-row {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px;
}
.passbook-title { font-family: var(--font-display); font-size: 14px; font-weight: 800; color: var(--text-primary); }
.passbook-count {
  font-family: var(--font-mono); font-size: 11px; padding: 3px 9px;
  background: var(--primary-dim); border: 1px solid var(--border); border-radius: 20px; color: var(--accent);
}
.passbook-tabs {
  display: flex; gap: 2px; background: var(--bg-surface);
  border-radius: var(--radius-md); padding: 3px; margin-bottom: 14px;
}
.pb-tab {
  flex: 1; padding: 7px 8px; border-radius: var(--radius-sm);
  font-family: var(--font-display); font-size: 11.5px; font-weight: 600;
  color: var(--text-muted); cursor: pointer; text-align: center;
  transition: var(--transition); border: none; background: none;
  display: flex; align-items: center; justify-content: center; gap: 5px; user-select: none;
}
.pb-tab:hover:not(.active) { color: var(--text-secondary); }
.pb-tab.active { background: var(--bg-card-hover); color: var(--text-primary); box-shadow: 0 1px 6px rgba(0,0,0,0.3); }
.pb-tab.active.tab-all    { color: var(--accent); }
.pb-tab.active.tab-credit { color: var(--credit-color); }
.pb-tab.active.tab-debit  { color: var(--debit-color); }
.tab-dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }
.tab-all .tab-dot    { background: var(--accent); }
.tab-credit .tab-dot { background: var(--credit-color); }
.tab-debit .tab-dot  { background: var(--debit-color); }

.passbook-list-wrap {
  flex: 1; overflow-y: auto; max-height: 500px; padding: 0 4px 4px;
}
.passbook-list-wrap::-webkit-scrollbar { width: 3px; }
.passbook-list-wrap::-webkit-scrollbar-thumb { background: var(--primary-dark); }
.passbook-list { padding: 0 16px; }

.pb-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--border-subtle);
}
.pb-item:last-child { border-bottom: none; }
.pb-item-icon {
  width: 36px; height: 36px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0;
}
.pb-item-icon.type-credit { background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.2); color: var(--credit-color); }
.pb-item-icon.type-debit  { background: rgba(248,113,113,0.1); border: 1px solid rgba(248,113,113,0.2); color: var(--debit-color); }
.pb-item-icon.type-bonus  { background: rgba(245,158,11,0.1);  border: 1px solid rgba(245,158,11,0.2);  color: var(--bonus-color); }
.pb-item-icon.type-default{ background: rgba(110,151,162,0.1); border: 1px solid rgba(110,151,162,0.2); color: var(--text-secondary); }
.pb-item-info { flex: 1; min-width: 0; }
.pb-item-method { font-family: var(--font-display); font-size: 12.5px; font-weight: 600; color: var(--text-primary); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pb-item-meta { display: flex; align-items: center; gap: 7px; margin-top: 3px; flex-wrap: wrap; }
.pb-item-id {
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 600;
  color: var(--accent); background: var(--primary-dim); border: 1px solid var(--border);
  border-radius: 4px; padding: 1px 6px; line-height: 1.5;
}
.pb-item-date { font-size: 11px; color: var(--text-muted); }
.pb-item-right { display: flex; flex-direction: column; align-items: flex-end; gap: 3px; flex-shrink: 0; }
.pb-item-amount { font-family: var(--font-display); font-size: 13px; font-weight: 700; }
.pb-item-amount.credit { color: var(--credit-color); }
.pb-item-amount.debit  { color: var(--debit-color); }
.pb-item-amount.bonus  { color: var(--bonus-color); }
.pb-item-amount.default{ color: var(--text-secondary); }
.pb-orig-amount { font-size: 10px; color: var(--text-muted); font-family: var(--font-mono); }
.pb-invoice-link {
  font-size: 10.5px; color: var(--accent); text-decoration: none; opacity: 0.75;
  display: flex; align-items: center; gap: 3px; transition: var(--transition);
}
.pb-invoice-link:hover { opacity: 1; }
.pb-empty { text-align: center; padding: 48px 20px; display: none; }
.pb-empty.visible { display: block; }
.pb-empty-icon { font-size: 28px; color: var(--text-muted); margin-bottom: 12px; display: block; }
.pb-empty-title { font-family: var(--font-display); font-weight: 600; font-size: 13px; color: var(--text-secondary); margin-bottom: 3px; }
.pb-empty-sub { font-size: 12px; color: var(--text-muted); }

.passbook-pagination {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 20px; border-top: 1px solid var(--border-subtle); flex-shrink: 0;
}
.pb-page-info { font-size: 11.5px; color: var(--text-muted); }
.pb-page-nav { display: flex; gap: 4px; }
.pb-page-btn {
  width: 30px; height: 30px; display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm); font-family: var(--font-mono); font-size: 11.5px; font-weight: 500;
  color: var(--text-secondary); background: transparent; border: 1px solid var(--border-subtle);
  cursor: pointer; text-decoration: none; transition: var(--transition);
}
.pb-page-btn:hover { background: var(--bg-card-hover); border-color: var(--border); color: var(--text-primary); }
.pb-page-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; box-shadow: 0 2px 10px var(--primary-glow); }

@media (max-width: 767px) {
  .stat-cards-row { grid-template-columns: 1fr 1fr; }
  .stat-card-value { font-size: 19px; }
  .passbook-list-wrap { max-height: 360px; }
}
@media (max-width: 480px) {
  .stat-cards-row { grid-template-columns: 1fr; }
}
.stat-card.spent .stat-card-icon i {
  background: linear-gradient(135deg, #f87171, #fb923c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.panel-body.border-solid.border-rounded.text-center {
  background: var(--bg-surface) !important;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  color: var(--text-primary) !important;
}
a.supprtBtn {
  padding: 4px 8px;
  background: var(--primary-dim);
  color: var(--accent);
  border: 1px solid var(--border);
  font-size: 10px;
  border-radius: 5px;
  transition: var(--transition);
  font-size: 14px;
  text-decoration: none;
}

.no-form-card__header .form-check.form-switch {
  margin-left: auto;
  margin-bottom: 0;
}



.contact-actions {
  display: flex;
  gap: 12px;
  line-height: 1.2;
  margin-top: 20px;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1px solid;
  flex: auto;
}

/* Icon container */
.contact-btn__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Telegram */
.contact-btn--telegram {
  background: rgba(0, 136, 204, 0.1);
  color: #0088cc;
}

.contact-btn--telegram:hover {
  background: #0088cc;
  color: #fff;
  transform: translateY(-2px);
}

/* Email */
.contact-btn--email {
  background: rgba(255, 87, 34, 0.1);
  color: #ff5722;
}

.contact-btn--email:hover {
  background: #ff5722;
  color: #fff;
  transform: translateY(-2px);
}

.select2-container--default .select2-results > .select2-results__options {
  background: var(--bg-surface);
}
.select2-results__option a {
  color: #6e97a2 !important;
}
.select2-container--default .select2-results__option[aria-selected=true] {
  background: linear-gradient(135deg, var(--primary), var(--accent));
}
.select2-container--default .select2-results__option[aria-selected=true] a {
  color: #fff !important;
}
.select2-results__option {
  transition: all 0.3s ease;
}
.select2-results__option:hover {
  background: #ffffff10;
}
span.select2-selection__id.badge.badge-secondary.badge-pill.rounded-pill {
  background: linear-gradient(135deg, var(--primary), var(--accent));
}
span.select2-dropdown.dropdown-menu.select2-dropdown--below {
  background: var(--bg-surface);
  border-radius: 10px;
  margin-top: 5px !important;
  border: 1px solid var(--primary) !important;
}


/* GOOGLE TRANSLATE FIX */
.goog-te-banner-frame.skiptranslate {
  display: none !important;
}
body {
  top: 0px !important;
}

/* MODAL BASE */
.custom-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.custom-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* OVERLAY */
.custom-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
}

/* CONTENT */
.custom-modal-content {
  position: relative;
  width: 420px;
  max-height: 80vh;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  overflow: hidden;
  font-family: var(--font-body);
}

/* HEADER */
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.modal-header h3 {
  font-family: var(--font-display);
  color: var(--text-primary);
  font-size: 18px;
}

.modal-close {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 22px;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--primary);
}

/* SEARCH */
.modal-search input {
  width: 100%;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface);
  color: var(--text-primary);
  margin-bottom: 14px;
  outline: none;
  transition: var(--transition);
}

.modal-search input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--primary-dim);
}

/* LIST */
.modal-list {
  max-height: 50vh;
  overflow-y: auto;
}

/* ITEM */
.modal-item {
  padding: 12px 14px;
  border-radius: var(--radius-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--text-secondary);
  transition: var(--transition);
}

.modal-item:hover {
  background: var(--bg-card-hover);
  color: var(--text-primary);
}

/* ACTIVE */
.modal-item.active {
  background: var(--primary-dim);
  color: var(--primary-light);
  border: 1px solid var(--border);
}

/* SCROLLBAR */
.modal-list::-webkit-scrollbar {
  width: 6px;
}

.modal-list::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}
.skiptranslate iframe {
  display: none;
}


/* Modal body spacing control */
#currencyModal .modal-body {
  padding: 10px;
}

/* UL container */
#currencyModal .currenList {
  list-style: none;
  margin: 0;
  padding: 6px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 8px;
  max-height: 320px;
  overflow-y: auto;
}

/* Each item wrapper */
#currencyModal .currenList li {
  width: 100%;
}

/* Currency card */
#currencyModal .currency-item {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 10px 12px;
  border-radius: var(--radius-md);

  background: var(--bg-card);
  border: 1px solid var(--border-subtle);

  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--text-primary);
  text-decoration: none;

  transition: var(--transition);
  position: relative;
}

/* Symbol (visual anchor) */
#currencyModal .currency-item span {
  font-weight: 600;
  color: var(--accent);
  min-width: 22px;
  text-align: center;
  font-size: 14px;
}

/* Hover → intent feedback */
#currencyModal .currency-item:hover {
  background: var(--bg-card-hover);
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary-glow);
  transform: translateY(-1px);
}

/* Click feedback */
#currencyModal .currency-item:active {
  transform: scale(0.98);
}

/* Selected state (JS controlled) */
#currencyModal .currency-item.active {
  background: var(--primary-dim);
  border-color: var(--primary);
  box-shadow: inset 0 0 0 1px var(--primary);
}

/* Scrollbar refinement */
#currencyModal .currenList::-webkit-scrollbar {
  width: 6px;
}

#currencyModal .currenList::-webkit-scrollbar-thumb {
  background: var(--primary-dim);
  border-radius: 10px;
}
#currencyModal .currenList li a {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  display: flex;
  padding: 5px 10px;
  text-decoration: none;
  gap: 10px;
}