/* =====================================================
   Service Pages — Страницы услуг
   ===================================================== */

/* ── Pricing Table ─────────────────────────────────── */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2px;
    margin: 0;
}

.pricing-card {
    background: #0f0f0f;
    padding: 48px 40px;
    position: relative;
    transition: background 0.3s ease;
}

.pricing-card.is-highlighted {
    background: #fa821d;
}

.pricing-card.is-highlighted .pricing-price,
.pricing-card.is-highlighted .pricing-name,
.pricing-card.is-highlighted .pricing-features li,
.pricing-card.is-highlighted .pricing-features li::before {
    color: #fff;
}

.pricing-card.is-highlighted .pricing-divider {
    border-color: rgba(255, 255, 255, 0.3);
}

.pricing-name {
    font-family: var(--font-secondary, 'Mona Sans', sans-serif);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #777;
    margin-bottom: 24px;
}

.pricing-price {
    font-family: var(--font-secondary, 'Mona Sans', sans-serif);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
}

.pricing-price .price-prefix {
    font-size: 0.45em;
    font-weight: 400;
    color: #777;
    margin-right: 4px;
    vertical-align: middle;
}

.pricing-card.is-highlighted .pricing-price .price-prefix {
    color: rgba(255,255,255,0.7);
}

.pricing-price .price-suffix {
    font-size: 0.35em;
    font-weight: 400;
    color: #777;
    margin-left: 4px;
    vertical-align: middle;
}

.pricing-card.is-highlighted .pricing-price .price-suffix {
    color: rgba(255,255,255,0.7);
}

.pricing-divider {
    border: none;
    border-top: 1px solid #222;
    margin: 24px 0;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    color: #999;
    font-size: 14px;
    line-height: 1.6;
    padding: 6px 0 6px 20px;
    position: relative;
}

.pricing-features li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #444;
}

@media (max-width: 767px) {
    .pricing-card {
        padding: 36px 28px;
    }
}

/* ── Partner Badge ──────────────────────────────────── */

.partner-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #111;
    border: 1px solid #222;
    padding: 16px 28px;
    border-radius: 4px;
}

.partner-badge .partner-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

.partner-badge .partner-text {
    font-size: 13px;
    color: #777;
    line-height: 1.4;
}

.partner-badge .partner-text strong {
    display: block;
    color: #ccc;
    font-weight: 600;
    margin-bottom: 2px;
}

/* ── Process Steps ──────────────────────────────────── */

.process-steps {
    counter-reset: step;
}

.process-step {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 32px;
    padding: 40px 0;
    border-bottom: 1px solid #1a1a1a;
    align-items: start;
}

.process-step:last-child {
    border-bottom: none;
}

.process-step-number {
    counter-increment: step;
    font-family: var(--font-secondary, 'Mona Sans', sans-serif);
    font-size: 13px;
    font-weight: 600;
    color: #fa821d;
    letter-spacing: 0.08em;
    padding-top: 4px;
}

.process-step-number::before {
    content: counter(step, decimal-leading-zero);
}

.process-step-title {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 600;
    color: #ccc;
    margin-bottom: 8px;
}

.process-step-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

@media (max-width: 479px) {
    .process-step {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 28px 0;
    }
}

/* ── Rates Table ────────────────────────────────────── */

.rates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2px;
}

.rate-card {
    background: #0f0f0f;
    padding: 40px 36px;
}

.rate-hours {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 16px;
}

.rate-price {
    font-family: var(--font-secondary, 'Mona Sans', sans-serif);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    color: #fa821d;
    line-height: 1;
    margin-bottom: 12px;
}

.rate-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* ── CTA Section ────────────────────────────────────── */

.service-cta-section {
    padding: 100px 60px;
    background: #000;
    text-align: center;
}

.service-cta-title {
    font-family: var(--font-secondary, 'Mona Sans', sans-serif);
    font-size: clamp(28px, 4vw, 56px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 40px;
}

.service-cta-btn {
    display: inline-block;
    padding: 16px 48px;
    background: #fa821d;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.25s ease;
}

.service-cta-btn:hover {
    background: #e07010;
    color: #fff;
}

@media (max-width: 767px) {
    .service-cta-section {
        padding: 60px 20px;
    }
}

@media (max-width: 479px) {
    .service-cta-section {
        padding: 48px 16px;
    }
}
