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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header */
.header {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 20px;
  height: 70px;
  position: relative;
}

.nav-brand {
  flex-shrink: 0;
  z-index: 1001;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  font-size: 28px;
  filter: drop-shadow(0 1px 2px rgba(37, 99, 235, 0.3));
}

.logo-text , .logo-icon{
  font-size: 20px;
  font-weight: 700;
  color: #2563eb;
  letter-spacing: -0.025em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  justify-content: center;
  margin: 0 0.5rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  text-decoration: none;
  color: #4b5563;
  font-weight: 600;
  font-size: 12px;
  padding: 0.5rem 0.625rem;
  display: flex;
  align-items: center;
  gap: 3px;
  border-radius: 6px;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  white-space: nowrap;
}

.nav-link:hover {
  color: #2563eb;
  background-color: rgba(37, 99, 235, 0.05);
}

.nav-link.highlight {
  color: #dc2626;
  font-weight: 700;
}

.nav-link.highlight:hover {
  background-color: rgba(220, 38, 38, 0.05);
}

.dropdown-arrow {
  font-size: 10px;
  transition: transform 0.2s ease;
  margin-left: 2px;
}

.dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15), 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  min-width: 360px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 9999;
  margin-top: 0.5rem;
  pointer-events: none;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.dropdown-content-solutions {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15), 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  min-width: 360px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 9999;
  margin-top: 0.5rem;
  pointer-events: none;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.dropdown-content-resources {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15), 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  min-width: 360px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 9999;
  margin-top: 0.5rem;
  pointer-events: none;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.dropdown.active .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}

.dropdown.active .dropdown-content-solutions {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}

.dropdown.active .dropdown-content-resources {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}

.dropdown-section {
  padding: 2rem;
  border-bottom: 1px solid #f1f5f9;
}

.dropdown-section:last-child {
  border-bottom: none;
}

.dropdown-section h3 {
  font-size: 13px;
  font-weight: 700;
  color: #475569;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dropdown-section h3::before {
  content: '';
  width: 4px;
  height: 4px;
  background: #2563eb;
  border-radius: 50%;
}

.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #f8fafc;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s ease;
  margin: 0 -8px;
  padding-left: 8px;
  padding-right: 8px;
}

.dropdown-item:hover {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  transform: translateX(4px);
  border-color: #e2e8f0;
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-icon {
  font-size: 24px;
  margin-top: 2px;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  border-radius: 8px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.dropdown-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 6px;
  letter-spacing: -0.025em;
}

.dropdown-item p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.dropdown-features {
  margin-bottom: 0.75rem;
}

.feature-link {
  color: #2563eb;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.feature-link:hover {
  text-decoration: underline;
}

.dropdown-subfeatures {
  border-top: 1px solid #f1f5f9;
  padding-top: 0.75rem;
  margin-top: 0.75rem;
}

.dropdown-subfeatures strong {
  font-size: 10px;
  font-weight: 700;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: block;
  margin-bottom: 0.5rem;
}

.sub-link {
  display: block;
  color: #64748b;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  padding: 0.25rem 0;
  transition: color 0.2s ease;
}

.sub-link:hover {
  color: #2563eb;
}

.dropdown-link {
  display: block;
  padding: 12px 16px;
  text-decoration: none;
  color: #64748b;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s ease;
  margin: 2px 0;
  position: relative;
}

.dropdown-link:hover {
  color: #2563eb;
  background: rgba(37, 99, 235, 0.06);
  transform: translateX(4px);
}

.dropdown-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 16px;
  background: #2563eb;
  border-radius: 0 4px 4px 0;
  transition: width 0.2s ease;
}

.dropdown-link:hover::before {
  width: 3px;
}

.resources-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 2rem;
  padding: 2rem;
  min-width: 1000px;
  width: 1000px;
  overflow-x: auto;
}

.solutions-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 2rem;
  padding: 2rem;
  min-width: 640px;
  width: 640px;
  overflow-x: auto;
}

.products-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 2rem;
  padding: 2rem;
  min-width: 640px;
  width: 640px;
  overflow-x: auto;
}

.resource-column {
  position: relative;
}

.resource-column h3 {
  font-size: 13px;
  font-weight: 700;
  color: #475569;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e2e8f0;
  position: relative;
}

.resource-column h3::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 24px;
  height: 2px;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
}

.pricing-preview {
  padding: 1.5rem;
  text-align: center;
}

.pricing-preview h3 {
  font-size: 18px;
  margin-bottom: 0.5rem;
}

.pricing-preview p {
  color: #6b7280;
  font-size: 14px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  z-index: 1001;
}

/* Buttons */
.btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  box-shadow: 0 2px 4px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: #4b5563;
  border: 1.5px solid #d1d5db;
  position: relative;
}

.btn-outline:hover {
  background: #f8fafc;
  border-color: #9ca3af;
  color: #374151;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-signin {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  padding: 0.625rem 1.5rem;
  box-shadow: 0 2px 4px rgba(37, 99, 235, 0.3);
}

.btn-signin:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
  transform: translateY(-1px);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 16px;
}

.btn-full {
  width: 100%;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 4rem 0;
  text-align: center;
}

.hero-subtitle {
  color: #64748b;
  font-size: 16px;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #1e293b;
}

.text-blue {
  color: #2563eb;
}

.hero-description {
  font-size: 1.25rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

/* Features Section */
.features {
  padding: 5rem 0;
  background: white;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: #1e293b;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #64748b;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #e2e8f0;
  transition: all 0.2s ease;
}

.feature-card:hover {
  background: #f8fafc;
  border-color: #9ca3af;
  color: #374151;
  transform: translateY(-5px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #1e293b;
}

.feature-card p {
  color: #64748b;
  line-height: 1.6;
}

/* Pricing Section */
.pricing {
  padding: 5rem 0;
  background: #f8fafc;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  position: relative;
  text-align: center;
  transition: all 0.2s ease;
}

.pricing-card:hover {
  background: #f8fafc;
  border-color: #9ca3af;
  color: #374151;
  transform: translateY(-5px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #2563eb;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.pricing-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1e293b;
}

.price {
  margin-bottom: 2rem;
}

.currency {
  font-size: 1.5rem;
  color: #64748b;
}

.amount {
  font-size: 3rem;
  font-weight: 700;
  color: #1e293b;
}

.period {
  font-size: 1rem;
  color: #64748b;
}

.features-list {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
}

.features-list li {
  padding: 0.5rem 0;
  color: #64748b;
}

/* CTA Section */
.cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  text-align: center;
}

.cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta .btn-primary {
  background: white;
  color: #2563eb;
}

.cta .btn-primary:hover {
  background: #f8fafc;
}

/* Footer */
.footer {
  background: #1e293b;
  color: white;
  padding: 2rem 0;
}

.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer .logo-text {
  color: white;
}

.footer-copyright {
  color: #94a3b8;
  font-size: 14px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 4px;
  z-index: 1001;
  position: relative;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #374151;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:first-child {
  transform: rotate(45deg) translate(6px, 6px);
}

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

.mobile-menu-toggle.active span:last-child {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #f8f9fa;
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.mobile-nav.active {
  display: block;
  transform: translateX(0);
}

.mobile-nav-content {
  width: 100%;
  height: 100vh;
  padding: 1rem;
  overflow-y: auto;
  position: relative;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0 2rem;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 2rem;
}

.mobile-nav-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #374151;
  padding: 0.5rem;
}

.mobile-nav-section {
  margin-bottom: 1.5rem;
}

.mobile-nav-section-title {
  color: #9ca3af;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.5rem 0;
  margin-bottom: 0.5rem;
}

.mobile-nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px dotted #d1d5db;
  text-decoration: none;
  color: #374151;
  font-weight: 500;
}

.mobile-nav-item:hover {
  color: #2563eb;
}

.mobile-nav-item.highlight {
  color: #dc2626;
}

.mobile-nav-item.no-border {
  border-bottom: none;
}

.mobile-nav-arrow {
  background: #e5e7eb;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #6b7280;
}

.mobile-nav-submenu {
  display: none;
  padding-left: 1rem;
  margin-top: 0.5rem;
}

.mobile-nav-submenu.active {
  display: block;
}

.mobile-nav-submenu .mobile-nav-item {
  padding: 0.75rem 0;
  font-weight: 400;
  color: #6b7280;
  border-bottom: none;
}

.mobile-nav-actions {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  padding: 1.5rem;
  border-top: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .nav-menu {
    gap: 0.5rem;
  }
  
  .nav-link {
    padding: 0.4rem 0.5rem;
    font-size: 11px;
  }
  
  .resources-grid {
    grid-template-columns: repeat(2, 1fr);
    min-width: 500px;
    gap: 1.5rem;
  }
  
  .dropdown-content {
    min-width: 320px;
  }

  .dropdown-content-solutions {
    min-width: 320px;
  }

  .dropdown-content-resources {
    min-width: 320px;
  }
  
  .dropdown-section {
    padding: 1.5rem;
  }
}

@media (max-width: 1024px) {
  .nav-menu {
    gap: 0.4rem;
  }
  
  .nav-link {
    padding: 0.4rem 0.4rem;
    font-size: 10px;
  }
  
  .dropdown-content {
    min-width: 280px;
  }

  .dropdown-content-solutions {
    min-width: 280px;
  }

  .dropdown-content-resources {
    min-width: 280px;
  }
  
  .btn {
    padding: 0.4rem 0.8rem;
    font-size: 11px;
  }
}

@media (max-width: 900px) {
  .nav-menu,
  .nav-actions {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .header .container {
    padding: 0.75rem 15px;
  }
  
  .dropdown-content {
    position: fixed;
    top: 70px;
    left: 10px;
    right: 10px;
    transform: none;
    width: auto;
    min-width: auto;
    border-radius: 12px;
  }

  .dropdown-content-solutions {
    position: fixed;
    top: 70px;
    left: 10px;
    right: 10px;
    transform: none;
    width: auto;
    min-width: auto;
    border-radius: 12px;
  }

  .dropdown-content-resources {
    position: fixed;
    top: 70px;
    left: 10px;
    right: 10px;
    transform: none;
    width: auto;
    min-width: auto;
    border-radius: 12px;
  }
  
  .resources-grid {
    grid-template-columns: 1fr;
    min-width: auto;
    padding: 1.5rem;
    gap: 1rem;
  }
  
  .dropdown-section {
    padding: 1.25rem;
  }
  
  .dropdown-item {
    padding: 12px 0;
    gap: 12px;
  }
  
  .dropdown-icon {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }
}
  
.hero-title {
  font-size: 2.5rem;
}

.hero-actions {
  flex-direction: column;
}

.resources-grid {
  grid-template-columns: 1fr;
  min-width: auto;
}

.dropdown-content {
  position: fixed !important;
  top: 456px !important;
  left: 610px !important;
  transform: translate(-50%, -50%) !important;
}

.dropdown-content-solutions {
  position: fixed !important;
  top: 246px !important;
  left: 740px !important;
  transform: translate(-50%, -50%) !important;
}

.dropdown-content-resources {
  position: fixed !important;
  top: 315px !important;
  left: 765px !important;
  transform: translate(-50%, -50%) !important;
}

.footer .container {
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .feature-card,
  .pricing-card {
    padding: 1.5rem;
  }
}
a {
  text-decoration: none;
}
  .demo-hero {
      background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
      padding: 4rem 0;
      text-align: center;
    }
    
    .demo-form-section {
      padding: 4rem 0;
      background: white;
    }
    
    .demo-form {
      max-width: 600px;
      margin: 0 auto;
      background: #f8fafc;
      padding: 3rem;
      border-radius: 12px;
      border: 1px solid #e2e8f0;
    }
    
    .form-group {
      margin-bottom: 1.5rem;
    }
    
    .form-label {
      display: block;
      margin-bottom: 0.5rem;
      font-weight: 600;
      color: #374151;
    }
    
    .form-input,
    .form-select,
    .form-textarea {
      width: 100%;
      padding: 0.75rem;
      border: 1px solid #d1d5db;
      border-radius: 6px;
      font-size: 16px;
      transition: border-color 0.2s;
    }
    
    .form-input:focus,
    .form-select:focus,
    .form-textarea:focus {
      outline: none;
      border-color: #2563eb;
      box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    }
    
    .form-textarea {
      resize: vertical;
      min-height: 120px;
    }
    
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }
    
    .demo-benefits {
      padding: 4rem 0;
      background: #f8fafc;
    }
    
    .benefit-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }
    
    .benefit-icon {
      width: 48px;
      height: 48px;
      background: #2563eb;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      color: white;
      flex-shrink: 0;
    }
    
    @media (max-width: 768px) {
      .form-row {
        grid-template-columns: 1fr;
      }
      
      .demo-form {
        padding: 2rem;
      }
    }
     .trial-hero {
      background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
      padding: 4rem 0;
      text-align: center;
    }
    
    .trial-form-section {
      padding: 4rem 0;
      background: #f8fafc;
    }
    
    .trial-form {
      max-width: 520px;
      margin: 0 auto;
      background: white;
      padding: 3rem;
      border-radius: 16px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
      border: 1px solid #e2e8f0;
    }
    
    .form-group {
      margin-bottom: 1.5rem;
    }
    
    .form-label {
      display: block;
      margin-bottom: 0.5rem;
      font-weight: 600;
      color: #374151;
      font-size: 14px;
    }
    
    .form-input {
      width: 100%;
      padding: 0.875rem 1rem;
      border: 2px solid #e5e7eb;
      border-radius: 8px;
      font-size: 16px;
      transition: all 0.2s ease;
      background: #fff;
    }
    
    .form-input:focus {
      outline: none;
      border-color: #2563eb;
      box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    }
    
    .form-input::placeholder {
      color: #9ca3af;
    }
    
    .password-hint {
      color: #6b7280;
      font-size: 12px;
      margin-top: 0.25rem;
    }
    
    .trial-features {
      padding: 4rem 0;
      background: white;
    }
    
    .trial-steps {
      padding: 4rem 0;
      background: #f8fafc;
    }
    
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }
    
    .step-card {
      text-align: center;
      padding: 2rem;
      background: white;
      border-radius: 12px;
      border: 1px solid #e2e8f0;
      transition: all 0.2s ease;
    }

    .step-card:hover {
      background: #f8fafc;
      border-color: #9ca3af;
      color: #374151;
      transform: translateY(-5px);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .step-number {
      width: 56px;
      height: 56px;
      background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      font-weight: bold;
      color: white;
      margin: 0 auto 1rem;
      box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    }
    
    .trial-guarantee {
      background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
      border: 2px solid #10b981;
      border-radius: 16px;
      padding: 2.5rem;
      margin: 2.5rem 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    
    .trial-guarantee::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(45deg, rgba(16, 185, 129, 0.05) 0%, rgba(16, 185, 129, 0.1) 100%);
      pointer-events: none;
    }
    
    .guarantee-icon {
      font-size: 3.5rem;
      margin-bottom: 1rem;
      background: linear-gradient(135deg, #10b981 0%, #059669 100%);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      filter: drop-shadow(0 2px 4px rgba(16, 185, 129, 0.2));
    }
    
    .guarantee-title {
      margin-bottom: 0.5rem;
      color: #065f46;
      font-weight: 700;
      font-size: 1.25rem;
    }
    
    .guarantee-description {
      margin: 0;
      color: #047857;
      font-weight: 500;
    }
    
    .form-title {
      text-align: center;
      margin-bottom: 2rem;
      color: #1f2937;
      font-weight: 700;
      font-size: 1.75rem;
    }
    
    .terms-text {
      text-align: center;
      margin-top: 1.5rem;
      font-size: 13px;
      color: #6b7280;
      line-height: 1.5;
    }
    
    .terms-link {
      color: #2563eb;
      text-decoration: none;
      font-weight: 500;
    }
    
    .terms-link:hover {
      text-decoration: underline;
    }
    
    @media (max-width: 768px) {
      .trial-form {
        margin: 0 1rem;
        padding: 2rem;
      }
      
      .trial-guarantee {
        padding: 2rem;
        margin: 2rem 0;
      }
      
      .guarantee-icon {
        font-size: 3rem;
      }
    }

    .outages-hero {
      background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
      color: white;
      padding: 4rem 0;
      text-align: center;
    }
    
    .outages-status {
      padding: 3rem 0;
      background: #f8fafc;
    }
    
    .status-card {
      background: white;
      border-radius: 12px;
      padding: 2rem;
      margin-bottom: 1.5rem;
      border-left: 4px solid #dc2626;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    
    .status-card.resolved {
      border-left-color: #10b981;
    }
    
    .status-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1rem;
    }
    
    .status-badge {
      padding: 0.25rem 0.75rem;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
    }
    
    .status-badge.investigating {
      background: #fee2e2;
      color: #dc2626;
    }
    
    .status-badge.resolved {
      background: #d1fae5;
      color: #10b981;
    }
    
    .outage-map {
      padding: 3rem 0;
      text-align: center;
    }
    
    .map-placeholder {
      background: #e5e7eb;
      height: 400px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.125rem;
      color: #6b7280;
      margin: 2rem 0;
    }
    
  /* Container for alert */
  .alert {
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    position: relative;
  }

  /* Success alert */
  .alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
  }

  /* Danger alert */
  .alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    font-size: larger;
  }

  /* Close button */
  .alert .close-btn {
    position: absolute;
    top: 8px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    color: inherit;
  }

.alert-model {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #474747;
  padding: 5px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  max-width: 300px;
  width: 300px;
  animation: fadeIn 0.3s ease-in-out;
}
 
.alert-div {
  text-align: left;
}
 
.alert-h4 {
  margin: 0;
  color: #fbbc04;
}
 
.alert-p {
  margin: 8px 0 12px;
  font-size: 14px;
  color: #fbbc04;
}
 
.alert-closeModal {
  background-color: #fbbc04;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  float: right;
}