.lp-features {
    padding: 80px 0;
    background: var(--lp-bg-alt);
}

.lp-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.lp-feature-card {
    background: var(--lp-bg);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-lg);
    padding: 32px 28px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.lp-feature-card:hover {
    border-color: var(--lp-primary-border);
    box-shadow: var(--lp-shadow);
}

.lp-feature-icon {
    font-size: 28px;
    margin-bottom: 12px;
}

.lp-feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.5;
}

.lp-feature-card p {
    font-size: 14px;
    color: var(--lp-text-sub);
    line-height: 1.85;
    margin-bottom: 16px;
}

.lp-feature-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
}

.lp-tag-free {
    background: #e8f5e9;
    color: #2e7d32;
}

.lp-tag-pro {
    background: var(--lp-primary-bg);
    color: var(--lp-primary);
}

.lp-tag-both {
    background: #fff3e0;
    color: #e65100;
}