/* Results Page Specific Styles */

.results-page {
  background: #FAFAFA;
}

.results-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Results Header */
.results-header {
  text-align: center;
  margin-bottom: 48px;
  padding: 48px 32px;
  background: white;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.results-header h1 {
  font-size: 36px;
  margin-bottom: 16px;
}

.results-header h1 span {
  color: #EE728E;
}

/* Profile Card */
.profile-card {
  background: linear-gradient(135deg, #FFF5F8 0%, #FFFBF0 100%);
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 32px;
  border: 2px solid #FFE5ED;
}

.profile-card h3 {
  font-size: 24px;
  color: #2D2D2D;
  margin-bottom: 16px;
}

.profile-insights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.insight-item {
  background: white;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
}

.insight-item .emoji {
  font-size: 32px;
  display: block;
  margin-bottom: 8px;
}

.insight-item .label {
  font-size: 13px;
  color: #999;
  display: block;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.insight-item .value {
  font-size: 20px;
  font-weight: 700;
  color: #2D2D2D;
}

/* Recommendation Card */
.recommendation-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 48px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.recommendation-card h3 {
  font-size: 28px;
  color: #2D2D2D;
  margin-bottom: 16px;
}

.recommendation-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 16px;
}

.recommendation-card ul {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.recommendation-card ul li {
  font-size: 16px;
  color: #2D2D2D;
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
}

.recommendation-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #AAC811;
  font-weight: 700;
  font-size: 18px;
}

/* Pricing Section */
.pricing-section {
  margin: 64px 0;
}

.pricing-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.pricing-card {
  background: white;
  border: 2px solid #E8E8E8;
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  border-color: #EE728E;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(238, 114, 142, 0.15);
}

.pricing-card.recommended {
  border-color: #EE728E;
  border-width: 3px;
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(238, 114, 142, 0.2);
}

.pricing-card.recommended::before {
  content: "Recommended for you";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #EE728E 0%, #F9B233 100%);
  color: white;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.pricing-card .tier-name {
  font-size: 22px;
  font-weight: 700;
  color: #2D2D2D;
  margin-bottom: 8px;
}

.pricing-card .tier-subtitle {
  font-size: 14px;
  color: #999;
  margin-bottom: 20px;
}

.pricing-card .value-box {
  background: #FFF5F8;
  padding: 12px;
  border-radius: 12px;
  margin-bottom: 16px;
}

.pricing-card .price {
  font-size: 36px;
  font-weight: 700;
  color: #EE728E;
  margin: 16px 0;
}

.pricing-card .price span {
  font-size: 18px;
  color: #666;
}

.pricing-card .price s {
  font-size: 24px;
  color: #CCC;
}

.pricing-card .total-note {
  font-size: 13px;
  color: #999;
  margin-bottom: 20px;
}

.pricing-card .features {
  text-align: left;
  margin: 24px 0;
  padding: 24px 0;
  border-top: 1px solid #F0F0F0;
  border-bottom: 1px solid #F0F0F0;
}

.pricing-card .features li {
  font-size: 14px;
  color: #2D2D2D;
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

.pricing-card .features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #AAC811;
  font-weight: 700;
}

.pricing-card .btn-select {
  width: 100%;
  padding: 16px;
  background: #F8F8F8;
  color: #2D2D2D;
  border: 2px solid #E8E8E8;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.pricing-card .btn-select:hover {
  background: #EE728E;
  color: white;
  border-color: #EE728E;
}

.pricing-card.recommended .btn-select {
  background: linear-gradient(135deg, #EE728E 0%, #F9B233 100%);
  color: white;
  border-color: transparent;
}

.pricing-card.recommended .btn-select:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(238, 114, 142, 0.3);
}

/* Success Story */
.success-story {
  background: white;
  border-radius: 20px;
  padding: 48px 40px;
  margin-bottom: 48px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.success-story h3 {
  font-size: 28px;
  color: #2D2D2D;
  margin-bottom: 24px;
  text-align: center;
}

.story-content {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: center;
}

.story-photo {
  width: 200px;
  height: 200px;
  background: #F0F0F0;
  border-radius: 16px;
}

.story-text h4 {
  font-size: 22px;
  color: #2D2D2D;
  margin-bottom: 8px;
}

.story-text .stats {
  color: #EE728E;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 16px;
}

.story-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 12px;
}

.story-text .quote {
  font-style: italic;
  color: #2D2D2D;
  padding-left: 20px;
  border-left: 3px solid #EE728E;
  margin-top: 20px;
}

/* Final CTA */
.final-cta {
  text-align: center;
  padding: 64px 32px;
  background: linear-gradient(135deg, #FFF5F8 0%, #FFFBF0 100%);
  border-radius: 24px;
  margin-bottom: 48px;
}

.final-cta h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.final-cta p {
  font-size: 18px;
  color: #666;
  margin-bottom: 32px;
}

.final-cta .btn-primary {
  display: inline-block;
  width: auto;
  padding: 20px 48px;
  font-size: 20px;
}

.final-cta .guarantee {
  font-size: 14px;
  color: #999;
  margin-top: 20px;
}

/* FAQ Section */
.faq-section {
  background: white;
  border-radius: 16px;
  padding: 40px 32px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.faq-section h3 {
  font-size: 28px;
  color: #2D2D2D;
  margin-bottom: 24px;
  text-align: center;
}

.faq-item {
  margin-bottom: 16px;
  border: 1px solid #E8E8E8;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  cursor: pointer;
  padding: 20px;
  background: white;
  transition: background 0.2s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background: #F9F9F9;
}

.faq-question h4 {
  font-size: 18px;
  color: #2D2D2D;
  margin: 0;
  font-weight: 700;
}

.faq-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s;
  color: #EE728E;
  font-weight: bold;
}

.faq-arrow.open {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer.open {
  max-height: 500px;
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin: 0;
  padding: 0 20px 20px 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .results-header h1 {
    font-size: 28px;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .pricing-card.recommended {
    transform: scale(1);
  }

  .story-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .story-photo {
    margin: 0 auto;
  }

  .story-text .quote {
    border-left: none;
    border-top: 3px solid #EE728E;
    padding-left: 0;
    padding-top: 20px;
  }

  .final-cta {
    padding: 40px 24px;
  }

  .final-cta h2 {
    font-size: 26px;
  }

  .final-cta .btn-primary {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .results-header {
    padding: 32px 20px;
  }

  .recommendation-card,
  .success-story {
    padding: 32px 24px;
  }

  .profile-insights {
    grid-template-columns: 1fr;
  }
}

/* Waitlist Confirmation Styles */
.waitlist-confirmation {
  max-width: 800px;
  margin: 0 auto;
}

.confirmation-icon {
  font-size: 80px;
  text-align: center;
  margin: 40px 0 20px;
  animation: checkmark-pop 0.5s ease-out;
}

@keyframes checkmark-pop {
  0% { transform: scale(0); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.lead {
  font-size: 20px;
  text-align: center;
  color: #666;
  margin-bottom: 40px;
}

.profile-note {
  background: #FFF5F7;
  border-left: 4px solid #EE728E;
  padding: 20px;
  margin-top: 20px;
  border-radius: 8px;
}

.profile-note p {
  margin: 0;
  color: #333;
  line-height: 1.6;
}

.what-happens-next {
  margin: 60px 0;
}

.what-happens-next h3 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  color: #2C2C2C;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.timeline-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.timeline-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #EE728E 0%, #D85A7A 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
}

.timeline-content h4 {
  margin: 0 0 8px 0;
  font-size: 20px;
  color: #2C2C2C;
}

.timeline-content p {
  margin: 0;
  color: #666;
  line-height: 1.6;
}

.cta-box {
  background: linear-gradient(135deg, #F5F5F5 0%, #FFFFFF 100%);
  border: 2px solid #EE728E;
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  margin: 60px 0;
}

.cta-box h3 {
  margin: 0 0 12px 0;
  font-size: 28px;
  color: #2C2C2C;
}

.cta-box p {
  color: #666;
  margin: 0 0 24px 0;
  font-size: 18px;
}

.cta-box .note {
  font-size: 14px;
  color: #EE728E;
  font-weight: 600;
  margin-top: 16px;
}

.success-preview {
  margin: 60px 0;
  padding: 40px;
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.success-preview h3 {
  text-align: center;
  margin-bottom: 30px;
  color: #2C2C2C;
}

.social-proof {
  background: white;
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  margin: 0;
  text-align: center;
}

.social-proof .stat {
  font-size: 20px;
  color: #2C2C2C;
  margin-bottom: 30px;
}

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

.testimonial {
  background: #FFFFFF;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.testimonial p {
  font-style: italic;
  color: #666;
  margin: 0 0 12px 0;
  line-height: 1.6;
}

.testimonial .author {
  font-size: 14px;
  color: #EE728E;
  font-weight: 600;
}

@media (max-width: 768px) {
  .timeline-item {
    gap: 16px;
  }
  
  .timeline-number {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  
  .cta-box {
    padding: 30px 20px;
  }
  
  .testimonials {
    grid-template-columns: 1fr;
  }
}

/* Testimonial Image */
.testimonial-image {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

/* Tier Options Grid */
.tier-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 32px 0 24px 0;
}

.tier-option {
  background: white;
  border: 2px solid #E8E8E8;
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.tier-option:hover {
  border-color: #EE728E;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(238, 114, 142, 0.15);
}

.tier-option.recommended {
  border-color: #EE728E;
  border-width: 3px;
  background: linear-gradient(135deg, #FFF5F8 0%, #FFFBF0 100%);
}

.tier-option h4 {
  font-size: 20px;
  color: #2D2D2D;
  margin: 12px 0 8px 0;
}

.tier-option p {
  font-size: 14px;
  color: #666;
  margin: 0 0 20px 0;
  line-height: 1.5;
}

.recommended-badge {
  background: linear-gradient(135deg, #EE728E 0%, #F9B233 100%);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 12px;
}

.btn-tier {
  display: inline-block;
  width: 100%;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  font-family: inherit;
}

.btn-tier.btn-primary {
  background: linear-gradient(135deg, #EE728E 0%, #F9B233 100%);
  color: white;
  border: none;
}

.btn-tier.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(238, 114, 142, 0.3);
}

.btn-tier.btn-secondary {
  background: #F8F8F8;
  color: #2D2D2D;
  border: 2px solid #E8E8E8;
}

.btn-tier.btn-secondary:hover {
  background: #EE728E;
  color: white;
  border-color: #EE728E;
}

/* Update mobile responsive to include tier-options */
@media (max-width: 768px) {
  .tier-options {
    grid-template-columns: 1fr;
  }
}

/* Before and After Grid */
.before-after-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.before-after-grid img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.before-after-grid img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .before-after-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

@media (max-width: 480px) {
  .before-after-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
