/* Results Panel Container */
.results-panel-wrapper {
  background: #fcfcf4;
  border-top: 4px solid #094c11;
  padding: 60px 20px;
  margin-top: 40px;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.results-panel-wrapper.visible {
  opacity: 1;
}

.results-panel-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Range Summary */
.range-summary-section {
  text-align: center;
  margin-bottom: 48px;
}

.range-summary-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #094c11;
  margin-bottom: 12px;
  line-height: 1.2;
}

.range-summary-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  color: #333;
  margin-bottom: 16px;
}

.badge-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 14px;
  color: #555;
}

.badge-separator {
  color: #094c11;
  font-weight: 700;
}

/* Hero CTA Section */
.hero-cta-section {
  margin-bottom: 40px;
}

.hero-cta-card {
  background: linear-gradient(135deg, #fcfcf4 0%, #ffffff 100%);
  border: 3px solid #094c11;
  padding: 48px 40px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(9, 76, 17, 0.15);
}

.hero-cta-icon {
  font-size: 56px;
  margin-bottom: 16px;
}

.hero-cta-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #094c11;
  margin-bottom: 12px;
  line-height: 1.2;
}

.hero-cta-description {
  font-size: 18px;
  color: #555;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-form-fields {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-input {
  flex: 1;
  font-size: 16px !important;
  padding: 14px !important;
}

.hero-cta-button {
  background: #094c11 !important;
  color: white !important;
  font-size: 20px !important;
  padding: 18px 48px !important;
  font-weight: 600 !important;
  width: auto !important;
  max-width: 400px;
  margin: 0 auto;
  display: block;
}

.hero-cta-button:hover {
  background: #1d5023 !important;
  transform: scale(1.02);
}

/* Secondary Divider */
.secondary-divider {
  display: flex;
  align-items: center;
  margin: 40px 0;
  text-align: center;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: #ddd;
}

.divider-text {
  padding: 0 20px;
  color: #999;
  font-size: 14px;
  font-style: italic;
}

/* Secondary CTAs */
.secondary-ctas {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}

.secondary-cta-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  transition: border-color 0.2s ease;
}

.secondary-cta-item:hover {
  border-color: #094c11;
}

.secondary-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.secondary-content {
  flex: 1;
  max-width: 420px;
  min-width: 320px;
}

.secondary-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #094c11;
  margin-bottom: 6px;
}

.secondary-description {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
  line-height: 1.5;
}

.secondary-benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-left: 120px;
  padding-left: 0;
  align-self: center;
  width: 240px;
  flex-shrink: 0;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #666;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
}

.benefit-item::before {
  content: '\2713';
  color: #094c11;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.button-secondary {
  background: #094c11 !important;
  color: white !important;
  border: none !important;
  padding: 12px 32px !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  border-radius: 4px !important;
  transition: all 0.2s ease !important;
  display: inline-block !important;
}

.button-secondary:hover {
  background: #1d5023 !important;
  transform: scale(1.02);
}

.text-link {
  display: inline-block;
  background: #094c11;
  color: white;
  padding: 12px 32px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.2s ease;
  margin: 0;
}

.text-link:hover {
  background: #1d5023;
  transform: scale(1.02);
  text-decoration: none;
}

.secondary-form-wrapper {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e0e0e0;
}

.secondary-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Lead Capture Forms */
.lead-capture-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lead-capture-form .field-2 {
  margin-bottom: 0;
}

.lead-capture-form .cta-button {
  margin-top: 8px;
  width: 100%;
  font-weight: 600;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 0;
}

.consent-text {
  font-size: 12px;
  color: #666;
  line-height: 1.4;
}

.calendar-embed-placeholder {
  text-align: center;
}

.placeholder-text {
  font-size: 12px;
  color: #999;
  margin-bottom: 12px;
}

/* Mini FAQ */
.mini-faq-section {
  margin-top: 80px;
  margin-bottom: 40px;
}

.faq-section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #094c11;
  margin-bottom: 20px;
  text-align: center;
}

.faq-item {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #094c11;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(9, 76, 17, 0.15);
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #094c11;
  transition: all 0.3s ease;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question:hover {
  background: rgba(9, 76, 17, 0.05);
}

.faq-item.active .faq-question {
  color: #094c11;
}

.faq-icon {
  font-size: 24px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  color: #094c11;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
  max-height: 600px;
  opacity: 1;
  padding: 0 20px 20px 20px;
}

.faq-answer-content {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.faq-item.active {
  border-color: #094c11;
}

/* Affiliate Section */
.affiliate-section {
  margin-top: 32px;
  text-align: center;
}

.affiliate-toggle-text {
  margin-bottom: 16px;
}

.affiliate-toggle-link {
  color: #094c11;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.affiliate-toggle-link:hover {
  color: #1d5023;
}

.affiliate-card {
  background: white;
  padding: 32px;
  border-radius: 8px;
  border: 2px solid #e0e0e0;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.affiliate-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #094c11;
  margin-bottom: 12px;
}

.affiliate-card-description {
  font-size: 14px;
  color: #666;
  margin-bottom: 24px;
  line-height: 1.6;
}

/* Sticky Mobile Bar */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #094c11;
  padding: 12px 16px;
  display: none;
  justify-content: space-around;
  align-items: center;
  z-index: 9999;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.2);
}

.quick-cta-button {
  background: white;
  color: #094c11;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  flex: 1;
  max-width: 160px;
}

.quick-cta-button:hover {
  background: #fcfcf4;
  transform: scale(1.05);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .range-summary-title {
    font-size: 24px;
  }

  .range-summary-subtitle {
    font-size: 16px;
  }

  .badge-row {
    flex-direction: column;
    gap: 4px;
  }

  .badge-separator {
    display: none;
  }

  .hero-cta-card {
    padding: 32px 24px;
  }

  .hero-cta-title {
    font-size: 24px;
  }

  .hero-cta-description {
    font-size: 16px;
  }

  .hero-form-fields {
    flex-direction: column;
  }

  .hero-cta-button {
    font-size: 18px !important;
    padding: 16px 32px !important;
  }

  .secondary-cta-item {
    flex-direction: column;
    text-align: center;
  }

  .secondary-icon {
    margin: 0 auto;
  }

  .secondary-benefits {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    border-top: 1px solid #e0e0e0;
    padding-top: 12px;
    margin-top: 12px;
    align-items: center;
  }

  .benefit-item {
    white-space: normal;
    text-align: center;
  }

  .sticky-cta-bar {
    display: flex;
  }

  .results-panel-wrapper {
    padding: 40px 16px 80px 16px;
  }
}

/* Confetti Animation */
@keyframes confetti-fall {
  0% {
    transform: translateY(-100vh) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(720deg);
    opacity: 0;
  }
}

.confetti-piece {
  position: fixed;
  width: 10px;
  height: 10px;
  background: #094c11;
  top: -10px;
  z-index: 10000;
  animation: confetti-fall 3s linear forwards;
}
