/* KSC Academy Trial Landing Page - White, black, red accents */
:root {
  --trial-red: #b91c1c;
  --trial-red-hover: #991b1b;
  --trial-black: #111827;
  --trial-gray: #6b7280;
  --trial-bg: #ffffff;
}

.trial-landing {
  background-color: var(--trial-bg);
  color: var(--trial-black);
  padding-top: 5rem;
}

/* Hero */
.trial-hero {
  padding: 4rem 0 5rem;
  background: var(--trial-bg);
}

.trial-hero-headline {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--trial-black);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.trial-hero-subheadline {
  font-size: 1.125rem;
  color: var(--trial-gray);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.trial-hero-reassurance {
  font-size: 0.95rem;
  color: var(--trial-gray);
  font-style: italic;
}

.trial-form-card {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.trial-form .form-label {
  font-weight: 600;
  color: var(--trial-black);
}

.trial-form .form-control,
.trial-form .form-select {
  border-color: #d1d5db;
  border-radius: 6px;
}

.trial-form .form-control:focus,
.trial-form .form-select:focus {
  border-color: var(--trial-red);
  box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.15);
}

.btn-trial-cta {
  background-color: var(--trial-red);
  color: white;
  font-weight: 600;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  transition: background-color 0.2s;
}

.btn-trial-cta:hover {
  background-color: var(--trial-red-hover);
  color: white;
}

.btn-trial-cta:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Sections */
.trial-section {
  padding: 4rem 0;
}

.trial-section:nth-child(even) {
  background-color: #f9fafb;
}

.trial-section-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--trial-black);
  text-align: center;
  margin-bottom: 2.5rem;
}

.trial-section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: var(--trial-red);
  margin: 1rem auto 0;
}

/* Fear removal / benefits */
.trial-benefit-card {
  text-align: center;
  padding: 1.5rem 1rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.trial-benefit-icon {
  display: inline-block;
  width: 3rem;
  height: 3rem;
  line-height: 3rem;
  border-radius: 50%;
  background-color: rgba(185, 28, 28, 0.1);
  color: var(--trial-red);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.trial-benefit-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--trial-black);
  margin-bottom: 0.5rem;
}

.trial-benefit-text {
  font-size: 0.9rem;
  color: var(--trial-gray);
  margin: 0;
}

/* What to expect */
.trial-steps-list {
  max-width: 600px;
  margin: 0 auto 1.5rem;
  padding-left: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--trial-black);
}

.trial-steps-list li {
  margin-bottom: 0.75rem;
}

.trial-reassurance {
  text-align: center;
  color: var(--trial-gray);
  font-style: italic;
  max-width: 500px;
  margin: 0 auto;
}

/* Coach */
.trial-coach .col-md-4 {
  min-width: 0;
}

.trial-coach-image-placeholder {
  aspect-ratio: 1;
  background: #e5e7eb;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--trial-gray);
  font-size: 0.9rem;
}

.trial-coach-image-placeholder.trial-coach-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 480 / 848;
  padding: 8px;
  background: #111827;
  border: 9px solid #111827;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  display: block;
}

.trial-coach-video-frame video {
  position: absolute;
  inset: 0;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 8px;
  width: 100%;
  height: 100%;
}

.trial-coach-image-placeholder i {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  opacity: 0.6;
}

.trial-coach-name {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--trial-black);
  margin-bottom: 1rem;
}

.trial-coach-bio {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--trial-gray);
}

/* Testimonials */
.trial-testimonial-card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--trial-red);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.trial-testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--trial-black);
  margin-bottom: 1rem;
}

.trial-testimonial-author {
  font-size: 0.9rem;
  color: var(--trial-gray);
  margin: 0;
}

/* Location */
.trial-location-lead {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--trial-black);
}

.trial-location-card {
  text-align: center;
  padding: 1.5rem;
}

.trial-location-card i {
  font-size: 2rem;
  color: var(--trial-red);
  margin-bottom: 0.75rem;
}

.trial-location-card h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--trial-black);
  margin-bottom: 0.25rem;
}

.trial-location-card p {
  font-size: 0.9rem;
  color: var(--trial-gray);
  margin: 0;
}

.trial-location-address {
  text-align: center;
  font-size: 1rem;
  color: var(--trial-black);
  font-weight: 500;
}

/* Final CTA */
.trial-final-cta {
  background: var(--trial-black);
  color: white;
}

.trial-final-cta .trial-section-title {
  color: white;
}

.trial-final-cta .trial-section-title::after {
  background-color: var(--trial-red);
}

.trial-final-reassurance {
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.trial-final-cta-btn-wrapper {
  text-align: center;
}

.btn-trial-cta-lg {
  padding: 1.25rem 2.5rem;
  font-size: 1.2rem;
}

.trial-final-form-wrapper {
  max-width: 480px;
  margin: 0 auto;
}

.trial-final-form-wrapper .trial-form-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}

.trial-final-form-wrapper .form-label {
  color: white;
}

.trial-final-form-wrapper .form-control,
.trial-final-form-wrapper .form-select {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}

.trial-final-form-wrapper .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.trial-final-form-wrapper .form-check-label {
  color: rgba(255, 255, 255, 0.9);
}

/* Sticky CTA mobile */
.trial-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: white;
  box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.btn-trial-cta-sticky {
  display: block;
  width: 100%;
  padding: 1rem;
  background-color: var(--trial-red);
  color: white;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.2s;
}

.btn-trial-cta-sticky:hover {
  background-color: var(--trial-red-hover);
  color: white;
}

/* Mobile adjustments */
@media (max-width: 991px) {
  .trial-hero {
    padding: 3rem 0 4rem;
  }

  .trial-form-card {
    margin-top: 1rem;
  }

  .trial-section {
    padding: 3rem 0;
  }
}
