:root {
  --primary: #C8102E;
  --primary-dark: #9E0C25;
  --primary-light: #E8455C;
  --primary-alpha: rgba(200, 16, 46, 0.1);
  --secondary: #FFFFFF;
  --text-dark: #1A1A2E;
  --text-gray: #5C5C7A;
  --text-light: #8E8EA6;
  --bg-gray: #F8F9FB;
  --bg-light: #FAFBFD;
  --border: #E6E8EF;
  --border-dark: #D4D7E3;
  --success: #10B981;
  --success-light: #D1FAE5;
  --warning: #F59E0B;
  --warning-light: #FEF3C7;
  --danger: #EF4444;
  --danger-light: #FEE2E2;
  --info: #3B82F6;
  --info-light: #DBEAFE;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.08), 0 4px 10px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 50px rgba(200, 16, 46, 0.12), 0 8px 16px rgba(0, 0, 0, 0.06);
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-sm {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }

p {
  color: var(--text-gray);
  margin-bottom: 1rem;
}

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

a:hover {
  color: var(--primary-dark);
}

.nav {
  background: var(--secondary);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-dark);
}

.brand-logo {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px var(--primary-alpha);
  position: relative;
  overflow: hidden;
}

.brand-logo::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.3) 100%);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.brand-tag {
  font-size: 0.7rem;
  color: var(--text-light);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  display: inline-block;
  padding: 8px 16px;
  color: var(--text-gray);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--primary-alpha);
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-mobile-toggle {
  padding-inline: 14px;
  font-weight: 700;
}

.mobile-nav-links {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.mobile-nav-link {
  display: block;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  font-weight: 600;
  background: var(--bg-gray);
}

.mobile-nav-link.active,
.mobile-nav-link:hover {
  background: var(--primary-alpha);
  color: var(--primary);
}

.mobile-nav-actions {
  display: grid;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  font-family: inherit;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 2px 8px var(--primary-alpha);
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px var(--primary-alpha);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary-alpha);
  color: var(--primary);
}

.btn-light {
  background: var(--bg-gray);
  color: var(--text-dark);
}

.btn-light:hover {
  background: var(--border);
}

.btn-success {
  background: var(--success);
  color: white;
}

.btn-success:hover {
  background: #059669;
  color: white;
}

.btn-danger {
  background: var(--danger);
  color: white;
}

.btn-danger:hover {
  background: #DC2626;
  color: white;
}

.btn-warning {
  background: var(--warning);
  color: white;
}

.btn-warning:hover {
  background: #D97706;
  color: white;
}

.btn-sm {
  padding: 6px 12px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

.hero {
  position: relative;
  padding: 100px 0 80px;
  background: linear-gradient(135deg, #FFF5F6 0%, #FFFFFF 50%, #FFF1F3 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--primary-alpha) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.hero h1 {
  font-size: 3.5rem;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero h1 .accent {
  color: var(--primary);
  position: relative;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-gray);
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.hero-stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-card {
  position: relative;
  background: white;
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-xl);
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
  transition: transform 0.4s ease;
}

.hero-card:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.hero-media-card {
  overflow: hidden;
}

.hero-slideshow {
  position: relative;
  margin-top: 18px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, #fff 0%, #fff5f6 100%);
  min-height: 350px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.7s ease, transform 1.2s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(104, 12, 28, 0.12) 100%);
}

.hero-slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.showcase-image {
  display: block;
  width: 100%;
  height: auto;
}

.hero-slide-caption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  max-width: 320px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.88);
  border-radius: var(--radius);
  color: var(--text-dark);
  box-shadow: var(--shadow);
}

.hero-slide-kicker {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--primary);
}

.hero-slide-dots {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  display: flex;
  gap: 8px;
}

.hero-slide-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 0 0 1px rgba(122, 9, 28, 0.1);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-slide-dot.is-active {
  background: var(--primary);
  transform: scale(1.15);
}

.bank-card {
  width: 100%;
  aspect-ratio: 1.586 / 1;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 60%, #7A091C 100%);
  border-radius: var(--radius-lg);
  padding: 28px;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(200, 16, 46, 0.3);
}

.bank-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
  border-radius: 50%;
}

.bank-card-chip {
  width: 50px;
  height: 38px;
  background: linear-gradient(135deg, #FFD700 0%, #F5C518 100%);
  border-radius: 6px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.bank-card-chip::before,
.bank-card-chip::after {
  content: '';
  position: absolute;
  background: rgba(0, 0, 0, 0.1);
}

.bank-card-chip::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  transform: translateY(-50%);
}

.bank-card-chip::after {
  left: 33%;
  top: 0;
  bottom: 0;
  width: 1px;
}

.bank-card-number {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 4px;
  margin-bottom: 24px;
  font-family: 'Courier New', monospace;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.bank-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.bank-card-holder {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bank-card-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  opacity: 0.7;
  letter-spacing: 1px;
}

.bank-card-value {
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.bank-card-logo {
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1;
}

.bank-card-logo small {
  font-size: 0.6rem;
  opacity: 0.8;
  font-weight: 400;
  display: block;
  margin-top: 2px;
}

.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--bg-gray);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: var(--primary-alpha);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.8rem;
  border-radius: 999px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-header h2 {
  font-size: 2.5rem;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: white;
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-alpha);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--primary-alpha) 0%, rgba(245, 158, 11, 0.08) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.feature-icon img,
.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.feature-card p {
  margin: 0;
  font-size: 0.95rem;
}

.feature-list {
  list-style: none;
  margin-top: 16px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-gray);
}

.feature-list li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  display: flex;
  gap: 24px;
  background: white;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--primary-alpha);
  box-shadow: var(--shadow);
  transform: translateX(4px);
}

.service-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--primary-alpha);
  color: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.visual-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow);
}

.showcase-copy h2 {
  margin-bottom: 14px;
}

.showcase-copy p {
  max-width: 540px;
}

.showcase-art {
  background: linear-gradient(135deg, #fff5f6 0%, #ffffff 100%);
  border-radius: var(--radius-xl);
  padding: 18px;
}

.showcase-stack {
  display: grid;
  gap: 16px;
}

.showcase-primary-image {
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 50px rgba(122, 9, 28, 0.12);
}

.showcase-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.showcase-tile {
  width: 100%;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.float-y {
  animation: floatY 6s ease-in-out infinite;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.service-card h4 {
  margin-bottom: 8px;
}

.service-card p {
  margin-bottom: 12px;
  font-size: 0.92rem;
}

.service-link {
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.testimonial-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.testimonial-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.testimonial-section .section-eyebrow {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

.testimonial-section .section-header h2,
.testimonial-section .section-header p {
  color: white;
}

.testimonial-section .section-header p {
  opacity: 0.85;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

.testimonial {
  background: white;
  color: var(--text-dark);
  padding: 28px;
  border-radius: var(--radius-lg);
}

.testimonial-quote {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.testimonial-text {
  color: var(--text-gray);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.testimonial-loc {
  font-size: 0.8rem;
  color: var(--text-light);
}

.cta-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.cta-box {
  background: linear-gradient(135deg, var(--primary) 0%, #E8304F 100%);
  border-radius: var(--radius-xl);
  padding: 56px;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px var(--primary-alpha);
}

.cta-box::before {
  content: '🇦🇺';
  position: absolute;
  font-size: 20rem;
  opacity: 0.05;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cta-box h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}

.cta-box .btn-light {
  position: relative;
  z-index: 2;
  background: white;
  color: var(--primary);
  font-weight: 700;
  padding: 14px 32px;
}

.cta-box .btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.footer {
  background: var(--text-dark);
  color: #B0B0C3;
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: #8E8EA6;
  font-size: 0.9rem;
  margin: 16px 0 24px;
}

.footer-heading {
  color: white;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #8E8EA6;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #8E8EA6;
  margin: 0;
}

.auth-wrap {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 24px;
  background: linear-gradient(135deg, #FFF5F6 0%, #FFFFFF 40%, #F8F9FB 100%);
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
}

.auth-wrap::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--primary-alpha) 0%, transparent 70%);
  border-radius: 50%;
}

.auth-wrap::after {
  content: '';
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.auth-card {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 460px;
  padding: 40px;
  position: relative;
  z-index: 2;
}

.auth-card-wide {
  max-width: 920px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
  overflow: hidden;
}

.auth-side {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 48px 40px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.auth-side::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
  border-radius: 50%;
}

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

.auth-side h2 {
  color: white;
  font-size: 2rem;
  margin-bottom: 16px;
}

.auth-side p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}

.auth-side-features {
  list-style: none;
}

.auth-side-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.auth-side-features li::before {
  content: '✓';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 2px;
}

.auth-form-wrap {
  padding: 48px 40px;
}

.auth-header {
  text-align: center;
  margin-bottom: 32px;
}

.auth-header h1 {
  font-size: 1.75rem;
  margin-bottom: 8px;
}

.auth-header p {
  color: var(--text-light);
  font-size: 0.95rem;
}

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

.form-label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.95rem;
  font-family: inherit;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: white;
  color: var(--text-dark);
  transition: var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-alpha);
}

.form-input::placeholder {
  color: var(--text-light);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-hint {
  display: block;
  margin-top: 4px;
  font-size: 0.8rem;
  color: var(--text-light);
}

.form-error {
  display: block;
  margin-top: 4px;
  font-size: 0.8rem;
  color: var(--danger);
  font-weight: 500;
}

.form-alert {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-alert-success {
  background: var(--success-light);
  color: #065F46;
  border: 1px solid #6EE7B7;
}

.form-alert-error {
  background: var(--danger-light);
  color: #991B1B;
  border: 1px solid #FCA5A5;
}

.form-alert-warning {
  background: var(--warning-light);
  color: #92400E;
  border: 1px solid #FCD34D;
}

.form-alert-info {
  background: var(--info-light);
  color: #1E40AF;
  border: 1px solid #93C5FD;
}

.auth-footer {
  text-align: center;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--text-light);
  font-size: 0.9rem;
}

.layout {
  display: flex;
  min-height: 100vh;
  background: var(--bg-gray);
}

.sidebar {
  width: 260px;
  background: white;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
  flex-shrink: 0;
}

.sidebar.offcanvas-lg {
  width: 260px;
}

.sidebar .offcanvas-header {
  border-bottom: 1px solid var(--border);
}

.sidebar-brand {
  padding: 24px 20px;
  border-bottom: 1px solid var(--border);
}

.sidebar-menu {
  flex: 1;
  padding: 16px 12px;
  overflow-y: auto;
}

.sidebar-section {
  margin-bottom: 24px;
}

.sidebar-section-title {
  padding: 8px 12px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  color: var(--text-gray);
  font-weight: 500;
  font-size: 0.92rem;
  border-radius: var(--radius-sm);
  margin-bottom: 2px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
}

.sidebar-link:hover {
  background: var(--bg-gray);
  color: var(--text-dark);
  text-decoration: none;
}

.sidebar-link.active {
  background: var(--primary-alpha);
  color: var(--primary);
  font-weight: 600;
}

.sidebar-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.sidebar-badge {
  margin-left: auto;
  background: var(--primary);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
}

.sidebar-footer {
  padding: 16px;
  border-top: 1px solid var(--border);
}

.user-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
}

.user-chip:hover {
  background: var(--bg-gray);
}

.user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.user-chip-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.user-chip-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.user-chip-email {
  font-size: 0.75rem;
  color: var(--text-light);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.topbar {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 50;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar-menu-btn {
  padding-inline: 14px;
  font-weight: 700;
}

.page-title {
  font-size: 1.25rem;
  font-weight: 700;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.notification-btn {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-gray);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.notification-btn:hover {
  background: var(--border);
}

.notification-dot {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  border: 2px solid white;
}

.content {
  padding: 28px 32px;
  flex: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.stat-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.stat-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.stat-icon-primary {
  background: var(--primary-alpha);
  color: var(--primary);
}

.stat-icon-success {
  background: var(--success-light);
  color: var(--success);
}

.stat-icon-warning {
  background: var(--warning-light);
  color: var(--warning);
}

.stat-icon-info {
  background: var(--info-light);
  color: var(--info);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 6px;
}

.stat-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.stat-change {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  font-size: 0.85rem;
  font-weight: 600;
}

.stat-change.up {
  color: var(--success);
}

.stat-change.down {
  color: var(--danger);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.grid-2-1 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}

.grid-1-2 {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
}

.card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}

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

.card-title {
  font-size: 1.05rem;
  font-weight: 700;
}

.card-body {
  padding: 24px;
}

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

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.table thead th {
  background: var(--bg-gray);
  font-weight: 700;
  color: var(--text-gray);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 2px solid var(--border);
}

.table tbody tr:hover {
  background: var(--bg-light);
}

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

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 999px;
  text-transform: capitalize;
}

.status-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.status-pending {
  background: var(--warning-light);
  color: #92400E;
}

.status-pending::before {
  background: var(--warning);
  animation: pulse 2s infinite;
}

.status-completed,
.status-approved,
.status-active {
  background: var(--success-light);
  color: #065F46;
}

.status-completed::before,
.status-approved::before,
.status-active::before {
  background: var(--success);
}

.status-rejected,
.status-frozen,
.status-blocked,
.status-cancelled {
  background: var(--danger-light);
  color: #991B1B;
}

.status-rejected::before,
.status-frozen::before,
.status-blocked::before,
.status-cancelled::before {
  background: var(--danger);
}

.status-disbursed {
  background: var(--success-light);
  color: #065F46;
}

.status-disbursed::before {
  background: var(--success);
}

.status-lost_stolen,
.status-replacement_issued {
  background: var(--danger-light);
  color: #991B1B;
}

.status-lost_stolen::before,
.status-replacement_issued::before {
  background: var(--danger);
}

.status-closed {
  background: var(--border);
  color: var(--text-gray);
}

.status-closed::before {
  background: var(--text-light);
}

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

.account-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--border);
  margin-bottom: 16px;
  transition: var(--transition);
}

.account-card:hover {
  border-color: var(--primary-alpha);
  box-shadow: var(--shadow);
}

.account-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.account-type {
  display: flex;
  align-items: center;
  gap: 10px;
}

.account-type-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--primary-alpha);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.account-name {
  font-weight: 700;
  font-size: 1rem;
}

.account-number {
  font-size: 0.85rem;
  color: var(--text-light);
  font-family: 'Courier New', monospace;
}

.account-balance {
  text-align: right;
}

.account-balance-label {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.account-balance-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.account-meta {
  display: flex;
  gap: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
}

.account-meta-item {
  display: flex;
  flex-direction: column;
}

.account-meta-label {
  color: var(--text-light);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.account-meta-value {
  font-weight: 600;
  color: var(--text-dark);
}

.account-actions {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.dashboard-spotlight {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  margin-bottom: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.dashboard-spotlight-media {
  min-height: 260px;
  background: linear-gradient(135deg, #fff5f6 0%, #ffffff 100%);
}

.dashboard-spotlight-media img,
.dashboard-image-card img,
.dashboard-help-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.dashboard-spotlight-copy {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.dashboard-spotlight-copy h3 {
  margin: 0;
  font-size: 1.5rem;
}

.dashboard-spotlight-copy p {
  margin: 0;
}

.dashboard-spotlight-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.dashboard-image-strip {
  display: grid;
  gap: 16px;
  margin-bottom: 20px;
}

.dashboard-image-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.dashboard-image-card img {
  height: 150px;
}

.dashboard-image-copy {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dashboard-image-copy strong {
  font-size: 0.95rem;
}

.dashboard-image-copy span {
  font-size: 0.82rem;
  color: var(--text-gray);
}

.dashboard-help-visual {
  height: 140px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #fff5f6 0%, #ffffff 100%);
}

.quick-action {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  color: var(--text-dark);
}

.quick-action:hover {
  border-color: var(--primary);
  background: var(--primary-alpha);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.quick-action-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--primary-alpha);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--transition);
}

.quick-action:hover .quick-action-icon {
  background: white;
  color: var(--primary);
}

.quick-action-label {
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
}

.timeline {
  list-style: none;
  position: relative;
  padding-left: 28px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 8px;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  padding-bottom: 20px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -24px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid white;
  box-shadow: 0 0 0 2px var(--primary-alpha);
}

.timeline-time {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 2px;
}

.timeline-title {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.timeline-desc {
  font-size: 0.85rem;
  color: var(--text-gray);
}

.tabs {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: var(--bg-gray);
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
}

.tab-btn {
  padding: 10px 20px;
  background: transparent;
  border: none;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-gray);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}

.tab-btn:hover {
  color: var(--text-dark);
}

.tab-btn.active {
  background: white;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.modal.active {
  display: flex;
}

.modal-dialog {
  background: white;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalIn 0.2s ease;
}

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

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

.modal-title {
  font-size: 1.1rem;
  font-weight: 700;
}

.modal-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--bg-gray);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--border);
}

.modal-body {
  padding: 24px;
}

.modal-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.filter-bar {
  display: flex;
  gap: 12px;
  padding: 16px 20px;
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  align-items: flex-end;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.filter-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
}

.filter-group .form-input,
.filter-group .form-select {
  padding: 8px 12px;
  font-size: 0.88rem;
  min-width: 160px;
}

.empty-state {
  text-align: center;
  padding: 60px 24px;
  color: var(--text-light);
}

.empty-state-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--bg-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.empty-state h4 {
  color: var(--text-dark);
  margin-bottom: 8px;
}

.empty-state p {
  max-width: 400px;
  margin: 0 auto;
}

.alert {
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.alert-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.alert-content {
  flex: 1;
}

.alert-title {
  font-weight: 700;
  margin-bottom: 4px;
}

.alert-message {
  font-size: 0.9rem;
  color: inherit;
  margin: 0;
}

.alert-success {
  background: var(--success-light);
  color: #065F46;
  border: 1px solid #6EE7B7;
}

.alert-danger {
  background: var(--danger-light);
  color: #991B1B;
  border: 1px solid #FCA5A5;
}

.alert-warning {
  background: var(--warning-light);
  color: #92400E;
  border: 1px solid #FCD34D;
}

.alert-info {
  background: var(--info-light);
  color: #1E40AF;
  border: 1px solid #93C5FD;
}

.progress {
  width: 100%;
  height: 8px;
  background: var(--bg-gray);
  border-radius: 999px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 999px;
  transition: width 0.4s ease;
}

.search-input-wrap {
  position: relative;
}

.search-input-wrap .form-input {
  padding-left: 40px;
}

.search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
}

.avatar-big {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 2.2rem;
  box-shadow: 0 8px 20px var(--primary-alpha);
}

.profile-header {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.profile-info h3 {
  margin-bottom: 4px;
}

.profile-info p {
  margin: 0;
}

.profile-meta {
  display: flex;
  gap: 20px;
  margin-top: 12px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: var(--bg-gray);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.tag-verified {
  background: var(--success-light);
  color: var(--success);
}

.tag-unverified {
  background: var(--warning-light);
  color: #92400E;
}

.tag-frozen {
  background: var(--danger-light);
  color: var(--danger);
}

.tag-admin {
  background: var(--primary-alpha);
  color: var(--primary);
}

.approval-tabs {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--border);
  margin-bottom: 24px;
}

.approval-tab {
  padding: 12px 20px;
  background: none;
  border: none;
  font-weight: 600;
  color: var(--text-gray);
  cursor: pointer;
  position: relative;
  top: 2px;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 8px;
}

.approval-tab::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.approval-tab.active {
  color: var(--primary);
}

.approval-tab.active::after {
  transform: scaleX(1);
}

.count-badge {
  background: var(--primary-alpha);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  padding: 6px;
  display: none;
  z-index: 100;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
}

.dropdown-item:hover {
  background: var(--bg-gray);
}

.dropdown-item.danger {
  color: var(--danger);
}

.dropdown-item.danger:hover {
  background: var(--danger-light);
}

.chart-container {
  width: 100%;
  height: 240px;
  padding: 10px;
}

.bars-chart {
  display: flex;
  align-items: flex-end;
  height: 100%;
  gap: 8px;
}

.bar-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  height: 100%;
  justify-content: flex-end;
}

.bar {
  width: 100%;
  background: linear-gradient(180deg, var(--primary-light) 0%, var(--primary) 100%);
  border-radius: 4px 4px 0 0;
  min-height: 4px;
  transition: var(--transition);
  position: relative;
}

.bar:hover {
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.bar-label {
  font-size: 0.7rem;
  color: var(--text-light);
  font-weight: 500;
}

.card-visual {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1.586 / 1;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 60%, #7A091C 100%);
  border-radius: var(--radius-lg);
  padding: 24px;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 32px var(--primary-alpha);
}

.card-visual::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.card-visual-type {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.card-brand {
  font-weight: 800;
  font-size: 1.05rem;
}

.card-type-label {
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.card-visual-chip {
  width: 44px;
  height: 34px;
  background: linear-gradient(135deg, #FFD700 0%, #E8B60C 100%);
  border-radius: 5px;
  margin: 20px 0;
  position: relative;
}

.card-visual-chip::after {
  content: '';
  position: absolute;
  inset: 20% 15%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 2px;
}

.card-visual-number {
  font-family: 'Courier New', monospace;
  font-size: 1.3rem;
  letter-spacing: 3px;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}

.card-visual-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.card-field-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  opacity: 0.7;
  letter-spacing: 1px;
  margin-bottom: 3px;
}

.card-field-value {
  font-weight: 600;
  font-size: 0.9rem;
}

.text-primary { color: var(--primary); }
.text-success { color: var(--success); }
.text-danger { color: var(--danger); }
.text-warning { color: var(--warning); }
.text-muted { color: var(--text-light); }

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }

.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }

.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1; }

.text-right { text-align: right; }
.text-center { text-align: center; }
.text-left { text-align: left; }

.w-full { width: 100%; }
.min-w-0 { min-width: 0; }

@media (max-width: 1200px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 2.8rem; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .quick-actions { grid-template-columns: repeat(2, 1fr); }
  .visual-showcase { grid-template-columns: 1fr; }
  .dashboard-spotlight { grid-template-columns: 1fr; }
}

@media (max-width: 991.98px) {
  .sidebar {
    border-right: 1px solid var(--border);
    border-bottom: none;
    height: 100vh;
  }
  .sidebar.offcanvas-lg {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(300px, 86vw);
    max-width: min(300px, 86vw);
    visibility: hidden;
    transform: translateX(calc(-100% - 12px));
    pointer-events: none;
    box-shadow: none;
  }
  .sidebar.offcanvas-lg.show,
  .sidebar.offcanvas-lg.showing,
  .sidebar.offcanvas-lg.hiding {
    display: flex;
    flex-direction: column;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.18);
  }
  .sidebar.offcanvas-lg .sidebar-menu,
  .sidebar.offcanvas-lg .sidebar-footer {
    display: block;
  }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .grid-2, .grid-2-1, .grid-1-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .auth-wrap { padding: 24px 12px; }
  .auth-card { padding: 24px 18px; max-width: 100%; }
  .auth-card-wide { grid-template-columns: 1fr; max-width: 100%; }
  .auth-form-wrap { padding: 28px 18px; }
  .auth-side { display: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .stats-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 2.2rem; }
  .section-header h2 { font-size: 1.8rem; }
  .form-grid { grid-template-columns: 1fr; }
  .filter-bar { flex-direction: column; }
  .filter-group { width: 100%; }
  .filter-group .form-input, .filter-group .form-select { width: 100%; min-width: 0; }
  .cta-box { padding: 32px 20px; }
  .cta-box h2 { font-size: 1.8rem; }
  .content { padding: 20px 16px; }
  .topbar { padding: 14px 16px; }
  .nav-inner { padding-left: 16px; padding-right: 16px; }
  .profile-header { flex-direction: column; text-align: center; }
  .profile-meta { justify-content: center; flex-wrap: wrap; }
  .hero-slideshow { min-height: 280px; }
  .hero-slide-caption { max-width: 100%; }
  .showcase-mini-grid { grid-template-columns: 1fr; }
  .dashboard-spotlight-copy { padding: 20px; }
  .auth-wrap { padding: 18px 10px; }
  .auth-card { padding: 20px 14px; }
  .auth-form-wrap { padding: 22px 14px; }
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-gray);
}

::-webkit-scrollbar-thumb {
  background: var(--border-dark);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-light);
}
