.pricing-hero {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f3ff 100%);
    padding: 9rem 0;
    position: relative;
    overflow: hidden;
    border-radius: 0px;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(91, 58, 243, 0.1);
    border-radius: 100px;
    margin-bottom: 2rem;
}

.pricing-badge i {
    color: var(--primary-color);
}

.pricing-badge span {
    font-weight: 600;
    color: var(--primary-color);
}

.hero-content {
    max-width: 650px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 3rem;
}

.pricing-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.highlight-icon {
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.highlight-icon i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.highlight-text h3 {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.highlight-text p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.hero-visual {
    position: relative;
}

.pricing-card {
    background: #fff;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    max-width: 400px;
    margin-left: auto;
}

.card-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--primary-color);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.card-header h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price .period {
    color: #666;
}

.card-features {
    margin-bottom: 2rem;
}

.card-features .feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.card-features i {
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .pricing-hero .container {
        flex-direction: column;
        gap: 3rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .pricing-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .pricing-hero {
        padding: 4rem 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}

.pricing-tabs-section {
    padding: 0;
    background: linear-gradient(135deg, #f6f9fc 0%, #f1f4f8 100%);
    margin-top: -20px;
}

.tabs-container {
    width: 100%;
    max-width: 100%;
}

.tabs-header {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f3ff 100%);
    box-shadow: none;
    z-index: 900;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.tabs-header .container {
    display: flex;
    justify-content: center;
}

.tab-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 2rem;
    border: none;
    background: transparent;
    color: var(--text-color);
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    min-width: 150px;
}

.tab-button i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #666;
    transition: color 0.3s ease;
}

.tab-button span {
    font-size: 0.9rem;
    font-weight: 600;
}

.tab-button:hover,
.tab-button.active {
    background: transparent;
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    box-shadow: none;
}

.tab-button:hover i,
.tab-button.active i {
    color: var(--primary-color);
}

.tab-content {
    display: none;
    padding-top: 0rem;
}

.tab-content.active {
    display: block;
}

@media (max-width: 768px) {
    .tabs-header .container {
        flex-direction: column;
        padding: 0.5rem;
    }

    .tab-button {
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        gap: 1rem;
        padding: 1rem;
    }

    .tab-button i {
        margin-bottom: 0;
    }
}

/* ... существующие стили ... */

.currency-animation {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.currency-item {
    position: absolute;
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(91, 58, 243, 0.15);
    animation: currencyFloat 6s infinite ease-in-out;
}

.currency-item i {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.currency-item:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.currency-item:nth-child(2) {
    top: 50%;
    right: 20%;
    animation-delay: 2s;
}

.currency-item:nth-child(3) {
    bottom: 20%;
    left: 40%;
    animation-delay: 4s;
}

.pulse-effect {
    position: absolute;
    inset: -10px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    animation: pulse 2s infinite;
}

.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.float-item {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(91, 58, 243, 0.1);
    animation: floatItem 8s infinite ease-in-out;
}

.float-item:nth-child(1) {
    top: 30%;
    right: 15%;
    animation-delay: 0s;
}

.float-item:nth-child(2) {
    bottom: 25%;
    right: 25%;
    animation-delay: 2s;
}

.float-item:nth-child(3) {
    top: 40%;
    left: 15%;
    animation-delay: 4s;
}

@keyframes currencyFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes floatItem {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(10px, -10px); }
    50% { transform: translate(0, -20px); }
    75% { transform: translate(-10px, -10px); }
}

/* Обновленные медиа-запросы */
@media (max-width: 992px) {
    .currency-animation {
        width: 300px;
        height: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .currency-animation {
        width: 250px;
        height: 250px;
    }
    
    .currency-item {
        width: 60px;
        height: 60px;
    }
    
    .currency-item i {
        font-size: 1.5rem;
    }
    
    .float-item {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
}