/* ===========================================
   Leadgen Step 3 - Confirmation / Thank You
   =========================================== */

body:has(.leadgen-step3) > header {
  display: none;
}

.leadgen-step3 {
  min-height: 100vh;
  background: linear-gradient(180deg, #f7fafe 0%, #fff 100%);
}

.leadgen-step3__content {
  max-width: 680px;
  margin: 0 auto;
  padding: 40px 30px;
  text-align: center;
}

@media only screen and (max-width: 575px) {
  .leadgen-step3__content {
    padding: 30px 20px;
  }
}

/* Progress Indicator */
.leadgen-step3__progress {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.leadgen-step3__progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 96px;
}

.leadgen-step3__progress-number {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #4CAF50;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.leadgen-step3__progress-label {
  font-size: 11px;
  color: #4CAF50;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.leadgen-step3__progress-line {
  width: 60px;
  height: 2px;
  background: #4CAF50;
  margin: 0 0 20px 0;
}

@media only screen and (max-width: 480px) {
  .leadgen-step3__progress-line {
    width: 30px;
  }
  .leadgen-step3__progress-label {
    font-size: 10px;
  }
}

/* Success Icon */
.leadgen-step3__success-icon {
  margin-bottom: 24px;
  animation: leadgen-success-pop 0.5s ease-out;
}

@keyframes leadgen-success-pop {
  0% { transform: scale(0); opacity: 0; }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

.leadgen-step3__success-icon svg {
  filter: drop-shadow(0 4px 12px rgba(76, 175, 80, 0.3));
}

/* Heading */
.leadgen-step3__heading {
  margin-bottom: 24px;
}

.leadgen-step3__heading h2 {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}

.leadgen-step3__subheading {
  font-size: 16px;
  color: #666;
}

@media only screen and (max-width: 575px) {
  .leadgen-step3__heading h2 {
    font-size: 22px;
  }
}

/* Message */
.leadgen-step3__message {
  margin-bottom: 24px;
}

.leadgen-step3__message-whatsapp,
.leadgen-step3__message-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  font-size: 14px;
  color: #333;
}

.leadgen-step3__message-icon {
  flex-shrink: 0;
}

/* Benefit */
.leadgen-step3__benefit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  background: rgba(76, 175, 80, 0.08);
  border-radius: 12px;
  margin-bottom: 32px;
}

.leadgen-step3__benefit-icon {
  font-size: 24px;
}

.leadgen-step3__benefit-text {
  font-size: 14px;
  color: #333;
  text-align: left;
}

.leadgen-step3__benefit-text strong {
  color: #4CAF50;
}

/* CTA Section — LinkedIn */
.leadgen-step3__cta {
  padding: 28px 24px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 32px;
}

.leadgen-step3__cta-linkedin-logo {
  margin-bottom: 16px;
}

.leadgen-step3__cta h3 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.leadgen-step3__cta-description {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
}

.leadgen-step3__cta-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: #888;
  margin-bottom: 20px;
}

.leadgen-step3__cta-stats-dot {
  font-size: 16px;
  line-height: 1;
}

.leadgen-step3__cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  color: #fff;
  background: #0A66C2;
  border-radius: 24px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(10, 102, 194, 0.25);
}

.leadgen-step3__cta-button:hover {
  background: #004182;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(10, 102, 194, 0.3);
}

/* Testimonials */
.leadgen-step3__testimonials {
  margin-bottom: 32px;
}

.leadgen-step3__testimonials h4 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 16px;
}

.leadgen-step3__testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media only screen and (min-width: 576px) {
  .leadgen-step3__testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.leadgen-step3__testimonial-card {
  background: #fff;
  border-radius: 10px;
  padding: 16px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.leadgen-step3__testimonial-quote {
  font-size: 13px;
  font-style: italic;
  color: #555;
  line-height: 1.5;
  margin-bottom: 12px;
}

.leadgen-step3__testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.leadgen-step3__testimonial-author img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.leadgen-step3__testimonial-name {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #333;
}

.leadgen-step3__testimonial-role {
  display: block;
  font-size: 11px;
  color: #888;
}

/* Bottom Trust */
.leadgen-step3__bottom-trust {
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
}

.leadgen-step3__bottom-trust span {
  font-size: 12px;
  color: #888;
}
