/* ═══════════════════════════════════════════════════
   LANDING PAGE STYLES  (mobile-first)
═══════════════════════════════════════════════════ */

/* ── Navbar ── */
.lp-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #e5e7eb;
}

.lp-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    height: 60px;
    padding: 0 1rem;
    gap: 0.75rem;
}

.lp-brand {
    font-size: 1.2rem;
    font-weight: 700;
    color: #3b82f6;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
    text-decoration: none;
}

.lp-nav-links {
    display: none;
    gap: 1.5rem;
}

.lp-nav-links a {
    color: #374151;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.lp-nav-links a:hover { color: #3b82f6; }

.lp-nav-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .lp-nav-links { display: flex; }
}

/* ── Hero ── */
.lp-hero {
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

/* ── Hero Slider Background ── */
.lp-hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.lp-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.lp-hero-slide.lp-slide-active {
    opacity: 1;
}

/* Slide 1 — City skyline feel */
.lp-hero-slide[data-slide="0"] {
    background: linear-gradient(160deg, #dbeafe 0%, #bfdbfe 30%, #eff6ff 70%, #f0f9ff 100%);
}
.lp-hero-slide[data-slide="0"]::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 300px 300px at 15% 80%, rgba(59,130,246,0.12) 0%, transparent 70%),
        radial-gradient(ellipse 200px 200px at 85% 20%, rgba(99,102,241,0.10) 0%, transparent 70%);
}

/* Slide 2 — Warm community tones */
.lp-hero-slide[data-slide="1"] {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 25%, #fef9c3 60%, #fffbeb 100%);
}
.lp-hero-slide[data-slide="1"]::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 250px 250px at 20% 30%, rgba(245,158,11,0.12) 0%, transparent 70%),
        radial-gradient(ellipse 300px 300px at 80% 70%, rgba(234,88,12,0.08) 0%, transparent 70%);
}

/* Slide 3 — Green civic growth */
.lp-hero-slide[data-slide="2"] {
    background: linear-gradient(160deg, #dcfce7 0%, #bbf7d0 30%, #f0fdf4 70%, #f8fafc 100%);
}
.lp-hero-slide[data-slide="2"]::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 280px 280px at 70% 80%, rgba(34,197,94,0.12) 0%, transparent 70%),
        radial-gradient(ellipse 200px 200px at 25% 25%, rgba(16,185,129,0.10) 0%, transparent 70%);
}

/* Slide 4 — Purple innovation */
.lp-hero-slide[data-slide="3"] {
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 30%, #ddd6fe 60%, #f5f3ff 100%);
}
.lp-hero-slide[data-slide="3"]::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 300px 300px at 80% 30%, rgba(139,92,246,0.12) 0%, transparent 70%),
        radial-gradient(ellipse 220px 220px at 15% 70%, rgba(168,85,247,0.08) 0%, transparent 70%);
}

/* Content sits above slides */
.lp-hero-content {
    position: relative;
    z-index: 1;
    padding: 4rem 1rem 3rem;
}

/* Dot indicators */
.lp-hero-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.lp-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #94a3b8;
    background: transparent;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s;
}

.lp-dot.lp-dot-active {
    background: #3b82f6;
    border-color: #3b82f6;
    width: 28px;
    border-radius: 999px;
}

.lp-badge {
    display: inline-flex;
    align-items: center;
    background: #eff6ff;
    color: #3b82f6;
    border: 1px solid #bfdbfe;
    border-radius: 999px;
    padding: 0.35rem 1rem;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    letter-spacing: 0.3px;
}

.lp-hero-title {
    font-size: clamp(2rem, 7vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    color: #2f4f6f;
    margin-bottom: 1.25rem;
    border: 0;
    outline: none;
    box-shadow: none;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.lp-hero-title:focus,
.lp-hero-title:focus-visible {
    border: 0;
    outline: none;
    box-shadow: none;
}

.lp-hero-title::selection {
    background: transparent;
    color: inherit;
}

.lp-hero-sub {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    color: #475569;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.lp-hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.lp-hero-note {
    margin-top: 1rem;
    font-size: 0.82rem;
    color: #94a3b8;
}

/* ── Preview Pills ── */
.lp-preview-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 3rem;
}

.lp-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    padding: 0.5rem 1.1rem;
    font-size: 0.88rem;
    font-weight: 500;
    color: #374151;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    white-space: nowrap;
}

.lp-pill i { font-size: 1rem; }

/* ── Sections ── */
.lp-section {
    padding: 5rem 1rem;
}

.lp-section-alt {
    background: #f8fafc;
}

.lp-section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.lp-section-header h2 {
    font-size: clamp(1.65rem, 4vw, 2.25rem);
    font-weight: 700;
    color: #0f172a;
    margin: 0.5rem 0 0.75rem;
}

.lp-section-header p {
    color: #64748b;
    font-size: 1rem;
    margin: 0;
}

/* ── Feature Cards ── */
.lp-feature-card {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    height: 100%;
    transition: box-shadow 0.25s, transform 0.25s;
}

.lp-feature-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.09);
    transform: translateY(-3px);
}

.lp-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.1rem;
}

.lp-feature-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.lp-feature-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
}

/* ── Step Cards ── */
.lp-step-card {
    text-align: center;
    padding: 1.5rem 1rem;
}

.lp-step-num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    color: #fff;
    font-size: 1.3rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 12px rgba(99,102,241,0.3);
}

.lp-step-card h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.lp-step-card p {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* ── Testimonials ── */
.lp-testimonial {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 1.75rem;
    height: 100%;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.lp-stars {
    color: #f59e0b;
    font-size: 0.9rem;
    margin-bottom: 0.85rem;
    display: flex;
    gap: 2px;
}

.lp-testimonial > p {
    font-size: 0.92rem;
    color: #374151;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.25rem;
}

.lp-testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.lp-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ede9fe;
    color: #7c3aed;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.lp-testimonial-author div:last-child {
    display: flex;
    flex-direction: column;
}

.lp-testimonial-author strong {
    font-size: 0.9rem;
    color: #0f172a;
}

.lp-testimonial-author span {
    font-size: 0.78rem;
    color: #94a3b8;
}

/* ── CTA ── */
.lp-cta {
    background: linear-gradient(135deg, #1e40af 0%, #4f46e5 100%);
    padding: 5rem 1rem;
    color: #fff;
    text-align: center;
}

.lp-cta-title {
    font-size: clamp(1.8rem, 5vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.lp-cta-sub {
    font-size: clamp(1rem, 2vw, 1.15rem);
    opacity: 0.85;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.7;
}

.lp-cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* ── Footer ── */
.lp-footer {
    background: #0f172a;
    padding: 1.5rem 1rem;
    color: #94a3b8;
}

.lp-footer-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    max-width: 1200px;
    margin: 0 auto;
}

.lp-footer .lp-brand { color: #e2e8f0; }

.lp-footer-links {
    display: flex;
    gap: 1.5rem;
}

.lp-footer-links a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.lp-footer-links a:hover { color: #e2e8f0; }

.lp-gov-disclaimer {
    width: 100%;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(148, 163, 184, 0.25);
    font-size: 0.78rem;
    line-height: 1.5;
    color: #94a3b8;
}

.lp-gov-disclaimer p {
    margin: 0.25rem 0;
}

.lp-gov-disclaimer a {
    color: #cbd5e1;
    text-decoration: underline;
}

.lp-gov-disclaimer a:hover {
    color: #ffffff;
}

/* ── Mobile tweaks ── */
@media (max-width: 575px) {
    .lp-hero { min-height: 480px; }
    .lp-hero-content { padding: 2.5rem 1rem 2rem; }
    .lp-section { padding: 3rem 1rem; }
    .lp-hero-btns .btn,
    .lp-cta-btns .btn { width: 100%; }
    .lp-footer-inner { text-align: center; justify-content: center; }
    .lp-pill { font-size: 0.8rem; padding: 0.4rem 0.85rem; }
}
