/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica", "Arial", sans-serif;
  background-color: #fcfcfc;
  color: #262626;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 1rem;
  align-items: flex-start;
}

.content {
  max-width: 28rem;
  width: 100%;
  text-align: center;
}

/* iPhone Image */
.image-container {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

.iphone-image {
  height: auto;
  width: 20rem;
  max-width: 100%;
  border-radius: 1rem;
}

/* Headline Section */
.headline-section {
  margin: 1.5rem 0;
}

.main-headline {
  font-size: 1.25rem;
  font-weight: 900;
  color: #262626;
  margin-bottom: 0.5rem;
  text-wrap: balance;
}

.sub-headline {
  font-size: 0.875rem;
  color: #262626;
  font-weight: 400;
  line-height: 1.6;
  padding: 0 0.5rem;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 1rem;
  color: #262626;
  font-weight: 600;
  margin-top: 0.5rem;
}

/* Steps Section */
.steps-section {
  background-color: #f5f5f5;
  border-radius: 1.5rem;
  padding: 1.5rem;
  text-align: left;
  font-size: 0.875rem;
  margin: 1.5rem 0;
}

.steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

.step-number {
  font-weight: 600;
  color: #262626;
  flex-shrink: 0;
}

.step-text {
  color: #262626;
  line-height: 1.5;
}

.redemption-title {
  font-size: 1rem;
  color: #262626;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0.75rem;
}

/* CTA Button */
.cta-button {
  border-radius: 1rem;
  background-color: #262626;
  color: #fcfcfc;
  font-weight: 600;
  font-size: 1.125rem;
  height: 3rem;
  width: 18rem;
  max-width: 100%;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
  margin: 1.5rem 0;
}

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

.cta-button:active {
  background-color: #1a1a1a;
}

/* Trustpilot Section */
.trustpilot-section {
  margin-top: 1.5rem;
  padding-top: 0.5rem;
}

.trustpilot-logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.trustpilot-logo {
  height: 2rem;
  width: auto;
}

.stars-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

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

.star-full {
  fill: #00b67a;
}

.star-empty {
  fill: #dcdce6;
}

.star-partial-container {
  position: relative;
  width: 1rem;
  height: 1rem;
}

.star-partial-container .star-empty {
  position: absolute;
  top: 0;
  left: 0;
}

.star-partial {
  fill: #00b67a;
  position: absolute;
  top: 0;
  left: 0;
  clip-path: inset(0 70% 0 0);
}

.trustpilot-score {
  font-size: 0.875rem;
  color: #262626;
  font-weight: 300;
}

.trustpilot-score span {
  font-weight: 300;
}

/* Mobile Responsiveness */
@media (max-width: 640px) {
  .container {
    padding: 0.5rem;
  }

  .main-headline {
    font-size: 1.125rem;
  }

  .cta-button {
    width: 100%;
    font-size: 1rem;
  }

  .iphone-image {
    width: 100%;
  }
}
