.hero {
    padding: 180px 0 80px;
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}
.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn-primary {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    background: #7C3AED;
    color: white;
}

.btn-primary:hover {
    background: #6D28D9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 40px;
    padding-top: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Category filter buttons */
.category-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding-top: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    border: 2px solid #7C3AED;
    background: transparent;
    color: #7C3AED;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: #7C3AED;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.filter-btn.active {
    background: #7C3AED;
    color: white;
}

/* Price table row transitions */
.price-table tbody tr {
    transition: all 0.3s ease;
    opacity: 1;
}

.price-table tbody tr.hidden {
    display: none;
}

.price-table tbody tr.fade-out {
    opacity: 0;
    transform: translateX(-20px);
}

.price-table tbody tr.fade-in {
    opacity: 1;
    transform: translateX(0);
}

.section-title-pricelist{
    margin-top: 0px;
}

/* Стили для блока сравнения */
.comparison-section {
    padding: 20px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.comparison-subtitle {
    text-align: center;
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.comparison-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 15px;
}

.comparison-before,
.comparison-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.comparison-before {
    z-index: 5;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
}

.comparison-after {
    z-index: 1;
}

.comparison-before img,
.comparison-after img {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #7C3AED, #9333EA);
    /* border-radius: 50%; */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
    transition: all 0.3s ease;
}

.comparison-slider-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(124, 58, 237, 0.6);
}

.comparison-slider-button svg {
    width: 18px;
    height: 18px;
}

.comparison-label {
    position: absolute;
    bottom: 20px;
    padding: 8px 16px;
    background: rgba(0,0,0,0.8);
    color: white;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.comparison-label-before {
    left: 20px;
}

.comparison-label-after {
    right: 20px;
}

.comparison-companies {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto 0;
}

.company-info {
    text-align: center;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.company-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.company-name {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.company-description {
    display: block;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-top: 30px;
    margin-bottom: 30px;
    color: #000000;
    font-weight: 700;
    position: relative;
}

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

.step-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7C3AED, #9333EA);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.step-card p {
    color: #666;
    line-height: 1.6;
}

.about-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-container-centered {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-title {
    font-size: 36px;
    color: #333;
    margin-bottom: 30px;
    font-weight: 700;
}

.about-description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-gallery-centered {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.gallery-frame {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.about-gallery-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}

.about-gallery-slide {
    min-width: 100%;
    height: 100%;
}

.about-gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(124, 58, 237, 0.1), rgba(147, 51, 234, 0.1));
}


.telegram-download {
    display: inline-block;
    background: #0088cc;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.telegram-download:hover {
    background: #0077b3;
}

@media (max-width: 768px) {

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-container-centered {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-gallery-centered {
        height: 300px;
    }

    .section-title,
    .section-title-faq {
        font-size: 28px;
    }

    .about-title {
        font-size: 28px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .price-grid {
        grid-template-columns: 1fr;
    }
}

.section-title-pricelist{
    margin-top: 0px;
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
    object-fit: contain;
}
.company-info {
    text-align: center;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.company-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.company-name {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.company-description {
    display: block;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-top: 30px;
    margin-bottom: 30px;
    color: #000000;
    font-weight: 700;
    position: relative;
}

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

.step-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7C3AED, #9333EA);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.step-card p {
    color: #666;
    line-height: 1.6;
}

.about-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-container-centered {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-title {
    font-size: 36px;
    color: #333;
    margin-bottom: 30px;
    font-weight: 700;
}

.about-description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-gallery-centered {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.gallery-frame {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.about-gallery-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}

.about-gallery-slide {
    min-width: 100%;
    height: 100%;
}

.about-gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(124, 58, 237, 0.1), rgba(147, 51, 234, 0.1));
}


@media (max-width: 768px) {
    .comparison-slider {
        min-height: 300px;
    }

    .comparison-companies {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .comparison-label {
        font-size: 12px;
        padding: 6px 12px;
    }

    .comparison-slider-button {
        width: 40px;
        height: 40px;
    }

    .comparison-slider-button svg {
        width: 14px;
        height: 14px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-container-centered {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-gallery-centered {
        height: 300px;
    }


    .about-title {
        font-size: 28px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .price-grid {
        grid-template-columns: 1fr;
    }
}

.section-title-pricelist{
    margin-top: 0px;
}
