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

html {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: #ffffff;
  color: #111827;
  min-height: 100vh;
}

/* Page Wrapper */
.page-wrapper {
  min-height: 100vh;
  background-color: #ffffff;
}

/* Notification Banner */
.notification-banner {
  background-color: #CC0000;
  color: #ffffff;
  padding: 12px 16px;
  text-align: center;
}

.notification-text {
  font-size: 14px;
  font-weight: 500;
}

.pulse-dot {
  display: inline-block;
  animation: pulse 2s infinite;
}

.claimed-name {
  font-weight: 600;
}

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

/* Hero Section */
.hero-section {
  padding: 28px 16px 32px;
  max-width: 512px;
  margin: 0 auto;
  text-align: center;
}

/* Target Logo */
.logo-wrapper {
  margin-bottom: 24px;
}

.target-logo {
  width: 72px;
  height: 72px;
  margin: 0 auto;
  display: block;
}

/* Headline */
.headline {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
  line-height: 1.3;
}

.headline .highlight {
  color: #CC0000;
  font-size: 32px;
  display: block;
  margin-top: 2px;
}

.subheadline {
  color: #6B7280;
  font-size: 15px;
  margin-bottom: 28px;
  font-weight: 500;
}

/* Steps */
.steps-container {
  text-align: left;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.step-number {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-color: #CC0000;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
}

.step-text {
  color: #1F2937;
  font-size: 14px;
}

/* CTA Button */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #CC0000;
  color: #ffffff;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 16px;
  text-decoration: none;
  transition: background-color 0.2s;
  white-space: nowrap;
}

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

/* Divider */
.divider {
  height: 1px;
  background-color: #E5E7EB;
  max-width: 512px;
  margin: 0 auto;
}

/* Trustpilot Section */
.trustpilot-section {
  padding: 32px 16px 16px;
  max-width: 512px;
  margin: 0 auto;
  text-align: center;
}

.trustpilot-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.trustpilot-header {
  display: flex;
  align-items: center;
  gap: 6px;
}

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

.trustpilot-title {
  font-weight: 600;
  color: #1F2937;
}

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

.star-box {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.star-box.full {
  background-color: #00B67A;
}

.star-box svg {
  width: 16px;
  height: 16px;
}

.star-box.half {
  position: relative;
  overflow: hidden;
}

.star-box.half .half-left {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background-color: #00B67A;
}

.star-box.half .half-right {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background-color: #DCDCE6;
}

.star-box.half svg {
  position: relative;
  z-index: 10;
}

.trust-score {
  font-size: 14px;
  color: #4B5563;
}

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

/* FAQ Section */
.faq-section {
  padding: 24px 16px;
  max-width: 512px;
  margin: 0 auto;
}

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

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

.faq-item {
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 16px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #F9FAFB;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: #111827;
  transition: background-color 0.2s;
}

.faq-question:hover {
  background-color: #F3F4F6;
}

.faq-question span {
  padding-right: 16px;
}

.faq-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #6B7280;
  transition: transform 0.2s;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 16px;
  background-color: #ffffff;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer p {
  font-size: 14px;
  color: #4B5563;
  line-height: 1.6;
}

/* Footer */
.footer {
  padding: 32px 16px;
  border-top: 1px solid #E5E7EB;
  text-align: center;
}

.copyright {
  color: #6B7280;
  font-size: 14px;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 14px;
  color: #6B7280;
}

.footer-links span {
  cursor: default;
}

/* Responsive Styles */
@media (min-width: 768px) {
  .notification-text {
    font-size: 16px;
  }

  .hero-section {
    padding: 56px 16px;
  }

  .logo-wrapper {
    margin-bottom: 32px;
  }

  .target-logo {
    width: 96px;
    height: 96px;
  }

  .headline {
    font-size: 28px;
  }

  .headline .highlight {
    font-size: 42px;
  }

  .subheadline {
    font-size: 17px;
    margin-bottom: 32px;
  }

  .steps-container {
    gap: 14px;
    margin-bottom: 36px;
  }

  .step-number {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .step-text {
    font-size: 16px;
  }

  .cta-button {
    padding: 16px 48px;
    font-size: 18px;
  }

  .faq-title {
    font-size: 24px;
  }
}
