/* ===== SECTION PRICING ===== */
.pricing {
    padding: 80px 40px;
    background: #0a0a0a;
    color: #fff;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: #00aaff;
    margin-bottom: 50px;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* ===== CARDS ===== */
.pricing-card {
    background: #111;
    padding: 40px 30px;
    width: 300px;
    border-radius: 12px;
    border: 1px solid #222;
    transition: 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: #00aaff;
}

.pricing-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #00aaff;
}

.price {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 25px;
}

.pricing-card ul li {
    margin: 10px 0;
    color: #ccc;
}

/* ===== HIGHLIGHT (Pack Pro) ===== */
.highlight {
    background: #0f1a22;
    border: 1px solid #00aaff;
    box-shadow: 0 0 15px rgba(0, 170, 255, 0.3);
}

/* ===== BUTTON ===== */
.pricing-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #00aaff;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
}

.pricing-btn:hover {
    background: #0088cc;
}
