/* ── Landing Page ─────────────────────────────────────────────────── */
.landing-body { background: #fff; font-family: 'Plus Jakarta Sans', sans-serif; }

.land-nav { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.95); backdrop-filter: blur(10px); border-bottom: 1px solid #e2e8f0; }
.land-nav-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; height: 60px; display: flex; align-items: center; gap: 32px; }
.land-brand { display: flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 800; color: #1e293b; text-decoration: none; flex: 1; }
.land-nav-links { display: flex; align-items: center; gap: 20px; }
.land-nav-links a { color: #64748b; text-decoration: none; font-size: 14px; font-weight: 500; }
.land-nav-links a:hover { color: #1e293b; }

.hero { text-align: center; padding: 80px 24px 60px; background: linear-gradient(180deg, #f0f7ff 0%, #fff 100%); }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: #e3f0ff; color: #1a56db; font-size: 13px; font-weight: 700; padding: 5px 14px; border-radius: 20px; margin-bottom: 20px; }
.hero h1 { font-size: clamp(32px, 5vw, 56px); font-weight: 800; color: #0f172a; line-height: 1.15; margin-bottom: 16px; }
.hero-highlight { color: #1a56db; }
.hero-sub { font-size: 18px; color: #64748b; margin-bottom: 32px; line-height: 1.6; }
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.btn-lg { padding: 13px 28px; font-size: 15px; border-radius: 10px; }
.hero-stats { display: flex; align-items: center; justify-content: center; gap: 12px; color: #64748b; font-size: 14px; }
.hero-stats strong { color: #1e293b; }
.hstat-sep { color: #cbd5e1; }

.features, .how-section { padding: 80px 24px; }
.features { background: #f8fafc; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label { display: inline-block; background: #e3f0ff; color: #1a56db; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 4px 12px; border-radius: 12px; margin-bottom: 12px; }
.section-inner h2 { font-size: 32px; font-weight: 800; color: #0f172a; margin-bottom: 40px; }

.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.feat-card { background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; padding: 20px; transition: transform .2s, box-shadow .2s; }
.feat-card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,.08); }
.feat-icon { font-size: 28px; margin-bottom: 10px; }
.feat-card h3 { font-size: 15px; font-weight: 700; color: #1e293b; margin-bottom: 6px; }
.feat-card p { font-size: 13px; color: #64748b; line-height: 1.5; }

.steps { display: flex; align-items: flex-start; gap: 8px; flex-wrap: wrap; }
.step { flex: 1; min-width: 160px; text-align: center; padding: 20px 12px; }
.step-num { width: 44px; height: 44px; border-radius: 50%; background: #1a56db; color: #fff; font-size: 18px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.step h3 { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.step p { font-size: 13px; color: #64748b; }
.step-arrow { font-size: 24px; color: #cbd5e1; padding-top: 28px; }

.cta-section { background: linear-gradient(135deg, #1e3a5f, #1a56db); color: #fff; text-align: center; padding: 70px 24px; }
.cta-section h2 { font-size: 28px; font-weight: 800; margin-bottom: 10px; }
.cta-section p { font-size: 16px; color: rgba(255,255,255,.8); margin-bottom: 28px; }
.cta-section .btn-primary { background: #fff; color: #1a56db; font-weight: 800; }
.cta-section .btn-primary:hover { background: #f0f7ff; }

.land-footer { background: #0f172a; color: #64748b; padding: 24px; }
.land-footer-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; font-size: 13px; flex-wrap: wrap; gap: 8px; }
.powered strong { color: #94a3b8; }

@media (max-width: 768px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .step-arrow { display: none; }
  .land-nav-links a:not(.btn) { display: none; }
}
@media (max-width: 480px) {
  .feature-grid { grid-template-columns: 1fr; }
}
