/* Button Components */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-md) var(--spacing-xl);
  font-size: var(--font-size-base);
  font-weight: 600;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::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 var(--transition-slow);
  z-index: -1;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--accent-blue), var(--primary-blue));
}

.btn-secondary {
  background: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
  position: relative;
}

.btn-secondary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--primary-blue);
  transition: width var(--transition-normal);
  z-index: -1;
}

.btn-secondary:hover {
  color: var(--white);
}

.btn-secondary:hover::after {
  width: 100%;
}

/* Card Components */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--spacing-xl);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent-blue);
}

.card:hover::before {
  transform: scaleX(1);
}

.card-header {
  margin-bottom: var(--spacing-lg);
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.card-title {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--spacing-sm);
}

.card-description {
  color: var(--gray-600);
  line-height: 1.6;
}

/* Navigation Components */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-md) 0;
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--gray-200);
  transition: all var(--transition-fast);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.nav-brand {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--primary-blue);
  transition: transform var(--transition-fast);
  text-align: center;
}

.nav-brand:hover {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--spacing-xl);
}

.nav-link {
  color: var(--gray-600);
  font-weight: 500;
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-blue);
  transition: all var(--transition-fast);
  transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-blue);
  background: var(--light-blue);
}

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

/* Mobile Navigation Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--spacing-sm);
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary-blue);
  margin: 3px 0;
  transition: all var(--transition-fast);
  border-radius: var(--radius-sm);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Form Components */
.form-group {
  margin-bottom: var(--spacing-lg);
  position: relative;
}

.form-label {
  display: block;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: var(--spacing-sm);
  transition: color var(--transition-fast);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: var(--spacing-md);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: var(--font-size-base);
  transition: all var(--transition-fast);
  background: var(--white);
  position: relative;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  transform: translateY(-1px);
}

.form-input:focus + .form-label,
.form-select:focus + .form-label,
.form-textarea:focus + .form-label {
  color: var(--accent-blue);
}

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

.form-error {
  color: #dc2626;
  font-size: var(--font-size-sm);
  margin-top: var(--spacing-xs);
}

.form-success {
  color: #059669;
  font-size: var(--font-size-sm);
  margin-top: var(--spacing-xs);
}

/* Hero Section Components */
.hero {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-charcoal));
  color: var(--white);
  padding: var(--spacing-3xl) 0;
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: var(--font-size-5xl);
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: var(--font-size-xl);
  margin-bottom: var(--spacing-2xl);
  color: var(--light-blue);
  opacity: 0.9;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: var(--spacing-lg);
  justify-content: center;
  flex-wrap: wrap;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  opacity: 0.1;
}

/* Tab Components */
.tabs {
  border-bottom: 2px solid var(--gray-200);
  margin-bottom: var(--spacing-xl);
  position: relative;
}

.tabs::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 2px;
  background: var(--primary-blue);
  transition: all var(--transition-normal);
  z-index: 1;
}

.tab-list {
  display: flex;
  list-style: none;
  gap: var(--spacing-md);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.tab-list::-webkit-scrollbar {
  display: none;
}

.tab-button {
  padding: var(--spacing-md) var(--spacing-lg);
  background: none;
  border: none;
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--gray-600);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all var(--transition-fast);
  white-space: nowrap;
  position: relative;
}

.tab-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--light-blue);
  opacity: 0;
  transition: opacity var(--transition-fast);
  border-radius: var(--radius-sm);
}

.tab-button:hover::before {
  opacity: 0.5;
}

.tab-button:hover,
.tab-button.active {
  color: var(--primary-blue);
  border-bottom-color: var(--primary-blue);
}

.tab-content {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition-normal);
}

.tab-content.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 0.3s ease-in-out;
}

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

/* Glassmorphism Effect */
.glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

.glass-dark {
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Trust Indicators */
.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
  padding: var(--spacing-xl) 0;
}

.trust-badge {
  height: 40px;
  opacity: 0.7;
  transition: all var(--transition-fast);
  filter: grayscale(100%);
}

.trust-badge:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* Loading States */
.loading {
  position: relative;
  overflow: hidden;
}

.loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: loading-shimmer 1.5s infinite;
}

@keyframes loading-shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Notification Components */
.notification {
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-md);
  position: relative;
  border-left: 4px solid;
}

.notification-success {
  background: #f0fdf4;
  border-left-color: #22c55e;
  color: #166534;
}

.notification-error {
  background: #fef2f2;
  border-left-color: #ef4444;
  color: #991b1b;
}

.notification-info {
  background: #eff6ff;
  border-left-color: var(--accent-blue);
  color: var(--primary-blue);
}

/* Progress Indicators */
.progress-bar {
  width: 100%;
  height: 4px;
  background: var(--gray-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
  transition: width var(--transition-normal);
  border-radius: var(--radius-sm);
}

/* Tooltip Components */
.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip-content {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gray-900);
  color: var(--white);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-sm);
  font-size: var(--font-size-sm);
  white-space: nowrap;
  z-index: 1000;
  transition: all var(--transition-fast);
}

.tooltip-content::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--gray-900);
}

.tooltip:hover .tooltip-content {
  visibility: visible;
  opacity: 1;
}

/* Modal Components */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: transform var(--transition-normal);
}

.modal-overlay.active .modal {
  transform: scale(1);
}

/* Accordion Components */
.accordion-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-sm);
  overflow: hidden;
}

.accordion-header {
  padding: var(--spacing-lg);
  background: var(--gray-50);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition-fast);
}

.accordion-header:hover {
  background: var(--gray-100);
}

.accordion-content {
  padding: 0 var(--spacing-lg);
  max-height: 0;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.accordion-item.active .accordion-content {
  padding: var(--spacing-lg);
  max-height: 500px;
}

/* Badge Components */
.badge {
  display: inline-flex;
  align-items: center;
  padding: var(--spacing-xs) var(--spacing-sm);
  font-size: var(--font-size-xs);
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-primary {
  background: var(--primary-blue);
  color: var(--white);
}

.badge-secondary {
  background: var(--gray-200);
  color: var(--gray-800);
}

.badge-success {
  background: #dcfce7;
  color: #166534;
}

/* Divider Components */
.divider {
  height: 1px;
  background: var(--gray-200);
  margin: var(--spacing-xl) 0;
  position: relative;
}

.divider-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--white);
  padding: 0 var(--spacing-md);
  color: var(--gray-600);
  font-size: var(--font-size-sm);
}

/* Floating Action Button */
.fab {
  position: fixed;
  bottom: var(--spacing-xl);
  right: var(--spacing-xl);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary-blue);
  color: var(--white);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
  z-index: 1000;
}

.fab:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-xl);
}

/* Responsive Enhancements */
@media (max-width: 767px) {
  .nav-toggle {
    display: flex;
  }
  
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    box-shadow: var(--shadow-lg);
    padding: var(--spacing-md) 0;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .hero-title {
    font-size: var(--font-size-3xl);
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .tab-list {
    justify-content: flex-start;
  }
  
  .card {
    margin-bottom: var(--spacing-lg);
  }
}

.contact-card {
  background: #ffffff !important;
  border: 1px solid #e0e7ff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  max-width: 400px;
  margin: 0 auto;
}

.contact-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.contact-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f1f5f9;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  border-radius: 10px;
  color: white;
  flex-shrink: 0;
}

.contact-header h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  letter-spacing: -0.025em;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 0;
  border-bottom: 1px solid #f8fafc;
}

.contact-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-item strong {
  font-weight: 500;
  color: #475569;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.contact-link {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
  font-size: 1rem;
}

.contact-link:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.contact-item span {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .contact-card {
    padding: 20px;
    margin: 16px;
  }
  
  .contact-header {
    gap: 10px;
  }
  
  .contact-icon {
    width: 40px;
    height: 40px;
  }
  
  .contact-header h3 {
    font-size: 1.125rem;
  }
}

.cta-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  border-radius: 20px;
  padding: 32px;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  max-width: 600px;
  margin: 0 auto;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.cta-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 28px;
}

.cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-icon svg {
  color: #fbbf24;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

/* Pulse animation for the star icon */
.pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

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

.cta-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 16px 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.cta-content p {
  font-size: 1.125rem;
  line-height: 1.6;
  margin: 0 0 24px 0;
  opacity: 0.95;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.15);
  padding: 12px 16px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.2s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(4px);
}

.feature-item svg {
  color: #10b981;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.feature-item span {
  font-weight: 500;
  font-size: 0.95rem;
  color:#484848;
}

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

.trial-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-metric {
  text-align: center;
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.2s ease;
}

.benefit-metric:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.benefit-metric h4 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 4px 0;
  color: #fbbf24;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.benefit-metric p {
  font-size: 0.875rem;
  margin: 0;
  opacity: 0.9;
  font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .cta-card {
    padding: 24px;
    margin: 16px;
  }
  
  .cta-content h2 {
    font-size: 1.75rem;
  }
  
  .cta-content p {
    font-size: 1rem;
  }
  
  .cta-icon {
    width: 64px;
    height: 64px;
  }
  
  .cta-icon svg {
    width: 40px;
    height: 40px;
  }
  
  .trial-benefits {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .benefit-metric h4 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .cta-features {
    gap: 10px;
  }
  
  .feature-item {
    padding: 10px 14px;
    font-size: 0.9rem;
  }
  
  .feature-item svg {
    width: 18px;
    height: 18px;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

/* Trust Grid Section */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.trust-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.trust-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6 0%, #1d4ed8 50%, #7c3aed 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.trust-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: #cbd5e1;
}

.trust-item:hover::before {
  transform: scaleX(1);
}

.trust-badge {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: block;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.trust-item:hover .trust-badge {
  transform: scale(1.1);
}

.trust-item h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 12px 0;
  letter-spacing: -0.025em;
}

.trust-item p {
  font-size: 0.95rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

/* Enterprise Stats Section */
.enterprise-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
}

.enterprise-stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.stat-item {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 20px 16px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.stat-item h3 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 8px 0;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, #3b82f6 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.stat-item p {
  font-size: 0.875rem;
  font-weight: 500;
  color: #475569;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 40px 16px;
  }
  
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }
  
  .trust-item {
    padding: 24px 20px;
  }
  
  .trust-badge {
    width: 64px;
    height: 64px;
  }
  
  .trust-item h4 {
    font-size: 1.125rem;
  }
  
  .enterprise-stats {
    grid-template-columns: repeat(2, 1fr);
    padding: 32px 24px;
    gap: 20px;
  }
  
  .stat-item {
    padding: 16px 12px;
  }
  
  .stat-item h3 {
    font-size: 1.875rem;
  }
}

@media (max-width: 480px) {
  .enterprise-stats {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }
  
  .trust-item {
    padding: 20px 16px;
  }
  
  .trust-badge {
    width: 56px;
    height: 56px;
  }
  
  .stat-item h3 {
    font-size: 1.75rem;
  }
  
  .stat-item p {
    font-size: 0.8rem;
  }
}

/* Additional animations and effects */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.trust-item {
  animation: fadeInUp 0.6s ease-out;
}

.trust-item:nth-child(1) { animation-delay: 0.1s; }
.trust-item:nth-child(2) { animation-delay: 0.2s; }
.trust-item:nth-child(3) { animation-delay: 0.3s; }

.stat-item {
  animation: fadeInUp 0.6s ease-out;
}

.stat-item:nth-child(1) { animation-delay: 0.4s; }
.stat-item:nth-child(2) { animation-delay: 0.5s; }
.stat-item:nth-child(3) { animation-delay: 0.6s; }
.stat-item:nth-child(4) { animation-delay: 0.7s; }

.diagram-overlay {
  position: relative;
  width: 100%;
  padding: 40px 20px;
  background: transparent;
  z-index: 10;
}

.comparison-labels {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.label {
  flex: 1;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid transparent;
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.label::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.05) 100%);
  pointer-events: none;
  z-index: 1;
}

.label > * {
  position: relative;
  z-index: 2;
}

/* Traditional AI Label Styling */
.label.traditional {
  border-color: #ef4444;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.label.traditional::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ef4444 0%, #dc2626 100%);
  z-index: 3;
}

.label.traditional:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(239, 68, 68, 0.2);
  border-color: #dc2626;
}

/* Agentic AI Label Styling */
.label.agentic {
  border-color: #10b981;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.label.agentic::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #10b981 0%, #059669 100%);
  z-index: 3;
}

.label.agentic:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(16, 185, 129, 0.2);
  border-color: #059669;
}

/* Typography */
.label h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 12px 0;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.label.traditional h4 {
  color: #dc2626;
  text-shadow: 0 2px 4px rgba(220, 38, 38, 0.1);
}

.label.agentic h4 {
  color: #059669;
  text-shadow: 0 2px 4px rgba(5, 150, 105, 0.1);
}

.label p {
  font-size: 1rem;
  font-weight: 500;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
  letter-spacing: 0.025em;
}

/* Animation Classes */
.animate-left {
  transform: translateX(-50px);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-right {
  transform: translateX(50px);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-left.visible,
.animate-right.visible {
  transform: translateX(0);
  opacity: 1;
}

/* Connecting Line (Optional Visual Enhancement) */
.comparison-labels::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #ef4444 0%, #64748b 50%, #10b981 100%);
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0.3;
}

/* Pulse Animation for Enhanced Visibility */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  }
  50% {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  }
}

.label.visible {
  animation: pulse-glow 3s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
  .diagram-overlay {
    padding: 30px 16px;
  }
  
  .comparison-labels {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  
  .comparison-labels::before {
    width: 2px;
    height: 40px;
    top: 45%;
    transform: translate(-50%, -50%) rotate(90deg);
  }
  
  .label {
    max-width: 400px;
    width: 100%;
    padding: 20px 16px;
  }
  
  .label h4 {
    font-size: 1.25rem;
  }
  
  .label p {
    font-size: 0.9rem;
  }
  
  .animate-left,
  .animate-right {
    transform: translateY(30px);
  }
  
  .animate-left.visible,
  .animate-right.visible {
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .label {
    padding: 18px 14px;
  }
  
  .label h4 {
    font-size: 1.125rem;
  }
  
  .label p {
    font-size: 0.85rem;
  }
  
  .comparison-labels {
    gap: 20px;
  }
}

.flow-points {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 0px 20px;
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

/* Connecting line between flow points */
.flow-points::before {
  content: '';
  position: absolute;
  left: 31px; /* Align with point indicators */
  top: 80px;
  bottom: 80px;
  width: 2px;
  background: linear-gradient(180deg, #3b82f6 0%, #10b981 50%, #f59e0b 100%);
  z-index: 1;
  opacity: 0.6;
}

.flow-point {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.flow-point:hover {
  transform: translateX(4px);
}

.point-indicator {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  position: relative;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(0);
  opacity: 0;
}

/* Step-specific colors and numbers */
.flow-point[data-step="1"] .point-indicator {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.flow-point[data-step="1"] .point-indicator::before {
  content: '1';
}

.flow-point[data-step="2"] .point-indicator {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.flow-point[data-step="2"] .point-indicator::before {
  content: '2';
}

.flow-point[data-step="3"] .point-indicator {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.flow-point[data-step="3"] .point-indicator::before {
  content: '3';
}

/* Visible state for indicators */
.point-indicator.visible {
  transform: scale(1);
  opacity: 1;
}

/* Pulse animation */
.pulse {
  animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.pulse::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: 0;
  animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

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

/* Staggered animation delays */
.stagger-1 {
  animation-delay: 0.2s;
}

.stagger-2 {
  animation-delay: 0.4s;
}

.point-label {
  flex: 1;
  padding-top: 8px;
  transition: all 0.3s ease;
}

.flow-point:hover .point-label {
  transform: translateY(-2px);
}

.point-label h4 {
  font-size: 1.375rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 8px 0;
  letter-spacing: -0.025em;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.point-label p {
  font-size: 1rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
  transition: color 0.3s ease;
}

/* Hover effects for different steps */
.flow-point[data-step="1"]:hover .point-label h4 {
  color: #1d4ed8;
}

.flow-point[data-step="2"]:hover .point-label h4 {
  color: #059669;
}

.flow-point[data-step="3"]:hover .point-label h4 {
  color: #d97706;
}

.flow-point:hover .point-label p {
  color: #475569;
}

/* Enhanced hover effect for indicators */
.flow-point:hover .point-indicator {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.flow-point[data-step="1"]:hover .point-indicator {
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.5);
}

.flow-point[data-step="2"]:hover .point-indicator {
  box-shadow: 0 12px 35px rgba(16, 185, 129, 0.5);
}

.flow-point[data-step="3"]:hover .point-indicator {
  box-shadow: 0 12px 35px rgba(245, 158, 11, 0.5);
}

/* Entrance animations */
@keyframes slideInFromLeft {
  from {
    transform: translateX(-40px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.point-label {
  animation: slideInFromLeft 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  opacity: 0;
}

.flow-point[data-step="1"] .point-label {
  animation-delay: 0.1s;
}

.flow-point[data-step="2"] .point-label {
  animation-delay: 0.3s;
}

.flow-point[data-step="3"] .point-label {
  animation-delay: 0.5s;
}

/* Responsive Design */
@media (max-width: 768px) {
  .flow-points {
    padding: 30px 16px;
    gap: 28px;
  }
  
  .flow-points::before {
    left: 27px;
  }
  
  .point-indicator {
    width: 56px;
    height: 56px;
    font-size: 1.125rem;
  }
  
  .point-label h4 {
    font-size: 1.25rem;
  }
  
  .point-label p {
    font-size: 0.9rem;
  }
  
  .flow-point {
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .flow-points {
    padding: 24px 12px;
    gap: 24px;
  }
  
  .flow-points::before {
    left: 23px;
  }
  
  .point-indicator {
    width: 48px;
    height: 48px;
    font-size: 1rem;
  }
  
  .point-label h4 {
    font-size: 1.125rem;
  }
  
  .point-label p {
    font-size: 0.85rem;
  }
  
  .flow-point {
    gap: 14px;
  }
}

/* Advanced pulse effect for enhanced visibility */
@keyframes advanced-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
  }
}

.point-indicator.visible {
  animation: advanced-pulse 3s ease-in-out infinite;
}

.feature-list {
	margin-top:55px;
}

.form-help {
	margin-top: 20px;
  margin-bottom: 20px;
}