* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #FFFFFF;
  color: #1a1a1a;
  line-height: 1.6;
}

.main-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  
}

@media (min-width: 640px) {
  .main-container {
    padding: 1rem;

  }
}

.card {
  width: 100%;
  max-width: 100%;
  background-color: white;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border: none;
  overflow: hidden;
}

@media (min-width: 640px) {
  .card {
    max-width: 28rem;
    border-radius: 0.5rem;
  }
}

.card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (min-width: 640px) {
  .card-content {
    padding: 2rem;
  }
}

.logo-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;

}

.logo {
  width: 250px;
  height: auto;
}

.headline-section {
  margin-bottom: 1.5rem;
}

.headline {
  font-size: 1.25rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

@media (min-width: 640px) {
  .headline {
    font-size: 2rem;
  }
}

.subheadline {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
}

.steps-container {
  width: 100%;
  margin-bottom: 1.5rem;
  text-align: left;
}

.step-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.step-number {
  font-weight: 600;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.step-text {
  font-size: 0.875rem;
  line-height: 1.6;
}

.step-note {
  font-size: 0.75rem;
}

.cta-button {
  width: 100%;
  background-color: #000000;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1.125rem;
  height: 3.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s;
  margin-bottom: 1.5rem;
}

.cta-button:hover {
  background-color: #4e4f4e;
  transform: scale(1.02);
  color: #FFFFFF;
}

.cta-button:active {
  transform: scale(0.98);
}

.trust-section {
  width: 100%;
  padding-top: 0;
}

.urgency-message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.clock-icon {
  width: 1rem;
  height: 1rem;
}

.urgency-text {
  font-size: 0.75rem;
  font-weight: 500;
}

.trustpilot-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.trustpilot-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trustpilot-logo {
  width: 1.25rem;
  height: 1.25rem;
}

.trustpilot-text {
  font-weight: 700;
  font-size: 0.875rem;
}

.stars-container {
  display: flex;
  gap: 0.125rem;
}

.star-box {
  width: 1.5rem;
  height: 1.5rem;
  background-color: #00b67a;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Added styles for partial star fill */
.star-box.partial {
  background-color: #ddd;
}

.star-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 70%;
  background-color: #00b67a;
  z-index: 1;
}

.star-box .star-icon {
  position: relative;
  z-index: 2;
}

.star-icon {
  width: 1rem;
  height: 1rem;
}

.trustpilot-score {
  font-size: 0.75rem;
  color: #666;
}

.score-bold {
  font-weight: 600;
  color: #1a1a1a;
}

/* Reviews Section */
.reviews-wrapper {
  width: 100%;
  max-width: 28rem;
  margin-top: 2rem;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .reviews-wrapper {
    padding: 0;
  }
}

.review-container {
  position: relative;
  overflow: hidden;
  height: 420px;
}

.review-slide {
  transition: transform 0.7s ease-in-out, opacity 0.7s ease-in-out;
}

.review-slide.slide-out {
  transform: translateX(-100%);
  opacity: 0;
}

.review-card {
  background-color: white;
  border: 1px solid #e5e5e5;
  border-radius: 0.5rem;
  padding: 1.25rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.review-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.review-author {
  display: flex;
  gap: 0.75rem;
}

.author-avatar {
  position: relative;
}

.avatar-circle {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: #ffe5e5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
}

.verified-badge {
  position: absolute;
  bottom: -0.25rem;
  right: -0.25rem;
  width: 1rem;
  height: 1rem;
  background-color: #00b67a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.verified-icon {
  width: 0.75rem;
  height: 0.75rem;
  fill: white;
}

.author-info h3 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.125rem;
}

.author-meta {
  font-size: 0.75rem;
  color: #666;
}

.review-date {
  font-size: 0.75rem;
  color: #666;
  white-space: nowrap;
}

.review-stars {
  display: flex;
  gap: 0.125rem;
  margin-bottom: 0.75rem;
}

.review-star-box {
  width: 1.25rem;
  height: 1.25rem;
  background-color: #00b67a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-star-icon {
  width: 0.75rem;
  height: 0.75rem;
  fill: white;
}

.review-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.review-content {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e5e5e5;
}

.review-meta-date {
  font-size: 0.75rem;
  color: #666;
}

.unprompted-badge {
  padding: 0.25rem 0.5rem;
  background-color: #f5f5f5;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  color: #666;
}

.review-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.75rem;
  color: #666;
}

.review-action-btn {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
  transition: color 0.2s;
}

.review-action-btn:hover {
  color: #1a1a1a;
}

.action-icon {
  width: 0.875rem;
  height: 0.875rem;
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: rgba(102, 102, 102, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background-color: #ff9900;
  width: 1.5rem;
}

/* FAQ Section */
.faq-wrapper {
  width: 100%;
  max-width: 28rem;
  margin-top: 3rem;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .faq-wrapper {
    padding: 0;
  }
}

.faq-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background-color: white;
  border: 1px solid #e5e5e5;
  border-radius: 0.5rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}

.faq-question:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

.faq-question-text {
  font-size: 0.875rem;
  font-weight: 600;
  padding-right: 0.5rem;
}

.faq-chevron {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  transition: transform 0.3s;
  stroke: #666;
}

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

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

.faq-answer.open {
  max-height: 24rem;
}

.faq-answer-text {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.6;
  padding: 0 1rem 1rem 1rem;
}

/* Disclaimer */
.disclaimer-wrapper {
  width: 100%;
  max-width: 28rem;
  margin-top: 2rem;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .disclaimer-wrapper {
    padding: 0;
  }
}

.disclaimer-text {
  font-size: 0.75rem;
  color: #666;
  text-align: center;
  line-height: 1.6;
}

/* Footer */
.footer-wrapper {
  width: 100%;
  max-width: 28rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .footer-wrapper {
    padding: 0;
  }
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: #666;
}

.footer-link {
  color: #666;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  color: #1a1a1a;
}

.footer-separator {
  color: #666;
}
