/* assets/css/landing.css
   Marketing/public-facing pages only. Portal (logged-in) screens use
   portal.css — kept separate on purpose so redesigning the marketing
   site never risks breaking dashboard layouts. */

body { margin: 0; }

.landing-nav { border-bottom: 1px solid #e2e8f0; background: #fff; position: sticky; top: 0; z-index: 10; }
.landing-nav-inner { max-width: 1100px; margin: 0 auto; padding: 16px 24px; display: flex; justify-content: space-between; align-items: center; }
.landing-brand { font-weight: 700; font-size: 18px; }
.landing-brand span { color: var(--brand); }
.landing-nav nav a { margin-inline-start: 20px; text-decoration: none; color: var(--text); font-size: 14px; }
.landing-nav nav a.btn-primary { color: #fff; padding: 8px 16px; border-radius: 6px; }

.hero { background: linear-gradient(180deg, #eef4ff 0%, #fff 100%); padding: 80px 24px; text-align: center; }
.hero-inner { max-width: 720px; margin: 0 auto; }
.hero h1 { font-size: 40px; line-height: 1.2; margin-bottom: 18px; }
.hero h1 span { color: var(--brand); }
.hero p { font-size: 17px; color: #475569; margin-bottom: 28px; }
.hero-actions { display: flex; gap: 12px; justify-content: center; }
.btn-lg { padding: 12px 24px; font-size: 15px; border-radius: 8px; }

.features { padding: 60px 24px; }
.features-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 10px; padding: 22px; }
.feature-card h3 { font-size: 16px; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: #64748b; line-height: 1.5; margin: 0; }

.cta { background: #0d6efd; color: #fff; padding: 60px 24px; text-align: center; }
.cta h2 { font-size: 26px; margin-bottom: 10px; }
.cta p { margin-bottom: 24px; opacity: .9; }
.cta .btn-primary { background: #fff; color: var(--brand); }
.cta .btn-primary:hover { background: #f1f5f9; }

.landing-footer { text-align: center; padding: 30px; color: #94a3b8; font-size: 13px; }

.content-page { max-width: 780px; margin: 0 auto; padding: 50px 24px; }
.content-page h1 { font-size: 28px; margin-bottom: 8px; }
.content-page .lede { color: #64748b; margin-bottom: 32px; }
.steps { counter-reset: step; list-style: none; padding: 0; }
.steps li { counter-increment: step; position: relative; padding: 0 0 28px 44px; border-inline-start: 2px solid #e2e8f0; margin-inline-start: 16px; }
.steps li:last-child { border-color: transparent; padding-bottom: 0; }
.steps li::before { content: counter(step); position: absolute; inset-inline-start: -19px; top: 0; width: 34px; height: 34px; border-radius: 50%; background: var(--brand); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; }
.steps h3 { margin: 0 0 6px; font-size: 16px; }
.steps p { margin: 0; color: #475569; font-size: 14px; line-height: 1.5; }

.faq-item { border-bottom: 1px solid #e2e8f0; padding: 18px 0; }
.faq-item h3 { font-size: 15px; margin: 0 0 6px; }
.faq-item p { margin: 0; color: #475569; font-size: 14px; line-height: 1.5; }

@media (max-width: 780px) {
    .features-inner { grid-template-columns: 1fr; }
    .hero h1 { font-size: 30px; }
}
