/* Free Plan Section */
.free-plan-section {
    background: linear-gradient(135deg, rgba(107, 92, 231, 0.1) 0%, rgba(147, 130, 255, 0.1) 100%);
    border: 1px solid rgba(107, 92, 231, 0.3);
    border-radius: 18px;
    padding: 25px 40px;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
}

.free-plan-content h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.free-plan-content p {
    color: #cac6dd;
    font-size: 16px;
    margin-bottom: 0;
}

.free-plan-btn {
    background: white;
    color: #6B5CE7;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.free-plan-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
    color: #5a4bd1;
    text-decoration: none;
}

/* Standard Features Section */
.standard-features-section {
    margin-top: 30px;
    text-align: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
}

.standard-features-section h4 {
    color: #f5f5f5;
    font-size: 18px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.standard-features-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.feature-item {
    color: #cac6dd;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    color: #4CAF50;
}

/* Managed Service Section */
.managed-service-section {
    background: linear-gradient(135deg, rgba(23, 23, 35, 0.8) 0%, rgba(35, 35, 55, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.managed-header h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #fff, #cac6dd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.managed-subtitle {
    color: #cac6dd;
    font-size: 18px;
    margin-bottom: 25px;
}

.managed-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
}

.managed-feature-item {
    color: #f5f5f5;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.managed-feature-item i {
    color: #6B5CE7;
    background: rgba(107, 92, 231, 0.1);
    padding: 5px;
    border-radius: 50%;
    font-size: 12px;
}

.managed-service-action {
    text-align: center;
    min-width: 250px;
    background: rgba(255, 255, 255, 0.02);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.custom-pricing-text {
    color: #cac6dd;
    font-size: 14px;
    margin-top: 15px;
    margin-bottom: 0;
    font-style: italic;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .pricing-table-container {
        flex-direction: column;
    }

    .pricing-table-wrapper {
        width: 100%;
        overflow-x: auto;
        padding: 20px;
    }

    .pricing-table {
        min-width: 600px;
    }

    .selection-panel {
        width: 100%;
        position: static;
        margin-top: 20px;
    }

    .free-plan-section {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 25px;
    }

    .managed-service-section {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .managed-features {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        margin-bottom: 30px;
    }

    .managed-header {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .pricing-table thead th {
        padding: 15px 10px;
        font-size: 16px;
    }

    .account-tier,
    .price-cell {
        padding: 20px 10px;
    }

    .price-value {
        font-size: 18px;
    }

    .buy-btn {
        padding: 8px 16px;
        font-size: 14px;
    }

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

    .standard-features-grid {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}