/* BeCloud Hero Section - Enterprise Level */
/* ===== ENTERPRISE HERO SECTION STYLING ===== */
.hero-enterprise {
  min-height: 100vh;
  position: relative;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #334155 50%, #1e293b 75%, #0f172a 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Sophisticated Background Elements */
.hero-enterprise::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.06) 0%, transparent 50%);
  z-index: 1;
}

/* Subtle Grid Pattern */
.hero-enterprise::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridMove 30s linear infinite;
  z-index: 1;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(80px, 80px);
  }
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: center;
  min-height: 100vh;
  padding: 2rem 0;
}

/* Main Content Area */
.hero-main-content {
  color: white;
}

/* Executive Badge */
.executive-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 50px;
  backdrop-filter: blur(20px);
  margin-bottom: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  color: #a7f3d0;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.executive-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.8);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

/* Headline - Enterprise Level */
.hero-headline {
  font-family: 'Crimson Pro', serif;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Subtext - Enhanced readability */
.hero-subtext {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  max-width: 580px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Controls Section - Better spacing */
.hero-controls {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.controls-row {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

/* Industry Selector - FIXED VERSION */
.industry-selector {
  position: relative;
  min-width: 300px;
}

.industry-selector select {
  width: 100%;
  padding: 1.125rem 1.5rem;
  padding-right: 3.5rem;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: white;
  font-size: 1rem;
  font-weight: 500;
  backdrop-filter: blur(20px);
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 56px;
  line-height: 1.5;
  /* CRITICAL: Remove ALL browser default arrows */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: none;
}

/* Remove browser-specific dropdown arrows */
.industry-selector select::-webkit-outer-spin-button,
.industry-selector select::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.industry-selector select::-ms-expand {
  display: none;
}

/* Firefox specific */
.industry-selector select::-moz-focus-inner {
  border: 0;
}

.industry-selector select:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.industry-selector select:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
  background: rgba(255, 255, 255, 0.18);
}

.industry-selector select option {
  background: #1e293b;
  color: white;
  padding: 1rem;
  font-size: 1rem;
  line-height: 1.5;
}

/* Custom single dropdown arrow */
.industry-selector::after {
  content: '';
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M6 8l4 4 4-4'/%3e%3c/svg%3e") no-repeat center;
  background-size: 12px 12px;
  pointer-events: none;
  z-index: 10;
}

/* Assessment Button - Premium Style */
.assessment-btn-premium {
  position: relative;
  padding: 1.125rem 2.5rem;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.assessment-btn-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.assessment-btn-premium:hover::before {
  left: 100%;
}

.assessment-btn-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
}

.assessment-btn-premium:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.4);
}

.assessment-btn-premium:active {
  transform: translateY(0);
}

/* Dropdown for Assessment Types */
.assessment-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(30, 41, 59, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  margin-top: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  min-width: 350px;
}

.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-header {
  padding: 1rem 1.5rem 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dropdown-item {
  display: block;
  padding: 1rem 1.5rem;
  color: white;
  text-decoration: none;
  transition: all 0.2s ease;
  border-radius: 8px;
  margin: 0 0.5rem;
}

.dropdown-item:hover {
  background: rgba(59, 130, 246, 0.15);
  color: #93c5fd;
  transform: translateX(4px);
}

.assessment-option {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.assessment-icon {
  font-size: 1.25rem;
  width: 24px;
  text-align: center;
}

.assessment-details strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.assessment-details small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
}

/* ===== ASSESSMENT SLIDER CONTROL ===== */
/* Replaces .assessment-dropdown while maintaining hero-controls layout */

.assessment-slider-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
  min-width: 400px;
}

/* Slider Wrapper - matches industry-selector styling */
.slider-wrapper {
  position: relative;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  backdrop-filter: blur(20px);
  overflow: hidden;
  min-height: 56px;
  transition: all 0.3s ease;
}

.slider-wrapper:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Slider Track - horizontal container */
.slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

/* Individual Slider Item */
.slider-item {
  min-width: 100%;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.slider-item.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

/* Slider Content Layout */
.slider-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Assessment Icon */
.assessment-icon-large {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
  border: 2px solid rgba(59, 130, 246, 0.3);
  border-radius: 12px;
  font-size: 1.75rem;
  color: #3b82f6;
  transition: all 0.3s ease;
}

.slider-item[data-assessment-type="ai_readiness"] .assessment-icon-large {
  color: #10b981;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(5, 150, 105, 0.2) 100%);
  border-color: rgba(16, 185, 129, 0.3);
}

.slider-item[data-assessment-type="aws_well_architected"] .assessment-icon-large {
  color: #3b82f6;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(37, 99, 235, 0.2) 100%);
  border-color: rgba(59, 130, 246, 0.3);
}

.slider-item[data-assessment-type="cloud_migration"] .assessment-icon-large {
  color: #8b5cf6;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(124, 58, 237, 0.2) 100%);
  border-color: rgba(139, 92, 246, 0.3);
}

.slider-item[data-assessment-type="security_audit"] .assessment-icon-large {
  color: #dc2626;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.2) 0%, rgba(185, 28, 28, 0.2) 100%);
  border-color: rgba(220, 38, 38, 0.3);
}

/* Assessment Info */
.assessment-info {
  flex: 1;
  min-width: 0;
}

.assessment-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.assessment-description {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.assessment-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.meta-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #10b981;
  letter-spacing: 0.05em;
}

.meta-duration {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.meta-duration i {
  font-size: 0.875rem;
}

/* Slider Navigation */
.slider-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

/* Navigation Arrows */
.nav-arrow {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-arrow:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.nav-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.nav-arrow:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/* Navigation Dots */
.nav-dots-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.nav-dot:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(1.2);
}

.nav-dot.active {
  width: 32px;
  border-radius: 5px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.nav-dot:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/* CTA Button */
.slider-cta-button {
  position: relative;
  padding: 1.125rem 2.5rem;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  align-self: flex-start;
}

.slider-cta-button .btn-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.slider-cta-button:hover .btn-glow {
  left: 100%;
}

.slider-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
}

.slider-cta-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.4);
}

.slider-cta-button:active {
  transform: translateY(0);
}

/* ===== RESPONSIVE DESIGN FOR SLIDER ===== */

@media (max-width: 768px) {
  .assessment-slider-container {
    max-width: 100%;
    min-width: 100%;
  }
  
  .slider-wrapper {
    padding: 1.5rem;
  }
  
  .slider-content {
    flex-direction: column;
    text-align: center;
  }
  
  .assessment-icon-large {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
  }
  
  .assessment-title {
    font-size: 1.125rem;
  }
  
  .assessment-description {
    font-size: 0.875rem;
  }
  
  .slider-navigation {
    gap: 1rem;
  }
  
  .nav-arrow {
    width: 36px;
    height: 36px;
  }
  
  .slider-cta-button {
    width: 100%;
    padding: 1rem 2rem;
  }
}

/* ===== TOUCH DEVICE OPTIMIZATIONS ===== */

@media (hover: none) and (pointer: coarse) {
  .slider-track {
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .slider-item {
    scroll-snap-align: start;
  }
  
  .nav-arrow {
    display: none;
  }
}

/* ===== ACCESSIBILITY FOR SLIDER ===== */

@media (prefers-reduced-motion: reduce) {
  .slider-track,
  .slider-item,
  .nav-arrow,
  .nav-dot,
  .slider-cta-button {
    transition: none;
  }
}

/* Screen reader only text */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ===== HERO CONTENT CONTAINER ===== */

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp var(--duration-700) var(--ease-out);
}

/* ===== HERO BADGE WITH GLASS-MORPHISM ===== */

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: var(--space-2) var(--space-4);
  margin-bottom: var(--space-6);

  /* Glass-morphism backdrop blur effects */
  background: var(--glass-light);
  border: 1px solid var(--glass-light-border);
  border-radius: var(--radius-full);
  backdrop-filter: var(--backdrop-blur-md);
  -webkit-backdrop-filter: var(--backdrop-blur-md);

  /* Typography */
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: var(--tracking-wide);

  /* Smooth transitions */
  transition: var(--transition-smooth);
}

.hero-badge:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}

/* ===== BROWSER COMPATIBILITY FALLBACKS ===== */

/* Fallback for browsers without backdrop-filter support */
@supports not (backdrop-filter: blur(12px)) {
  .hero-badge {
    background: rgba(255, 255, 255, 0.2);
  }

  .kpi-card {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
  }

  .kpi-card:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
  }
}

/* Fallback for CSS Grid */
@supports not (display: grid) {
  .kpi-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .kpi-card {
    flex: 1 1 calc(50% - var(--space-2));
    margin-bottom: var(--space-4);
  }

  @media (min-width: 768px) {
    .kpi-card {
      flex: 1 1 calc(25% - var(--space-3));
    }
  }
}

/* Enhanced fallback for older browsers */
@supports not (transform: translateY(-4px)) {
  .kpi-card:hover {
    margin-top: -4px;
    margin-bottom: 4px;
  }
}

/* ===== RESPONSIVE TYPOGRAPHY SCALING ===== */

.o_website .hero-headline {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  line-height: var(--leading-tight);
  color: white;
  margin-bottom: var(--space-6);

  /* Responsive typography scaling */
  font-size: clamp(var(--text-3xl), 5vw, var(--text-6xl));

  /* Smooth transition animations for content switching */
  transition: all var(--duration-500) var(--ease-smooth);
  opacity: 1;
  transform: translateY(0);

  /* Ensure text is visible with text shadow */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-headline.switching {
  opacity: 0;
  transform: translateY(10px);
}

.o_website .hero-subtext {
  font-family: var(--font-body);
  font-weight: var(--font-weight-normal);
  line-height: var(--leading-relaxed);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--space-12);
  max-width: 600px;

  /* Responsive typography scaling */
  font-size: clamp(var(--text-base), 2vw, var(--text-xl));

  /* Smooth transition animations for content switching */
  transition: all var(--duration-500) var(--ease-smooth);
  opacity: 1;
  transform: translateY(0);

  /* Ensure text is visible with subtle text shadow */
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.hero-subtext.switching {
  opacity: 0;
  transform: translateY(10px);
}

/* ===== HERO CONTROLS STYLING ===== */

.hero-controls {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
  flex-wrap: wrap;
  align-items: center;
}

/* Industry Selector Styling */
.o_website .hero-controls .form-select {
  min-width: 260px;
  min-height: 48px;
  padding: var(--space-3) var(--space-4);
  line-height: 1.5;

  /* Glass-morphism styling */
  background: var(--glass-light);
  border: 1px solid var(--glass-light-border);
  border-radius: var(--radius-button);
  backdrop-filter: var(--backdrop-blur-base);
  -webkit-backdrop-filter: var(--backdrop-blur-base);

  /* Typography */
  color: white;
  font-size: var(--text-base);
  font-weight: var(--font-weight-medium);

  /* Transitions */
  transition: var(--transition-smooth);
}

/* Dropdown options styling - dark text on light background */
.o_website .hero-controls .form-select option {
  background: white;
  color: var(--color-neutral-900);
  padding: var(--space-3) var(--space-3);
  font-weight: var(--font-weight-normal);
  text-shadow: none;
  line-height: 1.6;
  min-height: 40px;
  display: flex;
  align-items: center;
}

.hero-controls .form-select:focus {
  outline: none;
  border-color: var(--color-primary-400);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
  background: rgba(255, 255, 255, 0.15);
}

.hero-controls .form-select:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

/* CTA Button Styling */
.hero-controls .btn-primary {
  padding: var(--space-3) var(--space-6);
  background: var(--gradient-card);
  border: none;
  border-radius: var(--radius-button);

  /* Typography */
  color: white;
  font-size: var(--text-base);
  font-weight: var(--font-weight-semibold);
  text-decoration: none;

  /* Effects */
  box-shadow: var(--shadow-button);
  transition: var(--transition-smooth);
}

.hero-controls .btn-primary:hover {
  background: var(--gradient-card-hover);
  box-shadow: var(--shadow-button-hover);
  transform: translateY(-2px);
  color: white;
}

.hero-controls .btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-button);
}

/* ===== KPI CARDS PROFESSIONAL LAYOUT ===== */

.kpi-grid {
  display: grid;
  /* Responsive grid: 2 columns on mobile, 4 on desktop */
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-8);
  width: 100%;
}

/* KPI Cards in Hero Sidebar Layout */
.hero-kpi-sidebar {
  /* Vertical layout for sidebar */
  grid-template-columns: 1fr;
  gap: var(--space-3);
  margin-top: 0;
  padding-left: var(--space-6);

  /* Center alignment for better visual balance */
  justify-items: center;
  align-items: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-kpi-sidebar .kpi-card {
  width: 100%;
  max-width: 200px;
  min-height: 80px;
  padding: var(--space-4);

  /* Enhanced glass effect for sidebar */
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);

  /* Subtle animation delay for staggered entrance */
  animation-delay: calc(0.1s * var(--card-index, 0));
}

.kpi-card {
  /* Glass-morphism styling with backdrop blur */
  background: var(--glass-light);
  border: 1px solid var(--glass-light-border);
  border-radius: var(--radius-card);
  backdrop-filter: var(--backdrop-blur-md);
  -webkit-backdrop-filter: var(--backdrop-blur-md);

  /* Professional layout */
  padding: var(--space-5) var(--space-4);
  text-align: center;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  /* Smooth hover effects with transform and shadow changes */
  transition: all var(--duration-300) var(--ease-smooth);
  position: relative;
  overflow: hidden;
  cursor: default;

  /* Enhanced shadow for professional appearance */
  box-shadow: var(--shadow-sm);
}

/* Enhanced glass-morphism overlay effect */
.kpi-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
  opacity: 0;
  transition: opacity var(--duration-300) var(--ease-smooth);
  pointer-events: none;
}

/* Subtle border highlight effect */
.kpi-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-card);
  opacity: 0;
  transition: opacity var(--duration-300) var(--ease-smooth);
}

/* Professional hover animations */
.kpi-card:hover {
  /* Enhanced glass-morphism on hover */
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);

  /* Smooth transform and shadow changes */
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-xl);

  /* Subtle glow effect */
  box-shadow: var(--shadow-xl), 0 0 20px rgba(59, 130, 246, 0.1);
}

.kpi-card:hover::before {
  opacity: 1;
}

.kpi-card:hover::after {
  opacity: 1;
}

/* Active state for touch devices */
.kpi-card:active {
  transform: translateY(-2px) scale(1.01);
  transition-duration: var(--duration-150);
}

.kpi-value {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-xl), 3vw, var(--text-2xl));
  font-weight: var(--font-weight-bold);
  color: white;
  margin-bottom: var(--space-1);
  position: relative;
  z-index: 2;
  line-height: var(--leading-tight);

  /* Smooth transition for value changes */
  transition: all var(--duration-300) var(--ease-smooth);
}

.kpi-label {
  font-size: var(--text-xs);
  font-weight: var(--font-weight-medium);
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  position: relative;
  z-index: 2;
  line-height: var(--leading-normal);

  /* Improved readability */
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);

  /* Smooth transition */
  transition: all var(--duration-300) var(--ease-smooth);
}

/* Enhanced hover effects for content */
.kpi-card:hover .kpi-value {
  color: rgba(255, 255, 255, 1);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.kpi-card:hover .kpi-label {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* ===== ENTRANCE ANIMATIONS ===== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== KPI CARDS ENTRANCE ANIMATIONS ===== */

/* Staggered animation delays for professional reveal */
.kpi-card:nth-child(1) {
  animation: fadeInUp var(--duration-700) var(--ease-out) 0.2s both;
}

.kpi-card:nth-child(2) {
  animation: fadeInUp var(--duration-700) var(--ease-out) 0.3s both;
}

.kpi-card:nth-child(3) {
  animation: fadeInUp var(--duration-700) var(--ease-out) 0.4s both;
}

.kpi-card:nth-child(4) {
  animation: fadeInUp var(--duration-700) var(--ease-out) 0.5s both;
}

/* Enhanced fade-in animation for KPI cards */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Subtle pulse animation for values (optional enhancement) */
@keyframes subtlePulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.02);
  }
}

/* Apply pulse to values on hover for extra engagement */
.kpi-card:hover .kpi-value {
  animation: subtlePulse var(--duration-1000) var(--ease-smooth) infinite;
}

/* ===== ACCESSIBILITY ENHANCEMENTS ===== */

/* Focus states for keyboard navigation */
.kpi-card:focus {
  outline: 2px solid var(--color-primary-400);
  outline-offset: 2px;
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Screen reader support */
.kpi-card[role="button"] {
  cursor: pointer;
}

.kpi-card[aria-label] {
  /* Ensure proper spacing for screen readers */
  position: relative;
}

/* High contrast mode enhancements */
@media (prefers-contrast: high) {
  .kpi-card {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid white;
    color: var(--color-neutral-900);
  }

  .kpi-value,
  .kpi-label {
    color: var(--color-neutral-900);
    text-shadow: none;
  }

  .kpi-card:hover {
    background: white;
    border-color: var(--color-primary-500);
  }

  .kpi-card::before,
  .kpi-card::after {
    display: none;
  }
}

/* ===== RESPONSIVE DESIGN ===== */

/* ===== RESPONSIVE KPI GRID DESIGN ===== */
/* Note: Main responsive behavior is now handled by layout/responsive.css */

/* Mobile-first: 2 columns on mobile */
@media (max-width: 640px) {
  .hero-section {
    min-height: 100vh;
    padding: var(--space-4) 0;
  }

  .kpi-value {
    font-size: var(--text-lg);
    margin-bottom: var(--space-0-5);
  }

  .kpi-label {
    font-size: 0.6875rem;
    /* 11px */
  }

  .hero-badge {
    font-size: var(--text-xs);
    padding: var(--space-1-5) var(--space-3);
  }

  /* Mobile: Adjust industry selector width and height */
  .hero-controls .form-select {
    min-width: 240px;
    width: 100%;
    min-height: 52px;
    padding: var(--space-4) var(--space-4);
    line-height: 1.4;
  }

  /* Mobile: Stack KPI cards below content */
  .hero-kpi-sidebar {
    grid-template-columns: repeat(2, 1fr);
    flex-direction: row;
    flex-wrap: wrap;
    padding-left: 0;
    margin-top: var(--space-6);
    gap: var(--space-3);
  }

  .hero-kpi-sidebar .kpi-card {
    max-width: none;
    min-height: 70px;
    padding: var(--space-3);
  }
}

/* Small tablets: 2 columns with more spacing */
@media (min-width: 641px) and (max-width: 767px) {
  .kpi-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }

  .kpi-card {
    padding: var(--space-5) var(--space-4);
    min-height: 95px;
  }
}

/* Tablets: 4 columns layout starts */
@media (min-width: 768px) and (max-width: 1023px) {
  .hero-controls {
    flex-direction: row;
    justify-content: flex-start;
  }

  .kpi-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
  }

  .kpi-card {
    padding: var(--space-4);
    min-height: 100px;
  }

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

  /* Tablet: Sidebar layout for KPI cards */
  .hero-kpi-sidebar {
    grid-template-columns: 1fr;
    flex-direction: column;
    padding-left: var(--space-4);
    gap: var(--space-4);
  }

  .hero-kpi-sidebar .kpi-card {
    max-width: 180px;
    min-height: 85px;
  }
}

/* Desktop: 4 columns with enhanced spacing and sizing */
@media (min-width: 1024px) {
  .hero-section {
    padding: var(--space-8) 0;
  }

  .kpi-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-5);
    margin-top: var(--space-10);
  }

  .kpi-card {
    padding: var(--space-6) var(--space-5);
    min-height: 110px;
  }

  .kpi-value {
    font-size: var(--text-2xl);
  }

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

  /* Desktop: Vertical sidebar layout */
  .hero-kpi-sidebar {
    grid-template-columns: 1fr;
    flex-direction: column;
    padding-left: var(--space-6);
    gap: var(--space-4);
    justify-content: center;
    height: 100%;
  }

  .hero-kpi-sidebar .kpi-card {
    max-width: 220px;
    min-height: 90px;
    padding: var(--space-5);
  }
}

/* Large desktop: Enhanced spacing and effects */
@media (min-width: 1280px) {
  .kpi-grid {
    gap: var(--space-6);
    max-width: 800px;
  }

  .kpi-card {
    padding: var(--space-6);
    min-height: 120px;
  }

  .kpi-card:hover {
    transform: translateY(-6px) scale(1.03);
  }

  /* Large desktop: Enhanced sidebar layout */
  .hero-kpi-sidebar {
    gap: var(--space-5);
    padding-left: var(--space-8);
  }

  .hero-kpi-sidebar .kpi-card {
    max-width: 240px;
    min-height: 100px;
    padding: var(--space-6);
  }

  .hero-kpi-sidebar .kpi-card:hover {
    transform: translateY(-4px) scale(1.02);
  }
}

/* Large screens - prevent content from becoming too large */
@media (min-width: 1536px) {
  .hero-headline {
    font-size: clamp(var(--text-4xl), 4vw, var(--text-5xl));
  }

  .hero-subtext {
    font-size: clamp(var(--text-lg), 1.5vw, var(--text-xl));
  }
}

/* ===== ACCESSIBILITY ENHANCEMENTS ===== */

/* High contrast mode support */
@media (prefers-contrast: high) {
  .hero-badge {
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-neutral-900);
    border-color: white;
  }

  .kpi-card {
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-neutral-900);
    border-color: white;
  }

  .kpi-value,
  .kpi-label {
    color: var(--color-neutral-900);
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {

  .hero-content,
  .kpi-card:nth-child(n) {
    animation: none;
  }

  .hero-headline,
  .hero-subtext,
  .hero-badge,
  .kpi-card,
  .hero-controls .form-select,
  .hero-controls .btn-primary {
    transition: none;
  }

  .hero-headline.switching,
  .hero-subtext.switching {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Focus management for keyboard navigation */
.hero-controls .form-select:focus,
.hero-controls .btn-primary:focus {
  outline: 2px solid var(--color-primary-400);
  outline-offset: 2px;
}

/* ===== TOUCH DEVICE OPTIMIZATIONS ===== */

/* Touch-friendly interactions for mobile devices */
@media (hover: none) and (pointer: coarse) {
  .kpi-card {
    /* Remove hover effects on touch devices */
    transition: all var(--duration-200) var(--ease-smooth);
  }

  .kpi-card:hover {
    /* Reset hover transforms for touch devices */
    transform: none;
    background: var(--glass-light);
    border-color: var(--glass-light-border);
    box-shadow: var(--shadow-sm);
  }

  .kpi-card:hover::before,
  .kpi-card:hover::after {
    opacity: 0;
  }

  .kpi-card:active {
    /* Touch feedback with subtle scale */
    transform: scale(0.97);
    background: rgba(255, 255, 255, 0.15);
    transition-duration: var(--duration-100);
  }

  .kpi-card:active::before {
    opacity: 0.5;
  }

  .hero-controls .btn-primary:hover {
    transform: none;
  }

  .hero-controls .btn-primary:active {
    transform: scale(0.98);
  }
}

/* Enhanced touch targets for accessibility */
@media (max-width: 768px) {
  .kpi-card {
    /* Ensure minimum touch target size */
    min-height: 88px;
    padding: var(--space-4);
  }

  /* Increase tap area without visual changes */
  .kpi-card::before {
    /* Extend touch area slightly */
    margin: -2px;
  }
}

/* ===== CONTENT SWITCHING ANIMATIONS ===== */

/* Smooth transition animations for content switching */
.hero-content-wrapper {
  position: relative;
}

.hero-content-switching .hero-headline,
.hero-content-switching .hero-subtext {
  transition: all var(--duration-300) var(--ease-smooth);
}

/* ===== LOADING STATES ===== */

/* Loading state for content switching */
.hero-content-loading {
  position: relative;
}

.hero-content-loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin var(--duration-1000) linear infinite;
}

/* KPI Card loading state */
.kpi-card.loading {
  pointer-events: none;
}

.kpi-card.loading .kpi-value,
.kpi-card.loading .kpi-label {
  opacity: 0.5;
  animation: shimmer var(--duration-1000) ease-in-out infinite;
}

.kpi-card.loading::before {
  opacity: 1;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.1) 100%);
  animation: shimmerMove 1.5s ease-in-out infinite;
}

/* Animation keyframes */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes shimmer {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 0.8;
  }
}

@keyframes shimmerMove {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

/* ===== PRINT STYLES ===== */

@media print {
  .hero-section {
    background: white !important;
    color: black !important;
    min-height: auto !important;
    padding: var(--space-8) 0 !important;
  }

  .hero-section::before,
  .hero-section::after {
    display: none !important;
  }

  .hero-badge,
  .kpi-card {
    background: white !important;
    border: 1px solid #ccc !important;
    color: black !important;
  }

  .hero-headline,
  .hero-subtext,
  .kpi-value,
  .kpi-label {
    color: black !important;
  }
}

/* 
Trust Indicators - Better spacing */
.trust-indicators {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  animation: fadeInUp 0.8s ease-out 1s both;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
}

.trust-icon {
  color: #10b981;
  font-size: 1.1rem;
}

/* ===== KPI SIDEBAR - ENTERPRISE DASHBOARD STYLE ===== */
.kpi-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  animation: fadeInRight 0.8s ease-out 0.6s both;
}

.kpi-sidebar-header {
  text-align: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.kpi-sidebar-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.kpi-sidebar-subtitle {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.kpi-card-premium {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.kpi-card-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6, #10b981);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.kpi-card-premium:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.kpi-card-premium:hover::before {
  opacity: 1;
}

.kpi-value-premium {
  font-size: 1.875rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.5rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.kpi-label-premium {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design - Enhanced */
@media (max-width: 1200px) {
  .hero-content-grid {
    grid-template-columns: 1fr 350px;
    gap: 3rem;
  }
}

@media (max-width: 1024px) {
  .hero-content-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .kpi-sidebar {
    max-width: 500px;
    margin: 0 auto;
  }

  .controls-row {
    justify-content: center;
  }

  .hero-subtext {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .hero-container {
    padding: 0 1.5rem;
  }

  .hero-headline {
    font-size: 2.25rem;
  }

  .hero-subtext {
    font-size: 1.0625rem;
  }

  .controls-row {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .industry-selector {
    min-width: auto;
  }

  .assessment-btn-premium {
    width: 100%;
    justify-content: center;
  }

  .trust-indicators {
    flex-direction: column;
    gap: 1rem;
  }

  .dropdown-menu {
    min-width: auto;
    left: 0;
    right: 0;
  }
}

@media (max-width: 480px) {
  .hero-container {
    padding: 0 1rem;
  }

  .kpi-sidebar {
    padding: 1.5rem;
  }

  .kpi-card-premium {
    padding: 1.25rem;
  }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-enterprise::after {
    animation: none;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .hero-enterprise {
    background: #000;
  }

  .executive-badge {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
  }

  .industry-selector select {
    background: rgba(255, 255, 255, 0.9);
    color: black;
    border-color: white;
  }

  .kpi-sidebar {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
  }
}

/* Scrol
l Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  animation: fadeInUp 0.8s ease-out 1.2s both;
}

.scroll-text {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.scroll-arrow {
  font-size: 1.25rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

/* Assessment Dropdown Styling - Enhanced UX */
.assessment-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  z-index: 1000;
  display: none;
  width: 600px;
  max-width: 90vw;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border: 2px solid rgba(134, 188, 37, 0.3);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  overflow: hidden;
  animation: dropdownFadeIn 0.2s ease-out;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  padding: 1rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #86bc25;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(134, 188, 37, 0.1);
  border-bottom: 2px solid rgba(134, 188, 37, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Horizontal Carousel Container */
.o_website #assessmentOptions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  gap: 1rem;
  padding: 1.25rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(134, 188, 37, 0.5) rgba(255, 255, 255, 0.1);
}

#assessmentOptions::-webkit-scrollbar {
  height: 6px;
}

#assessmentOptions::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

#assessmentOptions::-webkit-scrollbar-thumb {
  background: rgba(134, 188, 37, 0.5);
  border-radius: 3px;
}

#assessmentOptions::-webkit-scrollbar-thumb:hover {
  background: rgba(134, 188, 37, 0.7);
}

.o_website .dropdown-menu .dropdown-item {
  flex: 0 0 260px;
  display: block;
  padding: 0;
  margin: 0;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}

.dropdown-item:hover {
  background: linear-gradient(135deg, rgba(134, 188, 37, 0.15) 0%, rgba(134, 188, 37, 0.05) 100%);
  border-color: rgba(134, 188, 37, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.dropdown-item:active {
  transform: translateY(0);
  background: rgba(134, 188, 37, 0.2);
}

.o_website .dropdown-menu .assessment-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  cursor: pointer;
  height: 100%;
  min-height: 180px;
}

.assessment-icon {
  font-size: 2.5rem;
  width: 100%;
  text-align: center;
  flex-shrink: 0;
  margin-bottom: 0.5rem;
}

.assessment-details {
  flex: 1;
  width: 100%;
}

.assessment-details strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.assessment-details small {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8rem;
  line-height: 1.4;
}

/* Carousel Navigation Hint */
.dropdown-header::after {
  content: '← Scroll →';
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* ===== ASSESSMENT SLIDER CONTROL ===== */
/* Replaces assessment dropdown while maintaining hero-controls layout */

.assessment-slider-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
  min-width: 400px;
}

/* Slider Wrapper - matches industry-selector styling */
.slider-wrapper {
  position: relative;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  min-height: 56px;
  transition: all 0.3s ease;
}

.slider-wrapper:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Slider Track - horizontal container */
.slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

/* Individual Slider Item */
.slider-item {
  min-width: 100%;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.slider-item.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

/* Slider Content Layout */
.slider-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Assessment Icon */
.assessment-icon-large {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
  border: 2px solid rgba(59, 130, 246, 0.3);
  border-radius: 12px;
  font-size: 1.75rem;
  color: #3b82f6;
  transition: all 0.3s ease;
}

/* Color-coded assessment icons */
.slider-item[data-assessment-type="ai_readiness"] .assessment-icon-large {
  color: #10b981;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(5, 150, 105, 0.2) 100%);
  border-color: rgba(16, 185, 129, 0.3);
}

.slider-item[data-assessment-type="aws_well_architected"] .assessment-icon-large {
  color: #3b82f6;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(37, 99, 235, 0.2) 100%);
  border-color: rgba(59, 130, 246, 0.3);
}

.slider-item[data-assessment-type="cloud_migration"] .assessment-icon-large {
  color: #8b5cf6;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(124, 58, 237, 0.2) 100%);
  border-color: rgba(139, 92, 246, 0.3);
}

.slider-item[data-assessment-type="security_audit"] .assessment-icon-large {
  color: #dc2626;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.2) 0%, rgba(185, 28, 28, 0.2) 100%);
  border-color: rgba(220, 38, 38, 0.3);
}

/* Assessment Info */
.assessment-info {
  flex: 1;
  min-width: 0;
}

.assessment-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.assessment-description {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.assessment-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.meta-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #10b981;
  letter-spacing: 0.05em;
}

.meta-duration {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.meta-duration i {
  font-size: 0.875rem;
}

/* Slider Navigation */
.slider-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

/* Navigation Arrows */
.nav-arrow {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-arrow:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.nav-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.nav-arrow:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/* Navigation Dots */
.nav-dots-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.nav-dot:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(1.2);
}

.nav-dot.active {
  width: 32px;
  border-radius: 5px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.nav-dot:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/* CTA Button */
.slider-cta-button {
  position: relative;
  padding: 1.125rem 2.5rem;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  align-self: flex-start;
}

.slider-cta-button .btn-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.slider-cta-button:hover .btn-glow {
  left: 100%;
}

.slider-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
}

.slider-cta-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.4);
}

.slider-cta-button:active {
  transform: translateY(0);
}

.slider-cta-button .cta-text {
  position: relative;
  z-index: 1;
}

.slider-cta-button i {
  position: relative;
  z-index: 1;
}

/* ===== RESPONSIVE DESIGN FOR SLIDER ===== */

@media (max-width: 768px) {
  .assessment-slider-container {
    min-width: 100%;
    max-width: 100%;
  }
  
  .slider-wrapper {
    padding: 1.25rem;
  }
  
  .slider-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .assessment-icon-large {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
  }
  
  .assessment-title {
    font-size: 1.125rem;
  }
  
  .assessment-description {
    font-size: 0.875rem;
  }
  
  .slider-navigation {
    gap: 1rem;
    margin-top: 1.25rem;
  }
  
  .nav-arrow {
    width: 36px;
    height: 36px;
    font-size: 0.75rem;
  }
  
  .slider-cta-button {
    width: 100%;
    padding: 1rem 2rem;
  }
}

@media (max-width: 480px) {
  .assessment-slider-container {
    min-width: 100%;
  }
  
  .slider-wrapper {
    padding: 1rem;
  }
  
  .assessment-title {
    font-size: 1rem;
  }
  
  .assessment-description {
    font-size: 0.8125rem;
  }
  
  .assessment-meta {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }
}

/* ===== TOUCH DEVICE OPTIMIZATIONS ===== */

@media (hover: none) and (pointer: coarse) {
  .slider-track {
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .slider-item {
    scroll-snap-align: start;
  }
  
  .nav-arrow {
    display: none;
  }
  
  .slider-wrapper:hover {
    transform: none;
  }
}

/* ===== ACCESSIBILITY - REDUCED MOTION ===== */

@media (prefers-reduced-motion: reduce) {
  .slider-track,
  .slider-item,
  .nav-arrow,
  .nav-dot,
  .slider-cta-button,
  .slider-wrapper {
    transition: none;
  }
  
  .slider-cta-button .btn-glow {
    display: none;
  }
}

/* ===== FALLBACK FOR BROWSERS WITHOUT BACKDROP-FILTER ===== */

@supports not (backdrop-filter: blur(20px)) {
  .slider-wrapper {
    background: rgba(255, 255, 255, 0.2);
  }
  
  .slider-wrapper:hover {
    background: rgba(255, 255, 255, 0.25);
  }
}

/* ===== SCREEN READER ONLY CLASS ===== */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
