/* Variables responsive avec clamp() */
:root {
    /* Typography responsive */
    --font-size-hero-title: clamp(2rem, 6vw, 3.5rem);
    --font-size-hero-subtitle: clamp(1rem, 2.5vw, 1.25rem);
    --font-size-section-title: clamp(1.75rem, 4vw, 2.5rem);
    --font-size-section-subtitle: clamp(1rem, 2vw, 1.25rem);
    --font-size-badge: clamp(0.75rem, 1.5vw, 0.875rem);

    /* Spacing responsive */
    --spacing-hero-padding: clamp(4rem, 12vw, 8rem);
    --spacing-section-padding: clamp(3rem, 8vw, 6rem);
    --spacing-container-padding: clamp(.1rem, 2vw, .2rem);
    --spacing-gap-large: clamp(2rem, 6vw, 4rem);
    --spacing-gap-medium: clamp(1rem, 3vw, 2rem);
    --spacing-gap-small: clamp(0.5rem, 2vw, 1rem);

    /* Layout responsive */
    --container-max-width: min(90vw, 1400px);
    --content-max-width: min(80vw, 800px);
}

/* Hero Section */
.pricing-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
    padding: var(--spacing-hero-padding) 0;
}

.pricing-hero__pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.pricing-hero__pattern-svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.pricing-hero__floating-shapes {
    animation: float 10s ease-in-out infinite;
}

.pricing-hero__content {
    max-width: var(--content-max-width);
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pricing-hero__content.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Métriques */
.pricing-hero__metrics {
    display: flex;
    gap: var(--spacing-gap-medium);
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
}

.pricing-hero__metrics.animated {
    opacity: 1;
    transform: translateY(0);
}

.pricing-hero__metric {
    text-align: center;
    flex: 1;
    min-width: clamp(80px, 15vw, 120px);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
}

.pricing-hero__metric:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.pricing-hero__metric-number {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #6366f1;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.pricing-hero__metric-label {
    font-size: clamp(0.7rem, 1.2vw, 0.875rem);
    color: #475569;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Indicateur de défilement */
.pricing-hero__scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 10;
    width: 100%;
}

.pricing-hero__scroll-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(45deg, #6366f1 0%, #a855f7 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    animation: pulse 2s infinite;
}

.pricing-hero__scroll-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.pricing-hero__scroll-button i {
    font-size: 1rem;
}

.pricing-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
    animation: slideInUp 0.6s ease-out;
    position: relative;
}

.pricing-hero__badge-star {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: linear-gradient(45deg, #ffd700 0%, #ffaa00 100%);
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.5), 0 0 0 2px rgba(255, 215, 0, 0.2);
    animation: pulse 2s infinite;
    position: relative;
    z-index: 1;
    margin-right: 0.5rem;
}

.pricing-hero__badge-star i {
    color: white;
    font-size: 1.1rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.pricing-hero__badge-text {
    color: #6366f1;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.pricing-hero__title {
    font-size: var(--font-size-hero-title);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
    color: #1e293b;
    animation: slideInUp 0.6s ease-out 0.1s both;
}

.pricing-hero__title-highlight {
    background: linear-gradient(135deg, #6366f1, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-hero__subtitle {
    font-size: var(--font-size-hero-subtitle);
    line-height: 1.6;
    color: #475569;
    margin-bottom: 0;
    animation: slideInUp 0.6s ease-out 0.2s both;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Plans Section */
.pricing-plans {
    padding: var(--spacing-section-padding) 0;
    background-color: #fff;
}

.pricing-plans__header {
    text-align: center;
    margin-bottom: var(--spacing-gap-large);
}

.pricing-plans__toggle {
    display: inline-flex;
    align-items: center;
    background: rgba(241, 245, 249, 0.8);
    padding: 0.5rem;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.pricing-plans__toggle-label {
    padding: 0.5rem 1rem;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-plans__toggle-label.active {
    color: #1e293b;
    font-weight: 600;
}

.pricing-plans__toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    margin: 0 0.5rem;
}

.pricing-plans__toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.pricing-plans__toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e2e8f0;
    transition: .4s;
    border-radius: 34px;
}

.pricing-plans__toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

.pricing-plans__toggle-switch input:checked+.pricing-plans__toggle-slider {
    background-color: #6366f1;
}

.pricing-plans__toggle-switch input:checked+.pricing-plans__toggle-slider:before {
    transform: translateX(24px);
}

.pricing-plans__toggle-discount {
    background-color: #10b981;
    color: white;
    font-size: 0.75rem;
    padding: 0.1rem 0.4rem;
    border-radius: 20px;
    margin-left: 0.5rem;
    font-weight: 600;
}

.pricing-plans__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-gap-medium);
    margin-top: var(--spacing-gap-large);
}

.pricing-plan {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
}

.pricing-plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-plan--popular {
    border: 2px solid #6366f1;
    transform: scale(1.05);
    z-index: 1;
}

.pricing-plan--popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-plan__popular-badge {
    position: absolute;
    top: 0;
    right: 2rem;
    background: #6366f1;
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 6px rgba(99, 102, 241, 0.2);
}

.pricing-plan__header {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.pricing-plan__name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.pricing-plan__price {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
    margin-bottom: 1rem;
}

.pricing-plan__currency {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: super;
    margin-right: 0.25rem;
}

.pricing-plan__period {
    font-size: 1rem;
    color: #64748b;
    font-weight: 400;
}

.pricing-plan__description {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.pricing-plan__features {
    padding: 2rem;
}

.pricing-plan__feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #334155;
}

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

.pricing-plan__feature-icon {
    color: #6366f1;
    margin-right: 0.75rem;
    font-size: 0.8rem;
}

.pricing-plan__footer {
    padding: 0 2rem 2rem;
    text-align: center;
}

.pricing-plan__button {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    width: 100%;
    border: 2px solid #e2e8f0;
    color: #64748b;
}

.pricing-plan__button:hover {
    background-color: #f1f5f9;
    color: #1e293b;
    text-decoration: none;
}

.pricing-plan__button--primary {
    background: linear-gradient(45deg, #6366f1 0%, #a855f7 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.pricing-plan__button--primary:hover {
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
    transform: translateY(-2px);
    color: white;
}

/* Features Section */
.pricing-features {
    padding: var(--spacing-section-padding) 0;
    background-color: #f8fafc;
    overflow: hidden;
}

.pricing-features__header {
    text-align: center;
    max-width: var(--content-max-width);
    margin: 0 auto var(--spacing-gap-large);
}

.pricing-features__title {
    font-size: var(--font-size-section-title);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-features__subtitle {
    font-size: var(--font-size-section-subtitle);
    color: #64748b;
    margin-bottom: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Interactive Features Layout */
.pricing-features__interactive {
    display: flex;
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Sidebar Navigation */
.pricing-features__sidebar {
    width: 280px;
    flex-shrink: 0;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: sticky;
    top: 100px;
    height: fit-content;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.pricing-features__nav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    color: #64748b;
    position: relative;
}

.pricing-features__nav-item:not(:last-child) {
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.pricing-features__nav-item i {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #64748b;
    transition: all 0.3s ease;
}

.pricing-features__nav-item span {
    font-weight: 500;
    font-size: 0.95rem;
}

.pricing-features__nav-item:hover {
    background-color: rgba(99, 102, 241, 0.05);
    color: #6366f1;
}

.pricing-features__nav-item:hover i {
    color: #6366f1;
}

.pricing-features__nav-item.active {
    background: linear-gradient(90deg, rgba(99, 102, 241, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    color: #6366f1;
    border-left-color: #6366f1;
    font-weight: 600;
}

.pricing-features__nav-item.active i {
    color: #6366f1;
}

/* Content Area */
.pricing-features__content {
    flex-grow: 1;
    position: relative;
    min-height: 400px;
}

.pricing-features__detail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.pricing-features__detail.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 1;
}

.pricing-features__detail-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    padding-bottom: 1.5rem;
}

.pricing-features__detail-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.pricing-features__detail-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: #1e293b;
}

.pricing-features__detail-content {
    color: #475569;
}

.pricing-features__detail-content p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.pricing-features__detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.pricing-features__detail-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.pricing-features__detail-list .check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(16, 185, 129, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.pricing-features__detail-list .check::before {
    content: '';
    width: 8px;
    height: 4px;
    border-left: 2px solid #10b981;
    border-bottom: 2px solid #10b981;
    transform: rotate(-45deg);
    position: absolute;
    top: 7px;
    left: 6px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .pricing-features__interactive {
        flex-direction: column;
    }

    .pricing-features__sidebar {
        width: 100%;
        position: relative;
        top: 0;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        padding: 1rem;
        gap: 0.5rem;
        overflow-x: auto;
    }
    
    .pricing-features__nav-item {
        padding: 0.75rem;
        border-left: none;
        border-bottom: none;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        justify-content: center;
        background-color: #f8fafc;
        margin: 0 0.25rem;
        flex-shrink: 0;
    }
    
    .pricing-features__nav-item:not(:last-child) {
        border-bottom: none;
    }
    
    .pricing-features__nav-item span {
        display: none;
    }
    
    .pricing-features__nav-item i {
        font-size: 1.25rem;
    }
    
    .pricing-features__nav-item.active {
        background-color: #6366f1;
        color: white;
        border-left: none;
    }
    
    .pricing-features__nav-item.active i {
        color: white;
    }

    .pricing-features__content {
        min-height: 500px;
    }

    .pricing-features__detail-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .pricing-features__detail {
        padding: 1.5rem;
    }

    .pricing-features__detail-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .pricing-features__detail-header h3 {
        font-size: 1.25rem;
    }
}

/* FAQ Section */
.pricing-faq {
    padding: var(--spacing-section-padding) 0;
    background-color: #fff;
}

.pricing-faq__header {
    text-align: center;
    max-width: var(--content-max-width);
    margin: 0 auto var(--spacing-gap-large);
}

.pricing-faq__title {
    font-size: var(--font-size-section-title);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.pricing-faq__subtitle {
    font-size: var(--font-size-section-subtitle);
    color: #64748b;
    margin-bottom: 0;
}

.pricing-faq__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 500px), 1fr));
    gap: var(--spacing-gap-medium);
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-faq__item {
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pricing-faq__item.active {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.pricing-faq__question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    transition: all 0.3s ease;
}

.pricing-faq__item.active .pricing-faq__question {
    background-color: #f8fafc;
}

.pricing-faq__question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: #1e293b;
}

.pricing-faq__icon {
    color: #6366f1;
    font-size: 0.8rem;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(99, 102, 241, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pricing-faq__item.active .pricing-faq__icon {
    transform: rotate(180deg);
    background-color: #6366f1;
    color: white;
}

.pricing-faq__answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
    transform: translateY(-10px);
}

.pricing-faq__item.active .pricing-faq__answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
}

.pricing-faq__answer p {
    margin: 0;
    color: #64748b;
    line-height: 1.6;
}

/* CTA Section */
.pricing-cta {
    padding: var(--spacing-section-padding) 0;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    color: white;
}

.pricing-cta__content {
    text-align: center;
    max-width: var(--content-max-width);
    margin: 0 auto;
}

.pricing-cta__title {
    font-size: var(--font-size-section-title);
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.pricing-cta__subtitle {
    font-size: var(--font-size-section-subtitle);
    opacity: 0.9;
    margin-bottom: 2rem;
}

.pricing-cta__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.pricing-cta__button {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.pricing-cta__button--primary {
    background-color: white;
    color: #6366f1;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.pricing-cta__button--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
    text-decoration: none;
    color: #6366f1;
}

.pricing-cta__button--secondary {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.pricing-cta__button--secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .pricing-plan--popular {
        transform: scale(1.03);
    }

    .pricing-plan--popular:hover {
        transform: scale(1.03) translateY(-5px);
    }
}

@media (max-width: 768px) {
    .pricing-plan--popular {
        transform: scale(1);
    }

    .pricing-plan--popular:hover {
        transform: translateY(-5px);
    }

    .pricing-cta__buttons {
        flex-direction: column;
    }

    .pricing-cta__button {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .pricing-plans__toggle {
        flex-direction: column;
        padding: 0.75rem;
    }

    .pricing-plans__toggle-label {
        padding: 0.5rem;
    }

    .pricing-plans__toggle-switch {
        margin: 0.5rem 0;
    }

    .pricing-faq__question h3 {
        font-size: 1rem;
    }
}
@media (max-width:1540px){
    .pricing-features__interactive {
    max-width: 1000px;
    }
}
@media (max-width:1357px){
    .pricing-features__interactive {
    max-width: 900px;
    }
}