.trial-hero {
  color: white;
  padding: 8rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.trial-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.3;
}

.trial-badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.trial-hero .hero-title {
  font-size: 3.5rem;
  font-weight: var(--font-weight-black);
  margin-bottom: 1.5rem;
  color: white;
}

.trial-hero .hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.trial-hero .hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trial-hero .stat-item {
  text-align: center;
}

.trial-hero .stat-number {
  font-size: 2.5rem;
  font-weight: var(--font-weight-black);
  color: white;
  margin-bottom: 0.5rem;
}

.trial-hero .stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: var(--font-weight-medium);
}

/* Container Principal */
.trial-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

/* Trial Card */
.trial-card {
  background: var(--bg-card);
  border-radius: var(--border-radius-2xl);
  box-shadow: var(--shadow-2xl);
  border: 1px solid var(--border-primary);
  overflow: hidden;
}

.trial-header {
  color: white;
  padding: 2.5rem 2rem;
  text-align: center;
}

.trial-header h2 {
  color: white;
  margin-bottom: 1rem;
}

.trial-header p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  font-size: 1.125rem;
}

.form-container {
  padding: 2.5rem 2rem;
}

/* Form Elements */
.form-label {
  font-weight: var(--font-weight-medium);
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.form-control {
  background: var(--bg-primary);
  border: 1px solid var(--border-primary);
  color: var(--text-primary);
  padding: 0.875rem 1rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.form-control:focus {
  background: var(--bg-primary);
  border-color: var(--primary-500);
  color: var(--text-primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-text {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.form-check-input:checked {
  background-color: var(--primary-500);
  border-color: var(--primary-500);
}

.form-check-label {
  color: var(--text-primary);
}

.form-check-label a {
  color: var(--primary-500);
  text-decoration: none;
}

.form-check-label a:hover {
  text-decoration: underline;
}

/* Features Grid */
.trial-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-secondary);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-primary);
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-500);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-primary);
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.feature-item h5 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.feature-item p {
  color: var(--text-muted);
  margin-bottom: 0;
  font-size: 0.875rem;
}

/* Plan Comparison */
.plan-comparison {
  margin: 4rem 0 2rem;
}

.plan-comparison h3 {
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 3rem;
}

.plan-card {
  background: var(--bg-card);
  border: 2px solid var(--border-primary);
  border-radius: var(--border-radius-xl);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.plan-card.featured {
  border-color: var(--primary-500);
  box-shadow: var(--shadow-2xl);
  transform: scale(1.02);
}

.plan-card.featured:hover {
  transform: scale(1.02) translateY(-4px);
}

.plan-badge {
  background: var(--bg-secondary);
  color: var(--text-secondary);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.plan-card.featured .plan-badge {
  background: var(--gradient-primary);
  color: white;
}

.plan-card h4 {
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.plan-price {
  font-size: 3rem;
  font-weight: var(--font-weight-black);
  color: var(--text-primary);
  margin: 1rem 0;
  line-height: 1;
}

.plan-period {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: normal;
}

.plan-card ul {
  flex: 1;
  margin-bottom: 2rem;
}

.plan-card li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
}

.plan-card .btn {
  margin-top: auto;
}

@media (max-width: 768px) {
  .trial-hero {
    padding: 7rem 0 3rem;
  }

  .trial-hero .hero-title {
    font-size: 2.5rem;
  }

  .trial-hero .hero-subtitle {
    font-size: 1.125rem;
  }

  .trial-hero .hero-stats {
    gap: 2rem;
  }

  .trial-container {
    padding: 1rem;
  }

  .trial-header,
  .form-container {
    padding: 2rem 1.5rem;
  }

  .trial-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .plan-card.featured {
    transform: none;
  }

  .plan-card.featured:hover {
    transform: translateY(-4px);
  }

  .feature-item {
    padding: 1.25rem;
  }
}

@media (max-width: 480px) {
  .trial-hero .hero-title {
    font-size: 2rem;
  }

  .trial-hero .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .trial-badge {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }
}

.trial-hero {
  background: linear-gradient(
    135deg,
    var(--primary-500) 0%,
    var(--primary-700) 100%
  );
  color: white;
  padding: 8rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.trial-badge {
  background: rgba(255, 255, 255, 0.2);
  color: var(--primary-100);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.trial-header {
  background: linear-gradient(
    135deg,
    var(--primary-500) 0%,
    var(--primary-700) 100%
  );
  color: white;
  padding: 2.5rem 2rem;
  text-align: center;
}

.trial-header h2 {
  color: var(--primary-50) !important;
  margin-bottom: 1rem;
}

.trial-header p {
  color: var(--text-secondary) !important;
  margin-bottom: 0;
  font-size: 1.125rem;
}

/* Espaciado entre secciones */
.section-padding {
  padding: var(--space-3xl) 0;
}

.section-padding + .section-padding {
  padding-top: 0;
}
