:root {
  color-scheme: dark;

  /* Primary Colors - Set by config.js */
  --color-primary: #1DB954;
  --color-primary-dark: #169c46;

  /* Surface Colors - Set by config.js */
  --color-surface: #FFFFFF;

  /* Neutral Colors (Dark Mode Inverted) */
  --color-neutral-50: #121212;
  --color-neutral-100: #181818;
  --color-neutral-200: #282828;
  --color-neutral-300: #404040;
  --color-neutral-400: #737373;
  --color-neutral-500: #a3a3a3;
  --color-neutral-600: #d4d4d4;
  --color-neutral-700: #e5e5e5;
  --color-neutral-800: #f5f5f5;
  --color-neutral-900: #ffffff;

  /* Semantic Colors */
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  --color-info: #3b82f6;

  /* ... (shadows remain) ... */

  .glass-panel {
    background: rgba(18, 18, 18, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  }

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

#page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
}

.loader-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid #e5e5e5;
  border-top-color: var(--color-primary, #1DB954);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 16px;
}

.loader-text {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 14px;
  color: #737373;
  font-weight: 500;
}

#page-content {
  visibility: hidden;
}

#page-content.loaded {
  visibility: visible;
  animation: fadeIn 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--color-neutral-900);
  background: linear-gradient(135deg, #121212 0%, #050505 100%);
  background-attachment: fixed;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    transform: translateX(-20px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes glow {

  0%,
  100% {
    box-shadow: 0 0 5px rgba(29, 185, 84, 0.5), 0 0 10px rgba(29, 185, 84, 0.3);
  }

  50% {
    box-shadow: 0 0 20px rgba(29, 185, 84, 0.8), 0 0 30px rgba(29, 185, 84, 0.5);
  }
}

.animate-fade-in {
  animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-slide-in {
  animation: slideIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-slide-up {
  animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

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

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-neutral-100);
}

::-webkit-scrollbar-thumb {
  background: var(--color-neutral-300);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-neutral-400);
}

.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}

.glass-panel {
  background: rgba(18, 18, 18, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.gradient-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
}

.text-gradient {
  background: linear-gradient(to right, var(--color-primary), var(--color-primary-dark), var(--color-info), var(--color-primary));
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.text-gradient-animated {
  animation: gradientFlow 8s linear infinite;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 10px 15px -3px rgba(var(--color-primary-rgb), 0.2);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover::after {
  transform: translateX(100%);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-glow {
  animation: glow 3s infinite;
}

.btn-secondary {
  background: var(--color-surface);
  color: var(--color-neutral-700);
  border: 2px solid var(--color-neutral-200);
}

.btn-secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: 1.125rem;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

.card {
  background: var(--color-surface);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-neutral-100);
  transition: all var(--transition-base);
}

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

.card-feature {
  position: relative;
  overflow: hidden;
}

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

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

.form-group {
  margin-bottom: var(--space-6);
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-neutral-700);
  margin-bottom: var(--space-2);
  letter-spacing: 0.025em;
}

.form-input,
.form-select {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-neutral-900);
  background-color: var(--color-surface) !important;
  color: var(--color-neutral-900) !important;
  border: 2px solid var(--color-neutral-200);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(29, 185, 84, 0.1);
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  /* FORCE dark background with hardcoded colors */
  background-color: #181818 !important;
  color: #ffffff !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
}

/* Hide native select when custom dropdown is active */
.form-select[data-customized="true"] {
  display: none !important;
}

.form-select option {
  background-color: #181818 !important;
  /* Force dark background */
  color: #ffffff !important;
  /* Force white text */
  padding: 10px;
}

/* Fix for WebKit/Chrome specific autofill/options */
.form-select:-webkit-autofill,
.form-select:-webkit-autofill:hover,
.form-select:-webkit-autofill:focus {
  background-color: var(--color-surface) !important;
  color: var(--color-neutral-900) !important;
  -webkit-text-fill-color: var(--color-neutral-900) !important;
  transition: background-color 5000s ease-in-out 0s;
}

.form-input::placeholder {
  color: var(--color-neutral-400);
}

.form-hint {
  display: block;
  font-size: 0.875rem;
  color: var(--color-neutral-500);
  margin-top: var(--space-2);
}

.form-error {
  display: block;
  font-size: 0.875rem;
  color: var(--color-error);
  margin-top: var(--space-2);
}

input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-neutral-300);
  border-radius: var(--radius-sm);
  cursor: pointer;
  position: relative;
  transition: all var(--transition-base);
  background: var(--color-surface);
  flex-shrink: 0;
}

input[type="checkbox"]:hover {
  border-color: var(--color-primary);
}

input[type="checkbox"]:checked {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.alert {
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  animation: fadeIn 0.3s ease-out;
}

.alert-success {
  background-color: color-mix(in srgb, var(--color-primary) 10%, white);
  border-color: color-mix(in srgb, var(--color-primary) 40%, white);
  color: color-mix(in srgb, var(--color-primary) 80%, black);
}

.alert-error {
  background-color: #fef2f2;
  border-color: #fca5a5;
  color: #991b1b;
}

.alert-info {
  background-color: color-mix(in srgb, var(--color-info) 10%, white);
  border-color: color-mix(in srgb, var(--color-info) 40%, white);
  color: color-mix(in srgb, var(--color-info) 80%, black);
}

.alert-warning {
  background-color: color-mix(in srgb, var(--color-warning) 10%, white);
  border-color: color-mix(in srgb, var(--color-warning) 50%, white);
  color: color-mix(in srgb, var(--color-warning) 80%, black);
}

.alert-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.alert-content {
  flex: 1;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.badge-success {
  background-color: #dcfce7;
  color: #166534;
}

.badge-error {
  background-color: #fee2e2;
  color: #991b1b;
}

.badge-warning {
  background-color: #fef3c7;
  color: #92400e;
}

.badge-info {
  background-color: #dbeafe;
  color: #1e40af;
}

.badge-neutral {
  background-color: var(--color-neutral-100);
  color: var(--color-neutral-700);
}

.navbar {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-neutral-200);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-neutral-900);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  list-style: none;
}

.nav-link {
  color: var(--color-neutral-600);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color var(--transition-base);
}

.nav-link:hover {
  color: var(--color-primary);
}


.hero {
  position: relative;
  padding: var(--space-16) 0;
  background: transparent;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70%;
  height: 120%;
  background: radial-gradient(circle, rgba(29, 185, 84, 0.15) 0%, transparent 60%);
  pointer-events: none;
  filter: blur(60px);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 70%;
  height: 120%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 60%);
  pointer-events: none;
  filter: blur(60px);
  z-index: 0;
}

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

.stat-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  text-align: center;
  border: 1px solid var(--color-neutral-100);
  transition: all var(--transition-base);
}

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

.stat-value {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-neutral-900);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stat-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-neutral-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 0.8s linear infinite;
}

.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-md);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--color-neutral-700);
  transition: color 0.2s ease;
}

.mobile-menu-toggle:hover {
  color: var(--color-primary);
}

.mobile-menu-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  max-width: 85vw;
  height: 100%;
  background: var(--color-surface);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mobile-nav.active .mobile-nav-content {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--color-neutral-100);
}

.mobile-nav-header .mobile-nav-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-neutral-900);
}

.mobile-nav-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-neutral-500);
  transition: color 0.2s ease;
  border-radius: var(--radius-md);
}

.mobile-nav-close:hover {
  color: var(--color-neutral-900);
}

.mobile-nav-close svg {
  width: 1.25rem;
  height: 1.25rem;
}

.mobile-nav-links {
  list-style: none;
  padding: 0.75rem 0;
  margin: 0;
  flex: 1;
}

.mobile-nav-links li {
  margin: 0;
}

.mobile-nav-links a {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 1.25rem;
  color: var(--color-neutral-700);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.mobile-nav-links a:hover,
.mobile-nav-links a:focus {
  background-color: var(--color-neutral-50);
  color: var(--color-primary);
}

.mobile-nav-links a svg,
.mobile-nav-links a i {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-primary);
  opacity: 0.8;
  flex-shrink: 0;
}

.mobile-nav-links .nav-section-title {
  padding: 1rem 1.25rem 0.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--color-neutral-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

.mobile-nav-cta {
  padding: 1rem 1.25rem 1.5rem;
  border-top: 1px solid var(--color-neutral-100);
  margin-top: auto;
}

.mobile-nav-cta .btn {
  width: 100%;
  justify-content: center;
  padding: 0.875rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
}

/* Mobile nav brand/logo area */
.mobile-nav-brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.mobile-nav-brand img {
  border-radius: var(--radius-sm);
}

.mobile-nav-brand svg,
.mobile-nav-brand i {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-primary);
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-nav {
    display: block;
  }

  .navbar-nav {
    display: none;
  }

  /* Navbar brand text on mobile */
  .navbar-brand {
    font-size: 0.9375rem !important;
  }

  .navbar-brand span {
    font-size: 0.9375rem !important;
  }

  .navbar-brand img,
  .navbar-brand svg,
  .navbar-brand i {
    width: 24px !important;
    height: 24px !important;
  }

  .hero {
    padding: var(--space-12) 0;
  }

  /* Hero text responsive sizing */
  .hero-content h1,
  .hero-content #heroTitle {
    font-size: 2rem !important;
    line-height: 1.2 !important;
    margin-bottom: 1rem !important;
  }

  .hero-content p,
  .hero-content #heroDescription {
    font-size: 1rem !important;
    margin-bottom: 1.5rem !important;
  }

  /* Hero badge on mobile */
  .hero-content>div:first-child span {
    font-size: 0.75rem !important;
  }

  .card {
    padding: var(--space-6);
  }

  /* Trust indicators on mobile */
  .trust-indicators {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }

  .trust-indicators>div {
    justify-content: flex-start !important;
    padding: 0.5rem;
  }

  .trust-indicators span {
    font-size: 0.75rem !important;
  }
}

/* Even smaller screens */
@media (max-width: 480px) {

  .hero-content h1,
  .hero-content #heroTitle {
    font-size: 1.75rem !important;
  }

  .hero-content p,
  .hero-content #heroDescription {
    font-size: 0.9375rem !important;
  }
}

/* Small mobile devices */
@media (max-width: 375px) {
  .mobile-nav-content {
    width: 100%;
    max-width: 100%;
  }

  .mobile-nav-title {
    font-size: 0.9375rem;
  }

  .mobile-nav-links a {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }

  .mobile-nav-links .nav-section-title {
    padding: 0.875rem 1rem 0.375rem;
    font-size: 0.625rem;
  }

  .mobile-nav-cta {
    padding: 0.875rem 1rem 1.25rem;
  }

  .mobile-nav-cta .btn {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }
}

/* Extra small devices */
@media (max-width: 320px) {
  .mobile-nav-brand {
    gap: 0.5rem;
  }

  .mobile-nav-brand svg,
  .mobile-nav-brand i {
    width: 1.25rem;
    height: 1.25rem;
  }

  .mobile-nav-title {
    font-size: 0.875rem;
  }

  .mobile-nav-links a {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    gap: 0.75rem;
  }

  .mobile-nav-links a svg,
  .mobile-nav-links a i {
    width: 1.25rem;
    height: 1.25rem;
  }

  .mobile-nav-cta .btn {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.package-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: var(--color-surface);
  border: 2px solid var(--color-neutral-200);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: center;
  min-height: 80px;
}

.package-option:hover {
  border-color: var(--color-primary);
  background: color-mix(in srgb, var(--color-primary) 5%, var(--color-surface));
}

.package-option.selected {
  border-color: var(--color-primary);
  background: color-mix(in srgb, var(--color-primary) 10%, var(--color-surface));
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-primary) 20%, transparent);
}

/* Custom Dark Dropdown Component */
.custom-select-wrapper {
  position: relative;
  width: 100%;
}

.custom-select-trigger {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  padding-right: 2.5rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #ffffff;
  background-color: #181818;
  border: 2px solid var(--color-neutral-200);
  border-radius: var(--radius-lg);
  cursor: pointer;
  text-align: left;
  transition: all var(--transition-base);
}

.custom-select-trigger:hover {
  border-color: var(--color-primary);
}

.custom-select-trigger:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(29, 185, 84, 0.1);
}

.custom-select-trigger::after {
  content: '';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #ffffff;
  pointer-events: none;
}

.custom-select-wrapper.open .custom-select-trigger::after {
  border-top: none;
  border-bottom: 6px solid #ffffff;
}

.custom-select-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 4px;
  background: #181818;
  border: 2px solid var(--color-neutral-200);
  border-radius: var(--radius-lg);
  max-height: 250px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
  box-shadow: var(--shadow-xl);
}

.custom-select-wrapper.open .custom-select-options {
  display: block;
}

.custom-select-option {
  padding: 0.75rem 1rem;
  color: #ffffff;
  cursor: pointer;
  transition: background 0.15s ease;
}

.custom-select-option:hover {
  background: var(--color-neutral-200);
}

.custom-select-option.selected {
  background: var(--color-primary);
  color: #ffffff;
}

.custom-select-option:first-child {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.custom-select-option:last-child {
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}