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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #000000;
  color: #ffffff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.min-h-screen {
  min-height: 100vh;
}

.container {
  max-width: 448px;
  margin: 0 auto;
  padding: 16px;
}

/* Logo */
.logo-container {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}

.logo {
  width: 210px; /* Increased size */
  height: auto;
  margin: 0;
}

/* Headline */
.headline {
  margin-bottom: 16px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  text-wrap: balance;
}

/* Progress Indicator */
.progress-indicator {
  margin-bottom: 16px;
  text-align: center;
}

.progress-text {
  font-size: 12px;
  color: #6b7280;
}

/* How It Works */
.how-it-works {
  border-radius: 8px;
  background-color: #18181b;
  padding: 16px;
  margin: 0 6px 16px;
}

.section-title {
  margin-bottom: 12px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #d1d5db;
}

.steps-list {
  list-style: none;
  font-size: 12px;
  color: #d1d5db;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 12px;
}

.step-item:last-child {
  margin-bottom: 0;
}

.step-number {
  display: flex;
  height: 16px;
  width: 16px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #1ed760;
  font-size: 10px;
  font-weight: 700;
  color: #000000;
}

/* Session Timer */
.session-timer {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
}

.timer-icon {
  width: 16px;
  height: 16px;
  color: #1ed760;
}

.timer-label {
  font-size: 14px;
  font-weight: 500;
  color: #d1d5db;
}

.timer-value {
  font-size: 14px;
  font-weight: 700;
  color: #1ed760;
}

/* CTA Button */
.cta-container {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.cta-container a {
  text-decoration: none;
}

.cta-button {
  background-color: #1ed760;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  border: none;
  border-radius: 8px;
  width: 192px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.cta-button:hover {
  background-color: #1fdf66;
}

/* Form */
.form-container {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-container.hidden {
  display: none;
}

.form-input {
  background-color: #18181b;
  color: #ffffff;
  padding: 12px;
  border: 1px solid #3f3f46;
  border-radius: 6px;
  font-size: 14px;
  width: 100%;
}

.form-input::placeholder {
  color: #6b7280;
}

.privacy-note {
  font-size: 12px;
  color: #9ca3af;
}

.submit-button {
  width: 100%;
  background-color: #1ed760;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.submit-button:hover {
  background-color: #1fdf66;
}

/* Supporting Text */
.supporting-text {
  margin-bottom: 16px;
  text-align: center;
  font-size: 12px;
  color: #9ca3af;
}

/* Trust Score */
.trust-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
}

.trustpilot-header {
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.trustpilot-icon {
  height: 18px;
  width: 18px;
}

.trustpilot-text {
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
}

.stars-container {
  margin-bottom: 4px;
  display: flex;
  gap: 2px;
}

.star-box {
  display: flex;
  height: 20px;
  width: 20px;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  background-color: #00b67a;
  position: relative;
}
/* Update this specific class */
.star-box.half {
  /* This creates a split background: 50% Green, 50% Dark Grey */
  background: linear-gradient(to right, #00b67a 50%, #3f3f46 50%);
}

/* You can remove or comment out these classes as they are no longer needed:
.half-left { ... }
.half-right { ... }
*/

.star-icon {
  height: 12px;
  width: 12px;
  position: relative;
  z-index: 2;
}

.trust-info {
  font-size: 10px;
  color: #d1d5db;
}

.trust-score-text {
  font-weight: 600;
}

.separator {
  color: #6b7280;
}

.reviews-text {
  color: #d1d5db;
}

/* FAQ Section */
.faq-section {
  margin-top: 32px;
}

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

.accordion {
  width: 100%;
}

.accordion-item {
  border-bottom: 1px solid #27272a;
}

.accordion-trigger {
  width: 100%;
  padding: 16px 0;
  text-align: left;
  font-size: 14px;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}

.accordion-trigger:hover {
  color: #1ed760;
}

.accordion-icon {
  font-size: 20px;
  font-weight: 300;
  transition: transform 0.3s;
}

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

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
  max-height: 200px;
  padding-bottom: 16px;
}

.accordion-content p {
  font-size: 14px;
  color: #9ca3af;
}

/* Privacy Statement */
.privacy-statement {
  margin-top: 24px;
  text-align: center;
  font-size: 12px;
  color: #6b7280;
}

/* Footer */
.footer {
  margin-top: 24px;
  border-top: 1px solid #27272a;
  padding-top: 16px;
  padding-bottom: 16px;
  text-align: center;
}

.footer-links {
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 10px;
  color: #6b7280;
}

.disclaimer {
  font-size: 9px;
  color: #52525b;
}
