* { box-sizing: border-box; }

:root {
  --red: #cc0000;
  --red-dark: #a80000;
  --text: #323232;
  --muted: #737373;
  --trust: #3d5a64;
  --border: #e5e5e5;
  --bg: #fafafa;
  --card: #ffffff;
  --soft: #f5f5f5;
  --success: #22c55e;
  --star: #f59e0b;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

.page { min-height: 100vh; padding: 32px 16px 64px; }
.container { width: 100%; max-width: 672px; margin: 0 auto; }

.card {
  overflow: hidden;
  background: var(--card);
  border: 1px solid rgba(229,229,229,.8);
  border-radius: 28px;
  box-shadow: 0 8px 24px -18px rgba(50,50,50,.35);
}

.hero {
  padding: 32px 40px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.target-logo {
  width: 48px;
  height: 48px;
  margin: 0 auto;
  position: relative;
  border-radius: 50%;
  background: var(--red);
  display: grid;
  place-items: center;
}

.logo-ring {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: white;
}

.logo-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
}

h1 {
  margin: 20px 0 0;
  font-size: 30px;
  line-height: 1.12;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.5px;
}

h1 span {
  display: block;
  margin-top: 5px;
  color: var(--red);
}

.hero p {
  max-width: 480px;
  margin: 16px auto 0;
  color: var(--trust);
  font-size: 14px;
}

.claim-section { padding: 32px 40px; }

h2 {
  margin: 0;
  text-align: center;
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.steps li {
  padding: 20px 10px;
  min-height: 150px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(245,245,245,.7);
}

.number {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--red);
  color: white;
  font-size: 14px;
  font-weight: 700;
}

.steps strong, .steps small { display: block; }
.steps strong { font-size: 14px; line-height: 1.3; }
.steps small { margin-top: 5px; color: var(--muted); font-size: 12px; }

.cta {
  max-width: 380px;
  margin: 28px auto 0;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: white;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 999px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 10px 25px rgba(204,0,0,.25);
  transition: transform .15s ease, box-shadow .15s ease;
}

.cta:hover { transform: translateY(-2px) scale(1.015); box-shadow: 0 14px 30px rgba(204,0,0,.32); }
.cta:active { transform: scale(.98); }

.trust-row {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--trust);
  font-size: 12px;
  font-weight: 600;
}

.stars { white-space: nowrap; color: var(--star); letter-spacing: 1px; }
.stars b { color: var(--text); letter-spacing: 0; margin-left: 4px; }

.notice {
  margin-top: 20px;
  padding: 12px 16px;
  text-align: center;
  border-radius: 16px;
  background: #fff7ed;
  color: #9a5b00;
  font-size: 12px;
  font-weight: 600;
}

.faq-section { margin-top: 56px; }
.faq-section > h2 { text-transform: none; font-size: 25px; letter-spacing: 0; }

.faq {
  margin-top: 12px;
  overflow: hidden;
  border: 1px solid rgba(229,229,229,.8);
  border-radius: 16px;
  background: white;
  box-shadow: 0 8px 24px -18px rgba(50,50,50,.35);
}

.faq-question {
  width: 100%;
  padding: 18px 16px;
  border: 0;
  background: transparent;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  text-align: left;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.faq-question span {
  color: var(--red);
  font-size: 22px;
  line-height: 1;
  transition: transform .2s ease;
}

.faq-question[aria-expanded="true"] span { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 16px 18px;
  color: var(--muted);
  font-size: 14px;
}

.faq.open .faq-answer { display: block; }

.rating {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.rating-stars { color: var(--success); letter-spacing: 1px; }

footer {
  margin-top: 52px;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
}

footer p { margin: 9px 0; }

@media (max-width: 620px) {
  .page { padding: 18px 12px 48px; }
  .hero, .claim-section { padding-left: 20px; padding-right: 20px; }
  h1 { font-size: 25px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps li { min-height: 140px; }
  .trust-row { flex-direction: column; justify-content: center; }
}

@media (max-width: 390px) {
  .hero, .claim-section { padding-left: 16px; padding-right: 16px; }
  .steps { gap: 8px; }
  .steps li { padding: 16px 8px; }
}
