.lp-page { min-height: 100vh; background: #f7f9fc; color: #0f172a; }
.lp-icon-sm { width: 14px; height: 14px; }

.lp-hero {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    padding: 56px 0 48px;
}
.lp-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #64748b;
    margin-bottom: 12px;
}
.lp-breadcrumb a { text-decoration: none; color: #64748b; }
.lp-breadcrumb span { color: #cbd5e1; }
.lp-breadcrumb strong { color: #1e293b; font-weight: 500; }
.lp-chip {
    display: inline-flex;
    border-radius: 999px;
    background: #7c3aed;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
}
.lp-hero h1 {
    margin: 12px 0 0;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -.02em;
}
.lp-hero p {
    margin: 12px 0 0;
    max-width: 920px;
    color: #475569;
    font-size: 18px;
    line-height: 1.75;
}

.lp-sections { padding: 44px 0 24px; }
.lp-section { margin-bottom: 30px; }
.lp-section h2 {
    margin: 0 0 16px;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -.02em;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 10px;
}
.lp-card {
    border: 1px solid #e2e8f0;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 1px 4px rgba(15, 23, 42, .06);
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform .2s ease, box-shadow .2s ease;
}
.lp-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(15, 23, 42, .09);
}
.lp-badge {
    align-self: flex-start;
    border-radius: 999px;
    color: var(--badge-color);
    background: var(--badge-bg);
    font-size: 12px;
    font-weight: 600;
    padding: 3px 10px;
}
.lp-card h3 {
    margin: 12px 0 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -.01em;
}
.lp-card p {
    margin: 8px 0 0;
    color: #475569;
    line-height: 1.75;
    font-size: 14px;
    flex: 1;
}
.lp-card small {
    margin-top: 8px;
    color: #94a3b8;
    font-size: 12px;
    font-weight: 500;
}
.lp-card-foot {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
}
.lp-card a {
    color: #176bff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.lp-cta {
    border-top: 1px solid #e2e8f0;
    background: #fff;
    padding: 56px 0;
}
.lp-cta-card {
    text-align: center;
    max-width: 768px;
    margin: 0 auto;
}
.lp-cta-card h2 {
    margin: 0;
    font-size: 1.875rem;
    font-weight: 600;
    letter-spacing: -.02em;
    color: #0f172a;
}
.lp-cta-card p {
    margin: 14px auto 0;
    max-width: 680px;
    color: #475569;
    line-height: 1.75;
}
.lp-cta-actions {
    margin-top: 32px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}
.lp-btn-primary,
.lp-btn-secondary {
    text-decoration: none;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.lp-btn-primary { background: #176bff; color: #fff; }
.lp-btn-secondary { background: #fff; border: 1px solid #e2e8f0; color: #1e293b; }
