/* ============================================
   TARGET THEME — Color Palette
   Red:      #CC0000  (primary brand red)
   Dark Red: #A30000  (hover / pressed)
   White:    #FFFFFF  (background)
   Light BG: #F7F7F7  (subtle section bg)
   Text:     #1A1A1A  (primary text)
   Muted:    #6B7280  (secondary text)
   Border:   #E5E7EB  (dividers)
============================================ */

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

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #ffffff;
  color: #1a1a1a;
  line-height: 1.5;
}

.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px;
}

.content {
  width: 100%;
  max-width: 340px;
}

/* ── LOGO HEADER ── */
.logo-header {
  text-align: center;
  padding: 18px 0 12px;
  background: #ffffff;
  margin-bottom: 16px;
}

/* Target logo wrapper */
.target-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* Bullseye — 4 concentric circles */
.target-bullseye {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.bullseye-ring-outer {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #CC0000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bullseye-ring-white {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bullseye-ring-inner {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #CC0000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bullseye-center {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ffffff;
}

/* Target wordmark */
.target-wordmark {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #CC0000;
  letter-spacing: -0.5px;
  line-height: 1;
}

/* ── HEADER ── */
.header {
  text-align: center;
  margin-bottom: 24px;
}

.logo {
  max-width: 130px;
  height: auto;
  margin-bottom: 16px;
}

.header h1 {
  font-size: 20px;
  font-weight: 800;
  color: #1A1A1A;
  margin-bottom: 4px;
  margin-top: 1em;
  letter-spacing: -0.3px;
}

.subtitle {
  font-size: 14px;
  color: #6b7280;
}

/* ── STEPS ── */
.steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  text-align: left;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.step-number {
  font-size: 14px;
  font-weight: 700;
  color: #CC0000;
}

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

.step-content {
  display: flex;
  flex-direction: column;
}

.step-hint {
  font-size: 12px;
  color: #6b7280;
  margin-top: 2px;
}

/* ── CTA BUTTON ── */
.cta-button {
  display: block;
  width: 100%;
  background-color: #CC0000;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  padding: 16px 24px;
  border-radius: 9999px;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 16px rgba(204, 0, 0, 0.35);
  transition: background-color 0.2s ease,
              box-shadow 0.2s ease,
              transform 0.1s ease;
}

/* Desktop hover — only real pointer devices */
@media (hover: hover) and (pointer: fine) {
  .cta-button:hover {
    background-color: #A30000;
    box-shadow: 0 6px 22px rgba(204, 0, 0, 0.5);
    transform: translateY(-1px);
  }
}

/* Mobile tap / active state */
.cta-button:active {
  background-color: #A30000;
  box-shadow: none;
  transform: scale(0.97);
}

/* ── URGENCY ── */
.urgency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #6b7280;
  margin-bottom: 16px;
}

.clock-icon {
  width: 14px;
  height: 14px;
  stroke: #CC0000;
}

.urgency span {
  font-size: 12px;
}

/* ── TRUST BADGE ── */
.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}

.trustpilot-logo {
  margin-bottom: 4px;
}

.trustpilot-icon {
  height: 16px;
  width: auto;
}

.stars {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 4px;
}

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

.trust-text {
  font-size: 12px;
  color: #6b7280;
}

.trust-score {
  font-weight: 700;
  color: #1a1a1a;
}

.reviews {
  color: #059669;
}

/* ── FAQ ── */
.faq h2 {
  font-size: 16px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.accordion {
  width: 100%;
}

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

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.accordion-trigger span {
  font-size: 12px;
  color: #1a1a1a;
  flex: 1;
  padding-right: 8px;
  font-weight: 500;
}

.chevron {
  width: 16px;
  height: 16px;
  color: #CC0000;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.accordion-item.active .chevron {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease;
}

.accordion-content p {
  font-size: 12px;
  color: #6b7280;
  padding-bottom: 12px;
}

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

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

/* ── TABLET ── */
@media (min-width: 640px) {
  .container {
    padding: 40px 24px;
  }

  .content {
    max-width: 448px;
  }

  .header {
    margin-bottom: 32px;
  }

  .logo {
    max-width: 160px;
    margin-bottom: 24px;
  }

  .header h1 {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .subtitle {
    font-size: 16px;
  }

  .steps {
    gap: 16px;
    margin-bottom: 32px;
  }

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

  .step-hint {
    font-size: 14px;
    margin-top: 4px;
  }

  .cta-button {
    font-size: 18px;
    padding: 20px 24px;
    margin-bottom: 24px;
  }

  .clock-icon {
    width: 16px;
    height: 16px;
  }

  .urgency span {
    font-size: 14px;
  }

  .urgency {
    margin-bottom: 24px;
  }

  .trust-badge {
    margin-bottom: 32px;
  }

  .trustpilot-icon {
    height: 20px;
  }

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

  .stars {
    gap: 4px;
  }

  .trust-text {
    font-size: 14px;
  }

  .faq h2 {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .accordion-trigger span {
    font-size: 14px;
  }

  .accordion-content p {
    font-size: 14px;
  }

  .target-bullseye,
  .bullseye-ring-outer {
    width: 56px;
    height: 56px;
  }

  .bullseye-ring-white {
    width: 40px;
    height: 40px;
  }

  .bullseye-ring-inner {
    width: 26px;
    height: 26px;
  }

  .bullseye-center {
    width: 12px;
    height: 12px;
  }

  .target-wordmark {
    font-size: 38px;
  }
}

/* ── DESKTOP ── */
@media (min-width: 768px) {
  .logo {
    max-width: 180px;
  }

  .header h1 {
    font-size: 28px;
  }
}
