.btn-nav {
  background: var(--accent);
  color: #0e0e10;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
}

.hero {
  text-align: center;
  padding: 40px 0 60px;
}
.hero-logo {
  max-width: 280px;
  width: 100%;
  height: auto;
  margin: 0 auto 32px;
  display: block;
}
.hero h2 {
  font-size: 40px;
  line-height: 1.15;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}
.hero-sub {
  color: var(--muted);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.btn-hero {
  display: inline-block;
  background: var(--accent);
  color: #0e0e10;
  font-weight: 700;
  font-size: 17px;
  padding: 16px 36px;
  border-radius: 8px;
  text-decoration: none;
}
.hero-note {
  color: var(--muted);
  font-size: 13px;
  margin-top: 14px;
}

section { margin-bottom: 64px; }
section h3 {
  font-size: 24px;
  text-align: center;
  margin: 0 0 8px;
}
.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 32px;
}

.example-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.example-card img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: block;
}
.example-label {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  margin-top: 10px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.step {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}
.step-num {
  color: var(--accent);
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 10px;
}
.step-title { font-weight: 700; margin-bottom: 8px; }
.step-desc { color: var(--muted); font-size: 14px; line-height: 1.5; }

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.tier-card-landing {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}
.tier-name { font-weight: 700; font-size: 16px; }
.tier-price { color: var(--accent); font-weight: 700; font-size: 22px; margin: 6px 0 16px; }
.tier-card-landing ul { margin: 0; padding-left: 18px; color: var(--muted); font-size: 13px; line-height: 1.7; }

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-q { font-weight: 700; margin-bottom: 8px; }
.faq-a { color: var(--muted); font-size: 14px; line-height: 1.6; }

.site-footer {
  text-align: center;
  padding: 40px 0 20px;
  border-top: 1px solid var(--border);
}
.footer-links { margin-top: 20px; }
.footer-links a { color: var(--muted); font-size: 13px; text-decoration: none; }
.footer-links a:hover { color: var(--text); }

@media (max-width: 720px) {
  .hero h2 { font-size: 28px; }
  .example-grid, .steps-grid, .tier-grid { grid-template-columns: 1fr; }
}
