/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #0f1729;
  color: #ffffff;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Light Theme */
body.light-theme {
  background-color: #f8fafc;
  color: #1e293b;
}

body.light-theme .navbar {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-theme .navbar-logo,
body.light-theme .nav-item a,
body.light-theme .btn-login,
body.light-theme .theme-toggle {
  color: #1e293b;
}

body.light-theme .nav-item a:hover {
  color: #3b82f6;
}

body.light-theme .theme-toggle:hover {
  background: rgba(0, 0, 0, 0.05);
}

body.light-theme .btn-login:hover {
  background: rgba(0, 0, 0, 0.05);
}

body.light-theme .hero {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f8fafc 100%);
}

body.light-theme .hero-title,
body.light-theme .stat-value {
  color: #1e293b;
}

body.light-theme .hero-description,
body.light-theme .stat-label {
  color: #64748b;
}

body.light-theme .hero-badge {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.3);
  color: #2563eb;
}

body.light-theme .btn-secondary-large {
  background: #ffffff;
  color: #1e293b;
  border: 1px solid #e2e8f0;
}

body.light-theme .btn-secondary-large:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
}

body.light-theme .trusted-by {
  background: #ffffff;
}

body.light-theme .trusted-title {
  color: #64748b;
}

body.light-theme .company-card {
  background: #f8fafc;
  border-color: #e2e8f0;
}

body.light-theme .company-card:hover {
  background: #ffffff;
  border-color: #cbd5e1;
}

body.light-theme .company-name {
  color: #1e293b;
}

body.light-theme .features {
  background: linear-gradient(180deg, #ffffff 0%, transparent 100%);
}

body.light-theme .features-title,
body.light-theme .feature-title,
body.light-theme .cta-title {
  color: #1e293b;
}

body.light-theme .features-description,
body.light-theme .feature-description,
body.light-theme .cta-description {
  color: #64748b;
}

body.light-theme .feature-card {
  background: #ffffff;
  border-color: #e2e8f0;
}

body.light-theme .feature-card:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
}

body.light-theme .features-cta {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
  border-color: #e2e8f0;
}

body.light-theme .mobile-menu {
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-theme .mobile-menu a {
  color: #1e293b;
}

body.light-theme .dropdown-menu {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
  border-color: #cbd5e1;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 
              0 0 0 1px rgba(59, 130, 246, 0.1),
              inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

body.light-theme .dropdown-menu::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
  border-color: #cbd5e1;
}

body.light-theme .dropdown-menu a {
  color: #1e293b;
}

body.light-theme .dropdown-menu a:hover {
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  color: #0f172a;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

body.light-theme .dropdown-menu a[style*="color: #3b82f6"] {
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
  color: #2563eb;
}

body.light-theme .dropdown-desc {
  color: rgba(15, 23, 41, 0.6);
}

body.light-theme .dropdown-menu a:hover .dropdown-desc {
  color: rgba(15, 23, 41, 0.8);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Navigation */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(15, 23, 41, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1rem 0;
}

.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: center;
}

.nav-item {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: linear-gradient(135deg, rgba(15, 23, 41, 0.98) 0%, rgba(26, 35, 50, 0.98) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.75rem;
  padding: 0.75rem;
  margin-top: 0.5rem;
  min-width: 220px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 
              0 0 0 1px rgba(59, 130, 246, 0.1),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
  list-style: none;
  z-index: 1000;
  pointer-events: auto;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, rgba(15, 23, 41, 0.98) 0%, rgba(26, 35, 50, 0.98) 100%);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  transform: translateX(-50%) rotate(45deg);
  z-index: -1;
}

.dropdown-menu li {
  padding: 0;
  margin: 0.25rem 0;
  position: relative;
}

.dropdown-menu li:first-child {
  margin-top: 0;
}

.dropdown-menu li:last-child {
  margin-bottom: 0;
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.dropdown-menu a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #3b82f6 0%, #8b5cf6 100%);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.dropdown-menu a:hover {
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
  color: #ffffff;
  padding-left: 1.25rem;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.dropdown-menu a:hover::before {
  transform: scaleY(1);
}

.dropdown-menu a[style*="color: #3b82f6"] {
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
  color: #60a5fa;
  font-weight: 600;
}

.dropdown-menu a[style*="color: #3b82f6"]::before {
  transform: scaleY(1);
}

.dropdown-menu a::after {
  content: '→';
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  margin-left: auto;
  font-size: 1.125rem;
}

.dropdown-menu a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* Enhanced dropdown with icon and description */
.dropdown-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.dropdown-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.dropdown-title {
  font-weight: 600;
  font-size: 0.9375rem;
  color: inherit;
}

.dropdown-desc {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

.dropdown-menu a:hover .dropdown-desc {
  color: rgba(255, 255, 255, 0.8);
}

.nav-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-item a:hover {
  color: #ffffff;
}

.dropdown-arrow {
  font-size: 0.625rem;
  opacity: 0.6;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.theme-toggle {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  transition: all 0.2s;
}

.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

.btn-login {
  background: transparent;
  border: none;
  color: #ffffff;
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-login:hover {
  background: rgba(255, 255, 255, 0.05);
}

.btn-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  border: none;
  color: #ffffff;
  padding: 0.625rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 0.375rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  display: block;
  width: 1.5rem;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 1rem;
}

.mobile-menu a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 0;
}

.mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 6rem 0 8rem;
  overflow: hidden;
  background: linear-gradient(135deg, #0f1729 0%, #1a2332 50%, #0f1729 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(56, 189, 248, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(147, 51, 234, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  width: fit-content;
  color: #93c5fd;
}

.badge-icon {
  font-size: 1rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  margin: 0;
}

.gradient-text {
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-secondary {
  background: linear-gradient(135deg, #06b6d4 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 90%;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary-large,
.btn-secondary-large {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.btn-primary-large {
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.btn-primary-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.btn-secondary-large {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary-large:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 1rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.stat-divider {
  width: 1px;
  height: 2rem;
  background: rgba(255, 255, 255, 0.1);
}

.hero-right {
  position: relative;
}

.hero-visual {
  position: relative;
  height: 500px;
}

.floating-element {
  position: absolute;
  animation: float 3s ease-in-out infinite;
}

.element-1 {
  top: 10%;
  right: 20%;
  animation-delay: 0s;
}

.element-2 {
  top: 50%;
  right: 5%;
  animation-delay: 0.5s;
}

.element-3 {
  bottom: 15%;
  left: 10%;
  animation-delay: 1s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.hero-mockup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 500px;
}

.mockup-window {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 1rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.mockup-header {
  background: #f3f4f6;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.mockup-dots {
  display: flex;
  gap: 0.5rem;
}

.mockup-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d1d5db;
}

.mockup-dots span:nth-child(1) {
  background: #ef4444;
}

.mockup-dots span:nth-child(2) {
  background: #f59e0b;
}

.mockup-dots span:nth-child(3) {
  background: #10b981;
}

.mockup-title {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 600;
}

.mockup-content {
  padding: 1.5rem;
  min-height: 300px;
}

.mockup-toolbar {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.toolbar-group {
  display: flex;
  gap: 0.5rem;
}

.toolbar-btn {
  width: 32px;
  height: 32px;
  border-radius: 0.375rem;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #6b7280;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.toolbar-btn:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
}

.mockup-text {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.text-line {
  height: 12px;
  background: linear-gradient(90deg, #e5e7eb 0%, #f3f4f6 50%, #e5e7eb 100%);
  background-size: 200% 100%;
  border-radius: 4px;
  animation: shimmer 2s infinite;
}

.text-line.short {
  width: 60%;
}

.text-line.medium {
  width: 80%;
}

.text-title {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.ai-indicator {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.ai-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
}

.hero-wave svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Trusted By Section */
.trusted-by {
  padding: 4rem 0;
  background: rgba(26, 35, 50, 0.3);
}

.trusted-by .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.trusted-title {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0;
}

.companies-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  width: 100%;
}

.company-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.75rem;
  transition: all 0.3s;
}

.company-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.company-icon {
  font-size: 1.5rem;
}

.company-name {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.btn-cta {
  background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
  color: #ffffff;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
  margin-top: 1rem;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
}

/* Features Section */
.features {
  padding: 6rem 0;
  background: linear-gradient(180deg, rgba(26, 35, 50, 0.3) 0%, transparent 100%);
}

.features-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.features-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 1rem;
}

.features-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: inline-block;
  filter: drop-shadow(0 4px 8px rgba(59, 130, 246, 0.3));
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.75rem;
}

.feature-description {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.features-cta {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  margin-top: 2rem;
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.75rem;
}

.cta-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 2rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Responsive Design */

/* Tablet and Small Desktop (768px - 1024px) */
@media (max-width: 1024px) {
  .container {
    max-width: 100%;
    padding: 0 1.5rem;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .companies-grid {
    gap: 2rem;
  }
}

/* Tablet Portrait and Mobile Landscape (768px - 968px) */
@media (max-width: 968px) {
  .navbar-menu,
  .navbar-actions .btn-login,
  .navbar-actions .btn-primary {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .navbar-actions {
    gap: 0.5rem;
  }

  .hero {
    padding: 3rem 0 5rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-title {
    font-size: 2.5rem;
    line-height: 1.15;
  }

  .hero-description {
    max-width: 100%;
    font-size: 1rem;
  }

  .hero-visual {
    height: 400px;
    margin: 0 auto;
    max-width: 500px;
  }

  .hero-actions {
    flex-direction: row;
    gap: 0.75rem;
  }

  .btn-primary-large,
  .btn-secondary-large {
    flex: 1;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .features {
    padding: 3rem 0;
  }

  .features-header {
    margin-bottom: 3rem;
  }

  .features-title {
    font-size: 2rem;
  }

  .features-description {
    font-size: 1rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .feature-icon {
    font-size: 2rem;
  }

  .feature-title {
    font-size: 1.125rem;
  }

  .feature-description {
    font-size: 0.9375rem;
  }

  .features-cta {
    padding: 3rem 1.5rem;
  }

  .cta-title {
    font-size: 1.75rem;
  }

  .cta-description {
    font-size: 1rem;
  }

  .cta-actions {
    flex-direction: row;
    gap: 0.75rem;
  }

  .cta-actions .btn-primary-large,
  .cta-actions .btn-secondary-large {
    flex: 1;
    justify-content: center;
  }

  .trusted-by {
    padding: 3rem 0;
  }

  .companies-grid {
    gap: 1.5rem;
  }

  .company-card {
    padding: 0.875rem 1.25rem;
  }

  .company-icon {
    font-size: 1.25rem;
  }

  .company-name {
    font-size: 0.9375rem;
  }
}

/* Mobile (481px - 767px) */
@media (max-width: 767px) {
  .container {
    padding: 0 1.25rem;
  }

  .navbar {
    padding: 0.875rem 0;
  }

  .logo-text {
    font-size: 1.125rem;
  }

  .hero {
    padding: 2.5rem 0 4rem;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-badge {
    font-size: 0.8125rem;
    padding: 0.375rem 0.875rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 0.75rem;
  }

  .btn-primary-large,
  .btn-secondary-large {
    width: 100%;
    padding: 0.875rem 1.5rem;
  }

  .hero-stats {
    gap: 1.25rem;
  }

  .stat-value {
    font-size: 0.9375rem;
  }

  .stat-label {
    font-size: 0.8125rem;
  }

  .hero-visual {
    height: 350px;
  }

  .floating-element svg {
    width: 40px;
    height: 40px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .features-title {
    font-size: 1.875rem;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-actions .btn-primary-large,
  .cta-actions .btn-secondary-large {
    width: 100%;
  }

  .companies-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .company-card {
    justify-content: center;
    padding: 0.75rem 1rem;
  }
}

/* Small Mobile (320px - 480px) */
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .navbar {
    padding: 0.75rem 0;
  }

  .navbar-logo {
    gap: 0.5rem;
  }

  .logo-text {
    font-size: 1rem;
  }

  .logo-icon svg {
    width: 32px;
    height: 32px;
  }

  .hero {
    padding: 2rem 0 3rem;
  }

  .hero-title {
    font-size: 1.875rem;
    line-height: 1.2;
  }

  .hero-description {
    font-size: 0.9375rem;
    line-height: 1.6;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
  }

  .btn-primary-large,
  .btn-secondary-large {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }

  .btn-primary-large svg,
  .btn-secondary-large svg {
    width: 18px;
    height: 18px;
  }

  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .stat-divider {
    display: none;
  }

  .hero-visual {
    height: 300px;
  }

  .hero-mockup {
    max-width: 100%;
  }

  .mockup-content {
    padding: 1rem;
    min-height: 250px;
  }

  .mockup-title {
    font-size: 0.75rem;
  }

  .floating-element {
    display: none;
  }

  .trusted-by {
    padding: 2.5rem 0;
  }

  .trusted-title {
    font-size: 0.9375rem;
  }

  .companies-grid {
    gap: 0.75rem;
  }

  .company-card {
    padding: 0.625rem 0.875rem;
    gap: 0.5rem;
  }

  .company-icon {
    font-size: 1.125rem;
  }

  .company-name {
    font-size: 0.875rem;
  }

  .btn-cta {
    padding: 0.875rem 2rem;
    font-size: 0.9375rem;
  }

  .features {
    padding: 2.5rem 0;
  }

  .features-header {
    margin-bottom: 2rem;
  }

  .features-title {
    font-size: 1.625rem;
  }

  .features-description {
    font-size: 0.9375rem;
  }

  .features-grid {
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .feature-card {
    padding: 1.25rem;
  }

  .feature-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }

  .feature-title {
    font-size: 1rem;
  }

  .feature-description {
    font-size: 0.875rem;
  }

  .features-cta {
    padding: 2rem 1.25rem;
    margin-top: 1.5rem;
  }

  .cta-title {
    font-size: 1.375rem;
  }

  .cta-description {
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
  }

  .mobile-menu {
    padding: 1.25rem 0;
  }

  .mobile-menu a {
    font-size: 0.9375rem;
    padding: 0.625rem 0;
  }

  .mobile-actions {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
  }
}

/* Extra Small Screens */
@media (max-width: 360px) {
  .hero-title {
    font-size: 1.625rem;
  }

  .features-title {
    font-size: 1.5rem;
  }

  .cta-title {
    font-size: 1.25rem;
  }

  .hero-mockup {
    transform: translate(-50%, -50%) scale(0.9);
  }
}
