html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.prices {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    color: white;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    background: #050c1a; 
}

body.prices::before {
    content: "";
    position: fixed;
    top: -5%; 
    left: -5%;
    width: 110%; 
    height: 110%;
    background: linear-gradient(rgba(5, 12, 26, 0.85), rgba(5, 12, 26, 0.9)), 
                url('/assets/images/prices_back.webp') no-repeat center center;
    background-size: cover;
    z-index: -1;
    animation: liveBackgroundPrices 25s infinite alternate ease-in-out;
}

@keyframes liveBackgroundPrices {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.08) translate(-10px, 10px); }
}

.prices-container {
    max-width: 1180px;
    margin: 40px auto 60px;
    padding: 0 20px;
}

.prices-hero {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 35px 40px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.prices-hero h1 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #ffffff;
}

.prices-hero p {
    color: #cbd5e1;
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto 10px;
}

.seo-text {
    margin-bottom: 10px;
}

.prices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.prices-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.prices-card:hover {
    border-color: rgba(34, 197, 94, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(-5px);
}

.prices-card-top h2 {
    font-size: 26px;
    font-weight: 700;
    margin: 15px 0;
    color: #ffffff;
}

.prices-badge {
    display: inline-block;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.2);
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.prices-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.prices-info-item {
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s;
}

.prices-card:hover .prices-info-item {
    background: rgba(34, 197, 94, 0.05);
}

.prices-info-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748b;
    margin-bottom: 4px;
}

.prices-info-value {
    font-size: 18px;
    font-weight: 600;
    color: #f8fafc;
}

.prices-main-price {
    font-size: 28px;
    color: #22c55e;
    font-weight: 800;
}

.prices-desc {
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 25px;
}

.prices-actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.prices-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.prices-btn-primary {
    background: #22c55e;
    color: #000;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.prices-btn-primary:hover {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

.prices-btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.prices-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #22c55e;
}

@media (max-width: 768px) {
    .prices-hero {
        padding: 25px 20px;
    }
    
    .prices-hero h1 {
        font-size: 28px;
    }

    .prices-grid {
        grid-template-columns: 1fr;
    }

    .prices-card {
        padding: 25px;
    }
    
    .prices-actions {
        flex-direction: column;
    }
}