/* Special Pricing Page Styles using BEM naming convention */
.pricing-special {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #1A1A2B;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #f7fafc;
}

/* Hero Section */
.pricing-special__hero {
    background: linear-gradient(135deg, #6a3de8, #4612c0);
    padding: 6rem 0 5rem;
    position: relative;
    color: #fff;
    text-align: center;
}

.pricing-special__hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5z' fill='%23ffffff' fill-opacity='0.08' fill-rule='evenodd'/%3E%3C/svg%3E");
    z-index: 1;
}

.pricing-special__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-special__hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.pricing-special__hero-description {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    font-weight: 400;
}

/* Alert Bar */
.pricing-special__alert {
    background: linear-gradient(to right, #6a3de8, #7043f6);
    color: #fff;
    padding: 1rem 0;
    position: relative;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(106, 61, 232, 0.25);
}

.pricing-special__alert-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-special__alert-icon {
    margin-right: 1rem;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.pricing-special__alert-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.pricing-special__alert-text {
    margin: 0;
    font-size: 1rem;
}

.pricing-special__alert-badge {
    background-color: #ffffff;
    color: #6a3de8;
    padding: 0.15rem 0.5rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    margin-right: 0.5rem;
    display: inline-block;
}

.pricing-special__alert-link {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 500;
    transition: all 0.2s ease;
}

.pricing-special__alert-link:hover {
    color: #e0d6ff;
    text-decoration: none;
}

/* Content Area */
.pricing-special__content {
    padding: 4rem 0;
}

/* Content Sections */
.pricing-special__section {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 3rem;
    margin-bottom: 3rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-special__section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.pricing-special__section-header {
    margin-bottom: 3rem;
}

.pricing-special__section-title {
    color: #2D3748;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 1rem;
}

.pricing-special__section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #6a3de8, #7043f6);
    border-radius: 10px;
}

.pricing-special__section-description {
    font-size: 1.125rem;
    color: #4A5568;
    max-width: 900px;
}

/* Pricing Cards */
.pricing-special__cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.pricing-special__card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #edf2f7;
}

.pricing-special__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.pricing-special__card-header {
    background: linear-gradient(135deg, #6a3de8, #4612c0);
    color: #ffffff;
    padding: 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.pricing-special__card-icon-wrapper {
    background-color: rgba(255, 255, 255, 0.2);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: transform 0.3s ease;
}

.pricing-special__card:hover .pricing-special__card-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.pricing-special__card-icon {
    font-size: 2rem;
}

.pricing-special__card-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.pricing-special__card-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pricing-special__card-description {
    font-size: 1rem;
    color: #4A5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.pricing-special__feature-list {
    margin-bottom: 1.5rem;
    background-color: #f8fafc;
    padding: 1.25rem;
    border-radius: 8px;
}

.pricing-special__feature-title {
    font-size: 1.125rem;
    color: #2D3748;
    margin-bottom: 1rem;
    font-weight: 600;
}

.pricing-special__feature-items {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.pricing-special__feature-item {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
    color: #4A5568;
}

.pricing-special__feature-item::before {
    content: "•";
    color: #6a3de8;
    font-size: 1.25rem;
    position: absolute;
    left: 0;
    top: -2px;
}

.pricing-special__benefit {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.pricing-special__benefit-icon {
    color: #10B981;
    margin-right: 0.75rem;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.pricing-special__benefit-text {
    margin: 0;
    font-size: 0.9375rem;
    color: #4A5568;
}

.pricing-special__card-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid #edf2f7;
    text-align: center;
}

.pricing-special__card-btn {
    display: inline-block;
    background-color: #6a3de8;
    color: #ffffff;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    cursor: pointer;
}

.pricing-special__card-btn:hover {
    background-color: #4612c0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(106, 61, 232, 0.3);
    color: #ffffff;
    text-decoration: none;
}

/* Client Logos */
.pricing-special__logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-special__logo-item {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100px;
    border: 1px solid #edf2f7;
}

.pricing-special__logo-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.pricing-special__logo-image {
    max-width: 80%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.pricing-special__logo-item:hover .pricing-special__logo-image {
    filter: grayscale(0%);
    opacity: 1;
}

/* CTA Section */
.pricing-special__cta {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 3rem;
}

.pricing-special__cta-wrapper {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f4ff, #edf2f7);
    border-radius: 12px;
    padding: 3rem;
    gap: 2.5rem;
    position: relative;
}

.pricing-special__cta-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #6a3de8, #9f7aea);
}

.pricing-special__cta-icon-wrapper {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #6a3de8, #4612c0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(106, 61, 232, 0.25);
}

.pricing-special__cta-icon {
    font-size: 3rem;
    color: #ffffff;
}

.pricing-special__cta-content {
    flex-grow: 1;
}

.pricing-special__cta-title {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 700;
    color: #2D3748;
}

.pricing-special__cta-description {
    margin-bottom: 2rem;
    font-size: 1.125rem;
    color: #4A5568;
    max-width: 700px;
}

.pricing-special__cta-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.pricing-special__cta-btn {
    padding: 0.75rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 180px;
}

.pricing-special__cta-btn--primary {
    background-color: #6a3de8;
    color: #ffffff;
    border: 1px solid #6a3de8;
}

.pricing-special__cta-btn--primary:hover {
    background-color: #4612c0;
    border-color: #4612c0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(106, 61, 232, 0.3);
    color: #ffffff;
    text-decoration: none;
}

.pricing-special__cta-btn--secondary {
    background-color: transparent;
    color: #4A5568;
    border: 1px solid #CBD5E0;
}

.pricing-special__cta-btn--secondary:hover {
    background-color: #f7fafc;
    border-color: #6a3de8;
    color: #6a3de8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

/* Animation Classes */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

.pulse {
    animation: pulse 2s infinite;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .pricing-special__hero-title {
        font-size: 3rem;
    }

    .pricing-special__section {
        padding: 2.5rem;
    }
}

@media (max-width: 992px) {
    .pricing-special__hero-title {
        font-size: 2.5rem;
    }

    .pricing-special__section-title {
        font-size: 2rem;
    }

    .pricing-special__cta-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem;
    }

    .pricing-special__cta-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .pricing-special__hero {
        padding: 4rem 0 3rem;
    }

    .pricing-special__hero-title {
        font-size: 2.25rem;
    }

    .pricing-special__hero-description {
        font-size: 1.125rem;
    }

    .pricing-special__alert-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .pricing-special__alert-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    .pricing-special__alert-content {
        justify-content: center;
    }

    .pricing-special__section {
        padding: 2rem;
    }

    .pricing-special__section-title {
        font-size: 1.75rem;
    }

    .pricing-special__section-description {
        font-size: 1rem;
    }

    .pricing-special__logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .pricing-special__hero-title {
        font-size: 2rem;
    }

    .pricing-special__section {
        padding: 1.5rem;
    }

    .pricing-special__card-header {
        padding: 1.5rem;
    }

    .pricing-special__card-body {
        padding: 1.5rem;
    }

    .pricing-special__card-footer {
        padding: 1.25rem 1.5rem;
    }

    .pricing-special__cta-wrapper {
        padding: 2rem 1.5rem;
    }

    .pricing-special__cta-title {
        font-size: 1.5rem;
    }

    .pricing-special__cta-description {
        font-size: 1rem;
    }

    .pricing-special__cta-btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .pricing-special__cta-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .pricing-special__logo-grid {
        gap: 1rem;
    }

    .pricing-special__logo-item {
        height: 80px;
        padding: 1rem;
    }
}