.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.nav-brand { font-size: 18px; font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 14px; }
.nav-links a:hover { color: var(--text); }
.nav-admin-link { }
.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
}

.hero {
  max-width: 780px;
  margin: 40px auto 0;
  padding: 0 24px;
  text-align: center;
}
.hero h1 { font-size: 42px; line-height: 1.15; margin: 0 0 20px; }
.hero-sub { font-size: 17px; color: var(--muted); line-height: 1.6; margin: 0 0 32px; }
.hero-cta { display: flex; justify-content: center; gap: 14px; margin-bottom: 16px; }
.hero-note { font-size: 13px; color: var(--muted); }

.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  border: none;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { opacity: 0.92; }
.btn-secondary { background: var(--panel-2); color: var(--text); border: 1px solid var(--border); }
.btn-secondary:hover { border-color: var(--accent); }
.btn-primary.full, .btn-secondary.full { display: block; text-align: center; width: 100%; margin-top: 20px; }

.how {
  max-width: 1000px;
  margin: 72px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.how-step { text-align: left; }
.how-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--panel-2);
  border: 1px solid var(--accent);
  color: var(--accent-2);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
  margin-bottom: 14px;
}
.how-step h3 { font-size: 16px; margin: 0 0 8px; }
.how-step p { font-size: 14px; color: var(--muted); line-height: 1.55; margin: 0; }

.features {
  max-width: 1100px;
  margin: 90px auto 0;
  padding: 0 24px;
}
.features h2 { text-align: center; font-size: 28px; margin: 0 0 40px; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
}
.feature-icon { font-size: 26px; margin-bottom: 12px; }
.feature-card h3 { font-size: 16px; margin: 0 0 8px; }
.feature-card p { font-size: 14px; color: var(--muted); line-height: 1.55; margin: 0; }

.pricing {
  max-width: 1100px;
  margin: 90px auto 0;
  padding: 0 24px;
}
.pricing h2 { text-align: center; font-size: 28px; margin: 0 0 8px; }
.pricing-sub { text-align: center; color: var(--muted); font-size: 14px; margin: 0 0 40px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.price-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  position: relative;
}
.price-card.featured { border-color: var(--accent); }
.price-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}
.price-card h3 { font-size: 16px; margin: 6px 0 12px; color: var(--muted); }
.price { font-size: 32px; font-weight: 700; margin-bottom: 4px; }
.price span { font-size: 14px; font-weight: 400; color: var(--muted); }
.price-desc { font-size: 13px; color: var(--muted); margin: 0 0 18px; min-height: 34px; }
.price-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.price-card li { font-size: 13px; padding-left: 20px; position: relative; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--accent-2); font-weight: 700; }

.site-footer {
  max-width: 1100px;
  margin: 90px auto 0;
  padding: 28px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
}
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: var(--text); }

@media (max-width: 760px) {
  .hero h1 { font-size: 30px; }
  .how, .feature-grid, .pricing-grid { grid-template-columns: 1fr; }
  .nav-links { gap: 14px; }
  .nav-admin-link { display: none; }
}
