* {
  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: #0a0a0a;
  line-height: 1.5;
}

.container {
  min-height: 100vh;
  background-color: white;
}

/* Hero Image */
.hero-image {
  width: 100%;
  height: 256px;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 768px) {
  .hero-image {
    height: 240px;
  }
}

/* Main Content */
.main-content {
  max-width: 42rem;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Brand Name */
.brand-name {
  text-align: center;
  font-size: 1.25rem;
  font-weight: bold;
  padding: 0.875rem 0;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .brand-name {
    font-size: 1.875rem;
  }
}

/* Progress Stepper */
.stepper-container {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: auto;
  margin: 0;
  padding: 0;
}

.step {
  display: flex;
  align-items: center;
  position: relative;
}

.step-content {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.625rem;
  background-color: #d1d5db;
  color: #4b5563;
  transition: all 0.3s;
}

.step:first-child .step-content {
  border-radius: 9999px 0 0 9999px;
}

.step:last-child .step-content {
  border-radius: 0 9999px 9999px 0;
}

.step.active .step-content {
  background-color: #10b981;
  color: white;
}

.step.completed .step-content {
  background-color: #34d399;
  color: white;
}

.step-number {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: bold;
  border: 1px solid #9ca3af;
  background-color: white;
  color: #6b7280;
}

.step.active .step-number,
.step.completed .step-number {
  border-color: white;
  background-color: white;
  color: #10b981;
}

.step-label {
  font-size: 10px;
  font-weight: 600;
  white-space: nowrap;
  display: none;
}

@media (min-width: 640px) {
  .step-label {
    display: inline;
  }
}

.arrow {
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 8px solid #d1d5db;
  margin-left: -1px;
  transition: all 0.3s;
}

.step.active .arrow {
  border-left-color: #10b981;
}

.step.completed .arrow {
  border-left-color: #34d399;
}

.step:last-child .arrow {
  display: none;
}

/* Main Headline */
.main-headline {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 0.375rem 0;
  margin-bottom: 0.375rem;
}

.headline-text {
  color: #dc2626;
  font-size: 1rem;
}

.gift-emoji {
  color: #dc2626;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .main-headline {
    font-size: 2.25rem;
  }
}

/* Subheading */
.subheading {
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
}

@media (min-width: 768px) {
  .subheading {
    font-size: 1.25rem;
  }
}

/* Steps List */
.steps-list {
  line-height: 1.625;
  font-size: 0.875rem;
  letter-spacing: -0.025em;
  margin-left: 1rem;
  padding: 0.625rem 0;
  margin-bottom: 1.75rem;
}

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

.step-num {
  font-weight: bold;
  flex-shrink: 0;
}

.step-item p {
  line-height: 1.625;
  margin: 0;
}

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

.cta-button {
  display: inline-block;
  background-color: #0a0a0a;
  color: #fafafa;
  border-radius: 9999px;
  padding: 1.5rem 3rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s;
}

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

/* Trust Section */
.trust-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0;
  margin: 0;
}

.trustpilot-logo {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.trustpilot-logo .star-icon {
  width: 1rem;
  height: 1rem;
  color: #00b67a;
}

.trustpilot-logo span {
  font-weight: bold;
  font-size: 0.75rem;
}

/* Updated star rating to use boxes with consistent sizing */
.star-rating {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

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

.star-box .star {
  width: 0.875rem;
  height: 0.875rem;
  color: white;
}

/* Half star with split background - same size as other star boxes */
.star-box.star-half {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to right, #00b67a 50%, #e5e7eb 50%);
}

.star-box.star-half .star {
  position: relative;
  z-index: 10;
  width: 0.875rem;
  height: 0.875rem;
}

.trust-score {
  font-weight: 600;
  font-size: 10px;
}

.trust-score span {
  color: #0a0a0a;
}

/* FAQ Section */
.faq-section {
  margin-top: 2rem;
  margin-bottom: 3rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.faq-title {
  text-align: center;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  line-height: 1.75;
}

.accordion {
  width: 100%;
}

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

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  font-size: 0.75rem;
  font-weight: 500;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.accordion-trigger:hover {
  opacity: 0.8;
}

.accordion-icon {
  font-size: 1.25rem;
  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-out;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
}

.accordion-content p {
  font-size: 0.75rem;
  color: #6b7280;
  padding-bottom: 0.75rem;
  line-height: 1.5;
}

/* Footer */
.footer {
  margin-top: 2rem;
  padding-bottom: 2rem;
  text-align: center;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 9px;
  color: #6b7280;
}

.footer-links a {
  color: #6b7280;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}
