.pricing {
    padding: 50px 0;
    background: #f8fafc;
}

.section-subtitle {
    text-align: center;
    color: #64748b;
    margin-bottom: 40px;
}

/* Cards */
.price-card {
    background: #fff;
    padding: 28px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);

    display: flex;
    flex-direction: column;
    gap: 14px;
}

.price-card h3 {
    font-size: 1.2rem;
    color: #0f172a;
}

.price-card .price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f172a;
}

/* List */
.price-card ul {
    list-style: none;
    padding: 0;
    color: #475569;
}

.price-card ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 18px;
}

.price-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #14b8a6;
}

/* Featured card */
.price-card.featured {
    border: 2px solid #14b8a6;
    transform: scale(1.03);
}

/* Hover */
.price-card:hover {
    transform: translateY(-4px);
    transition: 0.2s ease;
}