/* --- Hero --- */
.prices-hero {
    padding: 180px 0 80px;
    text-align: center;
    background: linear-gradient(rgba(11,11,11,0.9), rgba(11,11,11,0.9)), url('/images/main/Anastasija-Teresenkova-BudoSchool-coach.jpg');
    background-size: cover;
    background-position: center 20%;
}

.prices-hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); text-transform: uppercase; font-weight: 900; }
.prices-hero h1 b { color: var(--red); }
.prices-hero p { color: #888; max-width: 600px; margin: 20px auto 0; }

/* --- Sekcijas Virsraksti --- */
.price-category-title {
    text-align: center;
    text-transform: uppercase;
    font-size: 2rem;
    margin-bottom: 50px;
    letter-spacing: 1px;
}
.price-category-title span { color: var(--red); }

/* --- Grupu Treniņu Kartītes --- */
.pricing-section { padding: 100px 0; }

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.price-card {
    background: var(--card-bg);
    padding: 50px 40px;
    border-radius: 40px;
    border: 1px solid var(--glass-border);
    text-align: center;
    position: relative;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.price-card:hover { transform: translateY(-15px); border-color: var(--red); }

.price-card h3 { font-size: 1.5rem; text-transform: uppercase; margin-bottom: 20px; }
.price-value { font-size: 3.5rem; font-weight: 900; color: #fff; margin-bottom: 15px; }
.price-value span { font-size: 1rem; color: #555; text-transform: uppercase; }
.price-card p { color: #777; margin-bottom: 35px; min-height: 50px; }

.price-card.highlight {
    background: linear-gradient(145deg, #1a1a1a, #141414);
    border: 2px solid var(--red);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    color: #fff;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

/* --- Individuālie Abonementi (Saraksta stils) --- */
.price-grid-packages {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.package-item {
    background: var(--card-bg);
    padding: 25px 40px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--glass-border);
    transition: 0.3s;
}

.package-item:hover { background: #1a1a1a; border-color: rgba(255,255,255,0.2); }

.package-item h4 { text-transform: uppercase; font-size: 1.1rem; margin-bottom: 5px; }
.package-item p { font-size: 14px; color: #666; }
.p-price { font-size: 1.8rem; font-weight: 900; color: var(--red); }

.btn-buy {
    background: transparent;
    border: 2px solid #333;
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 12px;
}

.btn-buy:hover { background: var(--red); border-color: var(--red); }

.highlight-package { border: 1px solid rgba(230, 57, 70, 0.3); background: rgba(230, 57, 70, 0.03); }

/* --- Mobile --- */
@media (max-width: 768px) {
    .package-item { flex-direction: column; text-align: center; gap: 20px; }
    .price-card { padding: 40px 20px; }
}