/* ============================================
   TARGET THEME
   Primary Red:   #CC0000
   Hover Red:     #A30000
   Background:    #FFFFFF
   Text:          #1A1A1A
   Muted Text:    #6B7280
   Border:        #E5E7EB
============================================ */

* {
  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;
  margin-bottom: 16px;
}

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

/* Bullseye — 4 nested divs = 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-size: 32px;
  font-weight: 700;
  color: #CC0000;
  letter-spacing: -0.5px;
  line-height: 1;
}

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

.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 on real pointer devices, fixes mobile sticky hover bug */
@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 feedback */
.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 — PURE CSS ACCORDION
   Uses <details> / <summary>
   No JavaScript required
══════════════════════════════ */
.faq h2 {
  font-size: 16px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.accordion {
  width: 100%;
}

/* Each <details> is one accordion row */
details.accordion-item {
  border-bottom: 1px solid #e5e7eb;
}

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

/* <summary> is the clickable trigger row */
details.accordion-item summary.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  cursor: pointer;
  list-style: none; /* hides default browser triangle */
  -webkit-tap-highlight-color: transparent;
}

/* Hide default marker in all browsers */
details.accordion-item summary.accordion-trigger::-webkit-details-marker {
  display: none;
}

details.accordion-item summary.accordion-trigger span {
  font-size: 12px;
  color: #1a1a1a;
  font-weight: 500;
  flex: 1;
  padding-right: 8px;
  text-align: left;
}

/* Chevron arrow */
.chevron {
  width: 16px;
  height: 16px;
  color: #CC0000;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

/* Rotate chevron when <details> is open — pure CSS, no JS */
details.accordion-item[open] summary.accordion-trigger .chevron {
  transform: rotate(180deg);
}

/* Answer content */
.accordion-content {
  overflow: hidden;
  padding-bottom: 0;
  animation: slideDown 0.25s ease;
}

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

/* Smooth slide-down animation when opening */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .content {
    max-width: 448px;
  }

  .header {
    margin-bottom: 32px;
  }

  .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;
  }

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

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

  /* Larger bullseye on tablet */
  .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  (768px+)
══════════════════════════════ */
@media (min-width: 768px) {
  .header h1 {
    font-size: 28px;
  }
}
