/* 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;
}

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

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

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

.iphone-image {
  height: auto;
  width: 14rem;
  border-radius: 1rem;
  display: block;
}

/* Header */
.header {
  margin: 0 0 1.5rem 0;
}

.title {
  color: #545454;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 0.5rem 0;
}

.subtitle {
  font-size: 1.25rem;
  color: #262626;
  margin: 0;
}

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

.steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

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

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

.step-text {
  color: #262626;
  margin: 0;
  font-size: 0.875rem;
}

/* CTA Button */
.cta-button {
  background-color: #545454;
  color: #fcfcfc;
  border: none;
  border-radius: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 0.75rem 2rem;
  width: 13rem;
  height: 3rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
  margin: 1.25rem auto;
  display: block;
  line-height: 1.75rem;
}

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

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

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

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

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

/* Stars Container */
.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-gray {
  fill: #dcdce6;
}

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

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

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

.star-clipped {
  clip-path: inset(0 70% 0 0);
}

/* Trust Score */
.trust-score {
  font-size: 0.875rem;
  color: #262626;
  font-weight: 300;
}

.score-bold {
  font-weight: 300;
}

/* Responsive Design */
@media (max-width: 640px) {
  .iphone-image {
    width: 12rem;
  }

  .title {
    font-size: 1.25rem;
  }

  .subtitle {
    font-size: 1.125rem;
  }

  .steps-section {
    padding: 1.5rem;
  }

  .cta-button {
    font-size: 1.25rem;
    width: 11rem;
  }
}

@media (max-width: 400px) {
  .iphone-image {
    width: 10rem;
  }

  .steps-section {
    padding: 1.25rem;
  }
}
