:root {
  --primary:  #16BFFD;
  --secondary: #CB3066;
  --accent: #7C3AED;
  --success: #10B981;
  --warning: #F59E0B;
  --dark: #0F172A;
  --light: #F8FAFC;
  --text: #334155;
  --text-light: #64748B;
  --bg: #ffffff;
  --gradient-primary: linear-gradient(135deg, #16BFFD 0%, #CB3066 100%);
  --gradient-dark: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  --gradient-accent: linear-gradient(135deg, #7C3AED 0%, #DB2777 100%);
}

[data-theme="dark"] {
  --primary: #0EA5E9;
  --secondary: #EC4899;
  --text: #F1F5F9;
  --text-light: #94A3B8;
  --bg: #0F172A;
}

* {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
  background-color: var(--bg);
  color: var(--text);
  transition: all 0.3s;
  overflow-x: hidden;
}

.bg-gradient-dark {
  background: var(--gradient-dark);
}

/* Hero Section */

/* Hero Section Styles */
.hero-careers {
	background: linear-gradient(135deg, #000000 0%, #1a1a2e 50%, #16213e 100%);
	position: relative;
	overflow: hidden;
	min-height: 100vh;
}

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

.hero-recruiter {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
  position: relative;
  overflow: hidden;
  /* Use 80vh so the hero fits better on smaller screens and doesn't force excessive whitespace */
  min-height: 80vh;
  padding-top: 48px;
  padding-bottom: 48px;
}

.hero-recruiter::before {
  content:  '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(22, 191, 253, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-recruiter::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(203, 48, 102, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.1);
  border:  1px solid rgba(16, 185, 129, 0.3);
  color: #10B981;
  padding: 8px 16px;
  border-radius: 50px;
  font-size:  0.875rem;
  font-weight: 600;
}

.hero-title {
  /* Corrected font-size (was accidentally 35rem). Use a large but reasonable value */
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
  max-width: 48rem;
}

.hero-title .highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Signup Card */
.signup-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  box-shadow:  0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.signup-card .form-control {
  border-radius: 12px;
  padding: 14px 18px;
  border: 2px solid #E2E8F0;
  transition: all 0.3s ease;
  font-size: 1rem;
  background: #F8FAFC;
}

.signup-card .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(22, 191, 253, 0.15);
  background: #fff;
}

.signup-card .form-label {
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.signup-card .form-select {
  border-radius: 12px;
  padding: 14px 18px;
  border: 2px solid #E2E8F0;
  background-color: #F8FAFC;
  font-size: 1rem;
}

.signup-card .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(22, 191, 253, 0.15);
}

.btn-signup {
  background: var(--gradient-primary);
  border: none;
  border-radius: 12px;
  padding: 16px 32px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-signup:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(22, 191, 253, 0.4);
}

/* Trust Badges */
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.trust-badge i {
  color: var(--success);
}

/* Stats Section */
.stats-section {
  background: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
  position: relative;
  overflow: hidden;
}

.stat-card {
  text-align: center;
  padding: 32px 24px;
}

.stat-number {
  font-size: 3rem;
  font-weight:  800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  font-weight: 500;
}

/* Feature Cards */
.feature-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  height: 100%;
  border: 1px solid #E2E8F0;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon i {
  font-size: 1.75rem;
  color: #fff;
}

.feature-icon.blue { background: linear-gradient(135deg, #0EA5E9, #06B6D4); }
.feature-icon.purple { background: linear-gradient(135deg, #7C3AED, #A855F7); }
.feature-icon.pink { background: linear-gradient(135deg, #EC4899, #F43F5E); }
.feature-icon.green { background: linear-gradient(135deg, #10B981, #34D399); }
.feature-icon.orange { background: linear-gradient(135deg, #F59E0B, #FBBF24); }
.feature-icon.indigo { background: linear-gradient(135deg, #6366F1, #818CF8); }

/* Comparison Table */
.comparison-table {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.comparison-table thead {
  background: var(--gradient-dark);
  color: #fff;
}

.comparison-table th {
  padding: 20px;
  font-weight: 600;
  font-size: 1rem;
}

.comparison-table td {
  padding: 16px 20px;
  border-bottom:  1px solid #E2E8F0;
  vertical-align: middle;
}

.comparison-table tbody tr:hover {
  background: #F8FAFC;
}

.check-icon {
  color: var(--success);
  font-size: 1.25rem;
}

.cross-icon {
  color: #CBD5E1;
  font-size: 1.25rem;
}

/* Pricing Cards */
.pricing-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 32px;
  border: 2px solid #E2E8F0;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
  border-color: var(--primary);
  background: linear-gradient(180deg, #fff 0%, #F0F9FF 100%);
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform:  translateX(-50%);
  background: var(--gradient-primary);
  color: #fff;
  padding: 6px 20px;
  border-radius:  50px;
  font-size: 0.8rem;
  font-weight:  700;
  text-transform: uppercase;
}

.pricing-amount {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}

.pricing-amount .currency {
  font-size: 1.5rem;
  vertical-align: top;
}

.pricing-amount .period {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Testimonial Cards */
.testimonial-card {
  background:  #fff;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid #E2E8F0;
  height: 100%;
}

.testimonial-card .quote {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.company-logo {
  height: 32px;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.company-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* Integration Logos */
.integration-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: center;
}

.integration-item {
  background: #fff;
  border-radius: 16px;
  padding: 20px 32px;
  border: 1px solid #E2E8F0;
  transition: all 0.3s ease;
}

.integration-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* FAQ Accordion */
.faq-accordion .accordion-item {
  border: none;
  margin-bottom: 16px;
  border-radius: 16px ! important;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.faq-accordion .accordion-button {
  font-weight: 600;
  font-size: 1.1rem;
  padding: 24px;
  background: #fff;
  color: var(--text);
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--gradient-primary);
  color: #fff;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
}

.faq-accordion .accordion-body {
  padding: 24px;
  background: #F8FAFC;
  line-height: 1.8;
  color: var(--text-light);
}

/* CTA Section */
.cta-section {
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

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

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--dark);
}

.section-header .lead {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(22, 191, 253, 0.1), rgba(203, 48, 102, 0.1));
  color: var(--primary);
  padding: 8px 20px;
  border-radius:  50px;
  font-size:  0.875rem;
  font-weight:  700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

/* Use Case Tabs */
.use-case-tabs .nav-link {
  border: 2px solid #E2E8F0;
  border-radius: 12px;
  padding: 16px 24px;
  margin:  0 8px 16px;
  color: var(--text);
  font-weight: 600;
  transition: all 0.3s ease;
}

.use-case-tabs .nav-link:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.use-case-tabs .nav-link.active {
  background: var(--gradient-primary);
  border-color: transparent;
  color: #fff;
}

/* Spinner Overlay */
.spinner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  z-index: 10;
}

/* Toast */
.toast-container {
  position: fixed;
  top: 100px;
  right: 20px;
  z-index:  9999;
}

/* Responsive */
@media (max-width: 991px) {
  .hero-recruiter {
    min-height: auto;
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .hero-title {
    font-size: 2.25rem;
  }
  
  .signup-card {
  	margin-top: 40px;
  }

  .stat-badge {
  	margin-bottom: 16px;
  }
}

/* Culture Section */
.culture-image {
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Process Timeline */
.process-step {
	position: relative;
	padding-left: 80px;
	padding-bottom: 40px;
}

.process-step::before {
	content: '';
	position: absolute;
	left: 25px;
	top: 50px;
	bottom: 0;
	width: 2px;
	background: linear-gradient(180deg, var(--primary), var(--secondary));
}

.process-step:last-child::before {
	display: none;
}

.process-number {
	position: absolute;
	left: 0;
	top: 0;
	width: 50px;
	height: 50px;
	background: var(--gradient-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: 700;
	font-size: 1.2rem;
}

/* Benefits Section */
.benefit-card {
	background: white;
	border-radius: 20px;
	padding: 32px;
	text-align: center;
	transition: all 0.3s ease;
	border: 1px solid #e2e8f0;
}

.benefit-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, rgba(22, 191, 253, 0.1) 0%, rgba(203, 48, 102, 0.1) 100%);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

.benefit-icon i {
	font-size: 2rem;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .hero-badge { padding: 6px 12px; font-size: 0.8rem; }
  
  .process-step {
  	padding-left: 60px;
  }

  .process-number {
  	width: 40px;
  	height: 40px;
  	font-size: 1rem;
  }
}

/* Animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform:  translateY(-10px); }
}

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

/* Social Proof Bar */
.social-proof-bar {
  background: #F8FAFC;
  border-bottom: 1px solid #E2E8F0;
  padding: 12px 0;
}

.social-proof-bar .badge {
  background: linear-gradient(135deg, #10B981, #34D399);
  font-weight: 600;
}

/* Job Card Styles */
.job-card {
	background: white;
	border-radius: 16px;
	border: 1px solid #e2e8f0;
	transition: all 0.3s ease;
	overflow: hidden;
}

.job-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	border-color: var(--primary);
}

.job-card .badge-department {
	background: linear-gradient(135deg, #16BFFD 0%, #0ea5e9 100%);
	font-weight: 600;
	padding: 6px 14px;
	border-radius: 20px;
}

.job-card .badge-type {
	background: #f0fdf4;
	color: #16a34a;
	font-weight: 600;
	padding: 6px 14px;
	border-radius: 20px;
}
