/* ====================================
   PARTSFORM - Global Industrial Parts Sourcing Platform
   Professional Light Mode Design
   Colors: #F8FAFB (bg), #2B5278 (primary), #3B82F6 (accent)
   ==================================== */

/* ====================================
   FONTS & RESET
   ==================================== */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');

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

:root {
  /* Light Mode Colors - Professional Blue & White */
  --background: #f8fafb;
  --foreground: #1a2b3d;
  --card: #ffffff;
  --card-foreground: #1a2b3d;
  --primary: #2b5278;
  --primary-foreground: #ffffff;
  --secondary: #e8f1f8;
  --secondary-foreground: #2b5278;
  --muted: #f1f5f9;
  --muted-foreground: #64748b;
  --accent: #e0effa;
  --accent-foreground: #1a2b3d;
  --accent-blue: #3b82f6;
  --accent-green: #10b981;
  --destructive: #dc2626;
  --border: rgba(43, 82, 120, 0.12);
  --input-background: #f8fafb;
  --ring: rgba(43, 82, 120, 0.3);
  --radius: 0.625rem;

  /* Text Colors */
  --text-primary: #1a2b3d;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-subtle: #94a3b8;

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(43, 82, 120, 0.08);
  --shadow-md: 0 8px 20px rgba(43, 82, 120, 0.12);
  --shadow-lg: 0 20px 40px rgba(43, 82, 120, 0.15);
  --shadow-xl: 0 30px 60px rgba(43, 82, 120, 0.2);

  /* Transitions */
  --transition-base: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  --transition-fast: all 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI',
    sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  /* max-width: 1400px; */
  margin: 0 auto;
  padding: 0 2rem;
}

/* ====================================
   NAVIGATION BAR - PROFESSIONAL GLASSMORPHISM EFFECT
   ==================================== */
.nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: rgba(43, 82, 120, 0.05);
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 1rem 0;
  box-shadow: 0 4px 24px rgba(43, 82, 120, 0.08),
    0 0 40px rgba(59, 130, 246, 0.05);
}

.nav-bar.scrolled {
  /* Enhanced Glassmorphism Effect */
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);

  /* Glowing border effect */
  border-bottom: 1px solid rgba(59, 130, 246, 0.15);

  /* Professional multi-layered shadow with glow */
  box-shadow: 0 0 40px rgba(59, 130, 246, 0.12),
    0 8px 32px 0 rgba(43, 82, 120, 0.15), 0 4px 16px 0 rgba(0, 0, 0, 0.06),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.6),
    inset 0 -1px 0 0 rgba(59, 130, 246, 0.1);

  /* Smooth padding transition */
  padding: 0.75rem 0;

  /* Additional glass effect properties */
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  will-change: backdrop-filter, background-color, box-shadow;
}

/* Glass overlay effect for enhanced glassmorphism */
.nav-bar.scrolled::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 50%,
    rgba(255, 255, 255, 0.02) 100%
  );
  pointer-events: none;
  z-index: -1;
  border-radius: 0;
}

.nav-gradient-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(43, 82, 120, 0.5) 20%,
    rgba(59, 130, 246, 0.7) 40%,
    rgba(59, 130, 246, 0.9) 50%,
    rgba(59, 130, 246, 0.7) 60%,
    rgba(43, 82, 120, 0.5) 80%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.7), 0 0 50px rgba(43, 82, 120, 0.4),
    0 0 70px rgba(59, 130, 246, 0.3);
  animation: neonPulse 3s ease-in-out infinite;
}

@keyframes neonPulse {
  0%,
  100% {
    filter: brightness(1);
  }

  50% {
    filter: brightness(1.3);
  }
}

.nav-bar.scrolled .nav-gradient-top {
  opacity: 1;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 2rem;
  transition: padding 0.4s ease;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-image {
  height: 45px;
  width: auto;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 4px 12px rgba(43, 82, 120, 0.25));
}

.nav-bar.scrolled .logo-image {
  filter: drop-shadow(0 6px 16px rgba(59, 130, 246, 0.3))
    drop-shadow(0 0 20px rgba(43, 82, 120, 0.2));
}

.logo-image:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 8px 20px rgba(59, 130, 246, 0.4))
    drop-shadow(0 0 30px rgba(43, 82, 120, 0.3));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 1rem;
}

.nav-link {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  position: relative;
  padding: 0.5rem 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-bar.scrolled .nav-link {
  color: #1a2b3d;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
}

.nav-bar.scrolled .nav-link:hover,
.nav-bar.scrolled .nav-link.active {
  color: #3b82f6;
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.4),
    0 0 40px rgba(59, 130, 246, 0.2);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #60a5fa, #3b82f6);
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-bar.scrolled .nav-link::after {
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.6), 0 0 20px rgba(59, 130, 246, 0.4);
}

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

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

/* ====================================
   USER PROFILE DROPDOWN
   ==================================== */
.user-profile-dropdown {
  position: relative;
  display: flex;
}

.user-profile-dropdown[style*="display: none"] {
  display: none !important;
}

.user-profile-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-bar.scrolled .user-profile-btn {
  background: rgba(59, 130, 246, 0.08);
  border: 1.5px solid rgba(59, 130, 246, 0.3);
}

.user-profile-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(96, 165, 250, 0.5);
  transform: scale(1.02);
}

.nav-bar.scrolled .user-profile-btn:hover {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.5);
}

.user-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 0.75rem;
}

.user-avatar .avatar-initials {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.user-avatar .avatar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Compact profile button - circle only */
.user-profile-btn-compact {
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
}

.user-profile-btn-compact .user-avatar {
  width: 36px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.nav-bar.scrolled .user-profile-btn-compact .user-avatar {
  border-color: rgba(59, 130, 246, 0.3);
}

.user-profile-btn-compact:hover .user-avatar {
  border-color: rgba(59, 130, 246, 0.8);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

/* User dropdown header */
.user-dropdown-header {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.user-dropdown-name {
  font-weight: 600;
  color: #1a2b3d;
  font-size: 0.9rem;
}

.user-dropdown-email {
  font-size: 0.75rem;
  color: #64748b;
}

/* Logout button styling */
.user-dropdown-logout {
  color: #dc2626;
}

.user-dropdown-logout:hover {
  background: rgba(220, 38, 38, 0.08);
  color: #dc2626;
}

.user-avatar i {
  width: 14px;
  height: 14px;
}

.user-name {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
}

.nav-bar.scrolled .user-name {
  color: #1a2b3d;
}

.user-chevron {
  width: 14px;
  height: 14px;
  color: rgba(255, 255, 255, 0.8);
  transition: transform 0.3s ease;
}

.nav-bar.scrolled .user-chevron {
  color: #64748b;
}

.user-profile-btn:hover .user-chevron {
  transform: rotate(180deg);
}

.user-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 200px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(43, 82, 120, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(43, 82, 120, 0.15),
    0 0 0 1px rgba(59, 130, 246, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10001;
  overflow: hidden;
}

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

.user-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1a2b3d;
  text-decoration: none;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.user-dropdown-item:hover {
  background: rgba(59, 130, 246, 0.08);
  color: #3b82f6;
}

.user-dropdown-item i {
  width: 18px;
  height: 18px;
}

.user-dropdown-divider {
  height: 1px;
  background: rgba(43, 82, 120, 0.1);
  margin: 0.5rem 0;
}

/* ====================================
   AUTH NOTIFICATIONS
   ==================================== */
.auth-notification {
  position: fixed;
  top: 100px;
  right: 2rem;
  z-index: 10002;
  min-width: 300px;
  max-width: 400px;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(43, 82, 120, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(43, 82, 120, 0.15);
  opacity: 0;
  transform: translateX(400px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.auth-notification.show {
  opacity: 1;
  transform: translateX(0);
}

.auth-notification-success {
  border-left: 4px solid #10b981;
}

.auth-notification-error {
  border-left: 4px solid #ef4444;
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1a2b3d;
}

.notification-content i {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.auth-notification-success .notification-content i {
  color: #10b981;
}

.auth-notification-error .notification-content i {
  color: #ef4444;
}

/* ====================================
   MOBILE MENU BUTTON - NEW DESIGN
   ==================================== */
.mobile-menu-btn {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10002;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

.mobile-menu-btn:hover {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(59, 130, 246, 0.3);
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(59, 130, 246, 0.2) inset;
}

.mobile-menu-btn:active {
  transform: scale(0.95);
}

.nav-bar.scrolled .mobile-menu-btn {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(59, 130, 246, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.menu-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  gap: 5px;
}

.menu-line {
  width: 20px;
  height: 2px;
  background: #2b5278;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-bar.scrolled .menu-line {
  background: #2b5278;
}

/* Animated X when menu is open */
.mobile-menu-btn[aria-expanded='true'] .menu-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn[aria-expanded='true'] .menu-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu-btn[aria-expanded='true'] .menu-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ====================================
   MOBILE BACKDROP - NEW DESIGN
   ==================================== */
.mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    backdrop-filter 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 9998;
  pointer-events: none;
}

.mobile-backdrop.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

/* ====================================
   BUTTONS
   ==================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #2b5278, #3b82f6);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(43, 82, 120, 0.4),
    0 0 20px rgba(59, 130, 246, 0.2);
  position: relative;
  overflow: hidden;
}

.btn-primary::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;
}

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

.nav-bar.scrolled .btn-primary {
  background: linear-gradient(135deg, #2b5278, #3b82f6, #60a5fa);
  box-shadow: 0 4px 20px rgba(43, 82, 120, 0.5),
    0 0 30px rgba(59, 130, 246, 0.3), 0 0 40px rgba(59, 130, 246, 0.15);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 28px rgba(43, 82, 120, 0.5),
    0 0 35px rgba(59, 130, 246, 0.4);
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
}

.nav-bar.scrolled .btn-primary:hover {
  box-shadow: 0 8px 35px rgba(43, 82, 120, 0.6),
    0 0 50px rgba(59, 130, 246, 0.5), 0 0 70px rgba(59, 130, 246, 0.3);
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-bar.scrolled .btn-secondary {
  color: #1a2b3d;
  background: rgba(59, 130, 246, 0.08);
  border: 1.5px solid rgba(59, 130, 246, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(96, 165, 250, 0.5);
  transform: scale(1.02);
  box-shadow: 0 4px 16px rgba(96, 165, 250, 0.2);
}

.nav-bar.scrolled .btn-secondary:hover {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3),
    0 0 30px rgba(59, 130, 246, 0.2);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.8);
  border: 1.5px solid rgba(43, 82, 120, 0.3);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition-base);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.btn-outline:hover {
  background: rgba(59, 130, 246, 0.08);
  border-color: rgba(59, 130, 246, 0.4);
}

.btn-full {
  width: 100%;
}

/* ====================================
   HERO SECTION - PROFESSIONAL REDESIGN
   ==================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0a0e1a;
}

/* Hero Background Slider */
.hero-background {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.hero-bg-slide.active {
  opacity: 1;
}

.hero-bg-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) saturate(0.9) contrast(1.05);
  animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.08);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    135deg,
    rgba(10, 14, 26, 0.65) 0%,
    rgba(26, 43, 61, 0.55) 50%,
    rgba(59, 130, 246, 0.15) 100%
  );
}

.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 80% 20%,
    rgba(59, 130, 246, 0.15) 0%,
    transparent 50%
  );
}

/* Grid Pattern Animation */
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0.03;
  background-image: linear-gradient(
      rgba(59, 130, 246, 0.5) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(59, 130, 246, 0.5) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
  pointer-events: none;
}

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

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

/* Hero Content Wrapper */
.hero-content-wrapper {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 0 4rem;
}

.hero-main {
  max-width: 900px;
  margin-bottom: 4rem;
}

/* New Hero Badge */
.hero-badge-new {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 1.25rem;
  margin-bottom: 2rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: fadeInUp 0.8s ease-out;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

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

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

.badge-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.01em;
}

/* Hero Headline */
.hero-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  animation: fadeInUp 0.8s 0.2s ease-out backwards;
}

.gradient-text {
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

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

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

/* Hero Subheadline */
.hero-subheadline {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  max-width: 720px;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s 0.4s ease-out backwards;
}

.desktop-break {
  display: block;
}

@media (max-width: 768px) {
  .desktop-break {
    display: none;
  }
}

/* Hero CTA Group */
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s 0.6s ease-out backwards;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 1rem 2rem;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}

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

.btn-hero-primary i {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.btn-hero-primary:hover i {
  transform: translateX(4px);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 1rem 2rem;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

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

.btn-hero-secondary i {
  width: 18px;
  height: 18px;
}

/* Hero Stats */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: fadeInScale 0.8s 0.2s ease-out backwards;
}

.stat-card {
  position: relative;
  padding: 2rem 2rem;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid rgba(74, 144, 226, 0.25);
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px rgba(43, 82, 120, 0.15), 0 2px 8px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
  transform: translateY(0);
}

.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(74, 144, 226, 0.1) 0%,
    rgba(147, 197, 253, 0.08) 50%,
    rgba(74, 144, 226, 0.09) 100%
  );
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(74, 144, 226, 0.12) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stat-card:hover {
  transform: translateY(-10px) scale(1.03);
  background: rgba(255, 255, 255, 0.5);
  border-color: rgba(74, 144, 226, 0.45);
  box-shadow: 0 18px 50px rgba(74, 144, 226, 0.28),
    0 6px 15px rgba(43, 82, 120, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

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

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

.stat-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.15) 50%,
    transparent 70%
  );
  transform: translateX(-100%) rotate(45deg);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover .stat-shine {
  transform: translateX(100%) rotate(45deg);
}

.stat-card-1 {
  animation: fadeInScale 0.8s 0.3s ease-out backwards;
}

.stat-card-2 {
  animation: fadeInScale 0.8s 0.4s ease-out backwards;
}

.stat-card-3 {
  animation: fadeInScale 0.8s 0.5s ease-out backwards;
}

.stat-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1;
  color: #2b4a6b;
  margin-bottom: 0.5rem;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover .stat-value {
  color: #4a90e2;
  transform: scale(1.05);
}

.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: #3a4a5a;
  font-weight: 500;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover .stat-label {
  color: #2b4a6b;
}

.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    rgba(74, 144, 226, 0.15),
    rgba(147, 197, 253, 0.2)
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid rgba(74, 144, 226, 0.3);
  border-radius: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.stat-card:hover .stat-icon {
  transform: scale(1.1) rotate(-5deg);
  background: linear-gradient(
    135deg,
    rgba(74, 144, 226, 0.25),
    rgba(147, 197, 253, 0.3)
  );
  border-color: rgba(74, 144, 226, 0.45);
  box-shadow: 0 8px 24px rgba(74, 144, 226, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.stat-icon i {
  width: 28px;
  height: 28px;
  color: #4a90e2;
  filter: drop-shadow(0 2px 4px rgba(74, 144, 226, 0.25));
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover .stat-icon i {
  color: #2b4a6b;
  filter: drop-shadow(0 4px 8px rgba(74, 144, 226, 0.35));
}

/* Hero Trust Bar */
.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  animation: fadeInUp 0.8s 0.8s ease-out backwards;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-item i {
  width: 18px;
  height: 18px;
  color: #60a5fa;
}

.trust-item span {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
}

/* Hero Stats Container - Simple & Compact Design */
.hero-stats-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 750px;
}

.stats-card {
  position: relative;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 14px;
  padding: 1.25rem 1rem;
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out backwards;
  overflow: hidden;
}

/* Card 1 - Enhanced Design */
.stats-card-blue {
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.15) 0%,
    rgba(255, 255, 255, 0.22) 50%,
    rgba(147, 197, 253, 0.12) 100%
  );
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1),
    0 2px 10px rgba(59, 130, 246, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.stats-card-blue::before {
  opacity: 0.6;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
}

.stats-card-blue:hover {
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.2) 0%,
    rgba(255, 255, 255, 0.28) 50%,
    rgba(147, 197, 253, 0.16) 100%
  );
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15),
    0 4px 15px rgba(59, 130, 246, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transform: translateY(-4px);
}

/* Card 2 - Enhanced Design */
.stats-card-green {
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.15) 0%,
    rgba(255, 255, 255, 0.22) 50%,
    rgba(110, 231, 183, 0.12) 100%
  );
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1),
    0 2px 10px rgba(16, 185, 129, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.stats-card-green::before {
  opacity: 0.6;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
}

.stats-card-green:hover {
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.2) 0%,
    rgba(255, 255, 255, 0.28) 50%,
    rgba(110, 231, 183, 0.16) 100%
  );
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15),
    0 4px 15px rgba(16, 185, 129, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transform: translateY(-4px);
}

/* Card 3 - Enhanced Design */
.stats-card-purple {
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.15) 0%,
    rgba(255, 255, 255, 0.22) 50%,
    rgba(196, 181, 253, 0.12) 100%
  );
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1),
    0 2px 10px rgba(168, 85, 247, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.stats-card-purple::before {
  opacity: 0.6;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
}

.stats-card-purple:hover {
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.2) 0%,
    rgba(255, 255, 255, 0.28) 50%,
    rgba(196, 181, 253, 0.16) 100%
  );
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15),
    0 4px 15px rgba(168, 85, 247, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transform: translateY(-4px);
}

.stats-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  transition: opacity 0.3s ease;
}

.stats-card-blue {
  animation-delay: 1s;
}

.stats-card-green {
  animation-delay: 1.1s;
}

.stats-card-purple {
  animation-delay: 1.2s;
}

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

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.stat-icon-wrapper {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.stats-card:hover .stat-icon-wrapper {
  transform: scale(1.05);
}

.stat-icon-wrapper.blue {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.stats-card:hover .stat-icon-wrapper.blue {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
}

.stat-icon-wrapper.green {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.stats-card:hover .stat-icon-wrapper.green {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
}

.stat-icon-wrapper.purple {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.stats-card:hover .stat-icon-wrapper.purple {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
}

.stat-icon-wrapper i {
  width: 20px;
  height: 20px;
  color: #ffffff;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.3));
}

.stats-card:hover .stat-icon-wrapper i {
  color: #ffffff;
  filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.5));
}

.stat-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number-wrapper {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  margin-bottom: 0.25rem;
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  transition: all 0.3s ease;
  letter-spacing: -0.01em;
}

.stats-card:hover .stat-number {
  transform: scale(1.03);
}

.stat-suffix {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  transition: all 0.3s ease;
}

.stats-card:hover .stat-suffix {
  color: #ffffff;
}

.stat-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  transition: all 0.3s ease;
}

.stats-card:hover .stat-text {
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.2rem 0.4rem;
  margin-top: 0.25rem;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.625rem;
  font-weight: 600;
  color: rgba(16, 185, 129, 0.95);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  width: fit-content;
  transition: all 0.3s ease;
}

.stat-badge i {
  width: 10px;
  height: 10px;
  stroke-width: 2.5;
}

.stat-badge.success {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.25);
  color: rgba(16, 185, 129, 0.95);
}

.stats-card:hover .stat-badge {
  background: rgba(16, 185, 129, 0.2);
  border-color: rgba(16, 185, 129, 0.4);
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 10;
  animation: fadeInUp 0.8s 1.5s ease-out backwards;
}

.scroll-line {
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(59, 130, 246, 0.5), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}

.scroll-text {
  display: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

/* ====================================
   CHOOSE YOUR INDUSTRY SECTION - PREMIUM DESIGN
   ==================================== */
.industry-section {
  position: relative;
  padding: 8rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafb 50%, #eff3f7 100%);
  overflow: hidden;
}

.industry-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.industry-section::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.02;
  background-image: linear-gradient(
      rgba(59, 130, 246, 0.4) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(59, 130, 246, 0.4) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 0;
}

.industry-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: headerFadeIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

@keyframes headerFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.industry-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #1a2b3d;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.industry-title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  border-radius: 2px;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
  animation: lineExpand 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}

@keyframes lineExpand {
  0% {
    transform: translateX(-50%) scaleX(0);
    opacity: 0;
  }
  100% {
    transform: translateX(-50%) scaleX(1);
    opacity: 1;
  }
}

.industry-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  color: #64748b;
  max-width: 42rem;
  margin: 2rem auto 0;
  line-height: 1.7;
  opacity: 0;
  animation: subtitleFadeIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

@keyframes subtitleFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

.industry-card {
  position: relative;
  background: #ffffff;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(43, 82, 120, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(43, 82, 120, 0.08);
  opacity: 0;
  transform: translateY(30px);
  cursor: pointer;
}

.industry-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.18),
    0 8px 20px rgba(43, 82, 120, 0.12), 0 0 0 1px rgba(59, 130, 246, 0.15) inset;
  border-color: rgba(59, 130, 246, 0.3);
}

.industry-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.08) 0%,
    rgba(96, 165, 250, 0.05) 40%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1;
  pointer-events: none;
}

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

/* Premium Shine Effect on Hover */
.industry-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.15) 50%,
    transparent 70%
  );
  transform: translateX(-100%) translateY(-100%) rotate(45deg);
  transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  z-index: 10;
}

.industry-card:hover::after {
  transform: translateX(100%) translateY(100%) rotate(45deg);
}

/* Premium Image Section with Enhanced Glow */
.industry-card-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, #e8f1f8 0%, #d1e3f0 100%);
}

.industry-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: brightness(1.05) saturate(1.1) contrast(1.05);
}

.industry-card:hover .industry-card-image img {
  transform: scale(1.06);
  filter: brightness(1.1) saturate(1.15) contrast(1.08);
}

/* Enhanced Glossy Reflection Effect */
.industry-card-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0.25) 30%,
    rgba(255, 255, 255, 0.1) 60%,
    transparent 100%
  );
  pointer-events: none;
  opacity: 0.7;
  transition: opacity 0.5s ease;
  z-index: 2;
}

.industry-card:hover .industry-card-image::after {
  opacity: 0.9;
}

/* Professional Image Overlay */
.industry-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(26, 43, 61, 0.03) 70%,
    rgba(26, 43, 61, 0.08) 100%
  );
  pointer-events: none;
  z-index: 1;
  transition: background 0.5s ease;
}

.industry-card:hover .industry-image-overlay {
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(59, 130, 246, 0.05) 70%,
    rgba(59, 130, 246, 0.12) 100%
  );
}

/* Enhanced Soft Glow Effect */
.industry-image-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(59, 130, 246, 0.25) 0%,
    rgba(96, 165, 250, 0.15) 30%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
  mix-blend-mode: soft-light;
  z-index: 3;
}

.industry-card:hover .industry-image-glow {
  opacity: 1;
  animation: enhancedGlowPulse 3s ease-in-out infinite;
}

@keyframes enhancedGlowPulse {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.7;
    filter: blur(20px);
  }

  33% {
    transform: scale(1.15) rotate(2deg);
    opacity: 1;
    filter: blur(25px);
  }

  66% {
    transform: scale(1.1) rotate(-2deg);
    opacity: 0.85;
    filter: blur(22px);
  }
}

/* Card Body */
.industry-card-body {
  padding: 1.5rem;
  position: relative;
  z-index: 2;
}

/* Modern Icon */
.industry-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.1) 0%,
    rgba(96, 165, 250, 0.15) 100%
  );
  border: 2px solid rgba(59, 130, 246, 0.2);
  border-radius: 16px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.1);
}

.industry-card:hover .industry-icon {
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.2) 0%,
    rgba(96, 165, 250, 0.25) 100%
  );
  border-color: rgba(59, 130, 246, 0.3);
  transform: scale(1.05) rotate(-2deg);
  box-shadow: 0 6px 18px rgba(59, 130, 246, 0.18);
}

.industry-icon i {
  width: 32px;
  height: 32px;
  color: #3b82f6;
  transition: all 0.4s ease;
}

.industry-card:hover .industry-icon i {
  color: #2563eb;
  transform: scale(1.05);
}

/* Card Title */
.industry-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a2b3d;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

.industry-card:hover .industry-card-title {
  color: #2b5278;
}

/* Card Description */
.industry-card-description {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 1.25rem;
  min-height: 48px;
}

/* Industry Stats */
.industry-stats {
  display: flex;
  gap: 2rem;
  padding: 1rem 0;
  margin-bottom: 1.25rem;
  border-top: 1px solid rgba(43, 82, 120, 0.1);
  border-bottom: 1px solid rgba(43, 82, 120, 0.1);
}

.industry-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  transition: all 0.3s ease;
}

.industry-card:hover .stat-number {
  color: #3b82f6;
  transform: scale(1.05);
}

.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  color: #94a3b8;
  font-weight: 500;
}

/* Premium Button */
.industry-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 1rem 1.5rem;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #2b5278;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.08) 0%,
    rgba(96, 165, 250, 0.12) 100%
  );
  border: 1.5px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.industry-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.industry-card:hover .industry-btn {
  background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
  border-color: #3b82f6;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
  transform: translateY(-2px);
}

.industry-card:hover .industry-btn::before {
  width: 400px;
  height: 400px;
}

.industry-btn i {
  width: 18px;
  height: 18px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.industry-card:hover .industry-btn i {
  transform: translateX(6px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .industry-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .industry-section {
    padding: 5rem 0;
  }

  .industry-header {
    margin-bottom: 3rem;
  }

  .industry-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .industry-card:nth-child(3) {
    grid-column: 1;
    max-width: 100%;
  }

  .industry-card-image {
    height: 200px;
  }

  .industry-card-body {
    padding: 1.5rem;
  }

  .industry-stats {
    gap: 1.5rem;
  }
}

/* ====================================
   LEGACY SECTORS SECTION (BACKUP)
   ==================================== */
.sectors-section {
  position: relative;
  padding: 8rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafb 50%, #eff3f7 100%);
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.section-line {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #60a5fa 0%, rgba(96, 165, 250, 0.5) 100%);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(96, 165, 250, 0.3);
  flex-shrink: 0;
}

.section-line-gradient {
  flex: 1;
  max-width: 400px;
  height: 2px;
  background: linear-gradient(
    to right,
    rgba(96, 165, 250, 0.4) 0%,
    transparent 100%
  );
  border-radius: 1px;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #1a2b3d;
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block;
  line-height: 1.2;
}

.title-accent {
  color: #3b82f6;
  background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-description {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  color: #64748b;
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 400;
}

/* Sector Panels */
.sector-panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.sector-panel {
  position: relative;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 1.5rem;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(43, 82, 120, 0.12), 0 2px 8px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  opacity: 0;
}

/* Alternating animation directions */
.sector-panel:nth-child(odd) {
  transform: translateX(-80px);
}

.sector-panel:nth-child(even) {
  transform: translateX(80px);
}

.sector-panel.animate {
  opacity: 1;
  transform: translateX(0);
}

.sector-panel:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(59, 130, 246, 0.4);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.2),
    0 8px 24px rgba(43, 82, 120, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.sector-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.08) 0%,
    rgba(96, 165, 250, 0.05) 50%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.sector-panel:hover::before {
  opacity: 1;
}

.sector-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.sector-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 1.25rem;
  margin-bottom: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.15);
}

.sector-panel:hover .sector-icon {
  transform: scale(1.1) rotate(-5deg);
  background: rgba(59, 130, 246, 0.2);
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 8px 28px rgba(59, 130, 246, 0.3);
}

.sector-icon i {
  width: 36px;
  height: 36px;
  color: var(--accent-blue);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sector-panel:hover .sector-icon i {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 8px rgba(59, 130, 246, 0.4));
}

.sector-accent-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--accent-blue), transparent);
  border-radius: 2px;
  margin-bottom: 1rem;
}

.sector-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  transition: color 0.3s;
}

.sector-panel:hover .sector-name {
  color: var(--primary);
}

.sector-description {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.sector-metrics {
  display: flex;
  gap: 2rem;
  padding: 1rem 0;
  margin-bottom: 1.5rem;
  border-top: 1px solid var(--border);
}

.metric {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.metric i {
  width: 16px;
  height: 16px;
  color: var(--accent-blue);
  margin-bottom: 0.25rem;
}

.metric-icon-green {
  color: var(--accent-green) !important;
}

.metric-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.metric-value-green {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-green);
  line-height: 1;
}

.metric-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.sector-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: rgba(59, 130, 246, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 0.75rem;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--primary);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.sector-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.sector-panel:hover .sector-cta::before {
  width: 300px;
  height: 300px;
}

.sector-panel:hover .sector-cta {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  border-color: rgba(96, 165, 250, 0.5);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(59, 130, 246, 0.15);
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.sector-panel:hover .cta-icon {
  background: rgba(255, 255, 255, 0.25);
  transform: translateX(6px) rotate(45deg);
}

.cta-icon i {
  width: 16px;
  height: 16px;
}

.sector-right {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 200px;
  height: 120px;
  border-radius: var(--radius);
  overflow: hidden;
  opacity: 0.3;
  transition: var(--transition-base);
}

.sector-panel:hover .sector-right {
  opacity: 0.15;
}

.sector-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9) saturate(1.1);
}

.sector-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 255, 255, 0.8) 100%
  );
}

/* ====================================
   ADVANTAGES SECTION
   ==================================== */
.advantages-section {
  position: relative;
  padding: 8rem 0;
  background: linear-gradient(180deg, #eff3f7 0%, #f8fafb 50%, #ffffff 100%);
  overflow: hidden;
}

.advantages-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.advantages-section::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.02;
  background-image: linear-gradient(
      rgba(59, 130, 246, 0.4) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(59, 130, 246, 0.4) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 0;
}

.advantages-section .container {
  position: relative;
  z-index: 1;
}

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

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

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

.advantage-card {
  position: relative;
  padding: 2.5rem;
  background: #ffffff;
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 1.25rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 2px 4px -1px rgba(0, 0, 0, 0.03);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.advantage-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.08) 0%,
    rgba(96, 165, 250, 0.04) 100%
  );
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 1.25rem;
  z-index: 0;
}

.advantage-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6 0%, #60a5fa 50%, #93c5fd 100%);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 1.25rem 1.25rem 0 0;
}

.advantage-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(59, 130, 246, 0.45);
  box-shadow: 0 22px 30px -5px rgba(59, 130, 246, 0.2),
    0 12px 15px -5px rgba(59, 130, 246, 0.12);
  background: #ffffff;
}

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

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

.advantage-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.15) 0%,
    rgba(96, 165, 250, 0.1) 100%
  );
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 0.875rem;
  margin-bottom: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.1);
}

.advantage-card:hover .advantage-icon {
  transform: rotate(360deg) scale(1.1);
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.25) 0%,
    rgba(96, 165, 250, 0.2) 100%
  );
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 8px 12px -2px rgba(59, 130, 246, 0.2);
}

.advantage-icon i {
  width: 32px;
  height: 32px;
  color: #3b82f6;
  filter: drop-shadow(0 2px 4px rgba(59, 130, 246, 0.2));
}

.advantage-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a2b3d;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.advantage-description {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #64748b;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.advantage-metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  margin-top: auto;
  border-top: 1px solid rgba(59, 130, 246, 0.1);
  position: relative;
  z-index: 1;
}

.metric-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1a2b3d;
  letter-spacing: -0.01em;
}

.metric-trend {
  width: 20px;
  height: 20px;
  color: #10b981;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(16, 185, 129, 0.2));
  transition: transform 0.3s ease;
}

.advantage-card:hover .metric-trend {
  transform: translateY(-2px) scale(1.1);
  color: #059669;
}

/* ====================================
   FOOTER
   ==================================== */
.footer {
  position: relative;
  padding: 3rem 0 1.5rem;
  background: linear-gradient(180deg, #eff3f7 0%, #f8fafb 100%);
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.015;
  background-image: repeating-linear-gradient(
    0deg,
    var(--primary),
    var(--primary) 1px,
    transparent 1px,
    transparent 50px
  );
}

.footer-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.footer-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-copyright {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ====================================
   MODAL
   ==================================== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(248, 250, 251, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: fadeIn 0.3s;
}

.modal-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 1rem;
  box-shadow: var(--shadow-xl);
  animation: scaleIn 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
}

.modal-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.modal-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition-fast);
}

.modal-close:hover {
  background: rgba(59, 130, 246, 0.1);
}

.modal-close i {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
}

.modal-body {
  padding: 2rem;
}

.modal-description {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.sign-in-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
}

.form-input {
  padding: 0.75rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--text-primary);
  background: var(--input-background);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition-fast);
  outline: none;
}

.form-input:focus {
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* ====================================
   ANIMATIONS
   ==================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

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

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

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }

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

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-80px);
  }

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

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(80px);
  }

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

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

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

@keyframes fade-left {
  from {
    opacity: 0;
    transform: translateX(60px);
  }

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

@keyframes fade-right {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }

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

@keyframes scale-in {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

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

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

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

/* Animation States - Re-enabled with directional effects */
[data-animate] {
  opacity: 0;
}

[data-animate='fade-in'].animate {
  animation: fadeIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

[data-animate='slide-up'].animate {
  animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

[data-animate='fade-up'].animate {
  animation: fade-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

[data-animate='fade-left'].animate {
  animation: fade-left 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

[data-animate='fade-right'].animate {
  animation: fade-right 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

[data-animate='scale-in'].animate {
  animation: scale-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

[data-animate='slide-right'].animate {
  animation: slide-right 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.sector-panel[data-animate='slide-up'] {
  opacity: 0;
  transform: translateY(60px) scale(0.95);
}

.sector-panel[data-animate='slide-up'].animate {
  animation: sectorSlideUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes sectorSlideUp {
  0% {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
  }

  60% {
    transform: translateY(-10px) scale(1.02);
  }

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

/* ====================================
   RESPONSIVE - COMPREHENSIVE MOBILE-FIRST DESIGN
   ==================================== */

/* Desktop Large (1440px+) */
@media (min-width: 1440px) {
  .container {
    max-width: 1400px;
  }

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

/* Laptop/Desktop (1200px - 1439px) */
@media (max-width: 1439px) {
  .container {
    max-width: 1200px;
  }

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

/* Tablet Landscape & Desktop (1024px - 1199px) */
@media (max-width: 1199px) {
  .container {
    max-width: 1024px;
    padding: 0 2rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-left {
    max-width: 800px;
    margin: 0 auto;
  }

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

  .hero-subheadline {
    font-size: 1.125rem;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-trust-bar {
    justify-content: center;
  }

  .hero-stats-container {
    grid-template-columns: repeat(3, 1fr);
    max-width: 900px;
    margin: 0 auto;
  }

  .sector-panels {
    grid-template-columns: repeat(2, 1fr);
  }

  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .source-globally-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .source-globally-image-wrapper {
    max-width: 600px;
    margin: 0 auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Tablet Portrait (768px - 1023px) */
@media (max-width: 1023px) {
  .container {
    padding: 0 1.5rem;
  }

  .nav-bar {
    padding: 0.875rem 0;
  }

  .nav-container {
    gap: 1.5rem;
  }

  .nav-logo {
    font-size: 1.375rem;
  }

  .nav-logo img {
    height: 40px;
  }

  .nav-links {
    gap: 0.75rem;
    padding: 0 1.5rem;
  }

  .nav-link {
    font-size: 0.9375rem;
  }

  .btn-primary {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
  }

  .hero-section {
    padding: 8rem 0 4rem;
  }

  .hero-headline {
    font-size: 2.75rem;
    margin-bottom: 1.25rem;
  }

  .hero-subheadline {
    font-size: 1.0625rem;
    margin-bottom: 2rem;
  }

  .hero-cta-group {
    gap: 0.875rem;
    margin-bottom: 2.5rem;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
  }

  .hero-stats-container {
    gap: 1.25rem;
  }

  .stats-card {
    padding: 1.5rem 1.25rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.875rem;
  }

  .industry-section {
    padding: 4rem 0;
  }

  .industry-title {
    font-size: 2.25rem;
  }

  .industry-subtitle {
    font-size: 1rem;
  }

  .industry-grid {
    gap: 1.5rem;
    margin-top: 2.5rem;
  }

  .industry-card {
    padding: 2rem 1.5rem;
  }

  .industry-card-title {
    font-size: 1.5rem;
  }

  .source-globally-section {
    padding: 4rem 0;
  }

  .source-globally-title {
    font-size: 2.25rem;
  }

  .advantages-section {
    padding: 4rem 0;
  }

  .section-title {
    font-size: 2.25rem;
  }

  .advantage-card {
    padding: 1.75rem 1.5rem;
  }

  .about-section {
    padding: 4rem 0;
  }

  .contact-section {
    padding: 4rem 0;
  }

  .contact-title {
    font-size: 2.25rem;
  }
}

/* Mobile Landscape & Small Tablets (640px - 767px) */
@media (max-width: 767px) {
  .container {
    padding: 0 1.25rem;
  }

  .nav-bar {
    padding: 0.75rem 0;
  }

  .nav-container {
    gap: 1rem;
  }

  .nav-logo {
    font-size: 1.25rem;
  }

  .nav-logo img {
    height: 36px;
  }

  /* Show mobile menu button */
  .mobile-menu-btn {
    display: flex;
  }

  /* ====================================
     MOBILE NAVIGATION - SLIDE DOWN
     ==================================== */
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    flex-direction: column;
    padding: 0.5rem 0;
    gap: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.08);
    transform: translateY(calc(-100% - 70px));
    opacity: 0;
    visibility: hidden;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
      opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
      visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10000;
    overflow: hidden;
    border-bottom: 2px solid rgba(59, 130, 246, 0.1);
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    width: 100%;
    padding: 1rem 1.5rem;
    margin: 0.25rem 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #1a2b3d;
    background: transparent;
    border: none;
    border-radius: 0.75rem;
    text-align: left;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
  }

  .nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 0 2px 2px 0;
    transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-link:hover {
    background: rgba(59, 130, 246, 0.08);
    color: #3b82f6;
    padding-left: 1.75rem;
    transform: translateX(4px);
  }

  .nav-link:hover::before {
    height: 60%;
  }

  .nav-link.active {
    background: linear-gradient(
      90deg,
      rgba(59, 130, 246, 0.12) 0%,
      rgba(59, 130, 246, 0.04) 100%
    );
    color: #3b82f6;
    font-weight: 600;
    padding-left: 1.75rem;
  }

  .nav-link.active::before {
    height: 70%;
  }

  /* ====================================
     MOBILE ACTIONS - SLIDE DOWN
     ==================================== */
  .nav-actions {
    position: fixed;
    top: calc(
      70px + -1 * 1rem + 1rem
    ); /* navbar height + 5 nav links + padding */
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    flex-direction: column;
    padding: 1.25rem 1rem 1.5rem;
    gap: 0.875rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.08);
    border-top: 2px solid rgba(59, 130, 246, 0.1);
    transform: translateY(calc(-100% - 70px - 5 * 3rem - 1rem));
    opacity: 0;
    visibility: hidden;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s,
      opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s,
      visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
    z-index: 9999;
  }

  .nav-actions.active {
    transform: translateY(0);
    opacity: 1;
    border-radius: 3%;
    visibility: visible;
  }

  .language-selector {
    width: 100%;
    position: relative;
  }

  .language-btn {
    width: 100%;
    justify-content: center;
    padding: 0.875rem 1.25rem;
    background: #ffffff;
    border: 1.5px solid rgba(59, 130, 246, 0.25);
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .language-btn:hover {
    background: rgba(59, 130, 246, 0.06);
    border-color: rgba(59, 130, 246, 0.4);
    color: black !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  /* Mobile Language Dropdown - Top Positioning */
  .language-dropdown {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-150%);
    right: auto;
    width: 90%;
    max-width: 300px;
    background: #ffffff;
    border: 1.5px solid rgba(59, 130, 246, 0.2);
    border-radius: 1rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2),
      0 0 0 1px rgba(59, 130, 246, 0.1) inset;
    z-index: 10500;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .language-selector.open .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    max-height: 500px;
  }

  .hero-content-wrapper {
    padding: 3rem 0 4rem;
  }
  .btn-sign-in {
    width: 100%;
    justify-content: center;
    padding: 0.875rem 1.25rem;
    background: #ffffff;
    border: 1.5px solid rgba(59, 130, 246, 0.25);
    color: #1a2b3d;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .btn-sign-in:hover {
    background: rgba(59, 130, 246, 0.06);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
  }

  .hero-section {
    padding: 6rem 0 3rem;
  }

  .hero-headline {
    font-size: 2.25rem;
    line-height: 1.15;
    margin-bottom: 1rem;
  }

  .hero-subheadline {
    font-size: 1rem;
    margin-bottom: 1.75rem;
  }

  .hero-badge {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }

  .desktop-break {
    display: none;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
    margin-bottom: 2rem;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
    padding: 0.875rem 1.5rem;
  }

  .hero-trust-bar {
    flex-direction: column;
    align-items: center;
    gap: 0.875rem;
    text-align: center;
  }

  .trust-divider {
    display: none;
  }

  .trust-text {
    font-size: 0.8125rem;
  }

  .trust-icons {
    justify-content: center;
  }

  .trust-icon {
    width: 28px;
    height: 28px;
  }

  .hero-stats-container {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
  }

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

  .stat-number {
    font-size: 1.875rem;
  }

  .stat-suffix {
    font-size: 1.125rem;
  }

  .stat-label {
    font-size: 0.8125rem;
  }

  .stat-badge {
    font-size: 0.5625rem;
    padding: 0.2rem 0.4rem;
  }

  .stat-icon-wrapper {
    width: 40px;
    height: 40px;
  }

  .stat-icon-wrapper i {
    width: 20px;
    height: 20px;
  }

  .industry-section {
    padding: 3rem 0;
  }

  .industry-title {
    font-size: 1.875rem;
    margin-bottom: 0.75rem;
  }

  .industry-subtitle {
    font-size: 0.9375rem;
  }

  .industry-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 2rem;
  }

  .industry-card {
    padding: 1.75rem 1.25rem;
  }

  .industry-card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
  }

  .industry-card-title {
    font-size: 1.375rem;
    margin-bottom: 0.625rem;
  }

  .industry-card-description {
    font-size: 0.9375rem;
  }

  .source-globally-section {
    padding: 3rem 0;
  }

  .source-globally-title {
    font-size: 1.875rem;
    margin-bottom: 1rem;
  }

  .source-globally-description {
    font-size: 0.9375rem;
  }

  .source-globally-stats {
    gap: 1.5rem;
    margin-top: 1.5rem;
  }

  .stat-value {
    font-size: 1.875rem;
  }

  .stat-description {
    font-size: 0.8125rem;
  }

  .advantages-section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 1.875rem;
  }

  .section-description {
    font-size: 0.9375rem;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 2rem;
  }

  .advantage-card {
    padding: 1.5rem 1.25rem;
  }

  .advantage-icon-wrapper {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
  }

  .advantage-icon-wrapper i {
    width: 24px;
    height: 24px;
  }

  .advantage-title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }

  .advantage-description {
    font-size: 0.875rem;
  }

  .about-section {
    padding: 3rem 0;
  }

  .about-quote {
    font-size: 1.25rem;
    padding: 1.5rem 1.25rem;
  }

  .about-visual {
    margin-top: 2rem;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem;
  }

  .about-stat-number {
    font-size: 1.875rem;
  }

  .contact-section {
    padding: 3rem 0;
  }

  .contact-grid {
    gap: 2.5rem;
  }

  .contact-title {
    font-size: 1.875rem;
    margin-bottom: 1rem;
  }

  .contact-description {
    font-size: 0.9375rem;
  }

  .contact-features {
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .feature-icon {
    width: 20px;
    height: 20px;
  }

  .feature-text {
    font-size: 0.875rem;
  }

  .form-group label {
    font-size: 0.875rem;
  }

  .form-input,
  .form-textarea {
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
  }

  .btn-submit {
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
  }

  /* Modal */
  .modal-content {
    width: 90vw;
    max-width: 90vw;
    padding: 1.5rem;
  }

  .modal-title {
    font-size: 1.375rem;
  }

  .modal-input {
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
  }

  .btn-modal-primary {
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
  }
}

/* Mobile Portrait (480px - 639px) */
@media (max-width: 639px) {
  .container {
    padding: 0 1rem;
  }

  .nav-bar {
    padding: 0.625rem 0;
  }

  .nav-logo {
    font-size: 1.125rem;
  }

  .nav-logo img {
    height: 32px;
  }

  .mobile-menu-toggle {
    width: 2.25rem;
    height: 2.25rem;
  }

  /* Adjust mobile menu for smaller screens */
  .nav-links {
    padding: 1.25rem;
    gap: 0.625rem;
  }

  .nav-link {
    padding: 0.875rem 1rem;
    font-size: 1rem;
  }

  .nav-actions {
    padding: 1.25rem;
    gap: 0.625rem;
  }

  .language-btn {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }

  .btn-sign-in {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }

  .btn-primary {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }

  .hero-section {
    padding: 5rem 0 2.5rem;
  }

  .hero-headline {
    font-size: 1.875rem;
    margin-bottom: 0.875rem;
  }

  .hero-subheadline {
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
  }

  .hero-badge {
    padding: 0.375rem 0.875rem;
    font-size: 0.6875rem;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }

  .trust-text {
    font-size: 0.75rem;
  }

  .trust-icon {
    width: 24px;
    height: 24px;
  }

  .stats-card {
    padding: 1rem 0.875rem;
  }

  .stat-number {
    font-size: 1.625rem;
  }

  .stat-suffix {
    font-size: 1rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .industry-section {
    padding: 2.5rem 0;
  }

  .industry-title {
    font-size: 1.625rem;
  }

  .industry-subtitle {
    font-size: 0.875rem;
  }

  .industry-card {
    padding: 1.5rem 1rem;
  }

  .industry-card-icon {
    width: 40px;
    height: 40px;
  }

  .industry-card-title {
    font-size: 1.25rem;
  }

  .industry-card-description {
    font-size: 0.875rem;
  }

  .source-globally-section {
    padding: 2.5rem 0;
  }

  .source-globally-title {
    font-size: 1.625rem;
  }

  .source-globally-description {
    font-size: 0.875rem;
  }

  .stat-value {
    font-size: 1.625rem;
  }

  .stat-description {
    font-size: 0.75rem;
  }

  .advantages-section {
    padding: 2.5rem 0;
  }

  .section-title {
    font-size: 1.625rem;
  }

  .section-description {
    font-size: 0.875rem;
  }

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

  .advantage-icon-wrapper {
    width: 40px;
    height: 40px;
  }

  .advantage-icon-wrapper i {
    width: 20px;
    height: 20px;
  }

  .advantage-title {
    font-size: 1rem;
  }

  .advantage-description {
    font-size: 0.8125rem;
  }

  .about-section {
    padding: 2.5rem 0;
  }

  .about-quote {
    font-size: 1.125rem;
    padding: 1.25rem 1rem;
  }

  .about-stat-number {
    font-size: 1.625rem;
  }

  .about-stat-label {
    font-size: 0.75rem;
  }

  .contact-section {
    padding: 2.5rem 0;
  }

  .contact-title {
    font-size: 1.625rem;
  }

  .contact-description {
    font-size: 0.875rem;
  }

  .feature-text {
    font-size: 0.8125rem;
  }

  .form-input,
  .form-textarea {
    padding: 0.625rem 0.875rem;
    font-size: 0.875rem;
  }

  .btn-submit {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }

  .modal-content {
    padding: 1.25rem;
  }

  .modal-title {
    font-size: 1.25rem;
  }
}

/* Mobile Small (below 480px) */
@media (max-width: 479px) {
  .container {
    padding: 0 0.875rem;
  }

  .nav-bar {
    padding: 0.625rem 0;
  }

  .nav-logo {
    font-size: 1rem;
  }

  .nav-logo img {
    height: 28px;
  }

  .btn-primary {
    padding: 0.5rem 0.875rem;
    font-size: 0.75rem;
  }

  .hero-section {
    padding: 4.5rem 0 2rem;
  }

  .hero-headline {
    font-size: 1.625rem;
    margin-bottom: 0.75rem;
  }

  .hero-subheadline {
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
  }

  .hero-badge {
    padding: 0.3125rem 0.75rem;
    font-size: 0.625rem;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    padding: 0.625rem 1rem;
    font-size: 0.8125rem;
  }

  .trust-text {
    font-size: 0.6875rem;
  }

  .trust-icon {
    width: 20px;
    height: 20px;
  }

  .stats-card {
    padding: 0.875rem 0.75rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-suffix {
    font-size: 0.875rem;
  }

  .stat-label {
    font-size: 0.6875rem;
  }

  .industry-section {
    padding: 2rem 0;
  }

  .industry-title {
    font-size: 1.5rem;
  }

  .industry-subtitle {
    font-size: 0.8125rem;
  }

  .industry-card {
    padding: 1.25rem 0.875rem;
  }

  .industry-card-icon {
    width: 36px;
    height: 36px;
  }

  .industry-card-title {
    font-size: 1.125rem;
  }

  .industry-card-description {
    font-size: 0.8125rem;
  }

  .source-globally-section,
  .advantages-section,
  .about-section,
  .contact-section {
    padding: 2rem 0;
  }

  .source-globally-title,
  .section-title,
  .contact-title {
    font-size: 1.5rem;
  }

  .advantage-card {
    padding: 1rem 0.875rem;
  }

  .about-quote {
    font-size: 1rem;
    padding: 1rem 0.875rem;
  }

  .form-input,
  .form-textarea {
    padding: 0.5rem 0.75rem;
    font-size: 0.8125rem;
  }

  .btn-submit {
    padding: 0.625rem 1rem;
    font-size: 0.8125rem;
  }

  .modal-content {
    padding: 1rem;
  }
}

/* Landscape Orientation Optimization */
@media (max-height: 600px) and (orientation: landscape) {
  .hero-section {
    padding: 3rem 0 2rem;
  }

  .hero-headline {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
  }

  .hero-subheadline {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }

  .hero-cta-group {
    margin-bottom: 1.5rem;
  }

  .hero-stats-container {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-card {
    padding: 0.75rem 0.625rem;
  }

  .stat-number {
    font-size: 1.375rem;
  }

  .modal-content {
    max-height: 90vh;
    overflow-y: auto;
  }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
  .btn-primary,
  .btn-hero-primary,
  .btn-hero-secondary,
  .btn-sign-in,
  .btn-submit,
  .industry-card,
  .advantage-card,
  .nav-link {
    min-height: 44px;
  }

  .modal-close {
    min-width: 44px;
    min-height: 44px;
  }
}

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

/* Old responsive rules backup */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .sector-panels {
    grid-template-columns: repeat(2, 1fr);
  }

  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .hero-stats-container {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

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

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

  .nav-links {
    display: none;
  }

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

  .hero-subheadline {
    font-size: 1rem;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-trust-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .trust-divider {
    display: none;
  }

  .hero-stats-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .stat-suffix {
    font-size: 1.125rem;
  }

  .stat-badge {
    font-size: 0.5625rem;
    padding: 0.2rem 0.4rem;
  }

  .stat-icon-wrapper {
    width: 36px;
    height: 36px;
  }

  .stat-icon-wrapper i {
    width: 18px;
    height: 18px;
  }

  .sector-panels {
    grid-template-columns: 1fr;
  }

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

/* ====================================
   SEARCH PAGE STYLES
   ==================================== */
.search-page {
  min-height: 100vh;
  background: linear-gradient(180deg, #f8fafb 0%, #eff3f7 50%, #e8edf3 100%);
}

.search-hero {
  position: relative;
  min-height: 500px;
  padding-top: 80px;
  overflow: hidden;
}

.search-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.search-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) saturate(0.8);
}

.search-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    135deg,
    rgba(248, 250, 251, 0.92) 0%,
    rgba(239, 243, 247, 0.88) 100%
  );
}

.search-hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(43, 82, 120, 0.08) 0%,
    rgba(59, 130, 246, 0.12) 50%,
    rgba(43, 82, 120, 0.06) 100%
  );
  mix-blend-mode: overlay;
}

.search-hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.03;
  background-image: linear-gradient(rgba(43, 82, 120, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43, 82, 120, 0.3) 1px, transparent 1px);
  background-size: 50px 50px;
}

.search-hero-content {
  position: relative;
  z-index: 10;
  padding: 6rem 0;
  text-align: center;
}

.search-hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.search-hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 48rem;
  margin: 0 auto 0.75rem;
}

.search-hero-cta {
  font-family: 'Inter', sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--primary);
}

.search-bar-wrapper {
  max-width: 96rem;
  margin: 3.5rem auto 0;
}

.search-bar-main {
  display: flex;
  align-items: stretch;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.search-filter-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.5rem 2rem;
  background: rgba(59, 130, 246, 0.08);
  border: none;
  border-right: 1.5px solid rgba(59, 130, 246, 0.15);
  color: var(--primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
}

.search-filter-btn:hover {
  background: rgba(59, 130, 246, 0.12);
}

.search-filter-btn i {
  width: 24px;
  height: 24px;
}

.search-input-wrapper {
  position: relative;
  flex: 1;
  background: var(--card);
}

.search-input-icon {
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  color: var(--text-subtle);
  pointer-events: none;
}

.search-input {
  width: 100%;
  padding: 1.5rem 1.5rem 1.5rem 4rem;
  font-family: 'Inter', sans-serif;
  font-size: 1.0625rem;
  color: var(--text-primary);
  background: transparent;
  border: none;
  outline: none;
}

.search-input::placeholder {
  color: var(--text-subtle);
}

.search-submit-btn {
  padding: 1.5rem 3rem;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--primary-foreground);
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--accent-blue) 100%
  );
  border: none;
  cursor: pointer;
  transition: var(--transition-base);
  box-shadow: 0 4px 16px rgba(43, 82, 120, 0.25);
}

.search-submit-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(43, 82, 120, 0.35);
}

.search-results {
  padding: 3rem 0;
}

.results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.results-count {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  color: var(--text-secondary);
}

.results-count strong {
  color: var(--text-primary);
  font-weight: 600;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.result-card {
  position: relative;
  padding: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  cursor: pointer;
}

.result-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(59, 130, 246, 0.3);
}

.result-brand {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-blue);
  margin-bottom: 0.5rem;
}

.result-description {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.result-vendor {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.result-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.result-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.result-meta-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.result-meta-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.result-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 1rem;
}

.empty-state {
  text-align: center;
  padding: 4rem 2rem;
}

.empty-state-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  color: var(--text-subtle);
}

.empty-state-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.empty-state-description {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 32rem;
  margin: 0 auto;
}

/* ====================================
   ENHANCED NAVIGATION - Logo & Language Selector
   ==================================== */

/* Enhanced Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-image {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.3) drop-shadow(0 2px 8px rgba(255, 255, 255, 0.3));
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-bar.scrolled .logo-image {
  filter: brightness(0.95) drop-shadow(0 0 10px rgba(59, 130, 246, 0.3))
    drop-shadow(0 2px 8px rgba(59, 130, 246, 0.2));
}

.logo-image:hover {
  transform: scale(1.05);
}

.nav-bar.scrolled .logo-image:hover {
  filter: brightness(1) drop-shadow(0 0 15px rgba(59, 130, 246, 0.5))
    drop-shadow(0 2px 12px rgba(59, 130, 246, 0.3));
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #2b5278 0%, #3b82f6 100%);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(43, 82, 120, 0.25);
  position: relative;
  overflow: hidden;
}

.logo-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2) 0%,
    transparent 100%
  );
}

.logo-icon span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.logo-text h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a2b3d;
  letter-spacing: -0.02em;
  line-height: 1;
}

.logo-text p {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: #64748b;
  letter-spacing: 0.05em;
  margin-top: 0.125rem;
}

/* Language Selector */
.language-selector {
  position: relative;
}

.language-btn {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.6rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'IBM Plex Sans', sans-serif;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-bar.scrolled .language-btn {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.1);
}

.language-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(96, 165, 250, 0.5);
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(96, 165, 250, 0.2);
}

.nav-bar.scrolled .language-btn:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.2),
    0 0 25px rgba(59, 130, 246, 0.15);
}

.language-selector.open .language-btn {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.25);
}

.lang-flag {
  font-size: 0.875rem;
  line-height: 1;
}

.lang-code {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.nav-bar.scrolled .lang-code {
  color: #1a2b3d;
}

.lang-chevron {
  width: 12px;
  height: 12px;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.nav-bar.scrolled .lang-chevron {
  color: #64748b;
}

.language-selector.open .lang-chevron {
  transform: rotate(180deg);
  color: #3b82f6;
}

.nav-bar.scrolled .language-selector.open .lang-chevron {
  color: #3b82f6;
  filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.4));
}

.language-dropdown {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  width: 14rem;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1.5px solid rgba(59, 130, 246, 0.2);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset, 0 0 40px rgba(59, 130, 246, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-15px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
  z-index: 1000;
}

.language-dropdown::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(59, 130, 246, 0.6) 50%,
    transparent 100%
  );
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
}

.language-selector.open .language-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* When nav is transparent */
.language-dropdown {
  background: rgba(26, 43, 61, 0.95);
  border-color: rgba(255, 255, 255, 0.2);
}

/* When nav is scrolled (white) */
.nav-bar.scrolled .language-dropdown {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(59, 130, 246, 0.2);
}

.lang-option {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 1.25rem;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Inter', sans-serif;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  overflow: hidden;
}

.nav-bar.scrolled .lang-option {
  color: #1a2b3d;
  border-bottom-color: rgba(59, 130, 246, 0.08);
}

.lang-option::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #3b82f6, #60a5fa);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lang-option:last-child {
  border-bottom: none;
}

.lang-option:hover::before {
  opacity: 1;
}

.lang-option:hover {
  background: linear-gradient(
    90deg,
    rgba(59, 130, 246, 0.12) 0%,
    rgba(59, 130, 246, 0.05) 100%
  );
  color: #ffffff;
  transform: translateX(6px);
  box-shadow: inset 0 0 20px rgba(59, 130, 246, 0.1);
}

.nav-bar.scrolled .lang-option:hover {
  background: linear-gradient(
    90deg,
    rgba(59, 130, 246, 0.15) 0%,
    rgba(59, 130, 246, 0.08) 100%
  );
  color: #3b82f6;
  box-shadow: inset 0 0 30px rgba(59, 130, 246, 0.15),
    0 0 20px rgba(59, 130, 246, 0.1);
}

.lang-option.active {
  background: linear-gradient(
    90deg,
    rgba(59, 130, 246, 0.2) 0%,
    rgba(59, 130, 246, 0.1) 100%
  );
  color: #3b82f6;
  font-weight: 600;
}

.lang-option.active::before {
  opacity: 1;
}

.lang-option .lang-flag {
  font-size: 1.25rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

.lang-option:hover .lang-flag {
  transform: scale(1.2);
}

.lang-option .lang-name {
  flex: 1;
  text-align: left;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.3s ease;
}

.nav-bar.scrolled .lang-option .lang-name {
  color: #475569;
}

.lang-option:hover .lang-name {
  color: #ffffff;
  font-weight: 600;
}

.nav-bar.scrolled .lang-option:hover .lang-name {
  color: #3b82f6;
}

.lang-option.active .lang-name {
  color: #3b82f6;
}

/* ====================================
   ENHANCED SIGN IN MODAL
   ==================================== */

.modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 43, 61, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  animation: fadeIn 0.3s ease;
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 28rem;
  background: #ffffff;
  border: 1.5px solid rgba(43, 82, 120, 0.12);
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px rgba(26, 43, 61, 0.18),
    0 0 0 1px rgba(59, 130, 246, 0.08) inset;
  animation: modalSlideIn 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}

.modal-content::before {
  content: '';
  position: absolute;
  top: -10rem;
  right: -10rem;
  width: 24rem;
  height: 24rem;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.12) 0%,
    rgba(224, 239, 250, 0.3) 50%,
    transparent 80%
  );
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.5;
  pointer-events: none;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(248, 250, 251, 0.9);
  border: 1px solid rgba(43, 82, 120, 0.15);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.modal-close:hover {
  background: rgba(59, 130, 246, 0.1);
  transform: scale(1.1);
}

.modal-body {
  padding: 2.5rem;
  position: relative;
  z-index: 1;
}

.modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 2rem;
  margin-bottom: 1.5rem;
}

.modal-badge i {
  width: 1rem;
  height: 1rem;
  color: #3b82f6;
}

.modal-badge span {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #2b5278;
  letter-spacing: 0.1em;
}

.modal-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1a2b3d;
  margin-bottom: 0.5rem;
}

.modal-description {
  font-family: 'Inter', sans-serif;
  color: #64748b;
  margin-bottom: 2rem;
}

.sign-in-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.form-label {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1a2b3d;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.label-icon {
  width: 1rem;
  height: 1rem;
  color: #3b82f6;
}

.input-wrapper {
  position: relative;
}

.input-wrapper .input-icon {
  position: absolute;
  left: 1.125rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.125rem;
  height: 1.125rem;
  color: #64748b;
  z-index: 2;
  pointer-events: none;
  transition: all 0.3s ease;
}

.input-wrapper:focus-within .input-icon {
  color: #3b82f6;
}

.input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  color: #94a3b8;
  pointer-events: none;
}

.form-input {
  width: 100%;
  padding: 0.9375rem 1.125rem 0.9375rem 3.25rem;
  background: rgba(248, 250, 251, 0.7);
  border: 1.5px solid rgba(43, 82, 120, 0.15);
  border-radius: 0.875rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: #1a2b3d;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  outline: none;
  position: relative;
  z-index: 1;
}

.form-input:hover {
  background: rgba(248, 250, 251, 0.9);
  border-color: rgba(59, 130, 246, 0.25);
}

.form-input:focus {
  background: #ffffff;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1),
    0 2px 8px rgba(59, 130, 246, 0.12);
}

.form-input::placeholder {
  color: #94a3b8;
  opacity: 0.6;
}

.form-footer {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0.5rem;
}

.forgot-password {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: #3b82f6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.forgot-password:hover {
  color: #2b5278;
}

.btn-full {
  width: 100%;
  margin-top: 1rem;
}

.modal-footer {
  text-align: center;
  margin-top: 1.5rem;
  font-family: 'Inter', sans-serif;
  color: #64748b;
}

.sign-up-link {
  color: #2b5278;
  font-weight: 600;
  text-decoration: none;
  margin-left: 0.25rem;
  transition: color 0.3s ease;
}

.sign-up-link:hover {
  color: #3b82f6;
}

.modal-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.modal-divider::before,
.modal-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(43, 82, 120, 0.15);
}

.modal-divider span {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: #64748b;
}

.social-login {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.social-btn {
  padding: 0.75rem;
  background: rgba(248, 250, 251, 0.6);
  border: 1px solid rgba(43, 82, 120, 0.15);
  border-radius: 0.75rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: #1a2b3d;
  cursor: pointer;
  transition: all 0.3s ease;
}

.social-btn:hover {
  background: rgba(59, 130, 246, 0.08);
  border-color: rgba(59, 130, 246, 0.3);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }

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

/* ====================================
   ABOUT SECTION
   ==================================== */

.about-section {
  padding: 8rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafb 100%);
  position: relative;
  overflow: hidden;
}

.about-content {
  max-width: 80rem;
  margin: 0 auto;
}

.about-quote {
  text-align: center;
  margin-bottom: 4rem;
}

.quote-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 700;
  color: #1a2b3d;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
}

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

.quote-divider {
  width: 10rem;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #3b82f6 50%,
    transparent 100%
  );
  margin: 2rem auto;
}

.quote-description {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  color: #64748b;
  line-height: 1.7;
  max-width: 48rem;
  margin: 0 auto;
}

.about-visual {
  position: relative;
}

.visual-container {
  position: relative;
  height: 25rem;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(43, 82, 120, 0.2);
  box-shadow: 0 12px 32px rgba(43, 82, 120, 0.12);
}

.visual-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) saturate(0.9) contrast(1.1);
}

.visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(248, 250, 251, 0.75) 0%,
    rgba(248, 250, 251, 0.35) 50%,
    rgba(59, 130, 246, 0.15) 100%
  );
}

.stats-floating {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.stat-card-floating {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(43, 82, 120, 0.2);
  box-shadow: 0 8px 24px rgba(43, 82, 120, 0.12);
  text-align: center;
  transition: all 0.3s ease;
  width: 200px;
  flex-shrink: 0;
  position: relative;
  overflow: visible;
}

.stat-card-floating:hover {
  transform: scale(1.03) translateY(-3px);
  background: rgba(255, 255, 255, 0.98);
}

/* Subtle neon box shadows for each card */
.stat-card-floating:first-child {
  box-shadow: 0 8px 24px rgba(43, 82, 120, 0.12),
    0 0 15px rgba(74, 159, 232, 0.2);
}

.stat-card-floating:first-child:hover {
  box-shadow: 0 10px 28px rgba(43, 82, 120, 0.15),
    0 0 20px rgba(74, 159, 232, 0.3);
}

.stat-card-floating:nth-child(2) {
  box-shadow: 0 8px 24px rgba(43, 82, 120, 0.12),
    0 0 15px rgba(110, 191, 139, 0.2);
}

.stat-card-floating:nth-child(2):hover {
  box-shadow: 0 10px 28px rgba(43, 82, 120, 0.15),
    0 0 20px rgba(110, 191, 139, 0.3);
}

.stat-card-floating:nth-child(3) {
  box-shadow: 0 8px 24px rgba(43, 82, 120, 0.12),
    0 0 15px rgba(232, 184, 74, 0.2);
}

.stat-card-floating:nth-child(3):hover {
  box-shadow: 0 10px 28px rgba(43, 82, 120, 0.15),
    0 0 20px rgba(232, 184, 74, 0.3);
}

.stat-icon-wrapper {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.stat-icon-wrapper::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.stat-card-floating:hover .stat-icon-wrapper::before {
  opacity: 1;
}

.stat-card-floating:hover .stat-icon-wrapper {
  transform: scale(1.08);
}

.stat-icon-globe {
  width: 1.625rem;
  height: 1.625rem;
  color: #4a9fe8;
  filter: drop-shadow(0 0 4px rgba(74, 159, 232, 0.4));
  transition: all 0.3s ease;
}

.stat-card-floating:hover .stat-icon-globe {
  color: #5ba8e8;
  filter: drop-shadow(0 0 6px rgba(74, 159, 232, 0.5));
}

.stat-icon-wrapper:has(.stat-icon-globe) {
  background: rgba(74, 159, 232, 0.15);
  border: 1.5px solid rgba(74, 159, 232, 0.4);
  box-shadow: 0 0 10px rgba(74, 159, 232, 0.2);
}

.stat-card-floating:hover .stat-icon-wrapper:has(.stat-icon-globe) {
  background: rgba(74, 159, 232, 0.2);
  border-color: rgba(74, 159, 232, 0.6);
  box-shadow: 0 0 15px rgba(74, 159, 232, 0.3);
}

.stat-icon-wrapper:has(.stat-icon-globe)::before {
  background: radial-gradient(
    circle,
    rgba(74, 159, 232, 0.2) 0%,
    transparent 70%
  );
  filter: blur(8px);
}

.stat-icon-trending {
  width: 1.625rem;
  height: 1.625rem;
  color: #6ebf8b;
  filter: drop-shadow(0 0 4px rgba(110, 191, 139, 0.4));
  transition: all 0.3s ease;
}

.stat-card-floating:hover .stat-icon-trending {
  color: #7bca95;
  filter: drop-shadow(0 0 6px rgba(110, 191, 139, 0.5));
}

.stat-icon-wrapper:has(.stat-icon-trending) {
  background: rgba(110, 191, 139, 0.15);
  border: 1.5px solid rgba(110, 191, 139, 0.4);
  box-shadow: 0 0 10px rgba(110, 191, 139, 0.2);
}

.stat-card-floating:hover .stat-icon-wrapper:has(.stat-icon-trending) {
  background: rgba(110, 191, 139, 0.2);
  border-color: rgba(110, 191, 139, 0.6);
  box-shadow: 0 0 15px rgba(110, 191, 139, 0.3);
}

.stat-icon-wrapper:has(.stat-icon-trending)::before {
  background: radial-gradient(
    circle,
    rgba(110, 191, 139, 0.2) 0%,
    transparent 70%
  );
  filter: blur(8px);
}

.stat-icon-award {
  width: 1.625rem;
  height: 1.625rem;
  color: #e8b84a;
  filter: drop-shadow(0 0 4px rgba(232, 184, 74, 0.4));
  transition: all 0.3s ease;
}

.stat-card-floating:hover .stat-icon-award {
  color: #f0c55a;
  filter: drop-shadow(0 0 6px rgba(232, 184, 74, 0.5));
}

.stat-icon-wrapper:has(.stat-icon-award) {
  background: rgba(232, 184, 74, 0.15);
  border: 1.5px solid rgba(232, 184, 74, 0.4);
  box-shadow: 0 0 10px rgba(232, 184, 74, 0.2);
}

.stat-card-floating:hover .stat-icon-wrapper:has(.stat-icon-award) {
  background: rgba(232, 184, 74, 0.2);
  border-color: rgba(232, 184, 74, 0.6);
  box-shadow: 0 0 15px rgba(232, 184, 74, 0.3);
}

.stat-icon-wrapper:has(.stat-icon-award)::before {
  background: radial-gradient(
    circle,
    rgba(232, 184, 74, 0.2) 0%,
    transparent 70%
  );
  filter: blur(8px);
}

.stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #2b5278;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #475569;
}

/* ====================================
   CONTACT SECTION
   ==================================== */

.contact-section {
  padding: 6rem 0 8rem;
  background: linear-gradient(180deg, #f8fafb 0%, #eff3f7 100%);
  position: relative;
  overflow: hidden;
  min-height: auto;
  display: flex;
  align-items: center;
}

.contact-section > .container {
  position: relative;
  z-index: 1;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(59, 130, 246, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(43, 82, 120, 0.06) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: 0;
}

.contact-bg-decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233B82F6' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
  z-index: 0;
  animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(60px, 60px);
  }
}

.contact-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(
      rgba(59, 130, 246, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(59, 130, 246, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
  opacity: 0.3;
}

.contact-grid {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-left {
  position: sticky;
  top: 8rem;
  z-index: 1;
}

.contact-left [data-animate] {
  opacity: 0;
}

.contact-left [data-animate].animate {
  opacity: 1;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.12),
    rgba(43, 82, 120, 0.08)
  );
  border: 1.5px solid rgba(59, 130, 246, 0.3);
  border-radius: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
  opacity: 0;
  transition: opacity 0.8s ease-out;
}

.contact-section.in-view .contact-badge {
  opacity: 1;
}

.contact-badge i {
  width: 1rem;
  height: 1rem;
  color: #3b82f6;
}

.contact-badge span {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #2b5278;
  letter-spacing: 0.15em;
}

.contact-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.75rem, 4.5vw, 4.25rem);
  font-weight: 700;
  color: #1a2b3d;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  transform: translateY(15px);
  opacity: 0;
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}

.contact-section.in-view .contact-title {
  transform: translateY(0);
  opacity: 1;
}

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

.contact-description {
  font-family: 'Inter', sans-serif;
  font-size: 1.1875rem;
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  transform: translateY(15px);
  opacity: 0;
  transition: transform 0.8s ease-out 0.2s, opacity 0.8s ease-out 0.2s;
}

.contact-section.in-view .contact-description {
  transform: translateY(0);
  opacity: 1;
}

.contact-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 1rem;
  border: 1px solid rgba(59, 130, 246, 0.1);
}

.contact-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  transform: translateX(-15px);
  opacity: 0;
  transition: transform 0.7s ease-out, opacity 0.7s ease-out;
}

.contact-section.in-view .contact-feature.animate,
.contact-feature.animate {
  transform: translateX(0);
  opacity: 1;
}

.feature-icon-wrapper {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.15),
    rgba(43, 82, 120, 0.1)
  );
  border: 1.5px solid rgba(59, 130, 246, 0.25);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.contact-feature:hover .feature-icon-wrapper {
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.25),
    rgba(43, 82, 120, 0.15)
  );
  border-color: rgba(59, 130, 246, 0.4);
  transform: scale(1.1) rotate(5deg);
}

.feature-icon-wrapper i {
  width: 0.875rem;
  height: 0.875rem;
  color: #3b82f6;
}

.contact-feature span {
  font-family: 'Inter', sans-serif;
  font-size: 1.0625rem;
  font-weight: 500;
  color: #1a2b3d;
  transition: color 0.3s ease;
}

.contact-feature:hover span {
  color: #3b82f6;
}

.contact-info-box {
  padding: 2rem;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.08) 0%,
    rgba(255, 255, 255, 0.95) 100%
  );
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(43, 82, 120, 0.2);
  border-radius: 1.25rem;
  box-shadow: 0 8px 24px rgba(43, 82, 120, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: translateY(15px);
  opacity: 0;
  transition: transform 0.8s ease-out 0.4s, opacity 0.8s ease-out 0.4s;
  position: relative;
  overflow: hidden;
}

.contact-info-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.1) 0%,
    transparent 70%
  );
  animation: rotateGlow 15s linear infinite;
}

@keyframes rotateGlow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.contact-section.in-view .contact-info-box,
.contact-info-box.animate {
  transform: translateY(0);
  opacity: 1;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.info-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #3b82f6;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.info-email {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: #1a2b3d;
  display: block;
  margin-bottom: 0.25rem;
}

.info-hours {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: #64748b;
  display: block;
}

.contact-form {
  padding: 2.5rem 2.5rem;
  background: #ffffff;
  border: 1px solid rgba(43, 82, 120, 0.15);
  border-radius: 1.5rem;
  box-shadow: 0 12px 40px rgba(43, 82, 120, 0.1),
    0 4px 16px rgba(43, 82, 120, 0.06);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transition: opacity 1s ease-out 0.3s, box-shadow 0.3s ease;
}

.contact-section.in-view .contact-form {
  opacity: 1;
}

.contact-form:hover {
  box-shadow: 0 16px 48px rgba(43, 82, 120, 0.15),
    0 6px 20px rgba(43, 82, 120, 0.1);
}

.contact-form::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at top right,
      rgba(59, 130, 246, 0.05) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(43, 82, 120, 0.03) 0%,
      transparent 60%
    );
  pointer-events: none;
  z-index: 0;
}

/* Form Header */
.form-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
  position: relative;
  z-index: 1;
}

.form-header-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 0.875rem;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.1),
    rgba(43, 82, 120, 0.08)
  );
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.form-header-icon i {
  width: 1.75rem;
  height: 1.75rem;
  color: #3b82f6;
}

.form-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a2b3d;
  margin-bottom: 0.375rem;
}

.form-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: #64748b;
}

.form-textarea {
  width: 100%;
  padding: 1rem 1.125rem 1rem 3.25rem;
  background: rgba(248, 250, 251, 0.7);
  border: 1.5px solid rgba(43, 82, 120, 0.15);
  border-radius: 0.875rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #1a2b3d;
  resize: vertical;
  min-height: 140px;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  outline: none;
  position: relative;
  z-index: 1;
}

.form-textarea:hover {
  background: rgba(248, 250, 251, 0.9);
  border-color: rgba(59, 130, 246, 0.25);
}

.form-textarea:focus {
  background: #ffffff;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1),
    0 2px 8px rgba(59, 130, 246, 0.12);
}

.form-textarea::placeholder {
  color: #94a3b8;
  opacity: 0.6;
}

.input-wrapper:has(.form-textarea) .input-icon {
  top: 1rem;
  transform: none;
}

.input-wrapper:has(.form-textarea):focus-within .input-icon {
  color: #3b82f6;
}

.btn-submit {
  width: 100%;
  padding: 1rem 1.75rem;
  background: linear-gradient(135deg, #2b5278 0%, #3b82f6 100%);
  color: #ffffff;
  border: none;
  border-radius: 0.875rem;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
  margin-top: 1.5rem;
  z-index: 1;
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.2),
    0 2px 8px rgba(43, 82, 120, 0.15);
}

.btn-submit:hover {
  box-shadow: 0 10px 28px rgba(59, 130, 246, 0.3),
    0 4px 12px rgba(43, 82, 120, 0.2);
}

.btn-submit:active {
  transform: translateY(1px);
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.25),
    0 2px 6px rgba(43, 82, 120, 0.15);
}

.btn-submit-shine {
  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;
}

.btn-submit:hover .btn-submit-shine {
  left: 100%;
}

.btn-submit i {
  width: 1.25rem;
  height: 1.25rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-left {
    position: relative;
    top: 0;
  }

  .stats-floating {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .logo-image {
    height: 40px;
  }

  .logo-text p {
    display: none;
  }

  .language-selector {
    order: -1;
  }

  .stats-floating {
    padding: 1rem;
  }

  .stat-card-floating {
    padding: 1rem 1.5rem;
    width: 180px;
  }

  .stat-value {
    font-size: 2rem;
  }
}

/* ====================================
   ENHANCED FOOTER
   ==================================== */

.footer {
  background: linear-gradient(180deg, #1a2b3d 0%, #0f1822 100%);
  color: #ffffff;
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(59, 130, 246, 0.4) 50%,
    transparent 100%
  );
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #2b5278 0%, #3b82f6 100%);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.footer-logo-icon span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
}

.footer-logo-text h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}

.footer-logo-text p {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
  margin-top: 0.125rem;
}

.footer-description {
  font-family: 'Inter', sans-serif;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
}

.footer-contact-item i {
  width: 1rem;
  height: 1rem;
  color: #3b82f6;
}

.footer-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-family: 'Inter', sans-serif;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #3b82f6;
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
}

.footer-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-bottom-left p {
  font-family: 'Inter', sans-serif;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-legal a {
  font-family: 'Inter', sans-serif;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #3b82f6;
}

.footer-divider {
  color: rgba(255, 255, 255, 0.3);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(59, 130, 246, 0.2);
  border-color: #3b82f6;
  color: #3b82f6;
  transform: translateY(-2px);
}

.social-link i {
  width: 1.125rem;
  height: 1.125rem;
}

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

  .footer-column:first-child {
    grid-column: 1 / -1;
  }
}

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

  .footer-bottom {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .footer-bottom-left {
    align-items: center;
  }
}

/* ====================================
   WE SOURCE GLOBALLY SECTION - ENHANCED PROFESSIONAL
   ==================================== */

.source-globally-section {
  padding: 10rem 0;
  background: linear-gradient(180deg, #fafbfc 0%, #ffffff 50%, #f8fafb 100%);
  position: relative;
  overflow: hidden;
}

.source-globally-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 1000px;
  height: 1000px;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.04) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
  animation: floatGlow 20s ease-in-out infinite;
}

.source-globally-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(43, 82, 120, 0.03) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
  animation: floatGlow 25s ease-in-out infinite reverse;
}

@keyframes floatGlow {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(30px, -30px) scale(1.1);
    opacity: 0.8;
  }
}

.source-globally-section .container {
  position: relative;
  z-index: 1;
}

.source-globally-grid {
  display: grid;
  grid-template-columns: 48% 52%;
  gap: 6rem;
  align-items: center;
}

/* Image Wrapper - Enhanced */
.source-globally-image-wrapper {
  position: relative;
  border-radius: 2.5rem;
  overflow: hidden;
  height: 650px;
  box-shadow: 0 25px 70px rgba(43, 82, 120, 0.12),
    0 0 0 1px rgba(59, 130, 246, 0.08) inset, 0 0 100px rgba(59, 130, 246, 0.05);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 1;
  transform: none;
}

.source-globally-image-wrapper[data-animate='fade-scale'] {
  /* Animation will be triggered by JavaScript when section comes into view */
}

.source-globally-section.in-view
  .source-globally-image-wrapper[data-animate='fade-scale'] {
  animation: slideInFromLeft 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideInFromLeft {
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.source-globally-image-wrapper:hover {
  box-shadow: 0 35px 90px rgba(59, 130, 246, 0.18),
    0 0 0 1px rgba(59, 130, 246, 0.15) inset, 0 0 120px rgba(59, 130, 246, 0.08);
  transform: translateY(-12px) scale(1.01);
}

.image-inner-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.source-globally-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  filter: brightness(0.92) contrast(1.08) saturate(1.15);
}

.source-globally-image-wrapper:hover .source-globally-image {
  transform: scale(1.12);
  filter: brightness(0.98) contrast(1.1) saturate(1.2);
}

.image-shine-effect {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  transform: translateX(-100%) translateY(-100%) rotate(45deg);
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 3;
}

.source-globally-image-wrapper:hover .image-shine-effect {
  transform: translateX(100%) translateY(100%) rotate(45deg);
}

.source-globally-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 43, 61, 0.15) 0%,
    rgba(43, 82, 120, 0.25) 50%,
    rgba(26, 43, 61, 0.4) 100%
  );
  transition: background 0.6s ease;
  z-index: 1;
}

.source-globally-image-wrapper:hover .source-globally-overlay {
  background: linear-gradient(
    180deg,
    rgba(59, 130, 246, 0.1) 0%,
    rgba(43, 82, 120, 0.2) 50%,
    rgba(26, 43, 61, 0.35) 100%
  );
}

/* Stat Card - Enhanced */
.source-globally-card {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  right: 2.5rem;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.99);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border-radius: 1.5rem;
  border: 1.5px solid rgba(59, 130, 246, 0.2);
  box-shadow: 0 20px 60px rgba(43, 82, 120, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset,
    0 8px 32px rgba(59, 130, 246, 0.12);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
  opacity: 0;
  transform: translateY(100px) scale(0.9);
}

.source-globally-card[data-animate='fade-up'] {
  /* Animation will be triggered by JavaScript when section comes into view */
}

.source-globally-section.in-view .source-globally-card[data-animate='fade-up'] {
  animation: slideUpFromBottom 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

@keyframes slideUpFromBottom {
  0% {
    opacity: 0;
    transform: translateY(100px) scale(0.9);
    filter: blur(10px);
  }
  60% {
    opacity: 0.95;
    transform: translateY(-5px) scale(1.02);
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.card-glow {
  position: absolute;
  inset: -2px;
  border-radius: 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.2),
    rgba(96, 165, 250, 0.15)
  );
  opacity: 0;
  filter: blur(20px);
  transition: opacity 0.6s ease;
  z-index: -1;
}

.source-globally-image-wrapper:hover .source-globally-card {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 25px 70px rgba(43, 82, 120, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.7) inset,
    0 12px 40px rgba(59, 130, 246, 0.18);
  transform: translateY(-8px);
}

.source-globally-image-wrapper:hover .card-glow {
  opacity: 1;
}

.card-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  background: linear-gradient(135deg, #1a2b3d 0%, #2b5278 50%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.source-globally-image-wrapper:hover .card-value {
  transform: scale(1.05);
  background: linear-gradient(135deg, #2b5278 0%, #3b82f6 50%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.card-description {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #475569;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* Right Content - Enhanced */
.source-globally-right {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.content-header {
  opacity: 0;
  transform: translateY(30px);
}

.content-header[data-animate='fade-right'] {
  /* Animation will be triggered by JavaScript when section comes into view */
}

.source-globally-section.in-view .content-header[data-animate='fade-right'] {
  animation: fadeUpSlide 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

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

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 2rem;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #3b82f6;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.label-dot {
  width: 6px;
  height: 6px;
  background: #3b82f6;
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.2);
  }
}

.source-globally-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.75rem, 5vw, 4rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 0;
}

.supply-accent {
  background: linear-gradient(135deg, #1a2b3d 0%, #2b5278 50%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  position: relative;
}

.supply-accent::after {
  content: '';
  position: absolute;
  bottom: 0.25rem;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(59, 130, 246, 0.4),
    rgba(96, 165, 250, 0.3)
  );
  border-radius: 2px;
  opacity: 0.5;
}

.source-globally-description {
  font-family: 'Inter', sans-serif;
  font-size: 1.1875rem;
  color: #475569;
  line-height: 1.85;
  max-width: 95%;
  opacity: 1;
  transform: none;
}

.source-globally-description[data-animate='fade-right'] {
  /* Animation will be triggered by JavaScript when section comes into view */
}

.source-globally-section.in-view
  .source-globally-description[data-animate='fade-right'] {
  animation: fadeUpSlide 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

/* Features - Enhanced */
.source-globally-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  padding: 2rem 2.25rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1.5px solid rgba(226, 232, 240, 0.8);
  border-radius: 1.5rem;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateX(40px);
}

.feature-item[data-animate='fade-right'] {
  /* Animation will be triggered by JavaScript when section comes into view */
}

.source-globally-section.in-view
  .feature-item[data-animate='fade-right'][data-delay='200'] {
  animation: slideInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.source-globally-section.in-view
  .feature-item[data-animate='fade-right'][data-delay='300'] {
  animation: slideInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

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

.feature-item:nth-child(1) {
  animation-delay: 0.4s;
}

.feature-item:nth-child(2) {
  animation-delay: 0.5s;
}

.feature-glow {
  position: absolute;
  inset: -2px;
  border-radius: 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.15),
    rgba(96, 165, 250, 0.1)
  );
  opacity: 0;
  filter: blur(15px);
  transition: opacity 0.5s ease;
  z-index: 0;
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, #3b82f6 0%, #60a5fa 50%, #93c5fd 100%);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 1.5rem 0 0 1.5rem;
  z-index: 1;
}

.feature-item:hover {
  background: #ffffff;
  border-color: rgba(59, 130, 246, 0.25);
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.15),
    0 0 0 1px rgba(59, 130, 246, 0.1) inset;
  transform: translateX(16px) translateY(-6px);
}

.feature-item:hover::before {
  transform: scaleY(1);
  transform-origin: top;
}

.feature-item:hover .feature-glow {
  opacity: 1;
}

.feature-icon-box {
  width: 4.5rem;
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.1),
    rgba(43, 82, 120, 0.08)
  );
  border: 1.5px solid rgba(59, 130, 246, 0.2);
  border-radius: 1.25rem;
  flex-shrink: 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.icon-background {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.15),
    rgba(96, 165, 250, 0.1)
  );
  opacity: 0;
  transition: opacity 0.5s ease;
}

.feature-item:hover .feature-icon-box {
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.2),
    rgba(96, 165, 250, 0.15)
  );
  border-color: rgba(59, 130, 246, 0.35);
  transform: scale(1.08) rotate(-8deg);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.25);
}

.feature-item:hover .icon-background {
  opacity: 1;
}

.feature-icon-box i {
  width: 2.25rem;
  height: 2.25rem;
  color: #3b82f6;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 1;
}

.feature-item:hover .feature-icon-box i {
  transform: scale(1.15);
  filter: drop-shadow(0 6px 12px rgba(59, 130, 246, 0.4));
  color: #2563eb;
}

.feature-content {
  flex: 1;
  position: relative;
  z-index: 2;
}

.feature-content h4 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
  transition: color 0.4s ease;
  letter-spacing: -0.01em;
}

.feature-item:hover .feature-content h4 {
  color: #1a2b3d;
}

.feature-content p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #64748b;
  line-height: 1.7;
  transition: color 0.4s ease;
}

.feature-item:hover .feature-content p {
  color: #475569;
}

.feature-arrow {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 0.75rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 2;
}

.feature-item:hover .feature-arrow {
  opacity: 1;
  transform: translateX(0);
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.25);
}

.feature-arrow i {
  width: 1.25rem;
  height: 1.25rem;
  color: #3b82f6;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-item:hover .feature-arrow i {
  transform: translateX(4px);
}

/* ====================================
   WHY PARTSFORM SECTION
   ==================================== */

.why-partsform-section {
  padding: 8rem 0;
  background: linear-gradient(180deg, #1a2b3d 0%, #0f1822 100%);
  position: relative;
  overflow: hidden;
}

.why-partsform-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(59, 130, 246, 0.4) 50%,
    transparent 100%
  );
}

.why-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 0.5rem;
}

.partsform-accent {
  background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin-bottom: 4rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.why-card {
  position: relative;
  height: 350px;
  border-radius: 1.5rem;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.why-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.3);
}

.why-card-image {
  position: absolute;
  inset: 0;
}

.why-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.why-card:hover .why-card-image img {
  transform: scale(1.1);
}

.why-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 43, 61, 0.4) 0%,
    rgba(26, 43, 61, 0.7) 60%,
    rgba(26, 43, 61, 0.9) 100%
  );
  transition: background 0.4s ease;
}

.why-card:hover .why-card-overlay {
  background: linear-gradient(
    180deg,
    rgba(59, 130, 246, 0.2) 0%,
    rgba(43, 82, 120, 0.7) 60%,
    rgba(26, 43, 61, 0.95) 100%
  );
}

.why-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  z-index: 2;
}

.why-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  transition: all 0.3s ease;
}

.why-card:hover .why-card-title {
  transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .source-globally-section {
    padding: 7rem 0;
  }

  .source-globally-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .source-globally-image-wrapper {
    height: 500px;
    order: 2;
  }

  .source-globally-right {
    order: 1;
    gap: 2.5rem;
  }

  .source-globally-description {
    max-width: 100%;
  }

  .card-value {
    font-size: 3.5rem;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .source-globally-section {
    padding: 6rem 0;
  }

  .source-globally-grid {
    gap: 3rem;
  }

  .source-globally-image-wrapper {
    height: 400px;
    border-radius: 2rem;
  }

  .source-globally-card {
    padding: 2rem;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    border-radius: 1.25rem;
  }

  .card-value {
    font-size: 3rem;
  }

  .source-globally-title {
    font-size: clamp(2.25rem, 6vw, 3rem);
  }

  .source-globally-description {
    font-size: 1.0625rem;
  }

  .source-globally-features {
    gap: 1.125rem;
  }

  .feature-item {
    padding: 1.75rem;
    gap: 1.5rem;
  }

  .feature-icon-box {
    width: 4rem;
    height: 4rem;
  }

  .feature-icon-box i {
    width: 2rem;
    height: 2rem;
  }

  .feature-content h4 {
    font-size: 1.375rem;
  }

  .feature-content p {
    font-size: 0.9375rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .why-card {
    height: 280px;
  }
}

@media (max-width: 480px) {
  .source-globally-section {
    padding: 5rem 0;
  }

  .source-globally-image-wrapper {
    height: 320px;
    border-radius: 1.5rem;
  }

  .source-globally-card {
    padding: 1.5rem;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    border-radius: 1rem;
  }

  .card-value {
    font-size: 2.5rem;
  }

  .card-description {
    font-size: 0.9375rem;
  }

  .section-label {
    font-size: 0.6875rem;
    padding: 0.4375rem 0.875rem;
    margin-bottom: 1.25rem;
  }

  .source-globally-title {
    font-size: clamp(2rem, 7vw, 2.5rem);
  }

  .source-globally-description {
    font-size: 1rem;
  }

  .feature-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
  }

  .feature-icon-box {
    width: 3.75rem;
    height: 3.75rem;
  }

  .feature-icon-box i {
    width: 1.875rem;
    height: 1.875rem;
  }

  .feature-content h4 {
    font-size: 1.25rem;
  }

  .feature-arrow {
    width: 2.25rem;
    height: 2.25rem;
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
  }
}

/* ====================================
   SEARCH PAGE - FILTER SIDEBAR & RESULTS TABLE
   ==================================== */

/* Excel Upload Button */
.search-excel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.875rem 1.5rem;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 0.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.search-excel-btn:hover {
  background: rgba(59, 130, 246, 0.05);
  border-color: rgba(59, 130, 246, 0.25);
  color: var(--primary);
  box-shadow: var(--shadow-md);
}

.search-excel-btn i {
  width: 20px;
  height: 20px;
}

/* Search Results Container */
.search-results-container {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

/* Advanced Filters Sidebar */
.filters-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 380px;
  height: 100vh;
  background: var(--card);
  border-right: 1.5px solid var(--border);
  box-shadow: 4px 0 24px rgba(43, 82, 120, 0.12);
  z-index: 10051;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.filters-sidebar.active {
  transform: translateX(0);
}

.filters-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: 1.5px solid var(--border);
  background: rgba(59, 130, 246, 0.03);
  position: sticky;
  top: 0;
  z-index: 10;
}

.filters-title {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.filters-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 0.5rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filters-close:hover {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.25);
}

.filters-close i {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.filters-content {
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.filter-group-title {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Price Range */
.price-range-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.price-range-slider {
  position: relative;
  height: 6px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 3px;
  margin: 1rem 0;
}

.range-input {
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
}

.range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: var(--accent-blue);
  border: 3px solid var(--card);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.range-input::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: var(--accent-blue);
  border: 3px solid var(--card);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.price-inputs {
  display: flex;
  gap: 1rem;
}

.price-input-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.price-input-group label {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
}

.price-input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--text-primary);
  background: var(--input-background);
  border: 1.5px solid var(--border);
  border-radius: 0.5rem;
  outline: none;
  transition: var(--transition-fast);
}

.price-input:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.weight-inputs {
  display: flex;
  gap: 1rem;
}

/* Filter Tags */
.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.filter-tag {
  padding: 0.625rem 1.25rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--input-background);
  border: 1.5px solid var(--border);
  border-radius: 9999px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-tag:hover {
  background: rgba(59, 130, 246, 0.08);
  border-color: rgba(59, 130, 246, 0.25);
  color: var(--primary);
}

.filter-tag.active {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.25);
}

.filter-tag.active::before {
  content: '✓';
  margin-right: 0.375rem;
}

/* Filters Footer */
.filters-footer {
  padding: 1.5rem 2rem;
  border-top: 1.5px solid var(--border);
  display: flex;
  gap: 1rem;
  position: sticky;
  bottom: 0;
  background: var(--card);
}

.filter-btn-clear {
  flex: 1;
  padding: 0.875rem 1.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--input-background);
  border: 1.5px solid var(--border);
  border-radius: 0.5rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn-clear:hover {
  background: rgba(220, 38, 38, 0.05);
  border-color: rgba(220, 38, 38, 0.2);
  color: #dc2626;
}

.filter-btn-apply {
  flex: 1;
  padding: 0.875rem 1.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--accent-blue) 100%
  );
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: var(--transition-base);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

.filter-btn-apply:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.35);
}

/* Search Results Main */
.search-results-main {
  flex: 1;
  min-width: 0;
}

.results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 1rem;
  box-shadow: var(--shadow-sm);
}

.results-count {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 0.25rem;
}

.results-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.selected-total-box {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
  padding: 1rem 1.5rem;
  background: rgba(59, 130, 246, 0.05);
  border: 1.5px solid rgba(59, 130, 246, 0.15);
  border-radius: 0.75rem;
}

.selected-total-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.selected-total-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

/* Results Table */
.results-table-container {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.table-wrapper {
  overflow-x: auto;
  max-height: 70vh;
  overflow-y: auto;
}

.results-table {
  width: 100%;
  min-width: 1400px;
  border-collapse: collapse;
}

.results-table thead {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(59, 130, 246, 0.08);
  border-bottom: 2px solid rgba(59, 130, 246, 0.2);
}

.results-table th {
  padding: 1rem;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: left;
  border-right: 1px solid rgba(43, 82, 120, 0.12);
}

.results-table th:first-child {
  text-align: center;
  width: 80px;
}

.results-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: var(--transition-fast);
}

.results-table tbody tr:hover {
  background: rgba(59, 130, 246, 0.03);
}

.results-table td {
  padding: 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--text-primary);
  border-right: 1px solid rgba(43, 82, 120, 0.08);
}

.results-table td:first-child {
  text-align: center;
}

/* Table Checkbox */
.table-checkbox {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--accent-blue);
}

/* Stock Badge */
.stock-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 0.375rem;
}

.stock-badge.st1 {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.stock-badge.st2 {
  background: rgba(251, 146, 60, 0.1);
  color: #fb923c;
  border: 1px solid rgba(251, 146, 60, 0.2);
}

.stock-badge.st3 {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Order Quantity Controls */
.order-qty-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.qty-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.08);
  border: 1.5px solid rgba(59, 130, 246, 0.15);
  border-radius: 0.375rem;
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
}

.qty-btn:hover {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.25);
}

.qty-input {
  width: 60px;
  padding: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  text-align: center;
  color: var(--text-primary);
  background: var(--input-background);
  border: 1.5px solid var(--border);
  border-radius: 0.375rem;
  outline: none;
}

.qty-input:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Results Footer */
.results-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-top: 1.5px solid var(--border);
  background: rgba(59, 130, 246, 0.03);
}

.btn-add-to-cart {
  padding: 1rem 2rem;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--accent-blue) 100%
  );
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: var(--transition-base);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

.btn-add-to-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.35);
}

.btn-add-to-cart:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.selected-total-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.selected-total-label-footer {
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.selected-total-amount-footer {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

/* Empty State Updates */
.empty-state-icon-wrapper {
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.05);
  border: 2px dashed rgba(59, 130, 246, 0.2);
  border-radius: 50%;
}

.empty-state-icon-wrapper .empty-state-icon {
  width: 60px;
  height: 60px;
  color: var(--text-subtle);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .filters-sidebar {
    width: 100%;
    max-width: 400px;
  }

  .search-results-container {
    flex-direction: column;
  }

  .results-table {
    min-width: 1200px;
  }
}

@media (max-width: 768px) {
  .filters-sidebar {
    width: 100%;
  }

  .results-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .selected-total-box {
    width: 100%;
    align-items: flex-start;
  }

  .results-footer {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }

  .btn-add-to-cart {
    width: 100%;
  }
}
