﻿/* HRXsite.com - Main Stylesheet */
/* Modern, Bold, Compelling Design System */

/* ========================================================= */
/* 1. CSS VARIABLES & ROOT CONFIGURATION */
/* ========================================================= */
:root {
   /* Brand Colors */
   --hrx-primary: #2979ff;
   --hrx-primary-dark: #1565c0;
   --hrx-primary-light: #5393ff;
   --hrx-secondary: #448aff;
   --hrx-success: #4ade80;
   --hrx-warning: #f59e0b;
   --hrx-danger: #ef4444;
   --hrx-light: #f8f9fa;
   --hrx-dark: #1f2937;
   --hrx-gray: #6b7280;
   --hrx-gray-light: #e5e7eb;
   /* Gradients */
   --hrx-gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   --hrx-gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
   --hrx-gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
   --hrx-gradient-dark: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
   /* White-Label CSS Variables - can be overridden */
   --brand-primary: var(--hrx-primary);
   --brand-primary-dark: var(--hrx-primary-dark);
   --brand-primary-light: var(--hrx-primary-light);
   --brand-secondary: var(--hrx-secondary);
   --brand-gradient-1: var(--hrx-gradient-1);
   --brand-gradient-2: linear-gradient(135deg, #4ade80 0%, #22d3ee 100%);
   --brand-name: "HRXsite";
   --brand-logo: url('/images/hrxsite-logo.png');
}

/* ========================================================= */
/* 2. BASE STYLES & RESET */
/* ========================================================= */
* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

html {
   font-size: 16px;
   scroll-behavior: smooth;
}

body {
   font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
   overflow-x: hidden;
   background: #000;
}

/* ========================================================= */
/* 3. TYPOGRAPHY & TEXT UTILITIES */
/* ========================================================= */
.gradient-text {
   background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
   animation: gradient-shift 3s ease infinite;
   background-size: 200% 200%;
}

@keyframes gradient-shift {
   0% {
      background-position: 0% 50%;
   }

   50% {
      background-position: 100% 50%;
   }

   100% {
      background-position: 0% 50%;
   }
}

.section-title {
   font-size: clamp(2.5rem, 5vw, 4rem);
   font-weight: 900;
   text-align: center;
   margin-bottom: 1rem;
   color: #fff;
}

.section-subtitle {
   font-size: 1.25rem;
   color: #94a3b8;
   text-align: center;
   margin-bottom: 4rem;
}

/* ========================================================= */
/* 4. LAYOUT & CONTAINERS */
/* ========================================================= */
.main-content {
   padding-top: 80px;
   min-height: calc(100vh - 80px);
}

/* ========================================================= */
/* 5. NAVIGATION & HEADER */
/* ========================================================= */
.navbar {
   position: fixed !important;
   top: 0;
   width: 100%;
   z-index: 1000;
   background: rgba(15, 12, 41, 0.8) !important;
   backdrop-filter: blur(20px);
   border-bottom: 1px solid rgba(255, 255, 255, 0.1);
   padding: 1rem 0;
   transition: all 0.3s ease;
}

   .navbar.scrolled {
      background: rgba(15, 12, 41, 0.95) !important;
      padding: 0.7rem 0;
   }

.navbar-brand {
   font-weight: 800;
   font-size: 1.5rem;
   background: linear-gradient(135deg, #667eea, #764ba2);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   text-decoration: none !important;
}

.brand-logo-container {
   position: relative;
}

.brand-glow {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   width: 40px;
   height: 40px;
   background: radial-gradient(circle, rgba(102, 126, 234, 0.5), transparent);
   filter: blur(20px);
   opacity: 0;
   transition: opacity 0.3s ease;
}

.navbar-brand:hover .brand-glow {
   opacity: 1;
}

.nav-link {
   color: rgba(255, 255, 255, 0.8) !important;
   font-weight: 500;
   transition: all 0.3s ease;
   position: relative;
}

   .nav-link:hover {
      color: #667eea !important;
   }

   .nav-link::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 50%;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, #667eea, #764ba2);
      transition: all 0.3s ease;
      transform: translateX(-50%);
   }

   .nav-link:hover::after,
   .nav-link.active::after {
      width: 100%;
   }

   .nav-link.active {
      color: #667eea !important;
   }

.nav-icon {
   margin-right: 5px;
   opacity: 0.8;
}

.btn-nav-cta {
   background: linear-gradient(135deg, #667eea, #764ba2);
   color: white !important;
   padding: 0.5rem 1.5rem;
   border-radius: 50px;
   font-weight: 600;
   text-decoration: none;
   transition: all 0.3s ease;
   display: inline-block;
   position: relative;
   overflow: hidden;
}

   .btn-nav-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
   }

.btn-icon-glass {
   background: rgba(255, 255, 255, 0.1);
   border: 1px solid rgba(255, 255, 255, 0.2);
   border-radius: 50%;
   width: 40px;
   height: 40px;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: all 0.3s ease;
   cursor: pointer;
}

   .btn-icon-glass:hover {
      background: rgba(255, 255, 255, 0.15);
      transform: scale(1.1);
   }

.notification-dot {
   position: absolute;
   top: 8px;
   right: 8px;
   width: 8px;
   height: 8px;
   background: #ef4444;
   border-radius: 50%;
   animation: pulse 2s infinite;
}

/* Dropdown Menu Dark Theme */
.dropdown-menu-dark {
   background: rgba(15, 12, 41, 0.95);
   backdrop-filter: blur(10px);
   border: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-item {
   color: #94a3b8;
   transition: all 0.3s ease;
}

   .dropdown-item:hover {
      background: rgba(102, 126, 234, 0.2);
      color: #fff;
   }

/* ========================================================= */
/* 6. HERO SECTION */
/* ========================================================= */
.hero-section {
   min-height: 100vh;
   background: #0f0c29;
   background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
   position: relative;
   overflow: hidden;
   display: flex;
   align-items: center;
   padding-top: 80px;
}

.hero-bg-animation {
   position: absolute;
   width: 100%;
   height: 100%;
   top: 0;
   left: 0;
   z-index: 1;
}

.floating-bubble {
   position: absolute;
   border-radius: 50%;
   background: radial-gradient(circle at 30% 30%, rgba(102, 126, 234, 0.4), transparent);
   filter: blur(40px);
   animation: float-bubble 20s infinite ease-in-out;
}

.bubble-1 {
   width: 400px;
   height: 400px;
   top: -200px;
   left: -100px;
   animation-delay: 0s;
}

.bubble-2 {
   width: 300px;
   height: 300px;
   bottom: -150px;
   right: -100px;
   animation-delay: 5s;
   background: radial-gradient(circle at 30% 30%, rgba(118, 75, 162, 0.4), transparent);
}

.bubble-3 {
   width: 500px;
   height: 500px;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   animation-delay: 10s;
   background: radial-gradient(circle at 30% 30%, rgba(79, 172, 254, 0.2), transparent);
}

@keyframes float-bubble {
   0%, 100% {
      transform: translate(0, 0) scale(1);
   }

   25% {
      transform: translate(100px, -100px) scale(1.1);
   }

   50% {
      transform: translate(-100px, 100px) scale(0.9);
   }

   75% {
      transform: translate(50px, 50px) scale(1.05);
   }
}

.hero-content {
   position: relative;
   z-index: 2;
}

.glowing-badge {
   display: inline-block;
   padding: 8px 20px;
   background: rgba(102, 126, 234, 0.1);
   border: 1px solid rgba(102, 126, 234, 0.3);
   border-radius: 50px;
   color: #a5b4fc;
   font-size: 0.875rem;
   font-weight: 600;
   margin-bottom: 2rem;
   animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
   0%, 100% {
      box-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
   }

   50% {
      box-shadow: 0 0 40px rgba(102, 126, 234, 0.8);
   }
}

.hero-title {
   font-size: clamp(3rem, 8vw, 5rem);
   font-weight: 900;
   line-height: 1.1;
   color: #fff;
   margin-bottom: 1.5rem;
   animation: fade-slide-up 0.8s ease;
}

.hero-subtitle {
   font-size: 1.25rem;
   color: #a5b4fc;
   margin-bottom: 3rem;
   line-height: 1.7;
   animation: fade-slide-up 0.8s ease 0.2s both;
}

@keyframes fade-slide-up {
   from {
      opacity: 0;
      transform: translateY(30px);
   }

   to {
      opacity: 1;
      transform: translateY(0);
   }
}

/* Animated Stats */
.animated-stats {
   display: flex;
   gap: 3rem;
   margin-bottom: 3rem;
   flex-wrap: wrap;
}

.stat-card {
   background: rgba(255, 255, 255, 0.05);
   backdrop-filter: blur(10px);
   border: 1px solid rgba(255, 255, 255, 0.1);
   border-radius: 20px;
   padding: 1.5rem;
   animation: fade-slide-up 0.8s ease 0.4s both;
   transition: all 0.3s ease;
}

   .stat-card:hover {
      transform: translateY(-5px);
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(102, 126, 234, 0.5);
   }

.stat-number {
   font-size: 2.5rem;
   font-weight: 800;
   background: linear-gradient(135deg, #667eea, #764ba2);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   display: block;
}

.stat-label {
   color: #94a3b8;
   font-size: 0.875rem;
   margin-top: 0.5rem;
}

/* 3D Cards */
.floating-cards-container {
   position: relative;
   height: 600px;
   perspective: 1000px;
}

.floating-card-3d {
   position: absolute;
   width: 280px;
   background: rgba(255, 255, 255, 0.95);
   border-radius: 20px;
   padding: 2rem;
   box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
   transform-style: preserve-3d;
   transition: all 0.3s ease;
   animation: float-3d 6s infinite ease-in-out;
}

   .floating-card-3d:hover {
      transform: rotateY(10deg) rotateX(10deg) scale(1.05);
   }

@keyframes float-3d {
   0%, 100% {
      transform: translateY(0) rotateY(0deg);
   }

   50% {
      transform: translateY(-20px) rotateY(5deg);
   }
}

.card-3d-1 {
   top: 50px;
   left: 50px;
   animation-delay: 0s;
}

.card-3d-2 {
   top: 150px;
   right: 100px;
   animation-delay: 2s;
}

.card-3d-3 {
   bottom: 100px;
   left: 150px;
   animation-delay: 4s;
}

.card-logo {
   font-size: 2.5rem;
   margin-bottom: 1rem;
}

.card-company {
   font-weight: 700;
   color: #1f2937;
   margin-bottom: 0.5rem;
}

.card-metric-value {
   font-size: 2rem;
   font-weight: 800;
   background: linear-gradient(135deg, #667eea, #764ba2);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
}

.card-metric-label {
   color: #6b7280;
   font-size: 0.875rem;
}

/* ========================================================= */
/* 7. BUTTONS & CTA */
/* ========================================================= */
.btn-neon-primary {
   padding: 1rem 2.5rem;
   font-size: 1.125rem;
   font-weight: 600;
   color: #fff;
   background: linear-gradient(135deg, #667eea, #764ba2);
   border: none;
   border-radius: 50px;
   position: relative;
   overflow: hidden;
   transition: all 0.3s ease;
   text-decoration: none;
   display: inline-block;
   animation: fade-slide-up 0.8s ease 0.6s both;
}

   .btn-neon-primary::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #764ba2, #f093fb);
      opacity: 0;
      transition: opacity 0.3s ease;
   }

   .btn-neon-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 20px 40px rgba(102, 126, 234, 0.4);
      color: #fff;
   }

      .btn-neon-primary:hover::before {
         opacity: 1;
      }

   .btn-neon-primary span {
      position: relative;
      z-index: 1;
   }

.btn-glass {
   padding: 1rem 2.5rem;
   font-size: 1.125rem;
   font-weight: 600;
   color: #fff;
   background: rgba(255, 255, 255, 0.1);
   backdrop-filter: blur(10px);
   border: 1px solid rgba(255, 255, 255, 0.2);
   border-radius: 50px;
   transition: all 0.3s ease;
   text-decoration: none;
   display: inline-block;
   margin-left: 1rem;
   animation: fade-slide-up 0.8s ease 0.7s both;
}

   .btn-glass:hover {
      background: rgba(255, 255, 255, 0.15);
      border-color: rgba(102, 126, 234, 0.5);
      transform: translateY(-3px);
      color: #fff;
   }

.btn-wizard-primary {
   background: linear-gradient(135deg, var(--hrx-primary), #764ba2);
   color: #fff;
   padding: 1rem 2rem;
   border: none;
   border-radius: 50px;
   font-weight: 600;
   font-size: 1rem;
   cursor: pointer;
   transition: all 0.3s ease;
   display: inline-flex;
   align-items: center;
   gap: 0.5rem;
}

   .btn-wizard-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(102,126,234,0.3);
   }

.btn-wizard-secondary {
   background: rgba(255,255,255,0.1);
   color: #fff;
   padding: 1rem 2rem;
   border: 1px solid rgba(255,255,255,0.2);
   border-radius: 50px;
   font-weight: 600;
   font-size: 1rem;
   cursor: pointer;
   transition: all 0.3s ease;
   display: inline-flex;
   align-items: center;
   gap: 0.5rem;
}

   .btn-wizard-secondary:hover {
      background: rgba(255,255,255,0.15);
      border-color: rgba(255,255,255,0.3);
   }

.btn-lg {
   padding: 1.25rem 3rem;
   font-size: 1.125rem;
}

.btn-arrow {
   transition: transform 0.3s ease;
}

.btn-wizard-primary:hover .btn-arrow {
   transform: translateX(3px);
}

.btn-wizard-secondary:hover .btn-arrow {
   transform: translateX(-3px);
}

.btn-pricing-modern {
   width: 100%;
   padding: 1rem;
   background: rgba(255, 255, 255, 0.1);
   border: 1px solid rgba(255, 255, 255, 0.2);
   color: #fff;
   border-radius: 12px;
   font-weight: 600;
   transition: all 0.3s ease;
   cursor: pointer;
   text-align: center;
   text-decoration: none;
   display: block;
}

   .btn-pricing-modern:hover {
      background: rgba(102, 126, 234, 0.2);
      border-color: rgba(102, 126, 234, 0.5);
      transform: translateY(-2px);
      color: #fff;
   }

.pricing-card-modern.featured .btn-pricing-modern {
   background: linear-gradient(135deg, #667eea, #764ba2);
   border: none;
}

   .pricing-card-modern.featured .btn-pricing-modern:hover {
      box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
   }

.btn-cta-white {
   background: #fff;
   color: #667eea;
   padding: 1rem 2.5rem;
   border-radius: 50px;
   font-weight: 700;
   text-decoration: none;
   transition: all 0.3s ease;
   display: inline-block;
}

   .btn-cta-white:hover {
      transform: translateY(-3px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
   }

.btn-cta-outline {
   background: transparent;
   color: #fff;
   border: 2px solid #fff;
   padding: 1rem 2.5rem;
   border-radius: 50px;
   font-weight: 700;
   text-decoration: none;
   transition: all 0.3s ease;
   display: inline-block;
}

   .btn-cta-outline:hover {
      background: rgba(255, 255, 255, 0.1);
      transform: translateY(-3px);
   }

.btn-footer-cta {
   background: linear-gradient(135deg, #667eea, #764ba2);
   color: white !important;
   padding: 0.75rem 1.5rem;
   border-radius: 50px;
   font-weight: 600;
   text-decoration: none;
   display: inline-block;
   transition: all 0.3s ease;
}

   .btn-footer-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
   }

/* ========================================================= */
/* 8. PROBLEM SECTION */
/* ========================================================= */
.problem-section {
   background: #0a0a0a;
   padding: 8rem 0;
   position: relative;
}

.problem-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 2rem;
}

.problem-card-modern {
   background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
   backdrop-filter: blur(10px);
   border: 1px solid rgba(255, 255, 255, 0.1);
   border-radius: 24px;
   padding: 3rem;
   transition: all 0.4s ease;
   position: relative;
   overflow: hidden;
}

   .problem-card-modern::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
      opacity: 0;
      transition: opacity 0.4s ease;
   }

   .problem-card-modern:hover {
      transform: translateY(-10px) scale(1.02);
      border-color: rgba(102, 126, 234, 0.5);
   }

      .problem-card-modern:hover::before {
         opacity: 1;
      }

.problem-icon-modern {
   font-size: 3rem;
   margin-bottom: 1.5rem;
   display: inline-block;
   animation: pulse-icon 2s infinite;
}

@keyframes pulse-icon {
   0%, 100% {
      transform: scale(1);
   }

   50% {
      transform: scale(1.1);
   }
}

.problem-title {
   font-size: 2rem;
   font-weight: 700;
   color: #fff;
   margin-bottom: 1rem;
   position: relative;
   z-index: 1;
}

.problem-description {
   color: #94a3b8;
   line-height: 1.7;
   position: relative;
   z-index: 1;
}

/* ========================================================= */
/* 9. SOLUTION SECTION */
/* ========================================================= */
.solution-section {
   background: linear-gradient(180deg, #0a0a0a 0%, #0f0c29 100%);
   padding: 8rem 0;
   position: relative;
}

.feature-list-modern {
   display: grid;
   gap: 2rem;
}

.feature-item-modern {
   display: flex;
   gap: 1.5rem;
   padding: 2rem;
   background: rgba(255, 255, 255, 0.02);
   border-radius: 20px;
   transition: all 0.3s ease;
}

   .feature-item-modern:hover {
      background: rgba(255, 255, 255, 0.05);
      transform: translateX(10px);
   }

.feature-icon-circle {
   width: 60px;
   height: 60px;
   background: linear-gradient(135deg, #667eea, #764ba2);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.5rem;
   color: #fff;
   flex-shrink: 0;
}

.feature-content h3 {
   font-size: 1.5rem;
   color: #fff;
   margin-bottom: 0.5rem;
}

.feature-content p {
   color: #94a3b8;
   line-height: 1.6;
}

/* Dashboard Preview */
.dashboard-preview-modern {
   background: rgba(255, 255, 255, 0.05);
   backdrop-filter: blur(20px);
   border: 1px solid rgba(255, 255, 255, 0.1);
   border-radius: 24px;
   overflow: hidden;
   box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
   transform: perspective(1000px) rotateY(-5deg);
   transition: transform 0.3s ease;
}

   .dashboard-preview-modern:hover {
      transform: perspective(1000px) rotateY(0deg);
   }

.dashboard-header-modern {
   background: rgba(102, 126, 234, 0.1);
   padding: 1.5rem;
   border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-body-modern {
   padding: 2rem;
}

.metric-grid {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 1.5rem;
   margin-bottom: 2rem;
}

.metric-card-glass {
   background: rgba(255, 255, 255, 0.05);
   border-radius: 16px;
   padding: 1.5rem;
   border: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-value-xl {
   font-size: 2.5rem;
   font-weight: 800;
   background: linear-gradient(135deg, #667eea, #764ba2);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
}

.metric-label-modern {
   color: #94a3b8;
   font-size: 0.875rem;
   margin-top: 0.5rem;
}

.trend-badge {
   display: inline-block;
   padding: 0.25rem 0.75rem;
   border-radius: 20px;
   font-size: 0.75rem;
   font-weight: 600;
   margin-top: 0.5rem;
}

.trend-up {
   background: rgba(74, 222, 128, 0.2);
   color: #4ade80;
}

.trend-down {
   background: rgba(239, 68, 68, 0.2);
   color: #ef4444;
}

/* Animated Chart */
.chart-container {
   height: 200px;
   display: flex;
   align-items: flex-end;
   justify-content: space-around;
   gap: 1rem;
}

.chart-bar-animated {
   flex: 1;
   background: linear-gradient(180deg, #667eea, #764ba2);
   border-radius: 8px 8px 0 0;
   animation: grow-bar 1s ease forwards;
   opacity: 0;
}

@keyframes grow-bar {
   from {
      height: 0;
      opacity: 0;
   }

   to {
      opacity: 1;
   }
}

.bar-1 {
   animation-delay: 0.1s;
   height: 60%;
}

.bar-2 {
   animation-delay: 0.2s;
   height: 80%;
}

.bar-3 {
   animation-delay: 0.3s;
   height: 45%;
}

.bar-4 {
   animation-delay: 0.4s;
   height: 90%;
}

.bar-5 {
   animation-delay: 0.5s;
   height: 70%;
}

/* ========================================================= */
/* 10. INTEGRATIONS SECTION */
/* ========================================================= */
.integrations-section {
   background: #000;
   padding: 6rem 0;
   overflow: hidden;
}

.marquee-container {
   position: relative;
   overflow: hidden;
   padding: 2rem 0;
}

.marquee-track-modern {
   display: flex;
   animation: scroll-marquee 30s linear infinite;
}

@keyframes scroll-marquee {
   0% {
      transform: translateX(0);
   }

   100% {
      transform: translateX(-50%);
   }
}

.integration-item-modern {
   display: flex;
   flex-direction: column;
   align-items: center;
   margin: 0 3rem;
   flex-shrink: 0;
}

.integration-box {
   width: 100px;
   height: 100px;
   background: rgba(255, 255, 255, 0.05);
   backdrop-filter: blur(10px);
   border: 1px solid rgba(255, 255, 255, 0.1);
   border-radius: 24px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 3rem;
   transition: all 0.3s ease;
}

.integration-item-modern:hover .integration-box {
   background: rgba(102, 126, 234, 0.1);
   border-color: rgba(102, 126, 234, 0.3);
   transform: scale(1.1);
}

.integration-name {
   color: #94a3b8;
   margin-top: 1rem;
   font-weight: 600;
}

/* ========================================================= */
/* 11. ROI SECTION */
/* ========================================================= */
.roi-section {
   background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
   padding: 8rem 0;
   position: relative;
}

.roi-card-modern {
   background: rgba(255, 255, 255, 0.05);
   backdrop-filter: blur(20px);
   border: 1px solid rgba(255, 255, 255, 0.1);
   border-radius: 32px;
   padding: 4rem;
}

.roi-metrics-grid {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 3rem;
   margin-bottom: 3rem;
}

.roi-metric-item {
   text-align: center;
}

.roi-metric-value {
   font-size: 3rem;
   font-weight: 900;
   background: linear-gradient(135deg, #4ade80, #22d3ee);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   margin-bottom: 0.5rem;
}

.roi-metric-label {
   color: #94a3b8;
   font-size: 1rem;
}

/* Testimonial */
.testimonial-modern {
   background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
   backdrop-filter: blur(10px);
   border: 1px solid rgba(255, 255, 255, 0.1);
   border-radius: 24px;
   padding: 3rem;
   position: relative;
   overflow: hidden;
}

.quote-mark {
   font-size: 6rem;
   color: rgba(102, 126, 234, 0.2);
   position: absolute;
   top: -20px;
   left: 20px;
   font-family: Georgia, serif;
}

.testimonial-text {
   font-size: 1.25rem;
   line-height: 1.8;
   color: #fff;
   margin-bottom: 2rem;
   position: relative;
   z-index: 1;
}

.testimonial-author {
   display: flex;
   align-items: center;
   gap: 1rem;
}

.author-avatar {
   width: 60px;
   height: 60px;
   border-radius: 50%;
   background: linear-gradient(135deg, #667eea, #764ba2);
}

.author-info {
   color: #fff;
}

.author-name {
   font-weight: 700;
   font-size: 1.125rem;
}

.author-role {
   color: #94a3b8;
   font-size: 0.875rem;
}

/* ========================================================= */
/* 12. PRICING SECTION */
/* ========================================================= */
.pricing-section {
   background: #0a0a0a;
   padding: 8rem 0;
}

.pricing-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 2rem;
   max-width: 1200px;
   margin: 0 auto;
}

.pricing-card-modern {
   background: rgba(255, 255, 255, 0.02);
   border: 1px solid rgba(255, 255, 255, 0.1);
   border-radius: 24px;
   padding: 3rem;
   position: relative;
   transition: all 0.3s ease;
}

   .pricing-card-modern.featured {
      background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
      border-color: rgba(102, 126, 234, 0.3);
      transform: scale(1.05);
   }

   .pricing-card-modern:hover {
      transform: translateY(-10px);
      border-color: rgba(102, 126, 234, 0.5);
   }

.popular-badge {
   position: absolute;
   top: -15px;
   left: 50%;
   transform: translateX(-50%);
   background: linear-gradient(135deg, #667eea, #764ba2);
   color: #fff;
   padding: 0.5rem 1.5rem;
   border-radius: 20px;
   font-size: 0.875rem;
   font-weight: 600;
}

.pricing-header {
   text-align: center;
   margin-bottom: 2rem;
}

.plan-name {
   font-size: 1.5rem;
   color: #fff;
   margin-bottom: 1rem;
}

.price-display {
   font-size: 3rem;
   font-weight: 900;
   color: #fff;
   margin-bottom: 0.5rem;
}

   .price-display .currency {
      font-size: 1.5rem;
      vertical-align: super;
      opacity: 0.7;
   }

.price-period {
   color: #94a3b8;
   font-size: 1rem;
}

.price-description {
   color: #6b7280;
   font-size: 0.875rem;
   margin-top: 0.5rem;
}

.features-list {
   list-style: none;
   margin: 2rem 0;
}

   .features-list li {
      padding: 1rem 0;
      color: #94a3b8;
      display: flex;
      align-items: center;
      gap: 1rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
   }

      .features-list li:last-child {
         border-bottom: none;
      }

.check-icon {
   color: #4ade80;
   font-weight: bold;
}

/* ========================================================= */
/* 13. CTA SECTION */
/* ========================================================= */
.cta-section {
   background: #000;
   padding: 8rem 0;
}

.cta-container {
   background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
   border-radius: 32px;
   padding: 5rem;
   text-align: center;
   position: relative;
   overflow: hidden;
}

   .cta-container::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
      animation: rotate 20s linear infinite;
   }

@keyframes rotate {
   0% {
      transform: rotate(0deg);
   }

   100% {
      transform: rotate(360deg);
   }
}

.cta-content {
   position: relative;
   z-index: 1;
}

.cta-title {
   font-size: 3rem;
   font-weight: 900;
   color: #fff;
   margin-bottom: 1rem;
}

.cta-subtitle {
   font-size: 1.25rem;
   color: rgba(255, 255, 255, 0.9);
   margin-bottom: 2rem;
}

.cta-buttons {
   display: flex;
   gap: 1rem;
   justify-content: center;
   flex-wrap: wrap;
}

/* ========================================================= */
/* 14. WIZARD SPECIFIC STYLES */
/* ========================================================= */
.wizard-page-background {
   background: linear-gradient(135deg, var(--hrx-primary) 0%, var(--hrx-primary-dark) 100%);
   min-height: calc(100vh - 120px);
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 20px;
}

.onboarding-container {
   background: white;
   border-radius: 24px;
   box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
   max-width: 900px;
   width: 100%;
   overflow: hidden;
   animation: slideUp 0.6s ease;
}

@keyframes slideUp {
   from {
      opacity: 0;
      transform: translateY(30px);
   }

   to {
      opacity: 1;
      transform: translateY(0);
   }
}

.progress-header {
   background: linear-gradient(135deg, var(--hrx-primary) 0%, var(--hrx-primary-dark) 100%);
   padding: 30px;
   color: white;
}

.progress-steps {
   display: flex;
   justify-content: space-between;
   margin-bottom: 20px;
}

.step {
   display: flex;
   align-items: center;
   opacity: 0.6;
   transition: opacity 0.3s ease;
}

   .step.active {
      opacity: 1;
   }

.step-circle {
   width: 40px;
   height: 40px;
   border-radius: 50%;
   background: rgba(255, 255, 255, 0.2);
   display: flex;
   align-items: center;
   justify-content: center;
   margin-right: 12px;
   font-weight: bold;
   transition: all 0.3s ease;
}

.step.active .step-circle {
   background: white;
   color: var(--hrx-primary);
   transform: scale(1.1);
}

/* Modern Wizard Container */
.wizard-container-modern {
   min-height: 100vh;
   background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
   position: relative;
   overflow: hidden;
   padding: 100px 0 50px;
}

.wizard-bg-effects {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   pointer-events: none;
}

.floating-orb {
   position: absolute;
   border-radius: 50%;
   filter: blur(100px);
   opacity: 0.3;
   animation: float-orb 20s infinite ease-in-out;
}

.orb-1 {
   width: 600px;
   height: 600px;
   background: radial-gradient(circle, var(--hrx-primary), transparent);
   top: -200px;
   left: -200px;
}

.orb-2 {
   width: 400px;
   height: 400px;
   background: radial-gradient(circle, #764ba2, transparent);
   bottom: -100px;
   right: -100px;
   animation-delay: 7s;
}

.orb-3 {
   width: 500px;
   height: 500px;
   background: radial-gradient(circle, #f093fb, transparent);
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   animation-delay: 14s;
}

@keyframes float-orb {
   0%, 100% {
      transform: translate(0, 0) scale(1);
   }

   33% {
      transform: translate(50px, -50px) scale(1.1);
   }

   66% {
      transform: translate(-50px, 50px) scale(0.9);
   }
}

.grid-pattern {
   position: absolute;
   width: 100%;
   height: 100%;
   background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
   background-size: 50px 50px;
}

.wizard-content {
   position: relative;
   z-index: 2;
}

.wizard-main-title {
   font-size: 3rem;
   font-weight: 900;
   color: #fff;
   margin-bottom: 0.5rem;
}

.wizard-subtitle {
   color: #94a3b8;
   font-size: 1.125rem;
}

.time-estimate {
   display: inline-flex;
   align-items: center;
   gap: 0.5rem;
   padding: 0.75rem 1.5rem;
   background: rgba(255,255,255,0.05);
   border: 1px solid rgba(255,255,255,0.1);
   border-radius: 50px;
   color: #94a3b8;
}

/* Progress Steps Modern */
.progress-steps-modern {
   display: flex;
   justify-content: space-between;
   margin: 3rem 0;
   position: relative;
}

.step-item {
   flex: 1;
   display: flex;
   align-items: center;
   position: relative;
}

.step-circle-modern {
   width: 60px;
   height: 60px;
   border-radius: 50%;
   background: rgba(255,255,255,0.05);
   border: 2px solid rgba(255,255,255,0.1);
   display: flex;
   align-items: center;
   justify-content: center;
   position: relative;
   transition: all 0.3s ease;
   cursor: pointer;
}

   .step-circle-modern.active {
      background: linear-gradient(135deg, var(--hrx-primary), #764ba2);
      border-color: transparent;
      transform: scale(1.1);
   }

   .step-circle-modern.completed {
      background: linear-gradient(135deg, #4ade80, #22d3ee);
      border-color: transparent;
   }

.step-number {
   font-size: 1.25rem;
   font-weight: 700;
   color: #fff;
   position: relative;
   z-index: 2;
}

.step-pulse {
   position: absolute;
   width: 100%;
   height: 100%;
   border-radius: 50%;
   background: inherit;
   opacity: 0;
   animation: pulse-step 2s infinite;
}

.step-circle-modern.active .step-pulse {
   opacity: 0.3;
}

@keyframes pulse-step {
   0% {
      transform: scale(1);
      opacity: 0.3;
   }

   50% {
      transform: scale(1.5);
      opacity: 0;
   }

   100% {
      transform: scale(1);
      opacity: 0.3;
   }
}

.step-info {
   margin-left: 1rem;
}

.step-title {
   color: #fff;
   font-weight: 600;
   font-size: 1rem;
}

.step-desc {
   color: #6b7280;
   font-size: 0.875rem;
}

.step-connector {
   position: absolute;
   left: 60px;
   right: -50%;
   height: 2px;
   background: rgba(255,255,255,0.1);
   top: 50%;
   transform: translateY(-50%);
   z-index: -1;
}

.step-item:last-child .step-connector {
   display: none;
}

/* Progress Bar Modern */
.progress-bar-modern {
   height: 8px;
   background: rgba(255,255,255,0.1);
   border-radius: 10px;
   overflow: hidden;
   position: relative;
}

.progress-fill-modern {
   height: 100%;
   background: linear-gradient(90deg, var(--hrx-primary), #764ba2, #f093fb);
   border-radius: 10px;
   width: 25%;
   transition: width 0.5s ease;
   position: relative;
}

.progress-glow {
   position: absolute;
   top: 0;
   right: 0;
   width: 50px;
   height: 100%;
   background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5));
   animation: shimmer 2s infinite;
}

@keyframes shimmer {
   0% {
      transform: translateX(-50px);
   }

   100% {
      transform: translateX(50px);
   }
}

/* Wizard Screens */
.wizard-screens {
   margin-top: 3rem;
}

.wizard-screen {
   display: none;
   animation: fadeInScreen 0.5s ease;
}

   .wizard-screen.active {
      display: block;
   }

@keyframes fadeInScreen {
   from {
      opacity: 0;
      transform: translateY(20px);
   }

   to {
      opacity: 1;
      transform: translateY(0);
   }
}

.screen-content-modern {
   background: rgba(255,255,255,0.02);
   backdrop-filter: blur(10px);
   border: 1px solid rgba(255,255,255,0.1);
   border-radius: 24px;
   padding: 3rem;
}

.screen-title {
   font-size: 2rem;
   font-weight: 700;
   color: #fff;
   margin-bottom: 1rem;
}

.screen-description {
   color: #94a3b8;
   font-size: 1.125rem;
   margin-bottom: 2rem;
}

.screen-actions {
   display: flex;
   gap: 1rem;
   justify-content: center;
   margin-top: 3rem;
}

/* Welcome Screen */
.welcome-hero {
   text-align: center;
   margin-bottom: 3rem;
}

.welcome-icon-container {
   position: relative;
   display: inline-block;
   margin-bottom: 2rem;
}

.welcome-icon {
   font-size: 5rem;
   display: block;
}

.welcome-icon-glow {
   position: absolute;
   width: 150px;
   height: 150px;
   background: radial-gradient(circle, rgba(102,126,234,0.3), transparent);
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   filter: blur(30px);
}

.feature-cards-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 1.5rem;
   margin-bottom: 3rem;
}

.feature-card-modern {
   background: rgba(255,255,255,0.03);
   border: 1px solid rgba(255,255,255,0.1);
   border-radius: 16px;
   padding: 2rem;
   text-align: center;
   transition: all 0.3s ease;
}

   .feature-card-modern:hover {
      background: rgba(255,255,255,0.05);
      border-color: var(--hrx-primary);
      transform: translateY(-5px);
   }

.feature-icon-modern {
   font-size: 2.5rem;
   margin-bottom: 1rem;
}

.feature-card-modern h4 {
   color: #fff;
   font-size: 1.125rem;
   margin-bottom: 0.5rem;
}

.feature-card-modern p {
   color: #6b7280;
   font-size: 0.875rem;
   margin: 0;
}

/* System Cards */
.system-category {
   margin-bottom: 3rem;
}

.category-title {
   color: #fff;
   font-size: 1.25rem;
   font-weight: 600;
   margin-bottom: 1.5rem;
   display: flex;
   align-items: center;
   gap: 0.75rem;
}

.category-icon {
   font-size: 1.5rem;
}

.systems-grid {
   display: grid;
   grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
   gap: 1rem;
}

.system-card-modern {
   background: rgba(255,255,255,0.03);
   border: 2px solid rgba(255,255,255,0.1);
   border-radius: 16px;
   padding: 1.5rem;
   text-align: center;
   cursor: pointer;
   position: relative;
   transition: all 0.3s ease;
   overflow: hidden;
}

   .system-card-modern[data-branding="primary"]:hover {
      border-color: var(--hrx-primary);
      background: rgba(102,126,234,0.1);
   }

   .system-card-modern[data-branding="custom"]:hover {
      border-color: var(--brand-primary, var(--hrx-primary));
      background: var(--brand-hover, rgba(102,126,234,0.1));
   }

   .system-card-modern.connected {
      background: linear-gradient(135deg, rgba(74,222,128,0.1), rgba(34,211,238,0.1));
      border-color: #4ade80;
   }

   .system-card-modern.connecting {
      background: rgba(102,126,234,0.1);
      border-color: var(--hrx-primary);
   }

   .system-card-modern.connected:hover {
      border-color: #ef4444 !important;
      background: rgba(239, 68, 68, 0.1) !important;
   }

      .system-card-modern.connected:hover::after {
         content: 'Click to disconnect';
         position: absolute;
         top: 50%;
         left: 50%;
         transform: translate(-50%, -50%);
         background: rgba(239, 68, 68, 0.9);
         color: white;
         padding: 0.5rem 1rem;
         border-radius: 8px;
         font-size: 0.875rem;
         white-space: nowrap;
         z-index: 10;
         pointer-events: none;
      }

      .system-card-modern.connected:hover .indicator-text {
         color: #ef4444;
      }

.system-status {
   position: absolute;
   top: 10px;
   right: 10px;
   width: 24px;
   height: 24px;
   border-radius: 50%;
   background: #4ade80;
   display: flex;
   align-items: center;
   justify-content: center;
   color: #fff;
   font-size: 14px;
   opacity: 0;
   transform: scale(0);
   transition: all 0.3s ease;
}

.system-card-modern.connected .system-status {
   opacity: 1;
   transform: scale(1);
}

   .system-card-modern.connected .system-status::after {
      content: '✓';
   }

.system-logo {
   font-size: 2.5rem;
   margin-bottom: 0.75rem;
}

.system-name {
   color: #fff;
   font-weight: 600;
   font-size: 1rem;
   margin-bottom: 0.25rem;
}

.system-type {
   color: #6b7280;
   font-size: 0.75rem;
   margin-bottom: 0.75rem;
}

.connection-indicator {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 0.5rem;
   font-size: 0.875rem;
   color: #94a3b8;
}

.indicator-dot {
   width: 8px;
   height: 8px;
   border-radius: 50%;
   background: #6b7280;
   transition: all 0.3s ease;
}

.system-card-modern.connected .indicator-dot {
   background: #4ade80;
   animation: pulse 2s infinite;
}

.system-card-modern.connected .indicator-text {
   color: #4ade80;
}

.connection-counter {
   display: inline-flex;
   align-items: center;
   gap: 0.5rem;
   margin-left: 1rem;
   color: #94a3b8;
}

.count-badge {
   background: linear-gradient(135deg, var(--hrx-primary), #764ba2);
   color: #fff;
   padding: 0.25rem 0.75rem;
   border-radius: 20px;
   font-weight: 600;
}

/* Import Progress */
.import-progress-container {
   margin-bottom: 2rem;
}

.import-status-card {
   background: rgba(255,255,255,0.03);
   border: 1px solid rgba(255,255,255,0.1);
   border-radius: 16px;
   padding: 2rem;
   display: flex;
   align-items: center;
   gap: 2rem;
   margin-bottom: 2rem;
}

.status-icon-animated {
   position: relative;
   width: 80px;
   height: 80px;
}

.spinner-modern {
   position: absolute;
   width: 100%;
   height: 100%;
   border: 3px solid rgba(255,255,255,0.1);
   border-top-color: var(--hrx-primary);
   border-radius: 50%;
   animation: spin 1s linear infinite;
}

@keyframes spin {
   to {
      transform: rotate(360deg);
   }
}

.status-icon {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   font-size: 2rem;
}

.status-info h4 {
   color: #fff;
   margin-bottom: 0.5rem;
}

.status-detail {
   color: #94a3b8;
   margin: 0;
}

/* Success Screen */
.success-celebration {
   text-align: center;
}

.success-animation {
   position: relative;
   margin: 3rem 0;
}

.success-circle {
   width: 120px;
   height: 120px;
   margin: 0 auto;
   position: relative;
}

.success-circle-inner {
   position: absolute;
   width: 100%;
   height: 100%;
   border-radius: 50%;
   background: linear-gradient(135deg, #4ade80, #22d3ee);
   animation: success-scale 0.6s ease;
}

@keyframes success-scale {
   0% {
      transform: scale(0);
      opacity: 0;
   }

   50% {
      transform: scale(1.1);
   }

   100% {
      transform: scale(1);
      opacity: 1;
   }
}

.success-icon {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   font-size: 3rem;
   color: #fff;
   font-weight: bold;
   animation: success-check 0.6s ease 0.3s both;
}

@keyframes success-check {
   0% {
      transform: translate(-50%, -50%) scale(0) rotate(-180deg);
   }

   100% {
      transform: translate(-50%, -50%) scale(1) rotate(0);
   }
}

.confetti-container {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   pointer-events: none;
}

.confetti {
   position: absolute;
   font-size: 2rem;
   animation: confetti-fall 1s ease-out;
}

   .confetti:nth-child(1) {
      left: -50px;
      animation-delay: 0.1s;
   }

   .confetti:nth-child(2) {
      left: 0;
      animation-delay: 0.2s;
   }

   .confetti:nth-child(3) {
      left: 50px;
      animation-delay: 0.3s;
   }

@keyframes confetti-fall {
   0% {
      transform: translateY(0) rotate(0);
      opacity: 1;
   }

   100% {
      transform: translateY(-100px) rotate(360deg);
      opacity: 0;
   }
}

.success-title {
   font-size: 2.5rem;
   font-weight: 700;
   color: #fff;
   margin-bottom: 1rem;
}

.success-description {
   color: #94a3b8;
   font-size: 1.125rem;
   margin-bottom: 3rem;
}

.success-metrics {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
   gap: 1.5rem;
   margin-bottom: 3rem;
}

.success-metric-card {
   background: rgba(255,255,255,0.03);
   border: 1px solid rgba(255,255,255,0.1);
   border-radius: 16px;
   padding: 2rem 1rem;
   text-align: center;
}

.metric-icon {
   font-size: 2rem;
   margin-bottom: 1rem;
}

.metric-value {
   font-size: 2rem;
   font-weight: 700;
   background: linear-gradient(135deg, var(--hrx-primary), #764ba2);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   margin-bottom: 0.5rem;
}

.metric-label {
   color: #6b7280;
   font-size: 0.875rem;
}

.next-steps-card {
   background: rgba(255,255,255,0.03);
   border: 1px solid rgba(255,255,255,0.1);
   border-radius: 16px;
   padding: 2rem;
   margin-bottom: 3rem;
}

   .next-steps-card h4 {
      color: #fff;
      margin-bottom: 1.5rem;
   }

.next-steps-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 1.5rem;
}

.next-step-item {
   display: flex;
   gap: 1rem;
   align-items: flex-start;
}

.step-icon {
   font-size: 1.5rem;
   flex-shrink: 0;
}

.next-step-item strong {
   color: #fff;
   display: block;
   margin-bottom: 0.25rem;
}

.next-step-item p {
   color: #6b7280;
   font-size: 0.875rem;
   margin: 0;
}

/* Data Preview */
.data-preview-modern {
   background: rgba(255,255,255,0.02);
   border: 1px solid rgba(255,255,255,0.1);
   border-radius: 16px;
   overflow: hidden;
   margin: 2rem 0;
}

.preview-header {
   background: rgba(255,255,255,0.03);
   padding: 1.5rem;
   display: flex;
   justify-content: space-between;
   align-items: center;
   border-bottom: 1px solid rgba(255,255,255,0.1);
}

   .preview-header h4 {
      color: #fff;
      margin: 0;
      display: flex;
      align-items: center;
      gap: 0.75rem;
   }

.record-count {
   color: #6b7280;
   font-size: 0.875rem;
}

.data-table-container {
   overflow-x: auto;
}

.data-table-modern {
   width: 100%;
   color: #fff;
}

   .data-table-modern thead {
      background: rgba(255,255,255,0.03);
   }

   .data-table-modern th {
      padding: 1rem;
      text-align: left;
      font-size: 0.875rem;
      font-weight: 600;
      color: #94a3b8;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
   }

   .data-table-modern td {
      padding: 1rem;
      border-bottom: 1px solid rgba(255,255,255,0.05);
      color: #e5e7eb;
   }

.data-row:hover {
   background: rgba(255,255,255,0.02);
}

.status-badge {
   padding: 0.25rem 0.75rem;
   border-radius: 20px;
   font-size: 0.75rem;
   font-weight: 600;
}

.status-active {
   background: rgba(74,222,128,0.2);
   color: #4ade80;
}

.import-steps {
   display: grid;
   gap: 1rem;
}

.import-step {
   display: flex;
   align-items: center;
   gap: 1rem;
   padding: 1rem;
   background: rgba(255,255,255,0.02);
   border-radius: 12px;
   color: #6b7280;
   transition: all 0.3s ease;
}

   .import-step.active {
      color: var(--hrx-primary);
      background: rgba(102,126,234,0.1);
   }

   .import-step.completed {
      color: #4ade80;
      background: rgba(74,222,128,0.1);
   }

.step-check {
   width: 24px;
   height: 24px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: 600;
}

/* ========================================================= */
/* 15. FOOTER */
/* ========================================================= */
.footer {
   background: #000;
   color: #94a3b8;
   padding: 2rem 0;
   border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-modern {
   background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
   color: #94a3b8;
   margin-top: 0;
   position: relative;
   overflow: hidden;
}

.footer-glow {
   position: absolute;
   top: 0;
   left: 50%;
   transform: translateX(-50%);
   width: 100%;
   height: 1px;
   background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.5), transparent);
}

.footer-brand h5 {
   background: linear-gradient(135deg, #667eea, #764ba2);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
}

.footer-description {
   color: #94a3b8;
   line-height: 1.6;
}

.social-links {
   display: flex;
   gap: 1rem;
   margin-top: 1.5rem;
}

.social-link {
   width: 40px;
   height: 40px;
   background: rgba(255, 255, 255, 0.05);
   border: 1px solid rgba(255, 255, 255, 0.1);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   text-decoration: none;
   transition: all 0.3s ease;
}

   .social-link:hover {
      background: rgba(102, 126, 234, 0.2);
      border-color: rgba(102, 126, 234, 0.5);
      transform: translateY(-3px);
   }

.footer-title {
   color: #fff;
   font-weight: 600;
   margin-bottom: 1rem;
   font-size: 0.9rem;
   text-transform: uppercase;
   letter-spacing: 1px;
}

.footer-links {
   list-style: none;
   padding: 0;
}

   .footer-links li {
      margin-bottom: 0.75rem;
   }

   .footer-links a {
      color: #94a3b8;
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-block;
   }

      .footer-links a:hover {
         color: #667eea;
         transform: translateX(5px);
      }

.footer-cta-text {
   color: #94a3b8;
   margin-bottom: 1rem;
}

.footer-bottom {
   border-top: 1px solid rgba(255, 255, 255, 0.1);
   padding: 2rem 0;
   margin-top: 3rem;
}

.copyright {
   color: #6b7280;
   margin: 0;
}

.footer-legal a {
   color: #94a3b8;
   text-decoration: none;
   transition: color 0.3s ease;
}

   .footer-legal a:hover {
      color: #667eea;
   }

.separator {
   margin: 0 1rem;
   color: #4b5563;
}

/* ========================================================= */
/* 16. MODALS */
/* ========================================================= */
.modal-dark {
   background: rgba(15,12,41,0.95);
   backdrop-filter: blur(20px);
   border: 1px solid rgba(255,255,255,0.1);
   border-radius: 16px;
}

.oauth-spinner {
   width: 80px;
   height: 80px;
   margin: 0 auto;
   position: relative;
}

/* ========================================================= */
/* 17. UTILITIES & HELPERS */
/* ========================================================= */
.scroll-to-top {
   position: fixed;
   bottom: 30px;
   right: 30px;
   width: 50px;
   height: 50px;
   background: linear-gradient(135deg, #667eea, #764ba2);
   border: none;
   border-radius: 50%;
   color: white;
   font-size: 24px;
   cursor: pointer;
   opacity: 0;
   visibility: hidden;
   transition: all 0.3s ease;
   z-index: 1000;
   box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

   .scroll-to-top.visible {
      opacity: 1;
      visibility: visible;
   }

   .scroll-to-top:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
   }

/* Ripple Effect */
.ripple {
   position: absolute;
   border-radius: 50%;
   background: rgba(255, 255, 255, 0.6);
   transform: scale(0);
   animation: ripple-animation 0.6s ease-out;
   pointer-events: none;
}

@keyframes ripple-animation {
   to {
      transform: scale(4);
      opacity: 0;
   }
}

/* ========================================================= */
/* 18. ANIMATIONS */
/* ========================================================= */
@keyframes pulse {
   0%, 100% {
      transform: scale(1);
   }

   50% {
      transform: scale(1.05);
   }
}

/* ========================================================= */
/* 19. RESPONSIVE STYLES */
/* ========================================================= */
@media (max-width: 768px) {
   .hero-title {
      font-size: 2.5rem;
   }

   .floating-cards-container {
      display: none;
   }

   .animated-stats {
      flex-direction: column;
      gap: 1rem;
   }

   .roi-metrics-grid {
      grid-template-columns: 1fr;
   }

   .pricing-grid {
      grid-template-columns: 1fr;
   }

   .pricing-card-modern.featured {
      transform: scale(1);
   }

   .wizard-main-title {
      font-size: 2rem;
   }

   .progress-steps-modern {
      flex-direction: column;
      gap: 1rem;
   }

   .step-connector {
      display: none;
   }
}
