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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #faf5f0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 16px;
}

main {
  width: 100%;
  max-width: 380px;
}

article {
  text-align: center;
}

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

.logo {
  height: 70px;
  width: auto;
  mix-blend-mode: multiply;
}

/* Headline */
.headline {
  margin-bottom: 20px;
}

.headline h1 {
  color: #005eae;
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.subtitle {
  color: #e31837;
  font-size: 0.95rem;
  font-weight: 700;
}

/* Steps */
.steps-section {
  padding: 0 8px;
  margin-bottom: 20px;
}

.steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  border-radius: 50px;
  padding: 12px 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.step-number {
  width: 28px;
  height: 28px;
  background: #003366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.step-text {
  color: #003366;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: left;
}

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

.cta-button {
  background: #ff1134;
  color: white;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 12px 40px;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  animation: pulse 2s infinite;
  transition: transform 0.2s ease;
}

.cta-button:hover {
  animation: none;
  transform: scale(1.05);
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

/* FAQ Section */
.faq-section {
  padding: 16px;
}

.faq-title {
  color: #005eae;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(0, 94, 173, 0.3);
  border-radius: 8px;
  overflow: hidden;
  background: white;
}

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

.faq-question:hover {
  background: #f9f9f9;
}

.faq-question span {
  color: #005eae;
  font-size: 0.85rem;
  font-weight: 600;
  flex: 1;
  padding-right: 8px;
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: #005eae;
  transition: transform 0.2s;
  flex-shrink: 0;
}

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

.faq-answer p {
  padding: 0 12px 12px;
  color: #005eae;
  font-size: 0.85rem;
  line-height: 1.5;
}

/* Trustpilot */
.trustpilot {
  padding: 16px 0;
  text-align: center;
}

.trustpilot-logo {
  height: 32px;
  width: auto;
  mix-blend-mode: darken;
  margin-bottom: 8px;
}

.stars-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}

.star {
  width: 16px;
  height: 16px;
}

.partial-star {
  position: relative;
  width: 16px;
  height: 16px;
}

.star-bg, .star-fill {
  position: absolute;
  width: 16px;
  height: 16px;
}

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

.trust-score {
  color: #005697;
  font-size: 0.7rem;
  font-weight: 700;
}

/* Responsive */
@media (min-width: 768px) {
  main {
    max-width: 400px;
  }
}
