/* Upgrade Section Styles */

.upgrade-section {
    background-color: white;
    padding: 80px 0;
    display: flex;
    justify-content: center;
}

.upgrade-container {
    max-width: 1152px;
    margin: 0 auto;
}

.upgrade-header {
    text-align: center;
    margin-bottom: 48px;
}

.upgrade-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
    color: #111827;
    margin-bottom: 12px;
}

.upgrade-subtitle {
    font-size: 20px;
    line-height: 28px;
    color: #1f2937;
    max-width: 632px;
    margin: 0 auto;
}

.upgrade-tabs {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.upgrade-tab {
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    color: #064e3b;
    letter-spacing: 0.35px;
    padding: 8px 16px;
    cursor: pointer;
    border: none;
    background: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.upgrade-tab:hover {
    color: #059669;
}

.upgrade-tab.active {
    color: #064e3b;
    border-bottom-color: #10b981;
}

.upgrade-card {
    background-color: white;
    border: 1px solid #eff6ff;
    border-radius: 24px;
    padding: 41px;
    box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
}

.upgrade-tab-content {
    display: none;
    gap: 32px;
}

.upgrade-tab-content.active {
    display: flex;
}

.upgrade-image-container {
    flex: 1;
    height: 420px;
    border-radius: 40px;
    overflow: hidden;
}

.upgrade-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.upgrade-content-card {
    flex: 1;
    background-color: rgba(236, 253, 245, 0.6);
    border: 1px solid rgba(209, 250, 229, 0.8);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.1);
    height: 420px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    overflow: hidden;
}

.upgrade-content-header {
    display: flex;
    gap: 12px;
    align-items: center;
}

.upgrade-content-icon {
    width: 40px;
    height: 40px;
}

.upgrade-content-title-section {
    flex: 1;
}

.upgrade-content-category {
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    color: #064e3b;
    letter-spacing: 0.35px;
}

.upgrade-content-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    color: #111827;
}

.upgrade-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.upgrade-list-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.upgrade-list-bullet {
    width: 10px;
    height: 10px;
    background-color: #10b981;
    border-radius: 9999px;
    margin-top: 4px;
    flex-shrink: 0;
}

.upgrade-list-text {
    font-size: 16px;
    line-height: 26px;
    color: #1f2937;
}

.upgrade-list-text strong {
    font-weight: 700;
}

.upgrade-disclaimer {
    font-size: 14px;
    line-height: 20px;
    color: #4b5563;
    margin-top: 32px;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .upgrade-section {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    
    .upgrade-container {
        width: 100%;
        /*max-width: 351px;*/
    }
    
    .upgrade-header {
        margin-bottom: 17px;
    }
    
    .upgrade-title {
        font-size: 30px;
        line-height: 36px;
        /*width: 347px;*/
        margin-bottom: 13px;
    }
    
    .upgrade-subtitle {
        width: 100%;
    }
    
    .upgrade-tabs {
        width: 100%;
        /*max-width: 375px;*/
        margin: 0 auto 32px;
        gap: 0;
    }
    
    .upgrade-tab {
        font-size: 12px;
        padding: 6px 6px;
    }
    
    .upgrade-card {
        flex-direction: column;
        /*width: 362px;*/
        height: auto;
    }
    
    .upgrade-image-container {
        width: 100%;
        height: 226px;
    }
    
    .upgrade-content-card {
        width: 100%;
        height: auto;
        min-height: 510px;
    }
    
    .upgrade-disclaimer {
        width: 339px;
    }
    .upgrade-tab-content.active {
        flex-direction: column;
    }
}
