.priemka-page {
    padding-top: 0;
    position: relative;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    z-index: 1;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-image {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1920&q=80') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, 
        rgba(26, 31, 46, 0.95) 0%, 
        rgba(26, 31, 46, 0.85) 50%,
        rgba(19, 23, 34, 0.95) 85%, 
        #131722 100%
    );
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, #131722 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 140px 0 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(201, 169, 98, 0.15);
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #c9a962;
    margin-bottom: 24px;
}

.badge-icon {
    display: flex;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(var(--text-main-rgb), 0.75);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

.section-dark {
    background: #131722;
}

.section-alt {
    background: #1a1f2e;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    color: rgba(var(--text-main-rgb), 0.7);
    line-height: 1.7;
}

.risks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.risk-card {
    padding: 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
}

.risk-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 98, 0.1);
    border-radius: 16px;
    color: #c9a962;
    margin-bottom: 24px;
}

.risk-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 16px;
}

.risk-stat {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 16px;
    padding: 12px 16px;
    background: rgba(201, 169, 98, 0.08);
    border-radius: 10px;
}

.risk-label {
    font-size: 13px;
    color: rgba(var(--text-main-rgb), 0.6);
}

.risk-value {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: #c9a962;
}

.risk-desc {
    font-size: 15px;
    color: rgba(var(--text-main-rgb), 0.65);
    line-height: 1.7;
}

.params-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.param-card {
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
}

.param-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 98, 0.1);
    border-radius: 12px;
    color: #c9a962;
    margin-bottom: 16px;
}

.param-card h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
}

.param-card p {
    font-size: 13px;
    color: rgba(var(--text-main-rgb), 0.55);
    line-height: 1.5;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.equipment-card {
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    text-align: center;
}

.equipment-image {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 98, 0.1);
    border-radius: 50%;
    color: #c9a962;
    margin: 0 auto 20px;
}

.equipment-card h4 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
}

.equipment-card p {
    font-size: 14px;
    color: rgba(var(--text-main-rgb), 0.6);
    line-height: 1.6;
}

.result-block {
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.06) 0%, rgba(201, 169, 98, 0.02) 100%);
    border: 1px solid rgba(201, 169, 98, 0.15);
    border-radius: 24px;
    padding: 56px;
}

.result-content h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 40px;
    text-align: center;
}

.result-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.result-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.result-number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #c9a962;
    border-radius: 50%;
    color: #1a1f2e;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    flex-shrink: 0;
}

.result-text h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 6px;
}

.result-text p {
    font-size: 15px;
    color: rgba(var(--text-main-rgb), 0.65);
    line-height: 1.6;
}

.result-block .btn {
    margin: 0 auto;
    display: flex;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    position: relative;
}

.pricing-card.featured {
    border-color: rgba(201, 169, 98, 0.3);
    background: rgba(201, 169, 98, 0.03);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: #c9a962;
    color: #1a1f2e;
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-header h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 12px;
}

.pricing-price {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: #c9a962;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: rgba(var(--text-main-rgb), 0.75);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features svg {
    color: #c9a962;
    flex-shrink: 0;
}

.pricing-card .btn-full {
    width: 100%;
}

.pricing-note {
    text-align: center;
    font-size: 14px;
    color: rgba(var(--text-main-rgb), 0.5);
    margin-top: 24px;
}

.case-block {
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.08) 0%, rgba(201, 169, 98, 0.02) 100%);
    border: 1px solid rgba(201, 169, 98, 0.15);
    border-radius: 24px;
    padding: 48px;
}

.case-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(201, 169, 98, 0.15);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #c9a962;
    margin-bottom: 24px;
}

.case-text {
    font-size: 17px;
    color: rgba(var(--text-main-rgb), 0.8);
    margin-bottom: 20px;
}

.case-list {
    list-style: none;
    margin-bottom: 24px;
}

.case-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 16px;
    color: rgba(var(--text-main-rgb), 0.75);
}

.case-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #c9a962;
    border-radius: 50%;
}

.case-result {
    font-size: 16px;
    color: rgba(var(--text-main-rgb), 0.7);
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.case-savings {
    display: flex;
    align-items: baseline;
    gap: 16px;
}

.savings-label {
    font-size: 16px;
    color: rgba(var(--text-main-rgb), 0.6);
}

.savings-value {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    color: #c9a962;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 24px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-main);
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #c9a962;
}

.faq-question svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: #c9a962;
    transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.22, 0.61, 0.36, 1), padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 24px;
}

.faq-answer p {
    font-size: 15px;
    color: rgba(var(--text-main-rgb), 0.7);
    line-height: 1.7;
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #1a1f2e 0%, #131722 50%, #1a1f2e 100%);
    text-align: center;
    position: relative;
}

.cta-section::before,
.cta-section::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.6), transparent);
}

.cta-section::before { top: 0; }
.cta-section::after { bottom: 0; }

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(var(--text-main-rgb), 0.7);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.related-card {
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.related-card:hover {
    border-color: rgba(201, 169, 98, 0.3);
    transform: translateY(-4px);
}

.related-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 98, 0.1);
    border-radius: 14px;
    color: #c9a962;
    margin-bottom: 16px;
}

.related-card h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
}

.related-card p {
    font-size: 14px;
    color: rgba(var(--text-main-rgb), 0.6);
}

@media (max-width: 1024px) {
    .hero {
        min-height: 100dvh;
    }
    .risks-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .params-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .equipment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-content {
        padding: 120px 0 60px;
    }
    
    .section {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .params-grid {
        grid-template-columns: 1fr;
    }
    
    .equipment-grid {
        grid-template-columns: 1fr;
    }
    
    .result-block {
        padding: 32px 24px;
    }
    
    .result-content h2 {
        font-size: 24px;
    }
    
    .case-block {
        padding: 32px 24px;
    }
    
    .savings-value {
        font-size: 32px;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        padding: 70px 0;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 26px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .pricing-card {
        padding: 32px 24px;
    }
}
