html {
    scroll-behavior: smooth;
}

:root {
    --primary: #00f7ff;
    --secondary: #6c63ff;
    --dark: #0a0a1a;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--dark);
    color: white;
    overflow-x: hidden;
  }
  
  /* Navigation */
  nav {
    padding: 2rem 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    z-index: 100;
  }
  
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    background-clip: text;
    -webkit-background-clip: text;
    text-decoration: none;
    -webkit-text-fill-color: transparent;
  }
  
  .logo:hover {
    opacity: 0.8;
  }
  
  .nav-links {
    display: flex;
    gap: 2rem;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    position: relative;
    padding: 0.5rem 0;
  }
  
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
  }
  
  .nav-links a:hover::after {
    width: 100%;
  }
  
  /* Hero Section */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 8%;
    position: relative;
  }
  
  .hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
  }
  
  .hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
  }
  
  .cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  
  .cta-button:hover {
    transform: translateY(-3px);
  }
  
  /* Animated globe */
  .globe-container {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
  }
  
  .globe {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(108, 99, 255, 0.1);
    border: 2px solid rgba(108, 99, 255, 0.2);
    animation: pulse 4s infinite;
  }
  
  .globe::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, 
      rgba(0, 247, 255, 0.1) 0%, 
      transparent 60%);
    animation: rotate 20s linear infinite;
  }
  
  /* Animations */
  @keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
  }
  
  @keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }
  
  /* Mobile Responsive */
  @media (max-width: 768px) {
    .hero {
      padding-top: 120px;
      flex-direction: column;
      text-align: center;
    }
  
    .hero h1 {
      font-size: 2.5rem;
    }
  
    .globe-container {
      position: relative;
      right: auto;
      top: auto;
      transform: none;
      width: 300px;
      height: 300px;
      margin: 2rem auto;
    }
  }

  /* Mouse-following light effect */
  .cursor-light {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at center, 
      rgba(0, 247, 255, 0.25) 0%, 
      rgba(108, 99, 255, 0.15) 30%, 
      transparent 70%);
    pointer-events: none;
    filter: blur(30px);
    z-index: 1;
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.9;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  
  /* Add hover effect on interactive elements */
  .cta-button:hover ~ .cursor-light,
  .nav-links a:hover ~ .cursor-light {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 1;
  }

  /* Process Section */
  .process {
    padding: 8rem 8%;
    background: linear-gradient(180deg, var(--dark) 0%, rgba(10, 10, 26, 0.95) 100%);
  }

  .process h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .process-flow {
    position: relative;
    margin-bottom: 4rem;
  }

  .process-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
  }

  .connector {
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    position: relative;
    width: 100%;
    opacity: 0.5;
  }

  .connector::after {
    content: '→';
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 1.2rem;
  }

  .process-card {
    background: rgba(108, 99, 255, 0.1);
    border: 1px solid rgba(108, 99, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .process-card:hover {
    transform: translateY(-10px);
  }

  .process-number {
    font-size: 4rem;
    font-weight: 700;
    opacity: 0.1;
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .process-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .process-card p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.8;
  }

  /* Process Simulation Styles */
  .process-simulation {
    max-width: 800px;
    height: 800px;
    margin: 4rem auto 0;
    position: relative;
    background: rgba(108, 99, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
  }

  .simulation-title {
    position: absolute;
    top: 2rem;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 1.5rem;
    color: var(--primary);
    padding: 1rem;
    background: rgba(10, 10, 26, 0.8);
    backdrop-filter: blur(10px);
    transform: translateY(0);
    transition: transform 0.3s ease;
  }

  .simulation-content {
    position: relative;
    height: calc(100% - 100px);
    margin-top: 80px;
  }

  .simulation-stage {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease;
    padding: 2rem;
  }

  .simulation-stage.active {
    opacity: 1;
    transform: translateX(0);
  }

  .simulation-stage.exit {
    opacity: 0;
    transform: translateX(-50px);
  }

  /* Company Profile Styles */
  .company-profile {
    background: rgba(0, 247, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    max-width: 500px;
    margin: 0 auto;
  }

  .requirement-item {
    margin: 1rem 0;
    padding: 0.5rem;
    border-left: 2px solid var(--primary);
    background: rgba(108, 99, 255, 0.1);
  }

  /* Global Map Styles */
  .global-map {
    position: relative;
    height: 100%;
    background: rgba(10, 10, 26, 0.8);
    overflow: hidden;
  }

  .data-streams {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
      linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 247, 255, 0.1) 50%, 
        transparent 100%);
    animation: dataStream 8s linear infinite;
  }

  .scan-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(108, 99, 255, 0.2) 50%,
      transparent 100%
    );
    animation: scanEffect 4s linear infinite;
  }

  .search-points {
    position: absolute;
    width: 100%;
    height: 100%;
  }

  .search-points::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    filter: blur(5px);
    animation: pulse 2s infinite;
  }

  /* Interview Simulation Styles */
  .interview-simulation {
    display: flex;
    justify-content: space-between;
    padding: 2rem;
    height: 100%;
  }

  .interviewer, .candidate {
    flex: 1;
    padding: 1rem;
  }

  .interview-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    margin-bottom: 1rem;
  }

  .interview-dialog, .interview-notes {
    background: rgba(108, 99, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
  }

  .note-item {
    margin: 0.5rem 0;
    padding: 0.5rem;
    border-left: 2px solid var(--primary);
  }

  /* Ranking Report Styles */
  .ranking-report {
    max-width: 600px;
    margin: 0 auto;
  }

  .rank-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    margin: 1rem 0;
    background: rgba(108, 99, 255, 0.1);
    border-radius: 10px;
    position: relative;
  }

  .rank-number {
    width: 30px;
    height: 30px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
  }

  .rank-details {
    flex: 1;
  }

  .rank-score {
    font-weight: 700;
    color: var(--primary);
  }

  /* Mobile Responsive Updates */
  @media (max-width: 768px) {
    .process {
      padding: 4rem 8%;
    }
    
    .process h2 {
      font-size: 2rem;
      margin-bottom: 2rem;
    }
    
    .process-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    
    .connector {
      display: none;
    }

    .process-simulation {
      height: 600px;
    }
  }

  /* About Section */
  .about {
    padding: 8rem 8%;
    background: var(--dark);
  }

  .about-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
  }

  .about-intro h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .about-intro p {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 3rem;
  }

  .stats-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 4rem;
  }

  .stat-card {
    text-align: center;
  }

  .stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 0.5rem;
  }

  .stat-card p {
    font-size: 1rem;
    opacity: 0.8;
    max-width: 200px;
  }

  .comparison-container {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .comparison-card {
    flex: 1;
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }

  .comparison-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
  }

  .comparison-card.traditional {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .comparison-card.findemp {
    background: rgba(108, 99, 255, 0.1);
    border: 1px solid rgba(108, 99, 255, 0.2);
  }

  .comparison-content {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
  }

  .comparison-card:hover .comparison-content {
    opacity: 1;
    transform: translateY(0);
  }

  .comparison-content ul {
    list-style: none;
    padding: 0;
  }

  .comparison-content li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
  }

  .comparison-content li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
  }

  @media (max-width: 768px) {
    .stats-container {
      flex-direction: column;
      gap: 2rem;
    }

    .stat-card {
      margin: 0 auto;
    }

    .comparison-container {
      flex-direction: column;
    }

    .about-intro h2 {
      font-size: 2rem;
    }

    .stat-number {
      font-size: 2.5rem;
    }
  }

  .step-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 500;
    opacity: 0.9;
    letter-spacing: 1px;
  }

  .simulation-label {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 2rem 0 1rem;
    letter-spacing: 1px;
  }

  .simulation-controls {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 10;
    background: rgba(10, 10, 26, 0.8);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
  }

  .sim-nav {
    background: rgba(108, 99, 255, 0.2);
    border: 1px solid rgba(108, 99, 255, 0.3);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .sim-nav:hover:not(:disabled) {
    background: rgba(108, 99, 255, 0.3);
  }

  .sim-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }

  .stage-indicator {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
  }

  .current-stage {
    color: var(--primary);
    font-weight: 600;
  }

  .step-number {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 28px;
    height: 28px;
    background: rgba(108, 99, 255, 0.2);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--primary);
  }

  /* Updated Process Number Style */
  .process-number {
    font-size: 4rem;
    font-weight: 700;
    opacity: 0.1;
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  /* Updated Simulation Styles */
  .process-simulation {
    max-width: 800px;
    height: 800px;
    margin: 4rem auto 0;
    position: relative;
    background: rgba(108, 99, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
  }

  /* Company Profile Styles */
  .requirement-section {
    margin-top: 2rem;
    border-top: 1px solid rgba(108, 99, 255, 0.2);
    padding-top: 1rem;
  }

  .requirement-section h5 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
  }

  /* Global Search Animation Styles */
  .global-map {
    position: relative;
    height: 100%;
    background: rgba(10, 10, 26, 0.8);
    overflow: hidden;
  }

  .data-streams {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
      linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 247, 255, 0.1) 50%, 
        transparent 100%);
    animation: dataStream 8s linear infinite;
  }

  .scan-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(108, 99, 255, 0.2) 50%,
      transparent 100%
    );
    animation: scanEffect 4s linear infinite;
  }

  .search-points::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    filter: blur(5px);
    animation: pulse 2s infinite;
  }

  /* Candidate Profile Tooltip */
  .rank-item::before {
    content: attr(data-profile);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    width: max-content;
    max-width: 300px;
    padding: 1rem;
    background: rgba(10, 10, 26, 0.95);
    border: 1px solid var(--primary);
    border-radius: 10px;
    font-size: 0.9rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
  }

  .rank-item:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }

  /* Animations */
  @keyframes dataStream {
    0% { transform: translateX(-100%) skewX(-45deg); }
    100% { transform: translateX(100%) skewX(-45deg); }
  }

  @keyframes scanEffect {
    0% { left: -100%; }
    100% { left: 100%; }
  }

  @keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
  }

  /* Search Point Animation */
  .search-point {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: pointPulse 2s ease-out;
  }

  @keyframes pointPulse {
    0% { 
      transform: scale(0);
      opacity: 1;
    }
    100% { 
      transform: scale(3);
      opacity: 0;
    }
  }

  /* Stage Transition Animation */
  .simulation-stage {
    transition: all 0.5s ease;
  }

  .simulation-stage.active {
    animation: slideIn 0.5s ease forwards;
  }

  .simulation-stage.exit {
    animation: slideOut 0.5s ease forwards;
  }

  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateX(50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes slideOut {
    from {
      opacity: 1;
      transform: translateX(0);
    }
    to {
      opacity: 0;
      transform: translateX(-50px);
    }
  }

  /* Global Talent Search Styles */
  .algorithm-search {
    height: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .search-status {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(108, 99, 255, 0.1);
    border-radius: 10px;
  }

  .loading-spinner {
    width: 30px;
    height: 30px;
    border: 3px solid rgba(0, 247, 255, 0.1);
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }

  .candidate-stream {
    flex: 1;
    overflow: hidden;
    position: relative;
    background: rgba(10, 10, 26, 0.3);
    border-radius: 10px;
    padding: 1rem;
  }

  .stream-content {
    animation: streamScroll 20s linear infinite;
  }

  .candidate-preview {
    padding: 0.8rem;
    margin: 0.5rem 0;
    background: rgba(108, 99, 255, 0.1);
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 3px solid var(--primary);
  }

  .candidate-preview span {
    color: rgba(255, 255, 255, 0.9);
  }

  .candidate-preview .location {
    color: var(--primary);
    font-size: 0.9rem;
  }

  .candidate-preview .experience {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
  }

  /* Updated Compatibility Report Styles */
  .rank-item {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    margin: 1rem 0;
    background: rgba(108, 99, 255, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease;
  }

  .rank-item:hover {
    transform: translateX(10px);
    background: rgba(108, 99, 255, 0.2);
  }

  .rank-number {
    width: 30px;
    height: 30px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
  }

  .rank-info {
    flex: 1;
  }

  .rank-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
  }

  .rank-profile {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
  }

  .rank-score {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-left: 1rem;
    flex-shrink: 0;
  }

  /* Animations */
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  @keyframes streamScroll {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
  }

  @media (max-width: 768px) {
    .rank-item {
      flex-direction: column;
      padding: 1rem;
    }
    
    .rank-score {
      margin-top: 1rem;
      margin-left: 0;
    }
  }

  /* Pricing Section */
  .pricing {
    padding: 8rem 8%;
    background: var(--dark);
  }

  .pricing h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .pricing-subtitle {
    text-align: center;
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 4rem;
  }

  .pricing-container {
    display: flex;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
  }

  .pricing-calculator {
    flex: 0 0 60%;
    background: rgba(108, 99, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(108, 99, 255, 0.2);
  }

  .slider-container {
    max-width: 600px;
    margin: 0 auto;
  }

  .slider-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
  }

  .interview-count {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
  }

  .interview-slider {
    width: 100%;
    height: 6px;
    background: rgba(108, 99, 255, 0.2);
    border-radius: 3px;
    -webkit-appearance: none;
    appearance: none;
    margin: 2rem 0;
  }

  .interview-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 32px;
    height: 32px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 15px rgba(0, 247, 255, 0.3);
  }

  .interview-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(0, 247, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.4);
  }

  .interview-slider::-moz-range-thumb {
    width: 32px;
    height: 32px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 15px rgba(0, 247, 255, 0.3);
  }

  .interview-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(0, 247, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.4);
  }

  .price-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(0, 247, 255, 0.1);
    border-radius: 15px;
  }

  .total-price {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .price-detail {
    text-align: center;
    opacity: 0.8;
    font-size: 0.9rem;
  }

  .testimonials-container {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
  }

  .testimonials-wrapper {
    flex: 1;
    position: relative;
    overflow: hidden;
  }

  .testimonial {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    padding: 2rem;
    background: rgba(108, 99, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 1rem;
  }

  .testimonial.active {
    opacity: 1;
    transform: translateY(0);
  }

  .testimonial p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .testimonial-author {
    display: flex;
    flex-direction: column;
  }

  .author-name {
    font-weight: 600;
    color: var(--primary);
  }

  .author-title {
    font-size: 0.9rem;
    opacity: 0.8;
  }

  .pricing-cta {
    margin-top: 2rem;
    text-align: center;
    width: 100%;
  }

  @media (max-width: 768px) {
    .pricing-container {
      flex-direction: column;
    }
    
    .pricing-calculator,
    .testimonials-container {
      flex: 0 0 100%;
    }
    
    .pricing h2 {
      font-size: 2rem;
    }
  }

  /* Contact Section */
  .contact {
    position: relative;
    min-height: 100vh;
    padding: 8rem 8% 4rem;
    background: var(--dark);
    overflow: hidden;
  }

  .grid-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    pointer-events: none;
  }

  .grid {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background-image: 
      linear-gradient(var(--primary) 1px, transparent 1px),
      linear-gradient(90deg, var(--primary) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: perspective(500px) rotateX(45deg);
    animation: gridMove 20s linear infinite;
  }

  .contact-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
  }

  .contact h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .contact-subtitle {
    text-align: center;
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 4rem;
  }

  .contact-content {
    display: flex;
    gap: 4rem;
    margin-bottom: 4rem;
  }

  /* Feature Cards */
  .contact-features {
    flex: 0 0 30%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .feature-card {
    background: rgba(108, 99, 255, 0.1);
    border: 1px solid rgba(108, 99, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transform-style: preserve-3d;
    transition: all 0.3s ease;
  }

  .feature-card:hover {
    transform: translateZ(20px) rotateX(10deg) rotateY(10deg);
    box-shadow: 0 0 30px rgba(0, 247, 255, 0.2);
  }

  .card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
  }

  .feature-card p {
    font-size: 0.9rem;
    opacity: 0.8;
  }

  /* Contact Form */
  .contact-form {
    flex: 0 0 60%;
    background: rgba(108, 99, 255, 0.05);
    border: 1px solid rgba(108, 99, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
  }

  .form-group {
    position: relative;
    margin-bottom: 2rem;
  }

  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(108, 99, 255, 0.2);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
  }

  .form-group textarea {
    min-height: 120px;
    resize: vertical;
  }

  .form-group label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    pointer-events: none;
  }

  .form-group input:focus,
  .form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 247, 255, 0.1);
  }

  .form-group input:focus ~ label,
  .form-group textarea:focus ~ label,
  .form-group input:valid ~ label,
  .form-group textarea:valid ~ label {
    top: -1.5rem;
    left: 0;
    color: var(--primary);
  }

  .scan-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    top: 0;
    left: -100%;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .form-group input:focus ~ .scan-line,
  .form-group textarea:focus ~ .scan-line {
    opacity: 1;
    animation: scan 2s linear infinite;
  }

  /* Contact Purpose Radio Buttons */
  .contact-purpose {
    margin-bottom: 2rem;
  }

  .contact-purpose h4 {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
  }

  .purpose-options {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .purpose-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
  }

  .purpose-option input {
    display: none;
  }

  .radio-indicator {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(108, 99, 255, 0.3);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
  }

  .radio-indicator::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease;
  }

  .purpose-option input:checked ~ .radio-indicator {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(0, 247, 255, 0.3);
  }

  .purpose-option input:checked ~ .radio-indicator::after {
    transform: translate(-50%, -50%) scale(1);
  }

  /* Submit Button */
  .submit-button {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .submit-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
      45deg,
      transparent,
      rgba(255, 255, 255, 0.1),
      transparent
    );
    transform: rotate(45deg);
    animation: buttonGlow 2s linear infinite;
  }

  .button-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .helix {
    width: 30px;
    height: 30px;
    border: 2px solid white;
    border-radius: 50%;
    position: relative;
    animation: rotate 1s linear infinite;
  }

  .helix::before,
  .helix::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
  }

  .helix::before { left: -4px; }
  .helix::after { right: -4px; }

  /* Contact Footer */
  .contact-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4rem;
  }

  .social-links {
    display: flex;
    gap: 1rem;
  }

  /* Space to add social links (nothing for now) */
  .social-link { 
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(108, 99, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .social-link:hover {
    background: var(--primary);
    transform: translateY(-5px);
  }

  .availability {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .availability-indicator {
    width: 10px;
    height: 10px;
    background: #00ff00;
    border-radius: 50%;
    animation: pulse 2s infinite;
  }

  /* Animations */
  @keyframes gridMove {
    0% { transform: perspective(500px) rotateX(45deg) translateY(0); }
    100% { transform: perspective(500px) rotateX(45deg) translateY(50px); }
  }

  @keyframes scan {
    0% { left: -100%; }
    100% { left: 100%; }
  }

  @keyframes buttonGlow {
    0% { transform: rotate(45deg) translateX(-100%); }
    100% { transform: rotate(45deg) translateX(100%); }
  }

  @keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  @media (max-width: 768px) {
    .contact-content {
      flex-direction: column;
    }
    
    .contact-features,
    .contact-form {
      flex: 0 0 100%;
    }
    
    .purpose-options {
      flex-direction: column;
      gap: 1rem;
    }
  }

  /* Add copyright styles */
  .copyright {
    text-align: center;
    padding: 2rem 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
  }

  /* Legal Links */
  .legal-links {
    margin-top: 1rem;
    font-size: 0.9rem;
  }

  .legal-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .legal-links a:hover {
    color: var(--primary);
  }

  /* Modal Styles */
  .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 26, 0.95);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .modal.active {
    display: flex;
    opacity: 1;
  }

  .modal-content {
    background: var(--dark);
    border: 1px solid rgba(108, 99, 255, 0.2);
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    margin: auto;
    overflow-y: auto;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
  }

  .modal.active .modal-content {
    transform: translateY(0);
  }

  .modal-header {
    padding: 2rem;
    border-bottom: 1px solid rgba(108, 99, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: var(--dark);
    z-index: 1;
  }

  .modal-header h2 {
    margin: 0;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .close-modal {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
  }

  .close-modal:hover {
    color: var(--primary);
  }

  .modal-body {
    padding: 2rem;
  }

  .modal-body h3 {
    color: var(--primary);
    margin: 2rem 0 1rem;
  }

  .modal-body h3:first-child {
    margin-top: 0;
  }

  .modal-body p, .modal-body ul {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
  }

  .modal-body ul {
    padding-left: 2rem;
  }

  .modal-body li {
    margin-bottom: 0.5rem;
  }

  /* Custom Scrollbar for Modal */
  .modal-content::-webkit-scrollbar {
    width: 8px;
  }

  .modal-content::-webkit-scrollbar-track {
    background: rgba(108, 99, 255, 0.1);
  }

  .modal-content::-webkit-scrollbar-thumb {
    background: rgba(108, 99, 255, 0.3);
    border-radius: 4px;
  }

  .modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(108, 99, 255, 0.5);
  }