:root {
  /* Color Palette - SkyBlue Theme */
  --primary-blue: #3B82F6;
  /* Sky Blue */
  --secondary-green: #22C55E;
  /* Fresh Green */
  --accent-yellow: #FACC15;
  /* Warm Yellow */
  --neutral-gray: #E5E7EB;
  /* Warm Gray */

  /* Extended Color System */
  --white: #FFFFFF;
  --black: #000000;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;

  /* Blue Variations */
  --blue-50: #EFF6FF;
  --blue-100: #DBEAFE;
  --blue-500: var(--primary-blue);
  --blue-600: #2563EB;
  --blue-700: #1D4ED8;

  /* Green Variations */
  --green-50: #F0FDF4;
  --green-100: #DCFCE7;
  --green-500: var(--secondary-green);
  --green-600: #16A34A;

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

  /* Font Sizes */
  --text-xs: 0.75rem;
  /* 12px */
  --text-sm: 0.875rem;
  /* 14px */
  --text-base: 1rem;
  /* 16px */
  --text-lg: 1.125rem;
  /* 18px */
  --text-xl: 1.25rem;
  /* 20px */
  --text-2xl: 1.5rem;
  /* 24px */
  --text-3xl: 1.875rem;
  /* 30px */
  --text-4xl: 2.25rem;
  /* 36px */
  --text-5xl: 3rem;
  /* 48px */

  /* Font Weights */
  --font-light: 300;
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;

  /* Spacing */
  --space-1: 0.25rem;
  /* 4px */
  --space-2: 0.5rem;
  /* 8px */
  --space-3: 0.75rem;
  /* 12px */
  --space-4: 1rem;
  /* 16px */
  --space-5: 1.25rem;
  /* 20px */
  --space-6: 1.5rem;
  /* 24px */
  --space-8: 2rem;
  /* 32px */
  --space-10: 2.5rem;
  /* 40px */
  --space-12: 3rem;
  /* 48px */
  --space-16: 4rem;
  /* 64px */
  --space-20: 5rem;
  /* 80px */

  /* Border Radius */
  --radius-sm: 0.125rem;
  /* 2px */
  --radius: 0.25rem;
  /* 4px */
  --radius-md: 0.375rem;
  /* 6px */
  --radius-lg: 0.5rem;
  /* 8px */
  --radius-xl: 0.75rem;
  /* 12px */
  --radius-2xl: 1rem;
  /* 16px */
  --radius-full: 9999px;

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

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 300ms ease;
  --transition-slow: 500ms ease;
}

/* Reset and Base Styles */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

* {
  font-family: var(--font-family) !important;
}

body {
  font-family: var(--font-family);
  font-size: var(--text-base);
  font-weight: var(--font-normal);
  line-height: 1.5;
  color: var(--gray-900);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

ul,
ol {
  list-style: none;
}

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

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

button {
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
}

input {
  font: inherit;
  border: none;
  outline: none;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

/* Header */
.header {
  position: relative;
  background: var(--white);
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.1);
  z-index: 100;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) 0;
  max-width: 1200px;
  margin: 0 auto;
}

/* Logo */
.logo-container {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.logo-icon {
  background: var(--primary-blue);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-bold);
  font-size: var(--text-base);
  transition: all var(--transition-fast);
}

.logo-container:hover .logo-icon {
  background: var(--secondary-green);
}

.logo-info {
  display: flex;
  flex-direction: column;
}

.logo-text {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--gray-900);
  line-height: 1.2;
}

.tagline {
  font-size: var(--text-xs);
  color: var(--gray-500);
  line-height: 1.2;
}

/* Header Buttons */
.header-buttons {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.header-btn-primary {
  background: var(--primary-blue);
  color: var(--white);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-lg);
  font-weight: var(--font-semibold);
  font-size: var(--text-sm);
  text-decoration: none;
  transition: all var(--transition-normal);
}

.header-btn-primary:hover {
  background: var(--blue-600);
  transform: translateY(-2px);
}

.header-btn-secondary {
  background: transparent;
  color: var(--primary-blue);
  padding: var(--space-3) var(--space-6);
  border: 2px solid var(--primary-blue);
  border-radius: var(--radius-lg);
  font-weight: var(--font-semibold);
  font-size: var(--text-sm);
  text-decoration: none;
  transition: all var(--transition-normal);
}

.header-btn-secondary:hover {
  background: var(--white);
  color: var(--primary-blue);
  border-color: var(--primary-blue);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  padding: var(--space-16) 0 var(--space-20) 0;
  background-color: var(--white);
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  color: var(--gray-900);
  line-height: 1.1;
  margin-bottom: var(--space-6);
}

.hero-description {
  font-size: var(--text-xl);
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: var(--space-8);
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  gap: var(--space-4);
}

/* Candidate Score Section */
.candidate-score-section {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--gray-200);
}

.score-title {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  color: var(--gray-700);
  margin-bottom: var(--space-6);
}

.score-bars {
  margin-bottom: var(--space-8);
}

.score-bar {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  position: relative;
}

.score-bar:last-child {
  margin-bottom: 0;
}

.score-icon {
  width: 32px;
  height: 32px;
  background: var(--secondary-green);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-base);
  flex-shrink: 0;
  color: var(--white);
}

.score-progress {
  flex: 1;
  height: 12px;
  background: var(--gray-200);
  border-radius: var(--radius-full);
  overflow: hidden;
  position: relative;
}

.progress-bar {
  height: 100%;
  background: var(--secondary-green);
  border-radius: var(--radius-full);
  transition: width var(--transition-slow);
}

.score-status {
  background: var(--secondary-green);
  color: var(--white);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-lg);
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.score-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-2);
  padding: var(--space-4);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: var(--space-3);
}

.feature-text {
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--gray-800);
  line-height: 1.3;
  text-align: center;
}

.btn-primary {
  background-color: var(--secondary-green);
  color: var(--white);
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-xl);
  font-weight: var(--font-semibold);
  font-size: var(--text-base);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--secondary-green);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--primary-blue);
  color: var(--white);
  padding: var(--space-4) var(--space-8);
  border: 2px solid var(--primary-blue);
  border-radius: var(--radius-xl);
  font-weight: var(--font-semibold);
  font-size: var(--text-base);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: var(--blue-600);
  border-color: var(--blue-600);
  color: var(--white);
  transform: translateY(-2px);
}



/* Services Section */
.services {
  padding: var(--space-20) 0;
  background: var(--gray-50);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
  max-width: 1200px;
  margin: 0 auto;
}

.service-card.zigzag-left {
  transform: translateY(-var(--space-8));
}

.service-card.zigzag-right {
  transform: translateY(var(--space-8));
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.service-card.employers.zigzag-left:hover {
  transform: translateY(calc(-var(--space-8) - 5px)) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1) !important;
}

.service-card.recruiters.zigzag-right:hover {
  transform: translateY(calc(var(--space-8) - 5px)) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1) !important;
}

.service-card.staffing:hover,
.service-card.candidates:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  transform: none;
}

.service-title {
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  color: var(--black);
  margin-bottom: var(--space-3);
  line-height: 1.2;
}

.service-card.employers .service-title {
  color: var(--black);
}

.service-card.staffing .service-title {
  color: var(--secondary-green);
}

.service-card.recruiters .service-title {
  color: var(--black);
}

.service-card.candidates .service-title {
  color: var(--primary-blue);
}

.service-subtitle {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  color: var(--gray-700);
  margin-bottom: var(--space-6);
  line-height: 1.3;
}

.service-features {
  list-style: none;
  margin-bottom: var(--space-8);
}

.service-features li {
  font-size: var(--text-base);
  color: var(--gray-600);
  margin-bottom: var(--space-3);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
}

.service-features li:last-child {
  margin-bottom: 0;
}

.service-btn {
  background: var(--secondary-green);
  color: var(--white);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-lg);
  font-weight: var(--font-semibold);
  font-size: var(--text-base);
  text-decoration: none;
  display: inline-block;
  transition: all var(--transition-normal);
}

.service-btn:hover {
  background: var(--green-600);
  transform: translateY(-2px);
}

.service-card.recruiters .service-btn,
.service-card.candidates .service-btn {
  background: var(--primary-blue);
}

.service-card.recruiters .service-btn:hover,
.service-card.candidates .service-btn:hover {
  background: var(--blue-600);
}

/* How It Works Section */
.how-it-works {
  padding: var(--space-20) 0;
  background: var(--white);
}

.how-it-works-content {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.how-it-works-title {
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  color: var(--gray-900);
  margin-bottom: var(--space-12);
  line-height: 1.2;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-6);
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--primary-blue);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary-blue);
  color: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  margin: 0 auto var(--space-4) auto;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  transition: all var(--transition-normal);
}

.process-step:nth-child(2) .step-number {
  background: var(--secondary-green);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.process-step:nth-child(3) .step-number {
  background: var(--accent-yellow);
  color: var(--gray-900);
  box-shadow: 0 4px 12px rgba(250, 204, 21, 0.3);
}

.process-step:nth-child(4) .step-number {
  background: var(--primary-blue);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.process-step:nth-child(5) .step-number {
  background: var(--secondary-green);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.process-step:hover .step-number {
  transform: scale(1.1);
}

.process-step p {
  font-size: var(--text-base);
  color: var(--gray-700);
  font-weight: var(--font-medium);
  line-height: 1.4;
}

/* CTA Section */
.cta-section {
  padding: var(--space-20) 0;
  background: var(--gray-900);
  color: var(--white);
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: var(--text-4xl);
  font-weight: var(--font-bold);
  margin-bottom: var(--space-8);
  line-height: 1.2;
}

.cta-buttons {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
}

.cta-buttons .btn-secondary {
  background: var(--secondary-green);
  color: var(--white);
  border: 2px solid var(--secondary-green);
}

.cta-buttons .btn-secondary:hover {
  background: var(--green-600);
  border-color: var(--green-600);
}

.btn-primary-blue {
  background: var(--primary-blue);
  color: var(--white);
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-xl);
  font-weight: var(--font-semibold);
  font-size: var(--text-base);
  text-decoration: none;
  transition: all var(--transition-normal);
}

.btn-primary-blue:hover {
  background: var(--blue-600);
  transform: translateY(-2px);
}

.cta-buttons .btn-primary:hover {
  background: var(--blue-600);
}



/* Footer */
.footer {
  background-color: var(--neutral-gray);
  color: var(--gray-700);
}

.footer-top {
  padding: var(--space-16) 0 var(--space-12) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr;
  gap: var(--space-10);
  align-items: start;
}

/* Footer Brand */
.footer-brand {
  max-width: 350px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.footer-logo-icon {
  background: var(--gray-700);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-bold);
  font-size: var(--text-base);
  box-shadow: none;
}

.footer-logo-text {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--gray-900);
}

.footer-description {
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: var(--space-6);
}

/* Social Links */
.social-links {
  display: flex;
  gap: var(--space-4);
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}



.social-link.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: var(--white);
  box-shadow: 0 0 20px rgba(240, 148, 51, 0.3);
}

.social-link.whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
}

.social-link.x-twitter {
  background: #000000;
  color: var(--white);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.18);
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* Footer Sections */
.footer-section-title {
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  color: var(--gray-900);
  margin-bottom: var(--space-5);
  position: relative;
}


.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--space-3);
}

.footer-link {
  font-size: var(--text-sm);
  color: var(--gray-600);
  transition: all var(--transition-fast);
  position: relative;
  display: inline-block;
}

.footer-link::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary-blue);
  transition: width var(--transition-normal);
}

.footer-link:hover {
  color: var(--primary-blue);
  transform: translateX(4px);
}

.footer-link:hover::before {
  width: 100%;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.contact-icon {
  width: 36px;
  height: 36px;
  background: var(--gray-700);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  margin-top: var(--space-1);
}

.contact-item-centered {
  align-items: center;
}

.contact-item-centered .contact-icon {
  margin-top: 0;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.footer-address {
  font-size: var(--text-sm);
  color: var(--gray-600);
  font-style: normal;
  line-height: 1.5;
}

/* Footer Bottom */
.footer-bottom {
  background-color: transparent;
  padding: var(--space-6) 0;
  border-top: 1px solid var(--gray-300);
}

.copyright {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--gray-600);
  margin: 0;
}

/* Responsive Design */

/* Large Desktop */
@media (min-width: 1200px) {
  .hero-title {
    font-size: var(--text-5xl);
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }

  .candidate-score-section {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }

  .hero-title {
    font-size: var(--text-4xl);
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card.zigzag-left,
  .service-card.zigzag-right {
    transform: none;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .process-steps::before {
    display: none;
  }

  .cta-title {
    font-size: var(--text-3xl);
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
  }

  .footer-brand {
    grid-column: 1 / -1;
    text-align: center;
  }

  .header-buttons {
    flex-direction: column;
    gap: var(--space-2);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-4);
  }

  .header-content {
    padding: var(--space-3) 0;
  }

  .header-buttons {
    flex-direction: column;
    gap: var(--space-2);
  }

  .header-btn-primary,
  .header-btn-secondary {
    font-size: var(--text-xs);
    padding: var(--space-2) var(--space-4);
  }

  .logo-container {
    gap: var(--space-3);
  }

  .logo-text {
    font-size: var(--text-xl);
  }

  .tagline {
    font-size: var(--text-xs);
  }

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

  .hero-title {
    font-size: var(--text-3xl);
  }

  .hero-description {
    font-size: var(--text-lg);
  }

  .hero-buttons {
    justify-content: center;
  }

  .candidate-score-section {
    padding: var(--space-6);
  }

  .score-features {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .btn-primary,
  .btn-secondary {
    text-align: center;
    justify-content: center;
  }

  .services {
    padding: var(--space-16) 0;
  }

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

  .service-title {
    font-size: var(--text-xl);
  }

  .service-subtitle {
    font-size: var(--text-base);
  }

  .how-it-works {
    padding: var(--space-16) 0;
  }

  .how-it-works-title {
    font-size: var(--text-2xl);
  }

  .cta-section {
    padding: var(--space-16) 0;
  }

  .cta-title {
    font-size: var(--text-2xl);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    text-align: left;
  }

  .footer-brand {
    max-width: none;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-title {
    font-size: var(--text-2xl);
  }

  .hero-description {
    font-size: var(--text-base);
  }

  .candidate-score-section {
    padding: var(--space-4);
  }

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

  .service-title {
    font-size: var(--text-lg);
  }

  .how-it-works-title {
    font-size: var(--text-xl);
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: var(--text-lg);
  }

  .cta-title {
    font-size: var(--text-xl);
  }

  .logo-icon {
    width: 40px;
    height: 40px;
    font-size: var(--text-base);
  }

  .logo-text {
    font-size: var(--text-lg);
  }

  .footer-top {
    padding: var(--space-12) 0 var(--space-8) 0;
  }

  .contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-2);
  }

  .contact-details {
    align-items: center;
  }
}

/* === Fix: prevent hover jump on Staffing & Candidates by neutralizing baseline zigzag === */
.service-card.staffing.zigzag-left,
.service-card.staffing.zigzag-right,
.service-card.candidates.zigzag-left,
.service-card.candidates.zigzag-right {
  transform: none;
}


/* Ensure Staffing & Candidates keep no lift/scale on hover */
.service-card.staffing:hover,
.service-card.candidates:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  transform: none;
}

/* Prevent jump for Staffing & Candidates: neutralize zigzag baseline */
.service-card.staffing.zigzag-left,
.service-card.staffing.zigzag-right,
.service-card.candidates.zigzag-left,
.service-card.candidates.zigzag-right {
  transform: none;
}

/* ═══════════════════════════════════════════════════
   HIRESOLV REDESIGN LANDING PAGE STYLES
═══════════════════════════════════════════════════ */
:root {
  --bg: #08090d;
  --bg-card: #111319;
  --bg-raised: #171a22;
  --bg-hover: #1d212b;
  --border: #22262f;
  --border-hi: #343945;
  --text: #f5f6f8;
  --text-dim: #8b909c;
  --text-faint: #5b6070;
  --accent: #5b7cff;
  --accent-2: #b565ff;
  --accent-soft: rgba(91, 124, 255, 0.14);
  --success: #22c55e;
  --warning: #fbbf24;
  --danger: #f87171;
  --card-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 16px 40px -12px rgba(0, 0, 0, 0.55);
  --header-h: 74px;
  color-scheme: dark;
}

[data-theme="dark"] {
  --bg: #08090d;
  --bg-card: #111319;
  --bg-raised: #171a22;
  --bg-hover: #1d212b;
  --border: #22262f;
  --border-hi: #343945;
  --text: #f5f6f8;
  --text-dim: #8b909c;
  --text-faint: #5b6070;
  --accent: #5b7cff;
  --accent-2: #b565ff;
  --accent-soft: rgba(91, 124, 255, 0.14);
  --success: #22c55e;
  --warning: #fbbf24;
  --danger: #f87171;
  --card-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 16px 40px -12px rgba(0, 0, 0, 0.55);
}

/* Skins */
[data-skin="emerald"] {
  --accent: #10b981;
  --accent-2: #14b8a6;
  --accent-soft: rgba(16, 185, 129, 0.1);
}

[data-theme="dark"][data-skin="emerald"] {
  --accent: #34d399;
  --accent-2: #2dd4bf;
  --accent-soft: rgba(52, 211, 153, 0.14);
}

[data-skin="amber"] {
  --accent: #f59e0b;
  --accent-2: #f43f5e;
  --accent-soft: rgba(245, 158, 11, 0.1);
}

[data-theme="dark"][data-skin="amber"] {
  --accent: #fbbf24;
  --accent-2: #fb7185;
  --accent-soft: rgba(251, 191, 36, 0.14);
}

[data-skin="rose"] {
  --accent: #f43f5e;
  --accent-2: #a855f7;
  --accent-soft: rgba(244, 63, 94, 0.1);
}

[data-theme="dark"][data-skin="rose"] {
  --accent: #fb7185;
  --accent-2: #c084fc;
  --accent-soft: rgba(251, 113, 133, 0.14);
}

/* Header Navbar */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
  display: flex;
  align-items: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

.header-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.site-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
  transition: filter 0.3s ease;
}

[data-theme="dark"] .site-logo {
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dim);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff !important;
  box-shadow: 0 4px 14px var(--accent-soft);
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.btn-secondary {
  background: var(--bg-raised);
  border-color: var(--border);
  color: var(--text);
}

.btn-secondary:hover {
  background: var(--bg-hover);
  color: var(--accent);
}

/* Controls (Skin & Theme) */
.theme-toggle-btn,
.skin-btn {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  color: var(--text);
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.theme-toggle-btn:hover,
.skin-btn:hover {
  background: var(--bg-hover);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 5rem 1.5rem 3.5rem;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-glow {
  position: absolute;
  top: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(40px);
  opacity: 0.8;
}

.badge-pill {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(79, 107, 255, 0.25);
  color: var(--accent);
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-heading {
  position: relative;
  z-index: 1;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 3.75rem;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  max-width: 920px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subheading {
  position: relative;
  z-index: 1;
  font-size: 1.25rem;
  color: var(--text-dim);
  max-width: 700px;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.hero-actions {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3.5rem;
}

/* Interactive AI Search Widget */
.ai-search-widget {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: var(--card-shadow);
}

.search-input-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0.875rem 1.25rem;
}

.search-input-box input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  font-size: 0.95rem;
}

.search-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  justify-content: center;
}

.search-tag {
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.search-tag:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--accent);
}

/* 4-Sided Marketplace Grid */
.section-container {
  max-width: 1280px;
  margin: 0 auto 5rem;
  padding: 0 1.5rem;
}

.section-title {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.02em;
}

.section-subtitle {
  text-align: center;
  color: var(--text-dim);
  font-size: 1.05rem;
  margin-bottom: 3.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 20px 40px -15px var(--accent-soft);
}

.icon-box {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  font-family: 'Outfit', sans-serif;
}

.feature-card p {
  color: var(--text-dim);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex: 1;
}

.card-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.card-link:hover {
  text-decoration: underline;
}

/* Hira AI Feature Showcase */
.ai-showcase {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 3rem 2rem;
  box-shadow: var(--card-shadow);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(79, 107, 255, 0.15));
  color: var(--accent-2);
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.match-card {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.match-ring {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 3px solid var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--success);
}

/* Footer Styles Preserved */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-description {
  color: var(--text-dim);
  font-size: 0.9375rem;
  margin: 1rem 0 1.25rem;
  max-width: 400px;
}

.social-links {
  display: flex;
  gap: 0.875rem;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  color: var(--text-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s;
}

.social-link:hover {
  background: var(--accent-soft);
  color: var(--accent);
  border-color: var(--accent);
}

.footer-section-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  font-family: 'Outfit', sans-serif;
}

.contact-item {
  display: flex;
  gap: 0.875rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.contact-icon {
  color: var(--accent);
  font-size: 1.1rem;
  margin-top: 0.2rem;
}

.footer-link {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
  display: block;
  margin-bottom: 0.3rem;
}

.footer-link:hover {
  color: var(--accent);
}

.footer-address {
  font-style: normal;
  color: var(--text-dim);
  font-size: 0.875rem;
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  font-size: 0.875rem;
  color: var(--text-dim);
}

@media (max-width: 900px) {
  .ai-showcase {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-heading {
    font-size: 2.75rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }
}


/* ─── Styles from homepage/templates/homepage/request_demo.html ─── */
main.container {
  max-width: 100% !important;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.job-form-container {
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

.form-illustration-wrapper {
  flex: 0 0 320px;
  max-width: 320px;
  position: sticky;
  top: 80px;
  align-self: flex-start;
  max-height: calc(100vh - 100px);
  overflow: visible;
}

.illustration-card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border);
}

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

.illustration-image {
  width: 100%;
  height: auto;
  max-height: 250px;
  display: block;
  object-fit: contain;
  margin: 0 auto;
}

.illustration-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.illustration-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.illustration-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
}

.illustration-list li:before {
  content: "✓";
  color: var(--success);
  font-weight: bold;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: -2px;
}

.form-content-wrapper {
  flex: 1;
  overflow-y: auto;
}

select.form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url('data:image/svg+xml;utf8,<svg fill="%236B7280" height="20" viewBox="0 0 20 20" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M7.293 7.293a1 1 0 011.414 0L10 8.586l1.293-1.293a1 1 0 111.414 1.414l-2 2a1 1 0 01-1.414 0l-2-2a1 1 0 010-1.414z"/></svg>') no-repeat right 0.75rem center/1.25em auto;
  padding-right: 2.5em !important;
  background-color: var(--bg-card);
}

select[name="phone_number_0"] {
  width: 30%;
  display: inline-block;
  margin-right: 2%;
  padding: 0.5rem;
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
  background-color: var(--bg-card);
}

input[name="phone_number_1"] {
  width: 68%;
  display: inline-block;
}

input[name="phone_number_1"]::-webkit-outer-spin-button,
input[name="phone_number_1"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="datetime-local"] {
  position: relative;
  padding: 0.75rem;
  font-size: 1rem;
  color: var(--text);
  background-color: var(--bg-card);
  cursor: pointer;
}

input[type="datetime-local"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  padding: 5px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%233B82F6" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="4" width="18" height="18" rx="2" ry="2"></rect><line x1="16" y1="2" x2="16" y2="6"></line><line x1="8" y1="2" x2="8" y2="6"></line><line x1="3" y1="10" x2="21" y2="10"></line></svg>') no-repeat center center;
  width: 24px;
  height: 24px;
}

input[type="datetime-local"]:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Responsive design */
@media (max-width: 1024px) {
  .job-form-container {
    flex-direction: column;
    gap: 2rem;
  }

  .form-illustration-wrapper {
    position: relative;
    top: 0;
    flex: 1;
    max-width: 100%;
    width: 100%;
  }

  .form-content-wrapper {
    width: 100%;
  }
}


/* ─── Styles from homepage/templates/homepage/getting_started.html ─── */
/* ── Layout ── */
.gs-container {
  max-width: 1000px;
  margin: auto;
  padding: 3rem 2rem 5rem;
  line-height: 1.8;
}

.gs-header {
  border-bottom: 2px solid #e5e7eb;
  padding-bottom: 1.5rem;
  margin-bottom: 2.5rem;
}

.gs-header h1 {
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--text);
}

.gs-header p {
  color: var(--text-faint);
  font-size: 1rem;
  margin-bottom: 0;
}

.account-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--bg-raised);
  border: 1px solid var(--bg-raised);
  color: var(--accent);
  border-radius: 999px;
  padding: 0.25rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

/* ── Sections ── */
.gs-section {
  margin-bottom: 2.5rem;
}

.gs-section-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--bg-raised);
}

.step-badge {
  background: var(--accent);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gs-section p {
  color: var(--text);
  margin-bottom: 0.6rem;
}

.gs-section ul {
  padding-left: 1.4rem;
  color: var(--text);
}

.gs-section ul li {
  margin-bottom: 0.5rem;
}

/* ── Rules box ── */
.rules-box {
  background: var(--bg-raised);
  border: 1px solid #fbbf24;
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
}

.rules-box h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--warning);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.rules-box ul {
  margin: 0;
  padding-left: 1.3rem;
  color: var(--warning);
}

.rules-box ul li {
  margin-bottom: 0.4rem;
  font-size: 0.94rem;
}

/* ── Flow steps ── */
.flow-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.flow-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.flow-icon.blue {
  background: var(--bg-raised);
  color: var(--accent);
}

.flow-icon.green {
  background: var(--bg-raised);
  color: var(--success);
}

.flow-icon.amber {
  background: var(--bg-raised);
  color: var(--warning);
}

.flow-icon.purple {
  background: var(--bg-raised);
  color: var(--accent-2);
}

.flow-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.15rem;
}

.flow-text span {
  font-size: 0.88rem;
  color: var(--text-faint);
}

.flow-arrow {
  text-align: left;
  color: var(--border);
  font-size: 1.1rem;
  margin: 0.1rem 0 0.1rem 17px;
}

/* ── Info card ── */
.info-card {
  background: var(--bg-raised);
  border: 1px solid var(--bg-raised);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  font-size: 0.93rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.info-card i {
  margin-top: 2px;
  flex-shrink: 0;
}

/* ── Commission box ── */
.commission-box {
  background: var(--bg-raised);
  border: 1px solid #86efac;
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}

.commission-box h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--success);
  margin-bottom: 0.75rem;
}

.commission-box .formula-line {
  font-family: monospace;
  font-size: 0.9rem;
  color: var(--success);
  margin-bottom: 0.3rem;
}

/* ── T&C / Proceed section ── */
.gs-divider {
  border: none;
  border-top: 2px solid #e5e7eb;
  margin: 3rem 0 2rem;
}

.terms-section {
  background: var(--bg-raised);
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 2rem;
}

.terms-check-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--text);
}

.terms-check-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--accent);
  cursor: pointer;
}

.btn-proceed {
  margin-top: 1.25rem;
  padding: 0.75rem 2rem;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-proceed:hover:not(:disabled) {
  background: var(--accent);
  transform: translateY(-1px);
}

.btn-proceed:disabled {
  background: var(--text-faint);
  cursor: not-allowed;
  transform: none;
}


/* ─── Styles from homepage/templates/homepage/privacy.html ─── */
.policy-container {
  max-width: 1200px;
  margin: auto;
  padding: 3rem 2rem;
  line-height: 1.75;
}

.policy-header {
  border-bottom: 2px solid #eee;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

.policy-section {
  margin-bottom: 2.5rem;
}

.policy-section h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.policy-section h4 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.policy-section p,
.policy-container>p {
  text-align: justify;
}

.policy-section ul {
  padding-left: 1.2rem;
}

.policy-section li {
  margin-bottom: 0.5rem;
  text-align: justify;
}

.policy-divider {
  margin: 3rem 0;
  border-top: 1px solid #e5e5e5;
}

.icon {
  color: var(--accent);
  font-size: 1.2rem;
}


/* ─── Styles from homepage/templates/homepage/demo_request_success.html ─── */
main.container {
  max-width: 100% !important;
  padding-left: 1rem !important;
  padding-right: 1rem !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.btn.btn-lg.px-5:hover {
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════════
   3D GLOBE HERO SPLIT LAYOUT (hiresolv-redesign)
═══════════════════════════════════════════════════ */
.globe-split-container {
  display: flex;
  min-height: calc(100vh - var(--header-h));
  width: 100%;
}

.globe-left-panel {
  flex: 1;
  background: #05060a;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.globe-canvas-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

#globeCanvas {
  width: 100%;
  height: 100%;
  cursor: grab;
  opacity: 0;
  transition: opacity 1s ease;
  border-radius: 50%;
}

.globe-marker-badge {
  position: absolute;
  font-family: monospace;
  font-size: 0.65rem;
  color: #fff;
  background: rgba(20, 22, 35, 0.9);
  padding: 3px 8px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  pointer-events: none;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.globe-marker-mum {
  top: 38%;
  left: 62%;
}

.globe-marker-dxb {
  top: 34%;
  left: 45%;
}

.globe-marker-sin {
  top: 52%;
  left: 74%;
}

.globe-right-panel {
  flex: 1;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem 4rem;
  position: relative;
}

.role-pill-group {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 1.5rem 0 2rem;
}

.role-pill {
  padding: 0.5rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-dim);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.role-pill.active,
.role-pill:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
}

@media (max-width: 1024px) {
  .globe-split-container {
    flex-direction: column;
  }

  .globe-left-panel {
    padding: 2rem 1.5rem;
    min-height: 400px;
  }

  .globe-right-panel {
    padding: 2.5rem 1.5rem;
  }
}


/* ═══════════════════════════════════════════════════
   HIRESOLV-REDESIGN EXACT LANDING PAGE STYLES
═══════════════════════════════════════════════════ */
.landing-split-wrapper {
  display: flex;
  min-height: calc(100vh - 80px);
  width: 100%;
  position: relative;
}

.landing-left-hero {
  width: 50%;
  background: #05060a;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.landing-right-form {
  width: 50%;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  position: relative;
}

.control-corner {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 20;
}

.auth-card-surface {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  width: 100%;
  max-width: 440px;
  box-shadow: var(--card-shadow);
  position: relative;
  z-index: 10;
}

.role-grid-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.role-select-btn {
  padding: 0.6rem 0.5rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-dim);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.role-select-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.input-field-group {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
}

.input-field-group:focus-within {
  border: none !important;
  outline: none !important;
}

.input-field-group input {
  width: 100%;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--text);
  font-size: 0.875rem;
  outline: none;
  transition: all 0.2s ease;
}

.sheen-btn {
  width: 100%;
  padding: 0.85rem;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 14px var(--accent-soft);
  transition: all 0.2s ease;
}

.sheen-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

@media (max-width: 992px) {
  .landing-split-wrapper {
    flex-direction: column;
  }

  .landing-left-hero {
    width: 100%;
    min-height: 400px;
    padding: 2rem 1.5rem;
  }

  .landing-right-form {
    width: 100%;
    padding: 3rem 1.5rem;
  }
}


/* ═══════════════════════════════════════════════════
   COMPACT ULTRA-SLEEK FOOTER (<50% original height)
═══════════════════════════════════════════════════ */
.footer {
  background: var(--bg-card) !important;
  border-top: 1px solid var(--border) !important;
  padding-top: 1.25rem !important;
  padding-bottom: 0.5rem !important;
}

.footer-grid {
  display: grid !important;
  grid-template-columns: 2fr 1fr !important;
  gap: 1.5rem !important;
  margin-bottom: 0.75rem !important;
}

.footer-description {
  color: var(--text-dim) !important;
  font-size: 0.8125rem !important;
  margin: 0.35rem 0 0.6rem !important;
  max-width: 400px !important;
  line-height: 1.4 !important;
}

.social-links {
  display: flex !important;
  gap: 0.5rem !important;
}

.social-link {
  width: 32px !important;
  height: 32px !important;
  border-radius: 8px !important;
}

.footer-section-title {
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  margin-bottom: 0.5rem !important;
  font-family: 'Outfit', sans-serif !important;
}

.contact-item {
  display: flex !important;
  gap: 0.6rem !important;
  margin-bottom: 0.4rem !important;
  align-items: flex-start !important;
}

.contact-icon {
  color: var(--accent) !important;
  font-size: 0.9rem !important;
  margin-top: 0.15rem !important;
}

.footer-link {
  color: var(--text-dim) !important;
  text-decoration: none !important;
  font-size: 0.8125rem !important;
  margin-bottom: 0.15rem !important;
}

.footer-address {
  font-style: normal !important;
  color: var(--text-dim) !important;
  font-size: 0.8rem !important;
  line-height: 1.35 !important;
}

.footer-bottom {
  border-top: 1px solid var(--border) !important;
  padding: 0.5rem 0 !important;
  font-size: 0.78rem !important;
  color: var(--text-dim) !important;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
}


/* ═══════════════════════════════════════════════════
   BALANCED MEDIUM-COMPACT FOOTER (~120px - 140px)
═══════════════════════════════════════════════════ */
.footer-balanced {
  background: var(--bg-card) !important;
  border-top: 1px solid var(--border) !important;
  padding: 1.75rem 2rem 1.25rem !important;
  color: var(--text-dim) !important;
}

.footer-balanced-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: center;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-brand-col p {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin: 0;
  max-width: 480px;
  line-height: 1.4;
}

.footer-contact-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  text-align: right;
  font-size: 0.85rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-dim);
}

.footer-contact-item a {
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-item a:hover {
  color: var(--accent);
}

@media (max-width: 768px) {
  .footer-balanced-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .footer-contact-col {
    align-items: flex-start;
    text-align: left;
  }
}


/* ═══════════════════════════════════════════════════
   EXACT HIRESOLV-REDESIGN LOGIN PAGE STYLES
═══════════════════════════════════════════════════ */
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.redesign-page-container {
  display: flex;
  min-height: 100vh;
  width: 100vw;
  background: var(--bg);
}

.redesign-left-panel {
  width: 50%;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.redesign-right-panel {
  width: 50%;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  position: relative;
}

.cobe-canvas-wrapper {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

#cobeCanvas {
  width: 100%;
  height: 100%;
  cursor: grab;
  opacity: 1;
  display: block;
  border-radius: 50%;
  touch-action: none;
}

.cobe-hub-tag {
  position: absolute;
  font-family: 'Outfit', 'Inter', monospace;
  font-size: 0.52rem;
  color: #ffffff;
  background: rgba(10, 12, 22, 0.94);
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  white-space: nowrap;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.22);
  pointer-events: none;
  font-weight: 700;
  z-index: 15;
}

.cobe-arc-val {
  position: absolute;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 0.56rem;
  color: #ffffff;
  background: linear-gradient(135deg, #a855f7, #8b5cf6);
  padding: 2.5px 7px;
  border-radius: 5px;
  font-weight: 700;
  white-space: nowrap;
  pointer-events: none;
  box-shadow: 0 0 12px rgba(168, 85, 247, 0.5);
  z-index: 15;
}

/* dynamic marker */
/* dynamic marker */

.redesign-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem;
  width: 100%;
  max-width: 440px;
  box-shadow: var(--card-shadow);
  position: relative;
  z-index: 10;
  color: var(--text);
}

.redesign-card h1 {
  color: var(--text);
}

@media (max-width: 1024px) {
  .redesign-page-container {
    flex-direction: column;
  }

  .redesign-left-panel {
    width: 100%;
    min-height: 440px;
    padding: 2rem 1.5rem;
  }

  .redesign-right-panel {
    width: 100%;
    padding: 3rem 1.5rem;
  }
}

/* ── Mobile (≤768px) Responsive Fixes ── */
@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden;
    overflow-y: auto;
  }

  .redesign-page-container {
    flex-direction: column;
    min-height: auto;
  }

  .redesign-left-panel {
    width: 100%;
    min-height: 260px;
    padding: 1.25rem 1rem;
  }

  .cobe-canvas-wrapper {
    max-width: 260px;
    margin: 0.5rem auto;
  }

  #cobeCanvas {
    touch-action: pan-y;
  }

  .redesign-right-panel {
    width: 100%;
    padding: 1rem 1rem 2.5rem;
    justify-content: flex-start;
  }

  .redesign-card {
    padding: 1.5rem 1.25rem;
    border-radius: 16px;
    margin-top: 0 !important;
    max-width: 100%;
  }

  .landing-sign-in-card {
    margin-top: 0 !important;
  }

  /* Footer — stack columns on mobile */
  .landing-footer-inner {
    flex-direction: column !important;
    padding: 0 1.25rem 1.5rem !important;
    gap: 1.5rem !important;
  }

  .landing-footer-inner > div {
    max-width: 100% !important;
    width: 100% !important;
  }
}

/* ── Small phones (≤480px) ── */
@media (max-width: 480px) {
  .cobe-canvas-wrapper {
    max-width: 200px;
  }

  .redesign-card {
    padding: 1.25rem 1rem;
  }
}



/* ═══════════════════════════════════════════════════
   SMOOTH 3D DYNAMIC MOVING GLOBE MARKER TAGS
═══════════════════════════════════════════════════ */
.cobe-hub-tag,
.cobe-arc-val {
  position: absolute !important;
  pointer-events: none !important;
  transition: opacity 0.3s ease, transform 0.15s ease-out !important;
  will-change: left, top, opacity, transform !important;
  z-index: 15 !important;
}

.cobe-badge-mum,
.cobe-badge-dxb,
.cobe-badge-sin,
.cobe-val-mum,
.cobe-val-sin {
  top: auto;
  left: auto;
}


/* ═══════════════════════════════════════════════════
   LIGHT THEME & EXACT UI CONTROLS STYLING
═══════════════════════════════════════════════════ */
[data-theme="light"] {
  --bg: #f8fafc;
  --bg-card: #ffffff;
  --bg-raised: #f1f5f9;
  --bg-hover: #e2e8f0;
  --border: #e2e8f0;
  --border-hi: #cbd5e1;
  --text: #0f172a;
  --text-dim: #475569;
  --text-faint: #94a3b8;
  --card-shadow: 0 4px 25px -4px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .redesign-left-panel,
[data-theme="light"] .redesign-right-panel {
  background: #f8fafc !important;
}

[data-theme="light"] .redesign-card {
  background: #ffffff !important;
  border-color: #e2e8f0 !important;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06) !important;
}

[data-theme="light"] .redesign-card h1 {
  color: #0f172a !important;
}

[data-theme="light"] .input-field-group input {
  background: #f1f5f9 !important;
  border-color: #cbd5e1 !important;
  color: #0f172a !important;
}

[data-theme="light"] .input-field-group input::placeholder {
  color: #94a3b8 !important;
}

/* Exact Control Buttons from Screenshot */
.skin-btn-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.skin-btn-circle:hover {
  transform: scale(1.06);
  border-color: var(--accent);
  color: var(--accent);
}

.theme-pill-switch {
  width: 78px;
  height: 42px;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  padding: 3px;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.theme-pill-thumb {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), background 0.35s ease;
  box-shadow: 0 3px 10px rgba(124, 58, 237, 0.4);
}

[data-theme="dark"] .theme-pill-thumb {
  transform: translateX(36px);
}

[data-theme="light"] .theme-pill-thumb {
  transform: translateX(0px);
}


/* ═══════════════════════════════════════════════════
   DROPDOWN OPTION STYLING & FULL LIGHT MODE OVERRIDES
═══════════════════════════════════════════════════ */
#skinSelect option {
  background-color: #111319 !important;
  color: #f5f6f8 !important;
  padding: 8px 12px !important;
  font-size: 0.85rem !important;
}

[data-theme="light"] #skinSelect option {
  background-color: #ffffff !important;
  color: #0f172a !important;
}

[data-theme="light"] {
  --bg: #f8fafc !important;
  --bg-card: #ffffff !important;
  --bg-raised: #f1f5f9 !important;
  --bg-hover: #e2e8f0 !important;
  --border: #cbd5e1 !important;
  --text: #0f172a !important;
  --text-dim: #475569 !important;
  --text-faint: #64748b !important;
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
}

[data-theme="light"] body,
[data-theme="light"] .redesign-page-container,
[data-theme="light"] .redesign-right-panel {
  background-color: #f8fafc !important;
  color: #0f172a !important;
}

[data-theme="light"] .redesign-card {
  background-color: #ffffff !important;
  border-color: #cbd5e1 !important;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.07) !important;
}

[data-theme="light"] .redesign-card h1,
[data-theme="light"] .redesign-card label {
  color: #0f172a !important;
}

[data-theme="light"] .input-field-group input {
  background-color: #f1f5f9 !important;
  border-color: #cbd5e1 !important;
  color: #0f172a !important;
}

[data-theme="light"] .input-field-group input::placeholder {
  color: #64748b !important;
}