/* ====== ЦЕНЫ (Glass Premium) ====== */

.prices-page {
    padding-top: 0;
}

/* Hero */
.prices-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    overflow: hidden;
    background: var(--bg-main);
}

.prices-hero-bg {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, rgba(15, 23, 42, 0.88) 0%, rgba(30, 41, 59, 0.82) 100%),
        url('../images/prices/smeta-voda.jpg');
    background-size: cover;
    background-position: center;
}

.prices-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(ellipse at top, rgba(200,169,110,0.1) 0%, transparent 50%);
}

.prices-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.prices-hero h1 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.prices-hero-subtitle {
    font-size: 20px;
    color: rgba(240,238,229,0.75);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Пояснения */
.prices-explanation {
    padding: 100px 0;
    background: var(--bg-main);
    border-top: 1px solid rgba(200,169,110,0.15);
}

.prices-explanation-header h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 24px;
    text-align: center;
}

.prices-explanation-text {
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
    color: rgba(240,238,229,0.7);
    line-height: 1.7;
    text-align: center;
}

.prices-factors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.prices-factor-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s var(--transition-smooth);
}

.prices-factor-card:hover {
    border-color: rgba(200,169,110,0.4);
    transform: translateY(-4px);
}

/* Диапазоны стоимости */
.prices-ranges {
    padding: 100px 0;
    background: var(--bg-main);
    border-top: 1px solid rgba(200,169,110,0.15);
}

.prices-ranges-header h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 16px;
    text-align: center;
}

/* Таблица цен */
.prices-table {
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 24px;
}

.prices-table-header {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 2fr;
    padding: 20px 32px;
    background: rgba(200,169,110,0.12);
    border-bottom: 1px solid rgba(200,169,110,0.25);
}

.prices-table-header span {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.prices-table-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 2fr;
    padding: 28px 32px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.2s;
}

.prices-table-row:hover {
    background: rgba(255,255,255,0.04);
}

.prices-table-row:last-child {
    border-bottom: none;
}

.level-name {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-main);
}

.level-area {
    font-size: 15px;
    color: rgba(240,238,229,0.7);
}

.level-price {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-gold);
}

.level-desc {
    font-size: 14px;
    color: rgba(240,238,229,0.65);
    line-height: 1.5;
}

/* Что включено */
.prices-included {
    padding: 100px 0;
    background: var(--bg-main);
    border-top: 1px solid rgba(200,169,110,0.15);
}

.prices-included-header h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--text-main);
    text-align: center;
    margin-bottom: 48px;
}

.prices-included-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.prices-included-list {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 32px;
}

.prices-included-list h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.prices-included-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.prices-included-item:last-child {
    margin-bottom: 0;
}

.prices-included-item svg {
    color: var(--accent-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.prices-included-item span {
    font-size: 16px;
    color: rgba(240,238,229,0.85);
    line-height: 1.5;
}

/* Что оплачивается отдельно */
.prices-excluded {
    padding: 100px 0;
    background: var(--bg-main);
    border-top: 1px solid rgba(200,169,110,0.15);
}

.prices-excluded-header h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--text-main);
    text-align: center;
    margin-bottom: 48px;
}

.prices-excluded-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.prices-excluded-card {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

.prices-excluded-icon {
    width: 48px;
    height: 48px;
    background: rgba(200,169,110,0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.prices-excluded-content h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 8px;
}

.prices-excluded-content p {
    font-size: 15px;
    color: rgba(240,238,229,0.65);
    line-height: 1.6;
}

/* Почему мы */
.prices-why {
    padding: 100px 0;
    background: var(--bg-main);
    border-top: 1px solid rgba(200,169,110,0.15);
}

.prices-why-header h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    color: var(--text-main);
    text-align: center;
    margin-bottom: 48px;
}

.prices-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.prices-why-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 32px;
    transition: all 0.3s var(--transition-smooth);
}

.prices-why-card:hover {
    border-color: rgba(200,169,110,0.4);
    transform: translateY(-8px);
}

.prices-why-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    background: rgba(200,169,110,0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
}

.prices-why-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 12px;
}

.prices-why-card p {
    font-size: 15px;
    color: rgba(240,238,229,0.65);
    line-height: 1.6;
}

/* Пример сметы */
.prices-estimate {
    padding: 100px 0;
    background: var(--bg-main);
    border-top: 1px solid rgba(200,169,110,0.15);
}

.prices-estimate-header h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--text-main);
    text-align: center;
    margin-bottom: 48px;
}

.prices-estimate-preview {
    max-width: 900px;
    margin: 0 auto 32px;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 48px;
    text-align: center;
}

.prices-estimate-text {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
    color: rgba(240,238,229,0.7);
    line-height: 1.6;
    margin-bottom: 32px;
}

/* FAQ */
.prices-faq {
    padding: 100px 0;
    background: var(--bg-main);
    border-top: 1px solid rgba(200,169,110,0.15);
}

.prices-faq-header h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    color: var(--text-main);
    text-align: center;
    margin-bottom: 48px;
}

.prices-faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.prices-faq-item {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s var(--transition-smooth);
}

.prices-faq-item:hover {
    border-color: rgba(200,169,110,0.4);
}

.prices-faq-question {
    width: 100%;
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    cursor: pointer;
    text-align: left;
}

.prices-faq-question span {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-main);
}

.prices-faq-question svg {
    color: var(--accent-gold);
    transition: transform 0.3s ease;
}

.prices-faq-item.active .prices-faq-question svg {
    transform: rotate(180deg);
}

.prices-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.prices-faq-item.active .prices-faq-answer {
    max-height: 500px;
}

.prices-faq-answer-content {
    padding: 0 28px 24px;
}

.prices-faq-answer-content p {
    font-size: 15px;
    color: rgba(240,238,229,0.75);
    line-height: 1.7;
}

/* CTA */
.prices-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(200,169,110,0.1) 0%, rgba(14,17,23,0.95) 100%);
    position: relative;
}

.prices-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.prices-cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.prices-cta h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 20px;
}

.prices-cta p {
    font-size: 18px;
    color: rgba(240,238,229,0.75);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Ссылки внизу */
.prices-links {
    padding: 80px 0;
    background: var(--bg-main);
}

.prices-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.prices-link-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s var(--transition-smooth);
}

.prices-link-card:hover {
    background: rgba(200,169,110,0.08);
    border-color: rgba(200,169,110,0.4);
    transform: translateX(8px);
}

.prices-link-icon {
    width: 56px;
    height: 56px;
    background: rgba(200,169,110,0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.prices-link-content h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 4px;
}

.prices-link-content p {
    font-size: 14px;
    color: rgba(240,238,229,0.6);
}

.prices-link-arrow {
    color: rgba(240,238,229,0.3);
    transition: all 0.3s ease;
}

.prices-link-card:hover .prices-link-arrow {
    color: var(--accent-gold);
    transform: translateX(4px);
}

/* Адаптив */
@media (max-width: 1024px) {
    .prices-hero {
        min-height: 100dvh;
        padding: 130px 0 90px;
    }
    .prices-factors-grid,
    .prices-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .prices-table-header,
    .prices-table-row {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .prices-table-header span:nth-child(3),
    .prices-table-header span:nth-child(4),
    .level-area,
    .level-desc {
        display: none;
    }
    .prices-links-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .prices-hero {
        min-height: 100dvh;
        padding: 100px 0 80px;
    }
    .prices-hero h1 { font-size: 32px; }
    .prices-hero-subtitle { font-size: 16px; }
    .prices-explanation-header h2,
    .prices-ranges-header h2,
    .prices-why-header h2,
    .prices-faq-header h2,
    .prices-cta h2 { font-size: 28px; }
    .prices-factors-grid,
    .prices-why-grid { grid-template-columns: 1fr; }
    .prices-included-grid { grid-template-columns: 1fr; }
    .prices-table-header { display: none; }
    .prices-table-row {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 20px;
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 12px;
        margin-bottom: 12px;
    }
    .prices-excluded-card { flex-direction: column; text-align: center; }
    .prices-excluded-icon { margin: 0 auto; }
}
