.lp-hero {
    padding: 80px 0 72px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    margin-bottom: 64px;
}

.lp-hero-mark {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.lp-hero-mark svg {
    filter: drop-shadow(0 4px 16px rgba(79, 142, 247, 0.35));
}

.lp-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}

.lp-headline {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.8px;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--text);
}

.lp-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.75;
}

.lp-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.lp-btn-primary {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: opacity 0.15s;
}

.lp-btn-primary:hover {
    opacity: 0.85;
}

.lp-btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--text-muted);
    padding: 12px 28px;
    border-radius: 6px;
    border: 1px solid var(--border);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: border-color 0.15s, color 0.15s;
}

.lp-btn-secondary:hover {
    border-color: #555;
    color: var(--text);
}

/* Features */
.lp-features {
    margin-bottom: 64px;
}

.lp-section-title {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    margin-bottom: 36px;
    text-align: center;
}

.lp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.lp-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 24px;
}

.lp-icon {
    color: var(--accent);
    margin-bottom: 14px;
    display: flex;
}

.lp-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.lp-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* How it works */
.lp-how {
    margin-bottom: 64px;
    padding-bottom: 64px;
    border-bottom: 1px solid var(--border);
}

.lp-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.lp-step {
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    text-align: center;
    padding: 0 16px;
}

.lp-step-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.lp-step h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.lp-step p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.lp-step-arrow {
    font-size: 1.5rem;
    color: var(--border);
    align-self: center;
    padding: 0 8px;
    flex-shrink: 0;
}

/* Provider CTA */
.lp-provider-cta {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 36px;
    margin: 48px 0 64px;
}

.lp-provider-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.lp-provider-inner h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.lp-provider-inner p {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 480px;
}

/* Bottom CTA */
.lp-cta {
    text-align: center;
    padding: 64px 24px 40px;
    border-top: 1px solid var(--border);
    margin-top: 16px;
}

.lp-cta h2 {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    margin-bottom: 12px;
}

.lp-cta p {
    color: var(--text-muted);
    margin-bottom: 32px;
    font-size: 1rem;
}

@media (max-width: 780px) {
    .lp-headline {
        font-size: 2.2rem;
    }

    .lp-grid {
        grid-template-columns: 1fr 1fr;
    }

    .lp-step-arrow {
        display: none;
    }

    .lp-steps {
        gap: 24px;
    }

    .lp-provider-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 500px) {
    .lp-grid {
        grid-template-columns: 1fr;
    }

    .lp-headline {
        font-size: 1.8rem;
    }
}
