.pricing-section {
        width: 100%;
        padding: 100px 0;
        background: linear-gradient(135deg, 
            #ffffff 0%, 
            #f9fbfd 50%, 
            #f2f7fc 100%);
        position: relative;
        overflow: hidden;
    }

    .pricing-section .container {
        max-width: 1200px;
        width: 100%;
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
        z-index: 2;
    }

    .pricing-section .section-title {
        text-align: center;
        margin-bottom: 70px;
    }

    .pricing-section .section-title h2 {
        font-size: 2.8rem;
        font-weight: 800;
        color: #1a2a3a;
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
    }

    .pricing-section .section-title h2::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #27ae60, #2ecc71);
        border-radius: 2px;
    }

    .pricing-section .section-title p {
        font-size: 1.3rem;
        color: #5a6c7d;
        max-width: 700px;
        margin: 25px auto 0;
        line-height: 1.6;
    }

    .pricing-section .pricing-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-bottom: 50px;
    }

    .pricing-section .pricing-card {
        background: white;
        border-radius: 25px;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 
            0 5px 20px rgba(0, 0, 0, 0.05),
            0 1px 5px rgba(0, 0, 0, 0.03);
        border: 1px solid rgba(0, 0, 0, 0.05);
        position: relative;
        z-index: 1;
    }

    .pricing-section .pricing-card:hover {
        transform: translateY(-15px);
        box-shadow: 
            0 25px 50px rgba(0, 0, 0, 0.12),
            0 10px 20px rgba(39, 174, 96, 0.15);
    }

    .pricing-section .pricing-card.featured {
        border: 2px solid rgba(39, 174, 96, 0.3);
        box-shadow: 
            0 10px 30px rgba(39, 174, 96, 0.15),
            0 5px 15px rgba(0, 0, 0, 0.05);
        transform: scale(1.02);
    }

    .pricing-section .pricing-card.featured:hover {
        transform: translateY(-15px) scale(1.02);
        box-shadow: 
            0 30px 60px rgba(39, 174, 96, 0.2),
            0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .pricing-section .pricing-badge {
        position: absolute;
        top: 20px;
        left: 20px;
        background: linear-gradient(135deg, #3498db, #2980b9);
        color: white;
        font-size: 0.85rem;
        font-weight: 600;
        padding: 8px 20px;
        border-radius: 50px;
        z-index: 3;
        box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
    }

    .pricing-section .pricing-badge.featured {
        background: linear-gradient(135deg, #27ae60, #2ecc71);
        box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
    }

    .pricing-section .pricing-image {
        height: 220px;
        overflow: hidden;
        position: relative;
    }

    .pricing-section .pricing-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .pricing-section .pricing-card:hover .pricing-image img {
        transform: scale(1.08);
    }

    .pricing-section .image-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.3));
        z-index: 2;
    }

    .pricing-section .pricing-content {
        padding: 35px 30px;
    }

    .pricing-section .pricing-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .pricing-section .pricing-header h3 {
        font-size: 1.6rem;
        font-weight: 700;
        color: #1a2a3a;
        flex: 1;
        margin-right: 15px;
        transition: color 0.3s ease;
    }

    .pricing-section .pricing-card:hover .pricing-header h3 {
        color: #27ae60;
    }

    .pricing-section .pricing-card.featured .pricing-header h3 {
        color: #27ae60;
    }

    .pricing-section .pricing-price {
        text-align: right;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }

    .pricing-section .pricing-price .price {
        font-size: 2.2rem;
        font-weight: 800;
        color: #27ae60;
        line-height: 1;
    }

    .pricing-section .pricing-card.featured .pricing-price .price {
        color: #2ecc71;
    }

    .pricing-section .pricing-price .currency {
        font-size: 1rem;
        font-weight: 600;
        color: #5a6c7d;
        margin-top: 5px;
    }

    .pricing-section .pricing-description {
        font-size: 1.1rem;
        line-height: 1.7;
        color: #5a6c7d;
        margin-bottom: 25px;
        min-height: 80px;
    }

    .pricing-section .pricing-features {
        margin-bottom: 25px;
    }

    .pricing-section .feature {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 12px;
    }

    .pricing-section .feature:last-child {
        margin-bottom: 0;
    }

    .pricing-section .feature i {
        color: #27ae60;
        font-size: 1.1rem;
        flex-shrink: 0;
    }

    .pricing-section .pricing-card.featured .feature i {
        color: #2ecc71;
    }

    .pricing-section .feature span {
        font-size: 1rem;
        color: #5a6c7d;
    }

    .pricing-section .pricing-details {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 30px;
        padding-top: 20px;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

    .pricing-section .detail-item {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.9rem;
        color: #5a6c7d;
        background: rgba(0, 0, 0, 0.03);
        padding: 8px 15px;
        border-radius: 8px;
        flex: 1;
        min-width: 120px;
    }

    .pricing-section .detail-item i {
        color: #27ae60;
        font-size: 0.9rem;
    }

    .pricing-section .pricing-card.featured .detail-item i {
        color: #2ecc71;
    }

    .pricing-section .pricing-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
        color: white;
        font-size: 1.1rem;
        font-weight: 600;
        padding: 16px 35px;
        border-radius: 50px;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 
            0 5px 15px rgba(39, 174, 96, 0.3),
            0 2px 5px rgba(0, 0, 0, 0.1);
        border: none;
        cursor: pointer;
        width: 100%;
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

    .pricing-section .pricing-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #1e8449 0%, #27ae60 100%);
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
        border-radius: 50px;
    }

    .pricing-section .pricing-btn:hover {
        transform: translateY(-5px);
        box-shadow: 
            0 10px 25px rgba(39, 174, 96, 0.4),
            0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .pricing-section .pricing-btn:hover::before {
        opacity: 1;
    }

    .pricing-section .pricing-btn.featured {
        background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
        box-shadow: 
            0 5px 15px rgba(46, 204, 113, 0.4),
            0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .pricing-section .pricing-btn.featured::before {
        background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    }

    .pricing-section .pricing-btn.premium {
        background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
        box-shadow: 
            0 5px 15px rgba(243, 156, 18, 0.3),
            0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .pricing-section .pricing-btn.premium::before {
        background: linear-gradient(135deg, #d68910 0%, #f39c12 100%);
    }

    .pricing-section .pricing-btn i {
        font-size: 1.1rem;
        transition: transform 0.3s ease;
    }

    .pricing-section .pricing-btn:hover i {
        transform: translateX(5px);
    }

    .pricing-section .pricing-disclaimer {
        background: white;
        border-radius: 20px;
        padding: 30px;
        box-shadow: 
            0 10px 30px rgba(0, 0, 0, 0.05),
            0 1px 8px rgba(0, 0, 0, 0.03);
        border: 1px solid rgba(0, 0, 0, 0.05);
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 20px;
    }

    .pricing-section .disclaimer-content {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        flex: 1;
    }

    .pricing-section .disclaimer-content i {
        color: #27ae60;
        font-size: 1.5rem;
        margin-top: 2px;
        flex-shrink: 0;
    }

    .pricing-section .disclaimer-content p {
        font-size: 1.05rem;
        color: #5a6c7d;
        margin: 0;
        line-height: 1.6;
    }

    .pricing-section .disclaimer-content strong {
        color: #1a2a3a;
    }

    .pricing-section .consultation-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background: white;
        color: #27ae60;
        font-size: 1rem;
        font-weight: 600;
        padding: 12px 25px;
        border-radius: 50px;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 
            0 3px 10px rgba(39, 174, 96, 0.15),
            inset 0 0 0 2px #27ae60;
        border: 2px solid transparent;
        flex-shrink: 0;
    }

    .pricing-section .consultation-btn:hover {
        background: #27ae60;
        color: white;
        transform: translateY(-3px);
        box-shadow: 
            0 8px 20px rgba(39, 174, 96, 0.3);
    }

    .pricing-section .consultation-btn i {
        font-size: 1.1rem;
    }

    /* Декоративные элементы */
    .pricing-section .pricing-decor {
        position: absolute;
        border-radius: 50%;
        z-index: 1;
        opacity: 0.1;
    }

    .pricing-section .decor-1 {
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, #27ae60 0%, transparent 70%);
        top: 10%;
        left: -100px;
        animation: rotate 30s infinite linear;
    }

    .pricing-section .decor-2 {
        width: 150px;
        height: 150px;
        background: radial-gradient(circle, #3498db 0%, transparent 70%);
        bottom: 20%;
        right: -75px;
        animation: rotate 25s infinite linear reverse;
    }

    .pricing-section .decor-3 {
        width: 100px;
        height: 100px;
        background: radial-gradient(circle, #9b59b6 0%, transparent 70%);
        top: 60%;
        left: 15%;
        animation: float 20s infinite ease-in-out;
    }

    @keyframes rotate {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

    @keyframes float {
        0%, 100% { transform: translateY(0) rotate(0deg); }
        50% { transform: translateY(-20px) rotate(180deg); }
    }

    /* Анимация появления элементов */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .pricing-section .pricing-card {
        animation: fadeInUp 0.6s ease forwards;
        opacity: 0;
    }

    .pricing-section .pricing-card:nth-child(1) { animation-delay: 0.1s; }
    .pricing-section .pricing-card:nth-child(2) { animation-delay: 0.2s; }
    .pricing-section .pricing-card:nth-child(3) { animation-delay: 0.3s; }
    .pricing-section .pricing-disclaimer { animation: fadeInUp 0.8s ease 0.4s forwards; opacity: 0; }

    /* Адаптивность */
    @media (max-width: 1200px) {
        .pricing-section .pricing-grid {
            gap: 25px;
        }
        
        .pricing-section .pricing-content {
            padding: 30px 25px;
        }
    }

    @media (max-width: 992px) {
        .pricing-section {
            padding: 80px 0;
        }
        
        .pricing-section .section-title h2 {
            font-size: 2.4rem;
        }
        
        .pricing-section .section-title p {
            font-size: 1.2rem;
        }
        
        .pricing-section .pricing-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .pricing-section .pricing-card.featured {
            order: -1;
            grid-column: span 2;
        }
        
        .pricing-section .pricing-disclaimer {
            flex-direction: column;
            text-align: center;
        }
        
        .pricing-section .disclaimer-content {
            flex-direction: column;
            text-align: center;
        }
    }

    @media (max-width: 768px) {
        .pricing-section {
            padding: 70px 0;
        }
        
        .pricing-section .section-title h2 {
            font-size: 2.2rem;
        }
        
        .pricing-section .section-title p {
            font-size: 1.1rem;
        }
        
        .pricing-section .pricing-grid {
            grid-template-columns: 1fr;
            max-width: 500px;
            margin: 0 auto 40px;
        }
        
        .pricing-section .pricing-card.featured {
            grid-column: span 1;
            order: 0;
        }
        
        .pricing-section .pricing-image {
            height: 200px;
        }
        
        .pricing-section .pricing-header {
            flex-direction: column;
            gap: 15px;
        }
        
        .pricing-section .pricing-price {
            align-self: flex-start;
            text-align: left;
        }
        
        .pricing-section .pricing-decor {
            display: none;
        }
    }

    @media (max-width: 480px) {
        .pricing-section {
            padding: 60px 0;
        }
        
        .pricing-section .section-title h2 {
            font-size: 2rem;
        }
        
        .pricing-section .pricing-content {
            padding: 25px 20px;
        }
        
        .pricing-section .pricing-header h3 {
            font-size: 1.4rem;
        }
        
        .pricing-section .pricing-price .price {
            font-size: 1.8rem;
        }
        
        .pricing-section .pricing-description {
            font-size: 1rem;
        }
        
        .pricing-section .detail-item {
            min-width: 100%;
        }
    }