.cta {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.cta-container {
  background: linear-gradient(135deg, var(--dark-surface), var(--card-bg));
  border-radius: 24px;
  padding: 4rem;
  position: relative;
  border: 1px solid var(--border-color);
  overflow: hidden;
  z-index: 1;
}

.cta-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
                rgba(98, 0, 234, 0.2) 0%, 
                rgba(0, 229, 255, 0.2) 100%);
  z-index: -1;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.cta-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.3;
}

.cta-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.cta-form {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-input {
  flex: 1;
  min-width: 250px;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.cta-input::placeholder {
  color: var(--text-secondary);
}

.cta-input:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.2);
}

.cta-button {
  padding: 1rem 2rem;
  border-radius: 8px;
  background-color: var(--primary);
  color: white;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cta-button:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(98, 0, 234, 0.4);
}

.cta-button-icon {
  font-size: 1.125rem;
}

.cta-note {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-top: 1rem;
}

.cta-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cta-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(0, 229, 255, 0.2);
  color: var(--secondary);
  font-size: 0.75rem;
}

.cta-feature-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.cta-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.cta-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
}

.cta-shape-1 {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background-color: var(--primary);
  opacity: 0.05;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
}

.cta-shape-2 {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background-color: var(--secondary);
  opacity: 0.05;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
}

/* Responsive */
@media (max-width: 992px) {
  .cta {
    padding: 6rem 0;
  }
  
  .cta-container {
    padding: 3rem 2rem;
  }
  
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .cta-actions {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .cta-container {
    padding: 2.5rem 1.5rem;
  }
  
  .cta-button {
    width: 100%;
    justify-content: center;
  }
}