/* ============================================================================
   TEMBAKIMEI - Premium Futuristic SaaS Stylesheet
   Version: 1.0.0
   Author: TEMBAKIMEI Design Team
   Description: Complete production-ready CSS for TEMBAKIMEI platform
   Last Updated: 2025
   ============================================================================ */

/* =============================================================================
   1. CSS RESET & BASE
   ============================================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #07010F;
  color: #F5F3FF;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

ul,
ol {
  list-style: none;
}

/* =============================================================================
   2. TYPOGRAPHY SYSTEM
   ============================================================================ */
.heading-hero {
  font-family: 'Sora', sans-serif;
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #F5F3FF;
}

.heading-section {
  font-family: 'Sora', sans-serif;
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #F5F3FF;
}

.heading-card {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #F5F3FF;
}

.body-text {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(245, 243, 255, 0.72);
}

.text-small {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(245, 243, 255, 0.68);
}

/* =============================================================================
   3. AMBIENT BACKGROUND
   ============================================================================ */
.ambient-glow {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(139, 92, 246, 0.12) 0%, rgba(168, 85, 247, 0.05) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* =============================================================================
   4. FLOATING AMBIENT ORBS
   ============================================================================ */
.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.ambient-orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(139, 92, 246, 0.06);
  top: 10%;
  left: -5%;
  animation: orbFloat1 25s ease-in-out infinite;
}

.ambient-orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(168, 85, 247, 0.05);
  top: 40%;
  right: -8%;
  animation: orbFloat2 30s ease-in-out infinite;
}

.ambient-orb-3 {
  width: 300px;
  height: 300px;
  background: rgba(99, 102, 241, 0.04);
  bottom: 20%;
  left: 30%;
  animation: orbFloat3 20s ease-in-out infinite;
}

/* =============================================================================
   5. GLASSMORPHISM CARDS
   ============================================================================ */
.glass {
  background: rgba(18, 7, 31, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
}

.glass-strong {
  background: rgba(18, 7, 31, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: 16px;
}

/* =============================================================================
   6. NAVBAR
   ============================================================================ */
.navbar-glass {
  background: rgba(10, 10, 20, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(245, 243, 255, 0.68);
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.nav-link:hover {
  color: #F5F3FF;
  background: rgba(255, 255, 255, 0.04);
}

.nav-link.active {
  color: #F5F3FF;
  background: rgba(139, 92, 246, 0.12);
}

.nav-brand {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #F5F3FF;
  letter-spacing: -0.02em;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #F5F3FF;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* =============================================================================
   7. PREMIUM BUTTONS
   ============================================================================ */
.btn-premium {
  background: linear-gradient(135deg, #7C3AED, #A855F7);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.35), 0 0 80px rgba(139, 92, 246, 0.15);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(168, 85, 247, 0.5), 0 0 100px rgba(139, 92, 246, 0.2);
}

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

.btn-premium::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.5s ease;
}

.btn-premium:hover::after {
  left: 100%;
}

.btn-outline {
  background: transparent;
  color: #8B5CF6;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 12px;
  border: 1px solid rgba(139, 92, 246, 0.4);
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-outline:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.6);
  color: #A855F7;
  transform: translateY(-1px);
}

.btn-sm {
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 10px;
}

.btn-lg {
  font-size: 20px;
  padding: 18px 48px;
  border-radius: 16px;
}

/* =============================================================================
   8. CARD HOVER EFFECTS
   ============================================================================ */
.card-hover {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.25);
  box-shadow: 0 12px 40px rgba(139, 92, 246, 0.1);
}

/* =============================================================================
   9. STATUS BADGES (COLORED GLOW)
   ============================================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

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

.badge-pending {
  background: rgba(245, 158, 11, 0.12);
  color: #F59E0B;
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.badge-pending::before {
  background: #F59E0B;
}

.badge-paid {
  background: rgba(59, 130, 246, 0.12);
  color: #60A5FA;
  border: 1px solid rgba(59, 130, 246, 0.25);
}

.badge-paid::before {
  background: #60A5FA;
}

.badge-processing {
  background: rgba(139, 92, 246, 0.12);
  color: #A78BFA;
  border: 1px solid rgba(139, 92, 246, 0.25);
}

.badge-processing::before {
  background: #A78BFA;
}

.badge-completed {
  background: rgba(34, 197, 94, 0.12);
  color: #22C55E;
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.badge-completed::before {
  background: #22C55E;
}

.badge-failed {
  background: rgba(239, 68, 68, 0.12);
  color: #EF4444;
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.badge-failed::before {
  background: #EF4444;
}

/* =============================================================================
   10. IMEI INPUT & FORM ELEMENTS
   ============================================================================ */
.input-field {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 14px 18px;
  color: #F5F3FF;
  font-size: 15px;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  transition: all 0.2s ease;
  width: 100%;
  outline: none;
}

.input-field::placeholder {
  color: rgba(245, 243, 255, 0.4);
}

.input-field:focus {
  outline: none;
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

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

.imei-valid {
  border-color: #22C55E !important;
}

.imei-valid:focus {
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1) !important;
}

.imei-invalid {
  border-color: #EF4444 !important;
}

.imei-invalid:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.input-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(245, 243, 255, 0.68);
  margin-bottom: 2px;
}

.input-hint {
  font-size: 12px;
  color: rgba(245, 243, 255, 0.5);
  margin-top: 4px;
}

/* =============================================================================
   11. TIMELINE (STATUS CHECK)
   ============================================================================ */

/*
 * Layout math:
 *   dot size  = 36 × 36px
 *   left zone = 52px  (36px dot + 16px gap to text)
 *   line left = 17px  = (36÷2) − (2÷2) → centers 2px line on dot
 *   line top  = 18px  = 36÷2            → starts at first dot center
 *   line bot  = 18px                    → ends at last dot center
 */

/* Outer wrapper: reserves left column for dots */
.tl-wrap {
  position: relative;
  padding-left: 52px;
}

/* Single vertical line — JS updates .background for gradient progress */
.tl-wrap .timeline-line {
  position: absolute;
  left: 17px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1px;
  z-index: 0;
}

/* Step row */
.tl-item {
  position: relative;
  margin-bottom: 24px;
}

.tl-item:last-child {
  margin-bottom: 0;
}

/* Dot: pulled back into the 52px left column */
.tl-item .timeline-dot {
  position: absolute;
  left: -52px;
  top: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: box-shadow 0.3s ease;
}

/* Text block: vertically centered to match dot height */
.tl-body {
  min-height: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
}

/* Legacy selectors — kept for backward compat, unused in status timeline */
.timeline { position: relative; padding-left: 48px; }
.timeline-line { position: absolute; width: 2px; }
.timeline-item { position: relative; padding-bottom: 32px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot { border-radius: 50%; }
.timeline-content { font-size: 14px; color: rgba(245, 243, 255, 0.72); }
.timeline-time { font-size: 12px; color: rgba(245, 243, 255, 0.5); margin-top: 4px; }

/* =============================================================================
   12. ANIMATIONS
   ============================================================================ */
/* Soft float for ambient orbs */
@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -20px); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-20px, 25px); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(15px, 15px); }
}

/* Fade in up */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeInUp 0.6s ease-out forwards;
}

.fade-in-delay-1 { animation-delay: 0.1s; }
.fade-in-delay-2 { animation-delay: 0.2s; }
.fade-in-delay-3 { animation-delay: 0.3s; }
.fade-in-delay-4 { animation-delay: 0.4s; }
.fade-in-delay-5 { animation-delay: 0.5s; }

/* Spinner */
@keyframes spin {
  to { transform: rotate(360deg); }
}

.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-top-color: #A855F7;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.spinner-lg {
  width: 32px;
  height: 32px;
  border-width: 3px;
}

/* Toast */
@keyframes toastIn {
  from { transform: translateX(120%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

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

.toast-in {
  animation: toastIn 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.toast-out {
  animation: toastOut 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Subtle pulse for CTA */
@keyframes subtlePulse {
  0%, 100% {
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.35), 0 0 80px rgba(139, 92, 246, 0.15);
  }
  50% {
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.45), 0 0 100px rgba(139, 92, 246, 0.2);
  }
}

.pulse-subtle {
  animation: subtlePulse 3s ease-in-out infinite;
}

/* Shimmer loading */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.shimmer {
  background: linear-gradient(90deg, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.03) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
}

/* Scale in */
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.scale-in {
  animation: scaleIn 0.4s ease-out forwards;
}

/* =============================================================================
   13. SCROLLBAR
   ============================================================================ */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #07010F;
}

::-webkit-scrollbar-thumb {
  background: rgba(139, 92, 246, 0.3);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(139, 92, 246, 0.5);
}

/* Firefox scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(139, 92, 246, 0.3) #07010F;
}

/* =============================================================================
   14. SELECTION
   ============================================================================ */
::selection {
  background: rgba(139, 92, 246, 0.3);
  color: #F5F3FF;
}

::-moz-selection {
  background: rgba(139, 92, 246, 0.3);
  color: #F5F3FF;
}

/* =============================================================================
   15. FOOTER
   ============================================================================ */
.footer-glass {
  background: rgba(7, 1, 15, 0.8);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.footer-link {
  font-size: 14px;
  color: rgba(245, 243, 255, 0.5);
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: rgba(245, 243, 255, 0.85);
}

.footer-heading {
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(245, 243, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* =============================================================================
   16. RESPONSIVE
   ============================================================================ */
@media (max-width: 768px) {
  .heading-hero {
    font-size: 44px;
  }

  .heading-section {
    font-size: 32px;
  }

  .section-padding {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .container-default {
    padding-left: 20px;
    padding-right: 20px;
  }

  .grid-responsive {
    grid-template-columns: 1fr !important;
  }

  .grid-responsive-2 {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 20, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 16px 20px;
    gap: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-link {
    padding: 12px 16px;
    font-size: 15px;
  }

  .btn-premium {
    font-size: 16px;
    padding: 14px 32px;
  }

  .ambient-orb-1 {
    width: 300px;
    height: 300px;
  }

  .ambient-orb-2 {
    width: 250px;
    height: 250px;
  }

  .ambient-orb-3 {
    width: 200px;
    height: 200px;
  }

  .ambient-glow {
    width: 100%;
    height: 400px;
  }
}

@media (max-width: 480px) {
  .heading-hero {
    font-size: 36px;
  }

  .heading-section {
    font-size: 28px;
  }

  .btn-premium {
    width: 100%;
    font-size: 15px;
    padding: 14px 24px;
  }

  .btn-outline {
    width: 100%;
  }
}

/* =============================================================================
   17. UTILITY CLASSES
   ============================================================================ */
/* Text gradient */
.text-gradient {
  background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 50%, #6366F1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Glow text */
.glow-text {
  text-shadow: 0 0 40px rgba(139, 92, 246, 0.3), 0 0 80px rgba(168, 85, 247, 0.15);
}

/* Section padding */
.section-padding {
  padding-top: 96px;
  padding-bottom: 96px;
}

@media (min-width: 768px) {
  .section-padding {
    padding-top: 128px;
    padding-bottom: 128px;
  }
}

/* Container narrow */
.container-narrow {
  max-width: 896px;
  margin-left: auto;
  margin-right: auto;
}

/* Container default */
.container-default {
  max-width: 1152px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* Z-index layers */
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }

/* Flex */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 8px; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.gap-8 { gap: 32px; }

/* Grid */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.gap-8 { gap: 32px; }

/* Width */
.w-full { width: 100%; }
.max-w-md { max-width: 448px; }
.max-w-lg { max-width: 512px; }
.max-w-xl { max-width: 576px; }
.max-w-2xl { max-width: 672px; }
.max-w-4xl { max-width: 896px; }
.max-w-6xl { max-width: 1152px; }

/* Spacing */
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.py-4 { padding-top: 16px; padding-bottom: 16px; }
.py-8 { padding-top: 32px; padding-bottom: 32px; }
.px-4 { padding-left: 16px; padding-right: 16px; }
.px-6 { padding-left: 24px; padding-right: 24px; }

/* Text alignment */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Font weight */
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

/* Hidden */
.hidden { display: none; }

/* Overflow */
.overflow-hidden { overflow: hidden; }

/* Pointer events */
.pointer-events-none { pointer-events: none; }

/* Border radius */
.rounded-lg { border-radius: 8px; }
.rounded-xl { border-radius: 12px; }
.rounded-2xl { border-radius: 16px; }

/* Backdrop blur helpers */
.blur-backdrop {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* Card surface (solid, non-glass) */
.card-surface {
  background: #12071F;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
}

/* Divider */
.divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  width: 100%;
}

/* Pricing highlight card */
.pricing-highlight {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(168, 85, 247, 0.08));
  border: 1px solid rgba(139, 92, 246, 0.3);
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.08);
}

/* Feature list item */
.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(245, 243, 255, 0.8);
}

.feature-item::before {
  content: '';
  width: 20px;
  height: 20px;
  background: rgba(34, 197, 94, 0.2);
  border-radius: 50%;
  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='%2322C55E' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

/* Stat card */
.stat-value {
  font-family: 'Sora', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #F5F3FF;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 13px;
  color: rgba(245, 243, 255, 0.6);
  margin-top: 4px;
}

/* Hero subtitle */
.hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(245, 243, 255, 0.68);
  max-width: 560px;
}

/* Pricing amount */
.pricing-amount {
  font-family: 'Sora', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #F5F3FF;
  letter-spacing: -0.03em;
}

.pricing-period {
  font-size: 15px;
  color: rgba(245, 243, 255, 0.5);
  font-weight: 500;
}

/* Social proof */
.social-proof-text {
  font-size: 13px;
  color: rgba(245, 243, 255, 0.55);
}

/* Empty state */
.empty-state {
  text-align: center;
  padding: 48px 24px;
}

.empty-state-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: rgba(139, 92, 246, 0.08);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.empty-state-title {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #F5F3FF;
  margin-bottom: 8px;
}

.empty-state-desc {
  font-size: 14px;
  color: rgba(245, 243, 255, 0.55);
}

/* Table styles */
.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(245, 243, 255, 0.5);
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.data-table td {
  font-size: 14px;
  color: rgba(245, 243, 255, 0.8);
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.data-table tbody tr {
  transition: background 0.15s ease;
}

.data-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

/* Step indicator (for multi-step forms) */
.step-indicator {
  display: flex;
  align-items: center;
  gap: 12px;
}

.step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
}

.step-dot.active {
  background: linear-gradient(135deg, #7C3AED, #A855F7);
  color: #fff;
}

.step-dot.completed {
  background: rgba(34, 197, 94, 0.2);
  color: #22C55E;
}

.step-dot.pending {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(245, 243, 255, 0.4);
}

.step-line {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 1px;
}

.step-line.completed {
  background: linear-gradient(90deg, #22C55E, rgba(34, 197, 94, 0.3));
}

/* Info banner */
.info-banner {
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 13px;
  color: rgba(245, 243, 255, 0.7);
}

/* Danger banner */
.danger-banner {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 13px;
  color: rgba(245, 243, 255, 0.7);
}

/* Success banner */
.success-banner {
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 13px;
  color: rgba(245, 243, 255, 0.7);
}

/* Copy button */
.copy-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 6px 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: rgba(245, 243, 255, 0.6);
}

.copy-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #F5F3FF;
}

/* IMEI display */
.imei-display {
  font-family: 'Inter', monospace;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #F5F3FF;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 10px 14px;
}

/* Tooltip */
.tooltip {
  position: relative;
}

.tooltip-text {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #12071F;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #F5F3FF;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 50;
}

.tooltip:hover .tooltip-text {
  opacity: 1;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(18, 7, 31, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  color: #F5F3FF;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  z-index: 40;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: rgba(139, 92, 246, 0.2);
  border-color: rgba(139, 92, 246, 0.4);
}

/* =============================================================================
   DARK THEME SPECIFIC (Already dark, but keeping for consistency)
   ============================================================================ */
body {
  background-color: #07010F;
  color: #F5F3FF;
}
