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

:root {
  --bg: #0A0A0A;
  --card: #111111;
  --border: #2A2A2A;
  --red: #CC0000;
  --red-bright: #E50000;
  --text: #F5F5F5;
  --muted: #888888;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

.container { max-width: 720px; margin: 0 auto; padding: 0 20px; }

/* ── CTA BUTTON ── */
.btn {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-align: center;
  width: 100%;
}
.btn:hover { background: var(--red-bright); transform: translateY(-2px); }
.btn-sub {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  margin-top: 6px;
  text-align: center;
}

/* ── HERO ── */
.hero { padding: 64px 0 48px; text-align: center; }
.hero-eyebrow {
  display: inline-block;
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
  color: var(--accent-text);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero h1 { font-size: clamp(1.75rem, 5vw, 2.75rem); font-weight: 900; line-height: 1.15; margin-bottom: 20px; }
.hero h1 span { color: var(--red); }
.hero p { font-size: 1.1rem; color: var(--muted); max-width: 560px; margin: 0 auto 36px; }
.hero-price { margin-bottom: 28px; }
.hero-price .amount { font-size: 2.5rem; font-weight: 900; color: var(--text); }
.hero-price .period { font-size: 1rem; color: var(--muted); }

/* ── MIRROR ── */
.mirror { padding: 48px 0; border-top: 1px solid var(--border); }
.mirror h2 { font-size: 1.4rem; font-weight: 800; margin-bottom: 24px; text-align: center; }
.situations { display: grid; gap: 10px; }
.situation-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 0.95rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 12px;
}
.situation-item::before { content: '→'; color: var(--red); font-weight: 700; flex-shrink: 0; }

/* ── PIVOT ── */
.pivot { padding: 48px 0; border-top: 1px solid var(--border); text-align: center; }
.pivot h2 { font-size: clamp(1.3rem, 4vw, 1.8rem); font-weight: 800; line-height: 1.3; margin-bottom: 16px; }
.pivot p { color: var(--muted); max-width: 520px; margin: 0 auto; }

/* ── CATALOG ── */
.catalog { padding: 48px 0; border-top: 1px solid var(--border); }
.catalog h2 { font-size: 1.4rem; font-weight: 800; margin-bottom: 8px; }
.catalog .subtitle { color: var(--muted); font-size: 0.95rem; margin-bottom: 28px; }

.course-highlight {
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 16px;
}
.course-highlight .tag {
  display: inline-block;
  background: var(--accent-tag-bg);
  color: var(--accent-text);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.course-highlight h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 4px; }
.course-highlight .meta { font-size: 0.85rem; color: var(--muted); margin-bottom: 16px; }

.module-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.module-list li { font-size: 0.9rem; color: #ccc; display: flex; align-items: flex-start; gap: 10px; }
.module-list li::before { content: '✓'; color: var(--accent-text); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

.also-includes { margin-top: 24px; }
.also-includes p { font-size: 0.85rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; margin-bottom: 12px; }
.course-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 14px;
  font-size: 0.85rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pill-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

/* ── TESTIMONIALS ── */
.testimonials { padding: 48px 0; border-top: 1px solid var(--border); }
.testimonials h2 { font-size: 1.4rem; font-weight: 800; margin-bottom: 24px; text-align: center; }
.testimonial-grid { display: grid; gap: 12px; }
.testimonial-card { background: var(--card); border: 1px solid var(--border); border-radius: 10px; padding: 20px; }
.testimonial-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 0.9rem; }
.testimonial-role { font-size: 0.8rem; color: var(--muted); }
.testimonial-text { font-size: 0.9rem; color: #ccc; line-height: 1.6; }

/* ── PRICING ── */
.pricing { padding: 48px 0; border-top: 1px solid var(--border); text-align: center; }
.pricing h2 { font-size: 1.4rem; font-weight: 800; margin-bottom: 8px; }
.pricing-card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 32px 24px; margin-top: 28px; }
.stark-logo { font-size: 2rem; font-weight: 900; letter-spacing: -0.02em; margin-bottom: 4px; }
.stark-logo span { color: var(--red); }
.pricing-amount { font-size: 3rem; font-weight: 900; line-height: 1; margin: 16px 0 4px; }
.pricing-period { color: var(--muted); font-size: 0.9rem; margin-bottom: 24px; }
.inclusions { list-style: none; text-align: left; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.inclusions li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: #ccc; }
.inclusions li::before { content: '✓'; color: #4CAF82; font-weight: 700; flex-shrink: 0; }
.guarantee { margin-top: 16px; font-size: 0.8rem; color: var(--muted); }

/* ── FAQ ── */
.faq { padding: 48px 0; border-top: 1px solid var(--border); }
.faq h2 { font-size: 1.4rem; font-weight: 800; margin-bottom: 24px; text-align: center; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  padding: 18px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-icon { color: var(--red); font-size: 1.2rem; flex-shrink: 0; transition: transform 0.2s; }
.faq-answer { font-size: 0.9rem; color: var(--muted); padding-bottom: 18px; display: none; line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ── FOOTER ── */
footer { padding: 32px 0; border-top: 1px solid var(--border); text-align: center; font-size: 0.8rem; color: var(--muted); }
footer a { color: var(--muted); text-decoration: underline; }

@media (min-width: 600px) {
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
}
