/* Import modern trending fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Colors */
  --primary: #0064C8;
  --primary-hover: #1E78D2;
  --primary-light: #E6F0FA;
  --primary-dark: #004B96;
  --primary-glow: rgba(0, 100, 200, 0.15);
  
  --secondary: #0A6EC8;
  --accent: #E6F0FA;
  
  --slate-50: #F8FAFC;
  --slate-100: #F1F5F9;
  --slate-200: #E2E8F0;
  --slate-300: #CBD5E1;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1E293B;
  --slate-900: #0F172A;
  
  --success: #10B981;
  --error: #EF4444;
  --warning: #F59E0B;
  
  /* Fonts */
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Shadow & Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 10px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.05);
  --shadow-xl: 0 20px 30px -8px rgba(15, 23, 42, 0.12), 0 10px 15px -8px rgba(15, 23, 42, 0.08);
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--slate-700);
  background-color: #FFFFFF;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  color: var(--slate-900);
  font-weight: 700;
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

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

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-bg-light {
  background-color: var(--slate-50);
}

.section-bg-dark {
  background-color: var(--slate-900);
  color: var(--slate-100);
}

.section-bg-dark h1, 
.section-bg-dark h2, 
.section-bg-dark h3 {
  color: #FFFFFF;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-headings);
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--primary);
  background-color: var(--primary-light);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--slate-600);
}

.section-bg-dark .section-subtitle {
  color: var(--slate-300);
}

/* Grid helper */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-normal);
  gap: 8px;
}

.btn-primary {
  background-color: var(--primary);
  color: #FFFFFF;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 100, 200, 0.25);
}

.btn-secondary {
  background-color: var(--primary-light);
  color: var(--primary-dark);
}

.btn-secondary:hover {
  background-color: rgba(0, 100, 200, 0.15);
  transform: translateY(-2px);
}

.btn-outline {
  border-color: var(--slate-200);
  background-color: transparent;
  color: var(--slate-800);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background-color: var(--primary-light);
}

.btn-white {
  background-color: #FFFFFF;
  color: var(--primary);
}

.btn-white:hover {
  background-color: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* Floating Navigation Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition-normal);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background-color: var(--primary);
  box-shadow: 0 4px 20px rgba(0, 50, 100, 0.08);
}

.header-active {
  background-color: rgba(0, 100, 200, 0.95);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 25px rgba(0, 50, 100, 0.12);
  padding: 8px 0;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: var(--transition-normal);
}

.header-active .container {
  height: 64px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 68px;
  width: auto;
  transition: var(--transition-normal);
}

.header-active .logo-img {
  height: 52px;
}

.logo-text {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 2.4rem;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
}

.header-active .logo-text {
  font-size: 2.0rem;
}

.logo-text span {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.1em;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-family: var(--font-headings);
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #FFFFFF;
  transition: var(--transition-normal);
}

.nav-link:hover {
  color: #FFFFFF;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: #FFFFFF;
  font-weight: 600;
}

.nav-cta {
  margin-left: 12px;
}

.nav-cta .btn-white {
  background-color: #FFFFFF !important;
  color: var(--primary) !important;
}

.nav-cta .btn-white:hover {
  background-color: #f8fafc !important;
  color: var(--primary-hover) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #FFFFFF;
  margin: 6px auto;
  transition: var(--transition-normal);
}

/* Footer styling */
.footer {
  background-color: var(--slate-900);
  color: var(--slate-300);
  padding: 80px 0 30px;
  border-top: 1px solid var(--slate-800);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-info-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.footer-logo-img {
  height: 68px;
  width: auto;
}

.footer-logo-text {
  font-family: var(--font-headings);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 2.2rem;
}

.footer-info-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background-color: var(--slate-800);
  color: #FFFFFF;
  font-size: 1rem;
  transition: var(--transition-fast);
}

.social-icon:hover {
  background-color: var(--primary);
  transform: translateY(-2px);
}

.social-icon svg {
  display: block;
  stroke-width: 2.25px;
}

.footer-heading {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  margin-bottom: 24px;
  font-weight: 600;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 0.95rem;
  color: var(--slate-400);
}

.footer-links a:hover {
  color: #FFFFFF;
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  align-items: flex-start;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--primary-hover);
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid var(--slate-800);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--slate-500);
}

/* Animations */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Form Styles */
.form-group {
  margin-bottom: 24px;
  position: relative;
}

.form-label {
  display: block;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 8px;
  color: var(--slate-800);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background-color: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  color: var(--slate-900);
  transition: var(--transition-fast);
  outline: none;
}

.form-control:focus {
  border-color: var(--primary);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 4px var(--primary-glow);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Interactive Components */
/* 1. Sector Pain Point Explorer */
.sector-explorer-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.sector-tab {
  background-color: var(--slate-50);
  border: 1px solid var(--slate-200);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-fast);
  color: var(--slate-700);
}

.sector-tab:hover {
  background-color: var(--slate-100);
  color: var(--primary);
  border-color: var(--primary);
}

.sector-tab.active {
  background-color: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 100, 200, 0.2);
}

.sector-panel {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.sector-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background-color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--slate-100);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.pain-points-list {
  list-style: none;
}

.pain-point-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.pain-point-item svg {
  color: var(--error);
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 4px;
}

.pain-point-title {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--slate-900);
  margin-bottom: 4px;
}

.pain-point-desc {
  font-size: 0.9rem;
  color: var(--slate-600);
}

.solution-box {
  background-color: var(--primary-light);
  border-left: 4px solid var(--primary);
  padding: 30px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.solution-title {
  color: var(--primary-dark);
  font-size: 1.25rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.solution-title svg {
  color: var(--success);
}

.solution-desc {
  font-size: 0.95rem;
  color: var(--slate-800);
  line-height: 1.6;
}

/* 2. Calculator styling */
.calculator-card {
  background-color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--slate-100);
}

.calc-range-wrapper {
  margin-bottom: 30px;
}

.range-label-container {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 10px;
  font-family: var(--font-headings);
}

.range-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: var(--radius-full);
  background: var(--slate-200);
  outline: none;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: 0 0 0 4px var(--primary-glow);
}

.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.calc-output-panel {
  background-color: var(--slate-900);
  color: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 30px;
  text-align: center;
}

.calc-output-title {
  color: var(--slate-400);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.calc-output-value {
  font-family: var(--font-headings);
  font-size: 2.5rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.calc-output-helper {
  font-size: 0.85rem;
  color: var(--slate-300);
}

/* Responsiveness (Mobile First / Breakpoints) */

@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

@media (max-width: 768px) {
  .logo-text,
  .header-active .logo-text {
    font-size: 2.2rem !important;
  }
  
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  
  .footer-links-grid {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }
  
  .section {
    padding: 60px 0;
  }
  .section-title {
    font-size: 1.75rem;
  }
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  
  /* Navigation mobile menu */
  .mobile-toggle {
    display: block;
  }
  
  .header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
    border-bottom-color: rgba(255, 255, 255, 0.1) !important;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: linear-gradient(185deg, var(--slate-900) 0%, #111827 100%) !important;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.35) !important;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 40px 40px;
    gap: 20px;
    transition: var(--transition-normal);
    z-index: 999;
  }
  
  .nav-menu .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 1.05rem !important;
    width: 100% !important;
    padding: 10px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    text-align: left !important;
  }
  
  .nav-menu .nav-link:hover,
  .nav-menu .nav-link.active {
    color: #FFFFFF !important;
    border-bottom-color: rgba(255, 255, 255, 0.3) !important;
  }
  
  .nav-menu .nav-link::after {
    display: none !important;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
  
  .nav-cta {
    margin-left: 0;
    width: 100%;
    margin-top: 20px;
  }
  
  .nav-cta .btn {
    width: 100%;
  }

  .sector-panel.active {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 480px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .logo-img {
    height: 48px;
  }
  .calculator-card {
    padding: 24px;
  }
  .calc-output-value {
    font-size: 1.85rem;
  }
}


/* Additional Custom Styles for the New Restructured Layout */

.problem-card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.problem-card {
  background-color: #FFFFFF;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  flex: 1 1 300px;
  max-width: 360px;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--error);
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--slate-300);
}

.problem-number {
  font-family: var(--font-headings);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(239, 68, 68, 0.15);
  line-height: 1;
  margin-bottom: 16px;
}

.problem-text {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--slate-800);
  line-height: 1.5;
}

/* Hidden Cost Cards */
.cost-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

@media (max-width: 1024px) {
  .cost-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .cost-card-grid {
    grid-template-columns: 1fr;
  }
}

.cost-card {
  background-color: #FFFFFF;
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.cost-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-hover);
}

.cost-icon {
  background-color: var(--primary-light);
  color: var(--primary);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.cost-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 8px;
}

.cost-desc {
  font-size: 0.9rem;
  color: var(--slate-600);
  line-height: 1.5;
}

/* Highlight Cost Statement */
.cost-highlight-box {
  background: linear-gradient(135deg, var(--primary-light) 0%, #FFFFFF 100%);
  border-left: 5px solid var(--primary);
  border-radius: var(--radius-md);
  padding: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
  text-align: center;
}

.cost-highlight-text {
  font-family: var(--font-headings);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-dark);
}

/* Timeline Process */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
  margin-top: 50px;
  margin-bottom: 40px;
}

@media (max-width: 992px) {
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .process-timeline::before {
    display: none;
  }
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 10%;
  width: 80%;
  height: 2px;
  background-color: var(--slate-200);
  z-index: 1;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #FFFFFF;
  border: 3px solid var(--primary);
  color: var(--primary);
  font-family: var(--font-headings);
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.timeline-step:hover .step-number {
  background-color: var(--primary);
  color: #FFFFFF;
  box-shadow: 0 0 0 6px var(--primary-glow);
}

.step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--slate-900);
}

/* Vetted Checklist */
.vetted-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .vetted-grid {
    grid-template-columns: 1fr;
  }
}

.vetted-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.vetted-icon {
  background-color: var(--primary-light);
  color: var(--primary);
  padding: 8px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vetted-text {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--slate-800);
}

/* Star Ratings */
.stars-container {
  color: var(--warning);
  font-size: 1.2rem;
  margin-bottom: 12px;
}


/* Hero Section Styles */
.hero-section {
  padding-top: 100px;
  padding-bottom: 50px;
  background: linear-gradient(135deg, #FFFFFF 0%, #F0F6FC 100%);
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--slate-900);
}

.hero-title span {
  color: var(--primary);
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--slate-600);
  margin-bottom: 28px;
  max-width: 560px;
  line-height: 1.6;
}

.hero-pain-points {
  margin-bottom: 32px;
}

.hero-pain-points-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 14px;
}

.hero-pain-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 20px;
}

.hero-pain-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--slate-700);
  font-weight: 500;
  line-height: 1.4;
}

.hero-pain-item .check-icon {
  color: var(--success);
  font-weight: bold;
  flex-shrink: 0;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image-container {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-image {
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--slate-100);
  z-index: 2;
  transition: var(--transition-normal);
}

.hero-image:hover {
  transform: scale(1.02);
}

/* Hero mobile image: hidden on desktop (hero already has right-column image) */
.hero-image-mobile {
  display: none;
}

/* ---- Desktop Section Dividers ---- */
.section-divider {
  width: 100%;
  line-height: 0;
  overflow: hidden;
  margin-top: -2px;
  margin-bottom: -2px;
}

.section-divider svg {
  display: block;
  width: 100%;
  height: 40px;
}

/* Hidden on mobile */
@media (max-width: 768px) {
  .desktop-divider {
    display: none;
  }
}

/* Problems section image: visible on both desktop and mobile */
.problems-image-mobile {
  display: block;
  margin: 20px auto 28px;
  max-width: 520px;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.problems-image-mobile img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

/* Solutions section image: visible on both desktop and mobile */
.solutions-image-mobile {
  display: block;
  margin: 20px auto 32px;
  max-width: 900px;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.solutions-image-mobile img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center center;
  border-radius: var(--radius-lg);
  display: block;
}

/* Why-choose section image: visible on both desktop and mobile */
.why-choose-image-mobile {
  display: block;
  margin: 20px auto 36px;
  max-width: 900px;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.why-choose-image-mobile img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center center;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .hero-section {
    padding-top: 130px;
    padding-bottom: 25px;
    margin-top: 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 110px, #F0F6FC 100%);
  }
  
  /* Remove decorative SVG vectors on mobile */
  .shape-3,
  .shape-4,
  .shape-5 {
    display: none !important;
  }

  .hero-title {
    font-size: 1.75rem;
    margin-bottom: 16px;
    text-align: center;
  }
  
  .hero-desc {
    font-size: 1rem;
    margin-bottom: 24px;
    text-align: center;
    max-width: 100%;
  }
  
  .hero-pain-points-title {
    text-align: center;
  }
  
  .hero-pain-list {
    grid-template-columns: 1fr;
    gap: 8px;
    max-width: 450px;
    margin: 0 auto;
  }
  
  .hero-pain-item {
    font-size: 0.88rem;
  }
  
  .hero-ctas {
    justify-content: center;
    margin-top: 8px;
  }

  /* Show mobile-only image between desc and pain points */
  .hero-image-mobile {
    display: block !important;
    margin: 10px auto 24px;
    max-width: 90%;
  }

  .hero-image-mobile .hero-image {
    max-width: 100%;
    margin: 0 auto;
  }

  /* Full-width on mobile */
  .problems-image-mobile,
  .solutions-image-mobile,
  .why-choose-image-mobile {
    max-width: 100%;
    margin: 12px auto 20px;
  }

  /* Reset why-choose image to natural height on mobile */
  .why-choose-image-mobile img {
    height: auto;
    object-fit: unset;
  }

  /* Reset solutions image to natural height on mobile */
  .solutions-image-mobile img {
    height: auto;
    object-fit: unset;
  }

  /* Hide the original desktop image container on mobile */
  .hero-image-container {
    display: none !important;
  }

  .hero-image {
    max-width: 100%;
  }
  .desktop-only {
    display: none;
  }
}

.desktop-only {
  display: inline;
}

/* Hide Recruitment Friction Index card on desktop only */
@media (min-width: 769px) {
  .friction-index-card {
    display: none;
  }
}



/* Animated Hero Background Vectors */
.hero-bg-vectors {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

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

.bg-shape {
  position: absolute;
  opacity: 0.12;
  color: var(--primary);
}

/* Shape 1: Large glowing blur blob */
.shape-1 {
  width: 400px;
  height: 400px;
  background-color: var(--primary-glow);
  filter: blur(100px);
  border-radius: 50%;
  top: -100px;
  right: -50px;
  animation: floatBlob1 20s infinite ease-in-out;
}

/* Shape 2: Another glowing blur blob */
.shape-2 {
  width: 350px;
  height: 350px;
  background-color: rgba(30, 120, 210, 0.1);
  filter: blur(80px);
  border-radius: 50%;
  bottom: -50px;
  left: -50px;
  animation: floatBlob2 18s infinite ease-in-out;
}

/* Shape 3: Rotating Plus symbol */
.shape-3 {
  top: 25%;
  left: 45%;
  animation: rotatePlus 12s infinite linear;
}

/* Shape 4: Floating circular target node */
.shape-4 {
  top: 60%;
  right: 48%;
  animation: floatNode 8s infinite ease-in-out;
}

/* Shape 5: Slow moving wavy path */
.shape-5 {
  top: 15%;
  left: 10%;
  animation: floatWave 15s infinite ease-in-out;
}

/* Animations */
@keyframes floatBlob1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 40px) scale(1.1); }
}

@keyframes floatBlob2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.05); }
}

@keyframes rotatePlus {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes floatNode {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-15px) scale(0.95); opacity: 0.22; }
}

@keyframes floatWave {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(20px, 10px) rotate(5deg); }
}

/* Prevent fixed header from hiding section content on scroll/anchor nav */
@media (min-width: 769px) {
  #problems,
  #costs,
  #solutions,
  #why-choose-us {
    scroll-margin-top: 80px;
  }
}

/* Specific Section Padding Overrides to reduce spacing */
#problems {
  padding-top: 90px;
  padding-bottom: 60px;
  scroll-margin-top: 80px;
}

@media (min-width: 769px) {
  #problems {
    min-height: auto;
    overflow: visible;
  }
}

@media (max-width: 768px) {
  #problems {
    padding-top: 25px;
    padding-bottom: 50px;
  }
}
/* Creative Problem Section Styles */
.creative-problem-container {
  display: grid;
  grid-template-columns: 1.2fr 2.2fr;
  gap: 60px;
  align-items: flex-start;
  padding-bottom: 20px;
}

@media (max-width: 1024px) {
  .creative-problem-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.creative-sticky-info {
  position: sticky;
  top: 100px;
}

@media (max-width: 1024px) {
  .creative-sticky-info {
    position: static;
    text-align: center;
  }
  .creative-sticky-info .section-title {
    text-align: center !important;
  }
}

.problems-timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  padding-left: 45px;
}

.problems-timeline::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 17px;
  width: 4px;
  height: calc(100% - 30px);
  background: linear-gradient(to bottom, #EF4444 0%, #F59E0B 35%, var(--primary) 70%, var(--success) 100%);
  border-radius: var(--radius-full);
}

.timeline-card {
  background-color: #FFFFFF;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.timeline-card::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -37px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #FFFFFF;
  border: 4px solid #EF4444;
  z-index: 2;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
}

.timeline-card:nth-child(2)::before { border-color: #F59E0B; }
.timeline-card:nth-child(3)::before { border-color: #EF4444; }
.timeline-card:nth-child(4)::before { border-color: var(--primary); }
.timeline-card:nth-child(5)::before { border-color: var(--success); }

.timeline-card:hover {
  transform: translateX(10px) translateY(-2px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-hover);
}

.timeline-card:hover::before {
  background-color: var(--primary);
  border-color: var(--primary-light);
  transform: translateY(-50%) scale(1.3);
  box-shadow: 0 0 0 6px var(--primary-glow);
}

.card-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--slate-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-700);
  flex-shrink: 0;
  transition: var(--transition-normal);
  border: 1px solid var(--slate-150);
}

.timeline-card:hover .card-icon-box {
  background-color: var(--primary-light);
  color: var(--primary);
  border-color: var(--primary-hover);
  transform: scale(1.05);
}

.card-content-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--slate-800);
  line-height: 1.55;
}

@media (max-width: 768px) {
  .problems-timeline {
    padding-left: 30px;
  }
  .problems-timeline::before {
    left: 10px;
  }
  .timeline-card {
    padding: 20px;
    gap: 16px;
  }
  .timeline-card::before {
    left: -29px;
    width: 16px;
    height: 16px;
    border-width: 3px;
  }
  .card-icon-box {
    width: 44px;
    height: 44px;
  }
  .card-content-text {
    font-size: 0.95rem;
  }
}

/* Mobile full fix for problems section */
@media (max-width: 768px) {
  .creative-problem-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    overflow: hidden;
  }

  .creative-sticky-info {
    position: static;
    text-align: center;
    width: 100%;
  }

  .problems-timeline {
    width: 100%;
    padding-left: 28px;
    overflow: hidden;
    box-sizing: border-box;
  }

  .problems-timeline::before {
    left: 8px;
  }

  .timeline-card {
    width: 100%;
    box-sizing: border-box;
    padding: 16px;
    gap: 12px;
    margin-right: 0;
  }

  .timeline-card::before {
    left: -27px;
    width: 14px;
    height: 14px;
    border-width: 2px;
  }

  .card-content-text {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .card-icon-box {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }
}


/* Creative Cost Section Styles */
.creative-cost-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 50px;
}

@media (max-width: 1024px) {
  .creative-cost-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.creative-cost-left {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
}

@media (max-width: 1024px) {
  .creative-cost-left {
    position: static;
    text-align: center;
    align-items: center;
  }
  .creative-cost-left .section-title {
    text-align: center !important;
  }
}

.cost-model-wrapper {
  position: relative;
  width: 100%;
  max-width: 440px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--slate-150);
  background-color: #FFFFFF;
  margin-top: 30px;
  transition: var(--transition-normal);
}

.cost-model-wrapper:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 100, 200, 0.15);
}

.cost-model-image {
  width: 100%;
  height: auto;
  display: block;
}

.cost-model-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0) 100%);
  padding: 30px 24px 20px;
  color: #FFFFFF;
  text-align: left;
}

.creative-cost-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 1024px) {
  .creative-cost-list {
    grid-template-columns: 1fr;
  }
}

.creative-cost-item {
  background-color: #FFFFFF;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  display: flex;
  gap: 20px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.creative-cost-item:hover {
  transform: translateY(-3px) translateX(6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-hover);
}

.cost-item-icon-box {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-normal);
}

.creative-cost-item:hover .cost-item-icon-box {
  background-color: var(--primary);
  color: #FFFFFF;
  transform: scale(1.08);
}

.cost-item-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 6px;
}

.cost-item-desc {
  font-size: 0.95rem;
  color: var(--slate-600);
  line-height: 1.5;
  margin-bottom: 12px;
}

/* Cost Risk Gauge styling */
.cost-risk-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
}

.risk-bar-bg {
  width: 120px;
  height: 6px;
  background-color: var(--slate-100);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.risk-bar-fill {
  height: 100%;
  border-radius: var(--radius-full);
  width: 0;
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.active .risk-bar-fill,
.creative-cost-item:hover .risk-bar-fill {
  width: var(--target-width);
}

.risk-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .creative-cost-item {
    padding: 20px;
    gap: 16px;
    flex-direction: column;
    align-items: flex-start;
  }
  .cost-item-icon-box {
    width: 44px;
    height: 44px;
  }
  .cost-risk-indicator {
    width: 100%;
    justify-content: space-between;
  }
  .risk-bar-bg {
    flex-grow: 1;
    max-width: 180px;
  }
}


/* Creative Solutions Section Styles */
.solutions-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: stretch;
}

@media (max-width: 1024px) {
  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ---- Desktop-only Solutions Redesign ---- */

/* Hide mobile layout on desktop */
.solutions-mobile-only {
  display: none;
}

/* Show mobile layout on mobile only */
@media (max-width: 768px) {
  .solutions-mobile-only {
    display: block;
  }
  .solutions-desktop-grid {
    display: none !important;
  }
  .process-stepper-card {
    display: none !important;
  }
  
  /* Responsive styles for 5-Step Process Banner on Mobile */
  .solutions-steps-banner {
    padding: 32px 24px 44px;
    margin-top: 24px;
    margin-left: -14px;               /* Small left gap (~10px visible) */
    margin-right: -14px;              /* Small right gap (~10px visible) */
    border-radius: 16px;              /* Soft rounded corners */
    overflow: visible;
    width: calc(100% + 28px);         /* Compensate for both side margins */
  }
  .steps-banner-title {
    font-size: 1.3rem;
    margin-bottom: 24px;
    color: #FFFFFF;
    text-align: center !important;
  }
  .steps-banner-row {
    display: block !important;
    position: relative !important;
    padding-left: 8px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  /* Vertical line connecting steps */
  .steps-banner-row::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 24px; /* 8px padding-left + 16px (half of 32px badge) */
    width: 2px;
    height: calc(100% - 64px);
    background-color: rgba(255, 255, 255, 0.15);
    z-index: 1;
  }
  .steps-banner-step {
    display: block !important;
    flex: none !important;
    position: relative !important;
    padding: 0 0 0 48px !important;
    margin: 0 0 28px 0 !important;
    text-align: left !important;
    width: 100% !important;
    max-width: none !important;
    z-index: 2 !important;
    box-sizing: border-box !important;
    min-height: 36px !important;
  }
  .steps-banner-step:last-child {
    margin-bottom: 0 !important;
  }
  .steps-banner-badge {
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    width: 32px !important;
    height: 32px !important;
    font-size: 0.9rem !important;
    margin: 0 !important;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.15) !important;
    z-index: 2 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .steps-banner-label {
    font-size: 0.95rem;
    margin-bottom: 4px;
    font-weight: 700;
    color: #FFFFFF !important;
    line-height: 1.2;
    text-align: left !important;
    display: block !important;
  }
  .steps-banner-desc {
    font-size: 0.8rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.75) !important;
    margin: 0 !important;
    text-align: left !important;
    display: block !important;
  }
  .steps-banner-arrow {
    display: none !important;
  }
  .solutions-steps-banner .btn {
    width: 100%;
    max-width: none;
    padding: 12px 24px;
    font-size: 0.92rem;
    box-sizing: border-box;
    margin-top: 8px;
  }
  /* Ensure the button wrapper div has top spacing */
  .solutions-steps-banner > div:last-child {
    margin-top: 28px !important;
  }
}

/* 3-Column Feature Cards Grid */
.solutions-desktop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.sdg-card {
  background: #FFFFFF;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-top: 3px solid transparent;
}

.sdg-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--primary);
  background: var(--primary-glow);
}

.sdg-icon {
  width: 48px;
  height: 48px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
  flex-shrink: 0;
}

.sdg-card:hover .sdg-icon {
  background-color: var(--primary);
  color: #FFFFFF;
  transform: scale(1.08);
}

.sdg-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--slate-900);
  margin: 0;
  line-height: 1.4;
}

.sdg-desc {
  font-size: 0.9rem;
  color: var(--slate-600);
  line-height: 1.6;
  margin: 0;
}

/* Horizontal 5-Step Process Banner */
.solutions-steps-banner {
  background: linear-gradient(135deg, #0F172A 0%, #1E3A8A 100%);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  color: #FFFFFF;
}

.steps-banner-title {
  font-size: 1.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 40px;
  color: #FFFFFF;
}

.steps-banner-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.steps-banner-step {
  flex: 1;
  text-align: center;
  padding: 0 16px;
}

.steps-banner-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.3);
  transition: all 0.3s ease;
}

.steps-banner-step:hover .steps-banner-badge {
  background: #FFFFFF;
  color: var(--primary);
  transform: scale(1.1);
}

.steps-banner-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.steps-banner-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.45;
  margin: 0;
}

.steps-banner-arrow {
  font-size: 1.5rem;
  color: rgba(255,255,255,0.35);
  margin-top: 12px;
  flex-shrink: 0;
  align-self: flex-start;
}

.what-we-do-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.solution-service-card {
  background-color: #FFFFFF;
  border: 1px solid var(--slate-200);
  border-left: 4px solid var(--primary-light);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.solution-service-card:hover {
  transform: translateY(-2px) translateX(4px);
  border-left-color: var(--primary);
  box-shadow: var(--shadow-md);
  background-color: var(--primary-glow);
}

.service-card-icon {
  background-color: var(--primary-light);
  color: var(--primary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-normal);
}

.solution-service-card:hover .service-card-icon {
  background-color: var(--primary);
  color: #FFFFFF;
  transform: scale(1.08);
}

.service-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 4px;
}

.service-card-desc {
  font-size: 0.9rem;
  color: var(--slate-600);
  line-height: 1.5;
  margin: 0;
}

/* Process Stepper Card */
.process-stepper-card {
  background: linear-gradient(145deg, #FFFFFF 0%, #F8FAFC 100%);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.process-stepper-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--primary) 0%, var(--primary-hover) 100%);
}

.stepper-header-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 30px;
  text-align: center;
}

.stepper-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
}

/* Vertical line connecting steps */
.stepper-list::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 17px;
  width: 2px;
  height: calc(100% - 30px);
  background-color: var(--slate-200);
}

.stepper-step {
  display: flex;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.step-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #FFFFFF;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.stepper-step:hover .step-badge {
  background-color: var(--primary);
  color: #FFFFFF;
  transform: scale(1.1);
  box-shadow: 0 0 0 4px var(--primary-glow);
}

.step-label {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 2px;
  transition: var(--transition-normal);
}

.stepper-step:hover .step-label {
  color: var(--primary-dark);
}

.step-desc {
  font-size: 0.85rem;
  color: var(--slate-500);
  line-height: 1.45;
  margin: 0;
}

@media (max-width: 768px) {
  .process-stepper-card {
    padding: 30px 20px;
  }
}

/* --- Global Homepage Mobile Overrides --- */
@media (max-width: 768px) {
  /* Brand-coloured header on mobile */
  .header,
  .header-active {
    background-color: var(--primary) !important;
    backdrop-filter: none !important;
    border-bottom-color: transparent !important;
    box-shadow: 0 2px 10px rgba(0, 100, 200, 0.3) !important;
  }

  /* Logo text and icons: white on brand header */
  .logo-text {
    color: #ffffff !important;
    font-size: 1.4rem !important;
  }
  .header .logo-img,
  .header-active .logo-img {
    height: 70px !important;
    width: auto !important;
    filter: none;
    object-fit: contain;
  }

  /* Hamburger lines: white */
  .mobile-toggle span {
    background-color: #ffffff !important;
  }
  /* Reduce section vertical padding to eliminate big white gaps */
  .section {
    padding: 40px 0 !important;
  }

  /* Reduce section-header bottom margin */
  .section-header {
    margin-bottom: 30px !important;
  }

  /* Hero Section */
  .hero-section {
    padding-top: 105px !important;
    padding-bottom: 40px !important;
  }
  .hero-title {
    font-size: 2rem !important;
  }
  .hero-cta {
    flex-direction: column;
    gap: 12px;
  }
  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }

  /* Reduce sticky info panel top margin on mobile */
  .creative-sticky-info {
    margin-bottom: 0 !important;
  }

  /* Reduce process stepper card padding */
  .process-stepper-card {
    padding: 24px 16px !important;
  }

  /* Grids */
  .vetted-grid,
  .calculator-grid,
  .sector-grid,
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* Fix inline span 2 on vetted items for mobile */
  .vetted-item,
  .calculator-card,
  [style*="span 2"] {
    grid-column: span 1 !important;
  }

  /* Pre-Footer CTA Section */
  .section-bg-dark h2 {
    font-size: 1.8rem !important;
  }
  .section-bg-dark .btn {
    width: 100%;
    justify-content: center;
  }

  /* Navigation / Tabs */
  .pain-nav {
    flex-wrap: nowrap !important;
    overflow-x: auto;
    padding-bottom: 10px;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
  }
  .pain-nav::-webkit-scrollbar {
    height: 4px;
  }
  .pain-nav::-webkit-scrollbar-thumb {
    background-color: var(--slate-300);
    border-radius: 4px;
  }
  .pain-tab {
    white-space: nowrap;
    flex-shrink: 0;
  }
}

/* Page Hero Header Banner Stylings (optimized for both desktop & mobile) */
.page-hero {
  position: relative;
  overflow: hidden;
  padding-top: 110px !important;
  padding-bottom: 36px !important;
  background: linear-gradient(135deg, #0A192F, #112240) !important; /* Deep professional slate navy gradient */
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  text-align: center !important;
  color: #FFFFFF !important;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 100, 200, 0.2) 0%, rgba(0, 100, 200, 0) 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 1;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -10%;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 110, 200, 0.15) 0%, rgba(10, 110, 200, 0) 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 1;
}

.page-hero .container {
  position: relative;
  z-index: 2; /* Keep content above background glows */
}

.page-hero h1 {
  font-size: 2.0rem !important;
  font-weight: 800 !important;
  margin-bottom: 10px !important;
  color: #FFFFFF !important;
  letter-spacing: -0.02em !important;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.85) !important;
  max-width: 640px !important;
  margin: 0 auto !important;
  font-size: 0.95rem !important;
  line-height: 1.6 !important;
}

.page-hero .section-tag {
  color: #FFFFFF !important;
  background-color: rgba(255, 255, 255, 0.15) !important;
  font-size: 0.75rem !important;
  padding: 4px 12px !important;
  border-radius: var(--radius-full) !important;
  display: inline-block !important;
  margin-bottom: 12px !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
}

/* Fix visibility of quick jump outline buttons in Services hero block */
.page-hero .btn-outline {
  border-color: rgba(255, 255, 255, 0.3) !important;
  color: #FFFFFF !important;
  background-color: rgba(255, 255, 255, 0.05) !important;
}

.page-hero .btn-outline:hover {
  border-color: #FFFFFF !important;
  background-color: rgba(255, 255, 255, 0.15) !important;
  color: #FFFFFF !important;
}

.page-hero .btn-outline svg {
  stroke: #FFFFFF !important;
  fill: none !important;
}

@media (max-width: 768px) {
  .page-hero {
    padding-top: 130px !important;
    padding-bottom: 28px !important;
  }
  .page-hero h1 {
    font-size: 1.65rem !important;
  }
  .page-hero p {
    font-size: 0.88rem !important;
    padding: 0 16px !important;
  }
}

/* Stylish Gradient Divider with Diamond Badge */
.stylish-separator {
  position: relative;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 100, 200, 0) 0%, rgba(0, 100, 200, 0.3) 15%, rgba(0, 100, 200, 0.75) 50%, rgba(0, 100, 200, 0.3) 85%, rgba(0, 100, 200, 0) 100%);
  width: 80%;
  max-width: 500px;
  margin: 24px auto;
  opacity: 0.95;
  clear: both;
  z-index: 10;
}

.stylish-separator::after {
  content: '✦';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #FFFFFF; /* Matches section white bg */
  padding: 0 12px;
  color: var(--primary);
  font-size: 0.85rem;
}

/* Desktop screen adjustments to prevent form clipping (upper/niche cut) */
@media (min-width: 1024px) {
  /* Reduce global section padding to save vertical space on desktop screens */
  .section {
    padding: 70px 0;
  }
  
  /* For form pages (where page-hero is directly followed by a section) */
  .page-hero + .section {
    padding-top: 36px !important;
    padding-bottom: 40px !important;
  }
  
  /* Reduce page-hero header vertical banner padding */
  .page-hero {
    padding-top: 96px !important;
    padding-bottom: 24px !important;
  }
  
  /* Compact form box padding */
  .form-box {
    padding: 32px 36px !important;
  }
  
  /* Reduce space between form controls */
  .form-group {
    margin-bottom: 18px !important;
  }
  
  /* Slightly more compact form controls */
  .form-control {
    padding: 11px 16px !important;
    font-size: 0.92rem !important;
  }
  
  /* Compact file dropzone size */
  .file-dropzone {
    padding: 24px 16px !important;
  }
  
  .file-icon {
    margin-bottom: 8px !important;
  }
  
  /* Tighter grid rows for double column inputs */
  .form-row {
    gap: 16px !important;
  }
  
  /* Tighter subheadings inside form-box to save vertical height */
  .form-box h3 {
    margin-bottom: 12px !important;
    margin-top: 10px !important;
    padding-bottom: 8px !important;
    font-size: 1.15rem !important;
  }
  
  /* Make textareas slightly smaller */
  textarea.form-control {
    min-height: 80px !important;
  }
  
  /* Make urgency alert badge tighter */
  .urgency-badge {
    margin-top: 10px !important;
    padding: 10px 14px !important;
    font-size: 0.82rem !important;
  }
}

/* Reduce spacing between Costs and Solutions sections */
#costs {
  padding-bottom: 0px !important;
}
#solutions {
  padding-top: 10px !important;
}
#costs + .section-divider svg {
  height: 25px;
}

@media (max-width: 768px) {
  #costs {
    padding-bottom: 0px !important;
  }
  #solutions {
    padding-top: 10px !important;
  }
  #costs + .section-divider svg {
    height: 16px;
  }
}

/* ── PAGE-SPECIFIC MIGRATED STYLES ── */

/* ── Services Page Styles ── */
.service-card {
  background-color: #FFFFFF;
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-light);
}
.service-icon-wrapper {
  width: 56px;
  height: 56px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  flex-shrink: 0;
}
.service-icon-wrapper svg {
  width: 28px;
  height: 28px;
}
.service-card ul {
  list-style: none;
  padding: 0;
  font-size: 0.875rem;
  color: var(--slate-800);
  margin-bottom: 28px;
  flex: 1;
}
.service-card ul li {
  margin-bottom: 9px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.service-card ul li svg {
  flex-shrink: 0;
  margin-top: 2px;
}
.category-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}
.category-banner-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.category-banner-icon svg {
  width: 26px;
  height: 26px;
}
.category-banner h2 {
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.category-banner p {
  color: var(--slate-600);
  font-size: 0.95rem;
  margin-top: 4px;
}
.category-divider {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-light), transparent);
  border-radius: 2px;
}
.timeline {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0;
}
.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background-color: var(--primary-light);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
}
.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
  background-color: inherit;
}
.timeline-item::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  right: -10px;
  background-color: #FFFFFF;
  border: 4px solid var(--primary);
  top: 15px;
  border-radius: 50%;
  z-index: 1;
  transition: var(--transition-fast);
}
.left {
  left: 0;
  text-align: right;
}
.right {
  left: 50%;
}
.right::after {
  left: -10px;
}
.timeline-content {
  padding: 24px;
  background-color: #FFFFFF;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--slate-100);
}
.timeline-item:hover::after {
  background-color: var(--primary);
  transform: scale(1.2);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--slate-100);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}
.why-item:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.why-check {
  width: 40px;
  height: 40px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}
.why-check svg {
  width: 20px;
  height: 20px;
}
.why-item p {
  color: var(--slate-700);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
}
.dm-card .service-icon-wrapper {
  background-color: #EEF2FF;
  color: #4F46E5;
}
.dm-card:hover {
  border-color: #C7D2FE;
}

/* ── Hire Page Styles ── */
.urgency-badge {
  display: block;
  background-color: var(--primary-light);
  color: var(--primary-dark);
  border: 1px solid rgba(0, 100, 200, 0.2);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin-top: 12px;
  font-size: 0.85rem;
  font-weight: 500;
  animation: slideDown 0.3s ease forwards;
}

/* ── Apply Page Styles ── */
.file-dropzone {
  border: 2px dashed var(--slate-200);
  background-color: var(--slate-50);
  border-radius: var(--radius-md);
  padding: 36px 20px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
  position: relative;
}
.file-dropzone:hover, .file-dropzone.dragover {
  border-color: var(--primary);
  background-color: var(--primary-light);
}
.file-icon {
  font-size: 2rem;
  color: var(--slate-400);
  margin-bottom: 12px;
  display: inline-block;
}
.file-icon svg {
  width: 32px;
  height: 32px;
}
.file-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

/* ── Contact Page Styles ── */
.contact-card {
  background-color: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 30px;
  margin-bottom: 24px;
  display: flex;
  gap: 20px;
}
.contact-card-icon {
  width: 48px;
  height: 48px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card-icon svg {
  width: 24px;
  height: 24px;
}
.contact-card-title {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--slate-900);
  margin-bottom: 6px;
}
.contact-card-text {
  font-size: 0.95rem;
  color: var(--slate-600);
  line-height: 1.5;
}
.map-container {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 450px;
  width: 100%;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.success-container {
  display: none;
  text-align: center;
  padding: 40px 20px;
  animation: scaleUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.success-icon {
  width: 72px;
  height: 72px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.success-icon svg {
  width: 36px;
  height: 36px;
}

@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .timeline::after {
    left: 31px;
  }
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
    text-align: left;
  }
  .timeline-item::after {
    left: 21px;
    right: auto;
  }
  .left, .right {
    left: 0;
  }
  .category-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  .category-divider {
    display: none;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .map-container {
    height: 300px;
    margin-top: 30px;
  }
}

/* Responsive Jobfer Partner Pill */
.partner-pill {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 246, 252, 0.95) 100%);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 100, 200, 0.18);
  border-radius: 50px;
  padding: 6px 16px 6px 6px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  box-shadow: 0 4px 15px rgba(0, 100, 200, 0.04), inset 0 1px 0 rgba(255,255,255,0.7);
  white-space: nowrap;
  max-width: 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-pill:hover {
  border-color: var(--primary);
  box-shadow: 0 6px 20px rgba(0, 100, 200, 0.1), 0 0 0 4px rgba(0, 100, 200, 0.06);
  transform: translateY(-1px);
}

.partner-pill-tag {
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #0064C8 0%, #0A6EC8 100%);
  text-transform: uppercase;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 50px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 2px 5px rgba(0, 100, 200, 0.2);
}

.partner-pill-divider {
  width: 1px;
  height: 12px;
  background-color: rgba(0, 100, 200, 0.2);
  display: inline-block;
  flex-shrink: 0;
}

.partner-pill-text-desktop {
  color: var(--slate-700);
  font-weight: 500;
  flex-shrink: 0;
  display: inline;
}

.partner-pill-text-desktop strong {
  color: var(--primary-dark);
}

.partner-pill-text-mobile {
  color: var(--slate-700);
  font-weight: 500;
  flex-shrink: 0;
  display: none;
}

.partner-pill-text-mobile strong {
  color: var(--primary-dark);
}

.partner-pill-link-desktop {
  color: #ffffff;
  background-color: var(--slate-800);
  font-weight: 600;
  font-size: 0.78rem;
  padding: 4px 12px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.partner-pill-link-desktop:hover {
  background-color: var(--slate-900);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.partner-pill-link-desktop svg {
  transition: transform 0.2s ease;
}

.partner-pill-link-desktop:hover svg {
  transform: translateX(2px);
}

.partner-pill-link-mobile {
  color: #ffffff;
  background-color: var(--primary);
  font-weight: 600;
  font-size: 0.76rem;
  padding: 4px 10px;
  border-radius: 50px;
  display: none;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.partner-pill-link-mobile:hover {
  background-color: var(--primary-hover);
}

.partner-desktop-only {
  display: inline;
}

.partner-mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .partner-pill {
    padding: 4px 10px 4px 4px;
    font-size: 0.76rem;
    gap: 8px;
    justify-content: center;
  }
  .partner-pill-tag {
    font-size: 0.65rem;
    padding: 3px 8px;
  }
  .partner-pill-divider {
    display: inline-block;
    height: 10px;
  }
  .partner-pill-text-desktop {
    display: none;
  }
  .partner-pill-text-mobile {
    display: inline;
  }
  .partner-pill-link-desktop {
    display: none;
  }
  .partner-pill-link-mobile {
    display: inline-flex;
  }
  .partner-desktop-only {
    display: none;
  }
  .partner-mobile-only {
    display: inline;
  }
}

/* Spinner Animation Keyframes */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Pricing Page Styles */
.pricing-page {
  padding-bottom: 80px;
  background-color: var(--slate-50);
}

.pricing-page .section-header {
  margin-bottom: 20px;
}

.pricing-page .section-title {
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.pricing-page .section-subtitle {
  font-size: 0.85rem;
}


.pricing-hero {
  background: linear-gradient(135deg, #FFFFFF 0%, var(--primary-light) 100%);
  border-bottom: 1px solid var(--slate-200);
  padding: 110px 0 24px;
}

.pricing-hero .section-header {
  margin-bottom: 12px;
}

.pricing-hero .section-title {
  font-size: 1.8rem;
  margin-bottom: 6px;
}

.pricing-hero .section-subtitle {
  font-size: 0.9rem;
}

.pricing-cards-section {
  padding: 20px 0;
  margin-top: -30px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}

.pricing-card {
  background-color: #FFFFFF;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 16px 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.pricing-card.highlighted {
  border: 2px solid var(--primary);
  box-shadow: 0 12px 24px rgba(0, 100, 200, 0.1);
  transform: scale(1.01);
}

.pricing-card.highlighted:hover {
  transform: scale(1.01) translateY(-3px);
}

.popular-banner {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary);
  color: #FFFFFF;
  padding: 3px 10px;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.7rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-md);
}

.pricing-card-header {
  margin-bottom: 8px;
}

.tier-badge {
  display: inline-block;
  font-family: var(--font-headings);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  background-color: var(--primary-light);
  padding: 2px 6px;
  border-radius: var(--radius-full);
  margin-bottom: 4px;
}

.pricing-card.highlighted .tier-badge {
  background-color: var(--primary);
  color: #FFFFFF;
}

.plan-name {
  font-size: 1.2rem;
  margin-bottom: 2px;
  color: var(--slate-900);
}

.plan-desc {
  font-size: 0.72rem;
  color: var(--slate-600);
  margin-bottom: 8px;
  line-height: 1.25;
}

.plan-price-block {
  display: flex;
  align-items: baseline;
  margin-bottom: 2px;
}

.currency {
  font-size: 1rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-right: 2px;
}

.price-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--slate-900);
  font-family: var(--font-headings);
  line-height: 1;
}

.duration {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--slate-600);
  margin-left: 4px;
  letter-spacing: 0.05em;
}

.price-custom {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--slate-900);
  font-family: var(--font-headings);
  margin: 4px 0;
}

.savings-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--success);
  background-color: rgba(16, 185, 129, 0.1);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  margin-top: 2px;
}

.pricing-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  margin-bottom: 12px;
  flex-grow: 1;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  font-size: 0.72rem;
  color: var(--slate-700);
  line-height: 1.25;
}

.check-icon {
  color: var(--success);
  font-weight: bold;
  margin-right: 4px;
  font-size: 0.8rem;
}

.highlight-feature {
  font-weight: 600;
  color: var(--primary-dark);
}

.customization-toggle-wrapper {
  margin-bottom: 8px;
  text-align: center;
}

.btn-customization-toggle {
  background: none;
  border: none;
  font-family: var(--font-headings);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--slate-700);
  cursor: pointer;
  padding: 4px 8px;
  transition: color var(--transition-fast);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.btn-customization-toggle:hover {
  color: var(--primary);
}

.btn-customization-toggle.text-primary {
  color: var(--primary);
}

.btn-customization-toggle.text-primary:hover {
  color: var(--primary-hover);
}

.customization-drawer {
  background-color: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 20px;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.drawer-section {
  margin-bottom: 16px;
}

.drawer-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--slate-600);
  margin-bottom: 8px;
}

.qty-picker {
  display: flex;
  align-items: center;
  gap: 12px;
}

.qty-btn {
  background-color: #FFFFFF;
  border: 1px solid var(--slate-300);
  color: var(--slate-800);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.qty-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.qty-val {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--slate-900);
  min-width: 24px;
  text-align: center;
}

.qty-explanation {
  font-size: 0.8rem;
  color: var(--slate-600);
}

.coupon-input-wrapper {
  display: flex;
  align-items: center;
  background-color: #FFFFFF;
  border: 1px solid var(--slate-300);
  border-radius: var(--radius-sm);
  padding: 4px 8px;
}

.ticket-icon {
  margin-right: 6px;
  font-size: 0.9rem;
}

.coupon-input {
  border: none;
  outline: none;
  font-size: 0.85rem;
  flex-grow: 1;
  padding: 4px;
}

.btn-coupon-apply {
  background-color: var(--slate-200);
  border: none;
  color: var(--slate-800);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-coupon-apply:hover {
  background-color: var(--primary-light);
  color: var(--primary);
}

.coupon-msg {
  font-size: 0.75rem;
  margin-top: 6px;
  font-weight: 600;
}

.coupon-msg.error {
  color: var(--error);
}

.coupon-msg.success {
  color: var(--success);
}

.drawer-summary {
  border-top: 1px dashed var(--slate-300);
  padding-top: 12px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--slate-600);
  margin-bottom: 6px;
}

.summary-row.discount {
  color: var(--success);
  font-weight: 600;
}

.summary-row.total {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-top: 8px;
  border-top: 1px solid var(--slate-200);
  padding-top: 8px;
}

.btn-pricing-cta {
  width: 100%;
  padding: 10px 16px;
  font-size: 0.9rem;
  margin-top: auto;
  border: none;
}

.btn-starter, .btn-enterprise {
  background-color: var(--slate-900);
  color: #FFFFFF;
}

.btn-starter:hover, .btn-enterprise:hover {
  background-color: var(--slate-800);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
}

.btn-growth {
  background-color: var(--primary);
  color: #FFFFFF;
}

.btn-growth:hover {
  background-color: var(--primary-hover);
}

.pricing-card-placeholder-spacer {
  height: 40px;
}

/* Job Role Explanation Card */
.job-role-explanation-section {
  padding: 24px 0;
  background-color: #FFFFFF;
}

.job-role-card {
  background-color: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.job-role-card-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.info-icon {
  font-size: 1.5rem;
}

.job-role-card-title {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.job-role-card-text {
  font-size: 0.85rem;
  color: var(--slate-700);
  line-height: 1.4;
}

.usage-breakdown {
  border-top: 1px solid var(--slate-200);
  padding-top: 16px;
}

.breakdown-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--slate-600);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.breakdown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.breakdown-card {
  background-color: #FFFFFF;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.breakdown-card-info {
  display: flex;
  flex-direction: column;
}

.role-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--slate-900);
}

.openings-count {
  font-size: 0.75rem;
  color: var(--slate-600);
}

.badge-job-role {
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--success);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 6px;
  border-radius: var(--radius-sm);
}

.breakdown-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--primary-light);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--primary-dark);
}

.total-roles-val {
  font-size: 1rem;
}

/* Compare Features Table */
.comparison-table-section {
  padding: 30px 0;
}

.comparison-table-wrapper {
  background-color: #FFFFFF;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th, .comparison-table td {
  padding: 8px 12px;
  border-bottom: 1px solid var(--slate-200);
}

.comparison-table th {
  background-color: var(--slate-50);
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--slate-900);
  font-size: 0.85rem;
}

.comparison-table th:first-child {
  width: 40%;
}

.comparison-table th:not(:first-child), .comparison-table td:not(:first-child) {
  text-align: center;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.feature-name {
  font-weight: 600;
  color: var(--slate-800);
  font-size: 0.82rem;
}

.table-pill {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.table-pill.gray {
  background-color: var(--slate-100);
  color: var(--slate-700);
}

.table-pill.blue {
  background-color: var(--primary-light);
  color: var(--primary-dark);
}

.table-pill.purple {
  background-color: #F3E8FF;
  color: #7E22CE;
}

.table-check {
  font-size: 1rem;
  font-weight: bold;
}

.table-cross {
  color: var(--slate-300);
  font-size: 0.85rem;
}

/* FAQ Accordion Styles */
.faq-section {
  padding: 30px 0;
  background-color: #FFFFFF;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background-color: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--slate-300);
  background-color: var(--slate-100);
}

.faq-question {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  gap: 12px;
}

.faq-question-text {
  flex-grow: 1;
  font-size: 0.9rem;
  color: var(--slate-900);
}

.faq-arrow {
  font-size: 0.75rem;
  color: var(--slate-600);
}

.faq-answer {
  padding: 0 16px 12px 40px;
  font-size: 0.85rem;
  color: var(--slate-700);
  line-height: 1.4;
  animation: fadeIn 0.2s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Bottom Custom Solution Banner */
.custom-solution-section {
  padding: 24px 0 50px;
  background-color: #FFFFFF;
}

.custom-solution-card {
  background-color: var(--slate-900);
  color: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 30px 20px;
  text-align: center;
  box-shadow: var(--shadow-xl);
}

.custom-solution-title {
  font-size: 1.5rem;
  color: #FFFFFF;
  margin-bottom: 6px;
  font-weight: 800;
}

.custom-solution-text {
  font-size: 0.95rem;
  color: var(--slate-300);
  margin-bottom: 16px;
}

.btn-custom-solution {
  background-color: var(--success);
  color: #FFFFFF;
  padding: 10px 24px;
  font-size: 0.9rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-fast);
}

.btn-custom-solution:hover {
  background-color: #0ea572;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

/* Pricing Page Responsive Queries */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .pricing-card.highlighted {
    transform: none;
  }
  
  .pricing-card.highlighted:hover {
    transform: translateY(-5px);
  }
  
  .breakdown-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .pricing-hero {
    padding: 60px 0;
  }
  
  .pricing-card {
    padding: 32px 24px;
  }
  
  .comparison-table th, .comparison-table td {
    padding: 12px 16px;
  }
  
  .custom-solution-card {
    padding: 40px 24px;
  }
  
  .custom-solution-title {
    font-size: 1.6rem;
  }
}
